:root {
  --navy: #071426;
  --navy-soft: #0f233a;
  --blue: #0ea5e9;
  --blue-dark: #0369a1;
  --cyan: #38bdf8;
  --white: #ffffff;
  --bg: #f6f8fb;
  --muted: #64748b;
  --text: #142033;
  --border: #e2e8f0;
  --card: #ffffff;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(15, 35, 58, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 20, 38, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.logo-mark {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -2px;
}

.logo-text {
  max-width: 130px;
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #dbeafe;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dbeafe;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cyan);
}

.nav-button {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
}

.hero {
  min-height: 760px;
  padding: 96px 24px 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.20), transparent 34%),
    radial-gradient(circle at 12% 25%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(135deg, #071426 0%, #0b1c31 55%, #071426 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.hero-content,
.hero-card {
  max-width: 560px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 750;
  color: var(--blue);
  margin-bottom: 14px;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  color: var(--navy);
}

h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--navy);
}

.hero-text {
  font-size: 19px;
  color: #cbd5e1;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 15px;
}

.primary-button {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.35);
}

.primary-button:hover {
  background: var(--blue-dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

.secondary-button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.card-header {
  padding: 20px 22px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--navy);
}

.status-badge {
  font-size: 12px;
  color: #166534;
  background: #dcfce7;
  padding: 7px 10px;
  border-radius: 999px;
}

.record-list {
  padding: 18px 22px 22px;
}

.record-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
}

.record-list div:last-child {
  border-bottom: none;
}

.record-list span {
  color: var(--muted);
  font-size: 14px;
}

.record-list strong {
  color: var(--navy);
  text-align: right;
  font-size: 14px;
}

.trust-strip {
  max-width: 1180px;
  margin: -42px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.trust-strip div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  font-weight: 750;
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(15, 35, 58, 0.08);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px;
}

.section-muted {
  max-width: none;
  background: #eef4fa;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(15, 35, 58, 0.06);
  min-height: 220px;
}

.info-card p,
.product-card p,
.step p,
.split p {
  color: var(--muted);
}

.product-card {
  min-height: 260px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--blue-dark);
  align-items: center;
  justify-content: center;
  font-weight: 850;
  margin-bottom: 20px;
}

.section-dark {
  max-width: none;
  background: var(--navy);
  color: white;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.section-dark h2 {
  color: white;
}

.section-dark p {
  color: #cbd5e1;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.contact-section {
  text-align: center;
}

.contact-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #06101e;
  color: #cbd5e1;
  padding: 30px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card,
  .hero-content {
    max-width: none;
  }

  .trust-strip,
  .card-grid.three,
  .card-grid.four,
  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 72px;
  }

  .record-list div {
    flex-direction: column;
    gap: 4px;
  }

  .record-list strong {
    text-align: left;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Design v2: Intelligence console hero card */
.intelligence-console {
  background:
    linear-gradient(180deg, rgba(10, 25, 44, 0.98), rgba(6, 16, 30, 0.98));
  color: #e5eefb;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.intelligence-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.console-topline,
.console-main,
.signal-stack,
.console-footer {
  position: relative;
  z-index: 1;
}

.console-topline {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.console-title {
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: 800;
  color: #cbd5e1;
}

.console-state {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 850;
  color: #67e8f9;
  background: rgba(8, 145, 178, 0.14);
  border: 1px solid rgba(103, 232, 249, 0.24);
  padding: 6px 9px;
  border-radius: 999px;
}

.console-main {
  padding: 22px 20px 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.console-metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.console-metric span {
  color: #94a3b8;
  font-size: 13px;
}

.console-metric strong {
  font-size: 14px;
  color: #f8fafc;
  text-align: right;
}

.signal-stack {
  margin: 12px 20px 18px;
  display: grid;
  gap: 10px;
}

.signal-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 35, 58, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.signal-row.active {
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(14, 165, 233, 0.09);
}

.signal-row span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.14);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 850;
}

.signal-row strong {
  color: #f8fafc;
  font-size: 14px;
}

.signal-row em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.console-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 22px;
}

.console-footer span {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

/* Design v2: Intelligence console hero card */
.intelligence-console {
  background:
    linear-gradient(180deg, rgba(10, 25, 44, 0.98), rgba(6, 16, 30, 0.98));
  color: #e5eefb;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.intelligence-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.console-topline,
.console-main,
.signal-stack,
.console-footer {
  position: relative;
  z-index: 1;
}

.console-topline {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.console-title {
  font-size: 12px;
  letter-spacing: 1.7px;
  font-weight: 800;
  color: #cbd5e1;
}

.console-state {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 850;
  color: #67e8f9;
  background: rgba(8, 145, 178, 0.14);
  border: 1px solid rgba(103, 232, 249, 0.24);
  padding: 6px 9px;
  border-radius: 999px;
}

.console-main {
  padding: 22px 20px 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.console-metric {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.console-metric span {
  color: #94a3b8;
  font-size: 13px;
}

.console-metric strong {
  font-size: 14px;
  color: #f8fafc;
  text-align: right;
}

.signal-stack {
  margin: 12px 20px 18px;
  display: grid;
  gap: 10px;
}

.signal-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 35, 58, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.signal-row.active {
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(14, 165, 233, 0.09);
}

.signal-row span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.14);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 850;
}

.signal-row strong {
  color: #f8fafc;
  font-size: 14px;
}

.signal-row em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.console-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 22px;
}

.console-footer span {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

/* Design v2: premium signal strip */
.trust-strip {
  margin-top: -56px;
}

.trust-strip div {
  background: rgba(7, 20, 38, 0.92);
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.12);
}

.trust-strip div {
  padding-left: 38px;
}

/* Design v2: data product panels */
.section-muted {
  background:
    linear-gradient(180deg, #f5f7fa 0%, #eef3f8 100%);
}

.product-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.92));
  border: 1px solid rgba(15, 35, 58, 0.10);
  box-shadow:
    0 24px 60px rgba(15, 35, 58, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.product-card::before {
  content: "DATA PRODUCT";
  display: inline-flex;
  margin-bottom: 26px;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 900;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  padding: 6px 9px;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 32px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  background:
    linear-gradient(90deg, rgba(14,165,233,0.05) 1px, transparent 1px),
    linear-gradient(rgba(14,165,233,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  transform: rotate(8deg);
}

.product-card h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  max-width: 220px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 240px;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.26);
  box-shadow:
    0 30px 80px rgba(15, 35, 58, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.product-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}


/* Design v3: signature intelligence layer */
.intelligence-layer {
  background:
    radial-gradient(circle at 18% 20%, rgba(14, 165, 233, 0.18), transparent 28%),
    radial-gradient(circle at 85% 55%, rgba(34, 197, 94, 0.10), transparent 26%),
    linear-gradient(135deg, #06101e 0%, #0b1c31 52%, #050b14 100%);
  color: white;
  padding: 130px 24px;
  position: relative;
  overflow: hidden;
}

.intelligence-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.layer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.layer-copy h2 {
  color: white;
  font-size: clamp(38px, 5vw, 68px);
  max-width: 560px;
}

.layer-copy p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 520px;
}

.system-window {
  border-radius: 30px;
  background: rgba(7, 20, 38, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.window-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 1.2px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.window-bar span:nth-child(1) {
  background: #ef4444;
}

.window-bar span:nth-child(2) {
  background: #f59e0b;
}

.window-bar span:nth-child(3) {
  background: #22c55e;
}

.window-bar strong {
  margin-left: 10px;
  color: #cbd5e1;
  font-weight: 800;
}

.system-grid {
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.system-node {
  min-height: 150px;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(15,35,58,0.88), rgba(15,35,58,0.48));
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.system-node small {
  color: #67e8f9;
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 900;
}

.system-node strong {
  font-size: 18px;
  line-height: 1.25;
  color: #f8fafc;
}

.system-node.output {
  border-color: rgba(34, 197, 94, 0.28);
}

.system-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 26px;
  font-weight: 900;
}

.quality-board {
  margin: 0 28px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quality-board div {
  border-radius: 16px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.quality-board span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 8px;
}

.quality-board strong {
  display: inline-flex;
  color: #dcfce7;
  font-size: 13px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.18);
  padding: 5px 8px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .layer-inner,
  .system-grid,
  .quality-board {
    grid-template-columns: 1fr;
  }

  .system-arrow {
    transform: rotate(90deg);
  }
}

/* Design v3: upgraded methodology pipeline */
#methodology {
  position: relative;
}

#methodology .section-heading {
  margin-bottom: 60px;
}

.steps {
  position: relative;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(15, 35, 58, 0.10);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 35, 58, 0.08);
  overflow: hidden;
}

.step {
  border: none;
  border-right: 1px solid rgba(15, 35, 58, 0.08);
  border-radius: 0;
  box-shadow: none;
  min-height: 260px;
  padding: 34px 26px;
  position: relative;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.step:last-child {
  border-right: none;
}

.step::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(14,165,233,0.25), transparent);
}

.step span {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: #071426;
  color: #67e8f9;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 52px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.step p {
  font-size: 15px;
  line-height: 1.75;
}

.step:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(14,165,233,0.10), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

@media (max-width: 980px) {
  .steps {
    gap: 0;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(15, 35, 58, 0.08);
    min-height: auto;
  }

  .step:last-child {
    border-bottom: none;
  }
}

/* Design v4: stronger scroll depth motion */
.hero,
.section,
.intelligence-layer {
  will-change: transform, opacity;
  transition:
    transform 420ms ease-out,
    opacity 420ms ease-out;
}

.reveal {
  opacity: 0;
  transform: translateY(70px) scale(0.975);
  filter: blur(8px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Design v5: section and card level scroll motion */
.motion-item {
  --reveal-y: 90px;
  --depth-y: 0px;
  --depth-scale: 1;
  will-change: transform, opacity, filter;
  transform:
    translateY(calc(var(--reveal-y) + var(--depth-y)))
    scale(var(--depth-scale));
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 950ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    filter 950ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
}

.motion-item.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
}

.info-card.motion-item,
.product-card.motion-item,
.step.motion-item,
.trust-strip div.motion-item {
  --reveal-y: 110px;
}

.system-window.motion-item,
.hero-card.motion-item {
  --reveal-y: 120px;
}

@media (prefers-reduced-motion: reduce) {
  .motion-item {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Design v6: continuous live scroll motion */
.motion-live {
  --live-y: 0px;
  --live-scale: 1;
  --live-opacity: 1;
  --live-blur: 0px;

  will-change: transform, opacity, filter;
  transform:
    translateY(var(--live-y))
    scale(var(--live-scale)) !important;
  opacity: var(--live-opacity) !important;
  filter: blur(var(--live-blur)) !important;

  transition:
    transform 120ms linear,
    opacity 120ms linear,
    filter 120ms linear;
}

.hero.motion-live,
.intelligence-layer.motion-live {
  transition:
    transform 90ms linear,
    opacity 90ms linear,
    filter 90ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .motion-live {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Design v7: living data field hero background */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle, rgba(56, 189, 248, 0.22) 1px, transparent 1.5px),
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size:
    34px 34px,
    72px 72px,
    72px 72px;
  opacity: 0.42;
  animation: dataFieldDrift 28s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: 120px;
  background:
    radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 58%);
  filter: blur(12px);
  animation: heroGlowFloat 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content,
.hero-card,
.trust-strip {
  position: relative;
  z-index: 1;
}

@keyframes dataFieldDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(72px, 72px, 0);
  }
}

@keyframes heroGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(-40px, 30px, 0) scale(1.08);
    opacity: 0.78;
  }
}

/* Design v7: live console pulse */
.console-dot {
  animation: consolePulse 2.2s ease-in-out infinite;
}

.signal-row.active {
  position: relative;
  overflow: hidden;
}

.signal-row.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.12),
    transparent
  );
  transform: translateX(-120%);
  animation: signalSweep 4.8s ease-in-out infinite;
}

.signal-row.active:nth-child(2)::after {
  animation-delay: 0.8s;
}

.signal-row.active:nth-child(3)::after {
  animation-delay: 1.6s;
}

@keyframes consolePulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(34, 197, 94, 0.18);
  }
}

@keyframes signalSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  55% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* Design v8: stronger live signal motion */
.hero::before {
  opacity: 0.58;
}

.hero::after {
  opacity: 0.86;
  filter: blur(6px);
}

.signal-row.active {
  border-color: rgba(56, 189, 248, 0.46);
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.16), rgba(15, 35, 58, 0.64));
}

.signal-row.active::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 211, 252, 0.24),
    rgba(34, 197, 94, 0.12),
    transparent
  );
  animation-duration: 4.2s;
}

.signal-row.active:nth-child(4)::after {
  animation-delay: 2.4s;
}

.console-state {
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.20);
}

.console-footer span {
  box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.08);
}

/* Design v9: methodology active step storytelling */
.step {
  opacity: 0.58;
  transform: scale(0.96);
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.step.step-active {
  opacity: 1;
  transform: scale(1.035);
  background:
    radial-gradient(circle at 50% 0%, rgba(14,165,233,0.18), transparent 44%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 28px 80px rgba(15, 35, 58, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 2;
}

.step.step-active span {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(14,165,233,0.12);
}

.step.step-active h3 {
  color: #071426;
}

/* Design v10: strong hover lift for cards */
.info-card,
.product-card,
.step,
.system-node,
.quality-board div,
.trust-strip div {
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    background 260ms ease,
    opacity 260ms ease,
    filter 260ms ease;
}

.info-card:hover,
.product-card:hover,
.step:hover,
.system-node:hover,
.quality-board div:hover,
.trust-strip div:hover {
  transform: translateY(-14px) scale(1.035) !important;
  box-shadow:
    0 34px 90px rgba(15, 35, 58, 0.20),
    0 0 0 1px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(14, 165, 233, 0.34);
  opacity: 1 !important;
  filter: blur(0) !important;
  z-index: 5;
}

.step:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(14,165,233,0.20), transparent 46%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.step:hover span {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(14,165,233,0.14);
}

.system-node:hover,
.quality-board div:hover {
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(56, 189, 248, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
  border-color: rgba(56, 189, 248, 0.38);
}

.trust-strip div:hover {
  background: rgba(10, 31, 55, 0.98);
  color: #ffffff;
}

/* Fix: disable automatic fixed methodology highlight */
.step.step-active {
  opacity: 0.58;
  transform: scale(0.96);
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: none;
  z-index: 1;
}

.step.step-active span {
  background: #071426;
  color: #67e8f9;
  box-shadow: none;
}

/* Keep strong hover effect */
.step:hover,
.step.step-active:hover {
  opacity: 1 !important;
  transform: translateY(-14px) scale(1.035) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(14,165,233,0.20), transparent 46%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow:
    0 34px 90px rgba(15, 35, 58, 0.20),
    0 0 0 1px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 5;
}

.step:hover span,
.step.step-active:hover span {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(14,165,233,0.14);
}

/* Design v11: premium contact request panel */
.premium-contact {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.contact-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, #071426 0%, #0b1c31 58%, #050b14 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  box-shadow:
    0 36px 110px rgba(15, 35, 58, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(148, 163, 184, 0.20);
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, black, transparent 72%);
  pointer-events: none;
}

.contact-copy,
.request-card {
  position: relative;
  z-index: 1;
}

.contact-copy {
  text-align: left;
}

.contact-copy h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 28px;
}

.contact-copy .primary-button {
  width: fit-content;
}

.request-card {
  background: rgba(255,255,255,0.94);
  color: var(--text);
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.request-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 16px;
  border-bottom: 1px solid #e2e8f0;
}

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

.request-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.request-row strong {
  color: #071426;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 980px) {
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .request-row {
    flex-direction: column;
    gap: 6px;
  }

  .request-row strong {
    text-align: left;
  }
}

/* Design v12: premium contact card interaction */
.request-card {
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease;
}

.request-card:hover {
  transform: translateY(-12px) scale(1.025);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.34),
    0 0 0 1px rgba(56, 189, 248, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.95);
  border-color: rgba(56, 189, 248, 0.32);
}

.request-row {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.request-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 165, 233, 0.08),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.request-row:hover::before {
  transform: translateX(120%);
}

.request-row span,
.request-row strong {
  position: relative;
  z-index: 1;
}

/* Design v13: replace running signal sweep with subtle sequential row highlight */
.signal-row.active::after {
  display: none;
}

.signal-row.active {
  animation: subtleSignalFocus 6.4s ease-in-out infinite;
}

.signal-row.active:nth-child(1) {
  animation-delay: 0s;
}

.signal-row.active:nth-child(2) {
  animation-delay: 1.2s;
}

.signal-row.active:nth-child(3) {
  animation-delay: 2.4s;
}

.signal-row.active:nth-child(4) {
  animation-delay: 3.6s;
}

@keyframes subtleSignalFocus {
  0%, 18%, 100% {
    transform: translateY(0) scale(1);
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(14, 165, 233, 0.09);
    box-shadow: none;
  }

  8% {
    transform: translateY(-3px) scale(1.012);
    border-color: rgba(56, 189, 248, 0.42);
    background:
      linear-gradient(90deg, rgba(14, 165, 233, 0.14), rgba(15, 35, 58, 0.58));
    box-shadow:
      0 14px 34px rgba(14, 165, 233, 0.10),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }
}

/* Design v14: darker premium navy + muted gold + green CTA */
:root {
  --navy: #020b16;
  --navy-soft: #071827;
  --blue: #0ea5e9;
  --blue-dark: #0369a1;
  --cyan: #38bdf8;
  --gold: #c8a96a;
  --gold-soft: rgba(200, 169, 106, 0.22);
  --white: #ffffff;
  --bg: #f6f8fb;
  --muted: #64748b;
  --text: #142033;
  --border: #e2e8f0;
  --card: #ffffff;
  --green: #22c55e;
  --green-bright: #4ade80;
  --shadow: 0 24px 70px rgba(2, 11, 22, 0.22);
}

/* Darker site header */
.site-header {
  background: rgba(2, 11, 22, 0.94);
  border-bottom: 1px solid rgba(200, 169, 106, 0.12);
}

/* Gold logo direction */
.logo-mark {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(200, 169, 106, 0.18);
}

.logo-text {
  color: #e6d7b2;
}

/* Darker hero base */
.hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(200, 169, 106, 0.10), transparent 28%),
    radial-gradient(circle at 12% 24%, rgba(14, 165, 233, 0.11), transparent 32%),
    linear-gradient(135deg, #020b16 0%, #061321 48%, #020811 100%);
}

/* More premium gold navigation contact button */
.nav-button {
  color: #f5ead0 !important;
  border: 1px solid rgba(200, 169, 106, 0.48);
  background: rgba(200, 169, 106, 0.055);
  box-shadow:
    0 0 0 1px rgba(200, 169, 106, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-button:hover {
  color: #ffffff !important;
  border-color: rgba(200, 169, 106, 0.78);
  background: rgba(200, 169, 106, 0.11);
  box-shadow:
    0 0 32px rgba(200, 169, 106, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Make the main Explore button green and pulsing */
.primary-button {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #03130a;
  box-shadow:
    0 0 0 0 rgba(34, 197, 94, 0.34),
    0 18px 44px rgba(34, 197, 94, 0.22);
  animation: greenCtaPulse 2.4s ease-in-out infinite;
}

.primary-button:hover {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #021008;
  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.10),
    0 22px 58px rgba(34, 197, 94, 0.28);
}

/* Keep contact panel email button green too */
.contact-copy .primary-button {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #03130a;
}

/* Secondary button with muted gold edge */
.secondary-button {
  border: 1px solid rgba(200, 169, 106, 0.34);
  color: #f5ead0;
  background: rgba(200, 169, 106, 0.035);
}

.secondary-button:hover {
  border-color: rgba(200, 169, 106, 0.70);
  color: #ffffff;
  background: rgba(200, 169, 106, 0.09);
}

/* Console card slightly darker and more premium */
.intelligence-console,
.system-window,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(3, 13, 25, 0.98), rgba(2, 8, 17, 0.98));
  border-color: rgba(200, 169, 106, 0.16);
}

/* Gold detail on console top line */
.console-title,
.window-bar strong {
  color: #e6d7b2;
}

/* Gold-tinted live preview badge */
.console-state {
  color: #f5ead0;
  background: rgba(200, 169, 106, 0.08);
  border-color: rgba(200, 169, 106, 0.28);
  box-shadow: 0 0 24px rgba(200, 169, 106, 0.14);
}

/* Hero data field: darker and less cyan-heavy */
.hero::before {
  opacity: 0.46;
  background-image:
    radial-gradient(circle, rgba(200, 169, 106, 0.18) 1px, transparent 1.5px),
    linear-gradient(rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
}

.hero::after {
  background:
    radial-gradient(circle, rgba(200, 169, 106, 0.11), transparent 58%);
}

/* Green CTA pulse animation */
@keyframes greenCtaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(34, 197, 94, 0.26),
      0 18px 44px rgba(34, 197, 94, 0.22);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(34, 197, 94, 0.08),
      0 22px 58px rgba(34, 197, 94, 0.30);
  }
}

/* Logo image integration */
.logo-image-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo-img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(200, 169, 106, 0.14));
}

@media (max-width: 640px) {
  .site-logo-img {
    width: 150px;
  }
}

/* Design v15: larger logo and deeper premium navy header */
.site-header {
  background:
    linear-gradient(180deg, rgba(3, 13, 25, 0.98), rgba(2, 9, 19, 0.96));
  border-bottom: 1px solid rgba(200, 169, 106, 0.18);
  box-shadow:
    0 10px 34px rgba(0, 0, 0, 0.22),
    inset 0 -1px 0 rgba(200, 169, 106, 0.06);
}

.navbar {
  padding-top: 22px;
  padding-bottom: 22px;
}

.site-logo-img {
  width: 260px;
  filter:
    drop-shadow(0 0 14px rgba(200, 169, 106, 0.22))
    drop-shadow(0 0 34px rgba(200, 169, 106, 0.10));
}

.logo-image-link {
  transform: translateY(1px);
}

.nav-links {
  color: #e9ddbf;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-button {
  border-color: rgba(200, 169, 106, 0.58);
  color: #f5ead0 !important;
  background: rgba(200, 169, 106, 0.06);
}

@media (max-width: 980px) {
  .site-logo-img {
    width: 210px;
  }
}

@media (max-width: 640px) {
  .site-logo-img {
    width: 170px;
  }
}

/* Design v16: make header logo more visible */
.navbar {
  padding-top: 26px;
  padding-bottom: 26px;
}

.site-logo-img {
  width: 360px;
  max-height: 86px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(200, 169, 106, 0.28))
    drop-shadow(0 0 46px rgba(200, 169, 106, 0.14));
}

.logo-image-link {
  min-width: 360px;
}

@media (max-width: 980px) {
  .site-logo-img {
    width: 280px;
  }

  .logo-image-link {
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .site-logo-img {
    width: 210px;
  }

  .logo-image-link {
    min-width: 210px;
  }
}

/* Design v17: compact premium header with stronger logo presence */
.navbar {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  min-height: 78px;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(3, 13, 25, 0.99), rgba(2, 9, 19, 0.98));
  border-bottom: 1px solid rgba(200, 169, 106, 0.22);
}

.logo-image-link {
  min-width: unset !important;
  width: auto !important;
  display: flex;
  align-items: center;
}

.site-logo-img {
  width: 230px !important;
  max-height: 58px !important;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(200, 169, 106, 0.30))
    drop-shadow(0 0 38px rgba(200, 169, 106, 0.14));
}

.nav-links {
  align-items: center;
}

@media (max-width: 980px) {
  .navbar {
    min-height: 70px;
  }

  .site-logo-img {
    width: 190px !important;
    max-height: 50px !important;
  }
}

@media (max-width: 640px) {
  .site-logo-img {
    width: 160px !important;
    max-height: 44px !important;
  }
}

/* Design v18: fix header logo sizing using PNG header logo */
.navbar {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  min-height: 74px !important;
}

.logo-image-link {
  min-width: unset !important;
  width: auto !important;
  height: 54px !important;
  display: flex;
  align-items: center;
}

.site-logo-img {
  width: auto !important;
  height: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 16px rgba(200, 169, 106, 0.30))
    drop-shadow(0 0 42px rgba(200, 169, 106, 0.14));
}

@media (max-width: 980px) {
  .logo-image-link {
    height: 46px !important;
  }

  .site-logo-img {
    height: 46px !important;
    max-height: 46px !important;
  }
}

@media (max-width: 640px) {
  .logo-image-link {
    height: 40px !important;
  }

  .site-logo-img {
    height: 40px !important;
    max-height: 40px !important;
  }
}

/* Legal pages */
.legal-page {
  min-height: 70vh;
  padding: 140px 24px 80px;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(6, 18, 38, 0.96), rgba(4, 10, 22, 1));
}

.legal-section {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 28px;
  background: rgba(8, 22, 45, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.legal-section h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
}

.legal-section h2 {
  margin: 34px 0 10px;
  font-size: 1.1rem;
  color: var(--gold);
}

.legal-section p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.legal-section a {
  color: var(--gold);
}

.legal-updated {
  color: rgba(226, 232, 240, 0.62) !important;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 110px 16px 56px;
  }

  .legal-section {
    padding: 28px 20px;
    border-radius: 22px;
  }
}
