* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #0a0e27;
  color: #ffffff;
  overflow-x: hidden;
  padding-top: 0;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero {
  margin-top: 0;
  padding: 4.5rem 50px 5.5rem;
  background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a0aec0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: #a0aec0;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .hero { padding: 4rem 32px 5rem; }
}

@media (max-width: 768px) {
  .hero { padding: 3.7rem 24px 4.5rem; }
  .hero-container { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero { padding: 3.4rem 20px 4.2rem; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
  font-size: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat p {
  color: #718096;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.data-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.data-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.data-card-featured {
  padding: 2.25rem;
  min-height: 250px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.data-card-featured .data-title {
  color: #fbd38d;
}

.data-card-featured .data-value {
  font-size: 3rem;
}

.gcc-pulse-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 26%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.gcc-pulse-card[role="link"] {
  cursor: pointer;
}

.gcc-pulse-card[role="link"]:focus-visible {
  outline: 2px solid rgba(124, 150, 255, 0.55);
  outline-offset: 6px;
}

.gcc-pulse-card::after {
  content: '';
  position: absolute;
  inset: auto -18% -42% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
  transition: background 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.gcc-pulse-card.is-negative::after {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2), transparent 68%);
}

.gcc-pulse-card.is-amber {
  border-color: rgba(245, 158, 11, 0.38);
}

.gcc-pulse-card.is-extreme {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.18);
}

.gcc-pulse-coverage-card {
  margin-bottom: 0;
}

.gcc-pulse-panel-header {
  margin-bottom: 3rem;
}

.gcc-pulse-topline {
  margin-bottom: 1.5rem;
}

.gcc-pulse-headline {
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #86efac;
  transition: color 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.gcc-pulse-headline.negative,
.gcc-pulse-card.is-extreme .gcc-pulse-headline {
  color: #fca5a5;
}

.gcc-pulse-name {
  margin-top: 0.4rem;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.gcc-pulse-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gcc-pulse-metric {
  padding: 0.78rem 0.8rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.gcc-pulse-metric-label {
  display: block;
  margin-bottom: 0.28rem;
  color: #94a3b8;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gcc-pulse-metric strong {
  font-size: 1rem;
  color: #f8fafc;
}

.gcc-pulse-visuals {
  margin-bottom: 1rem;
}

.gcc-pulse-dots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.gcc-pulse-dot {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  padding: 0.7rem 0.6rem 0.58rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: background 0.24s ease, border-color 0.24s ease, opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.gcc-pulse-dot-value {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  color: #f8fafc;
  letter-spacing: -0.02em;
  transition: color 0.24s ease, transform 0.24s ease;
}

.gcc-pulse-dot-label {
  font-size: 0.67rem;
  color: #cbd5e1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gcc-pulse-dot.is-up {
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.66) 0%, rgba(22, 101, 52, 0.28) 100%);
  border-color: rgba(34, 197, 94, 0.34);
}

.gcc-pulse-dot.is-up .gcc-pulse-dot-value {
  color: #bbf7d0;
}

.gcc-pulse-dot.is-down {
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.66) 0%, rgba(127, 29, 29, 0.28) 100%);
  border-color: rgba(248, 113, 113, 0.32);
}

.gcc-pulse-dot.is-down .gcc-pulse-dot-value {
  color: #fecaca;
}

.gcc-pulse-dot.is-flat {
  background: linear-gradient(180deg, rgba(51, 65, 85, 0.68) 0%, rgba(51, 65, 85, 0.32) 100%);
  border-color: rgba(148, 163, 184, 0.28);
}

.gcc-pulse-dot.is-flat .gcc-pulse-dot-value {
  color: #e2e8f0;
}

.gcc-pulse-dot.is-inactive {
  opacity: 0.7;
}

.gcc-pulse-dot.is-inactive .gcc-pulse-dot-label {
  color: #94a3b8;
}

.gcc-pulse-heatbar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gcc-pulse-heatbar-fill {
  height: 100%;
  width: 12%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.42) 0%, #22c55e 100%);
  transition: width 0.35s ease;
}

.gcc-pulse-heatbar-fill.negative {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.42) 0%, #ef4444 100%);
}

.gcc-pulse-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.gcc-pulse-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.gcc-pulse-link:hover,
.gcc-pulse-link:focus-visible {
  color: #cbd5e1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.data-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.data-title {
  font-size: 0.9rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.data-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.data-badge.is-live,
.status-badge.is-live {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
}

.data-badge.is-stale,
.status-badge.is-stale {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.42);
}

.data-badge.is-snapshot,
.status-badge.is-snapshot {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(96, 165, 250, 0.42);
}

.data-badge.is-waiting,
.status-badge.is-waiting {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.42);
}

.data-badge.is-closed,
.status-badge.is-closed {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.34);
}

.data-badge.is-offline,
.status-badge.is-offline {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.16);
  border-color: rgba(239, 68, 68, 0.38);
}

.data-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.data-value.flash-up {
  color: #86efac;
  transform: translateY(-2px) scale(1.01);
}

.data-value.flash-down {
  color: #fca5a5;
  transform: translateY(2px) scale(0.99);
}

.gcc-pulse-snapshot {
  margin-top: 0.7rem;
}

.gcc-pulse-note {
  margin-top: 0.45rem;
  font-size: 8px;
  line-height: 1.35;
  color: rgba(203, 213, 225, 0.78);
  letter-spacing: 0.02em;
}

.data-change {
  font-size: 0.95rem;
  color: #48bb78;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.data-change-secondary {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.data-freshness,
.status-age {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: #94a3b8;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.data-change.negative {
  color: #f56565;
}

.macro-strip-section {
  padding: 0 2rem 6rem;
  margin-top: -1.75rem;
}

.macro-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.9rem 2rem 1.5rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.macro-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.macro-strip-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.macro-strip-header p {
  color: #a0aec0;
  max-width: 760px;
}

.macro-strip-link {
  color: #fbd38d;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.macro-strip-link:hover {
  color: #f6ad55;
}

.macro-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.macro-card {
  padding: 1.35rem 1.35rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.macro-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.macro-card-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbd38d;
  font-weight: 700;
}

.macro-card-value {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.macro-card-change {
  color: #48bb78;
  font-weight: 600;
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.macro-card-change.negative {
  color: #f56565;
}

.macro-card-date,
.macro-strip-note {
  color: #94a3b8;
  font-size: 0.9rem;
}

.macro-strip-note {
  margin-top: 1rem;
}

.macro-strip-legal {
  margin-top: 0.45rem;
  color: #718096;
  font-size: 0.78rem;
  line-height: 1.55;
}

.features {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  color: #667eea;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.15rem;
  color: #a0aec0;
  line-height: 1.7;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #a0aec0;
  line-height: 1.7;
}

.data-coverage {
  padding: 6rem 2rem;
  background: rgba(10, 14, 39, 0.5);
}

.coverage-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}

.coverage-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
}

.coverage-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.coverage-panel-label {
  margin-bottom: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #8ea4ff;
}

.coverage-panel-link {
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.coverage-panel-link:hover,
.coverage-panel-link:focus-visible {
  color: #c7d2fe;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.coverage-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.market-row-link {
  color: inherit;
  text-decoration: none;
}

.market-row-link:hover,
.market-row-link:focus-visible {
  transform: translateX(3px);
}

.market-row-link:focus-visible {
  outline: 2px solid rgba(124, 150, 255, 0.55);
  outline-offset: 6px;
  border-radius: 14px;
}

.market-row:last-child {
  border-bottom: none;
}

.market-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.market-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.3rem;
}

.market-title-row h4 {
  margin-bottom: 0;
}

.market-info span {
  color: #718096;
  font-size: 0.85rem;
}

.market-status {
  text-align: right;
}

.market-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.coverage-heading {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.coverage-list {
  list-style: none;
  margin: 0;
}

.coverage-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.coverage-list li::before {
  content: "✓";
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.asset-class-stripe {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(12, 18, 44, 0.94) 0%, rgba(10, 14, 39, 0.98) 100%);
}

.asset-class-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.asset-class-intro p {
  color: #a0aec0;
  line-height: 1.75;
  max-width: 48ch;
}

.asset-class-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.25rem;
}

.asset-class-list li {
  padding: 1.1rem 0;
}

.energy-benchmarks {
  padding: 6rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(47, 133, 90, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 14, 39, 0.96) 0%, rgba(10, 14, 39, 0.75) 100%);
}

.energy-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.energy-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.energy-strip-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.energy-strip-header p {
  color: #a0aec0;
}

.energy-strip-link {
  color: #9ae6b4;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.energy-strip-link:hover {
  color: #68d391;
}

.energy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.energy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.energy-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.14);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.energy-meta-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.energy-meta-row .energy-symbol {
  margin-bottom: 0;
}

.energy-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.energy-info p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.energy-metrics {
  text-align: right;
  flex-shrink: 0;
}

.energy-price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.energy-change {
  color: #48bb78;
  font-weight: 600;
  font-size: 0.95rem;
}

.energy-change.negative {
  color: #f56565;
}

.energy-strip-note {
  margin-top: 1.1rem;
  color: #94a3b8;
  font-size: 0.7rem;
  line-height: 1.6;
}

.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  text-align: center;
}

.widget-demo {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(102, 126, 234, 0.04) 100%);
}

.widget-demo-wrap {
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.widget-demo-wrap iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  background: #050815;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-container p {
  font-size: 1.25rem;
  color: #a0aec0;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .energy-grid {
    grid-template-columns: 1fr;
  }

  .macro-highlight-grid {
    grid-template-columns: 1fr;
  }

  .energy-strip-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .macro-strip-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .asset-class-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .asset-class-stripe {
    padding: 4rem 1.2rem;
  }

  .asset-class-shell {
    padding: 2rem 1.4rem;
  }

  .asset-class-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-container h2 {
    font-size: 2rem;
  }

  .widget-demo {
    padding: 4.5rem 1.2rem;
  }

  .widget-demo-wrap iframe {
    height: 760px;
  }

  .energy-benchmarks {
    padding: 4.5rem 1.2rem;
  }

  .macro-strip-section {
    padding: 0 1.2rem 4.5rem;
    margin-top: -1rem;
  }

  .macro-strip {
    padding: 1.25rem;
  }

  .energy-strip {
    padding: 1.2rem;
  }

  .energy-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .energy-metrics {
    text-align: left;
  }

  .market-title-row,
  .energy-meta-row {
    flex-wrap: wrap;
  }

  .gcc-pulse-metrics {
    grid-template-columns: 1fr;
  }

  .gcc-pulse-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
