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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --ink:       #0c1618;
  --paper:     #f5f0f6;
  --gold:      #d7b377;
  --orange:    #bf3100;
  --teal:      #1A9BAA;
  --ink-light: #1a2c30;
  --muted:     rgba(245,240,246,0.65);
  --muted2:    rgba(245,240,246,0.85);
  --display:   'Roboto Condensed', impact, sans-serif;
  --mono:      'Roboto Mono', monospace;
  --body:      'Roboto', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--teal); }

/* ── NAV ─────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 56px;
  background: rgba(12,22,24,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,126,137,0.35);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
}
.nav-logo .accent { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s !important;
  border-radius: 2px;
}
.nav-cta:hover { background: #e8c888 !important; }

/* ── TICKER ──────────────────────── */
.ticker {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 199;
  height: 30px;
  background: var(--ink-light);
  border-bottom: 1px solid rgba(23,126,137,0.3);
  overflow: hidden;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted2);
  padding: 0 2.5rem;
  border-right: 1px solid rgba(23,126,137,0.25);
  display: flex; align-items: center; gap: 0.6rem;
  height: 30px;
}
.ticker-item .tag { color: var(--teal); font-size: 0.52rem; letter-spacing: 0.16em; }
.ticker-item .val { color: var(--paper); font-weight: 500; }
.ticker-item .good { color: #3ecfdc; font-weight: 500; }
.ticker-item .warn { color: var(--orange); font-weight: 500; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 86px 3rem 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at top right, rgba(23,126,137,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 5rem;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-kicker::before {
  content: '';
  display: block; width: 2.5rem; height: 2px;
  background: var(--teal);
}
.hero-hed {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 16rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--paper);
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards 0.25s;
}
.hero-hed .accent-orange { color: var(--orange); }
.hero-hed .outline {
  color: var(--paper);
}

.hero-lower {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 4rem;
  border-top: 1px solid rgba(23,126,137,0.4);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.7s;
}
.hero-cell {
  padding: 2rem 2rem 2.5rem;
  border-right: 1px solid rgba(23,126,137,0.25);
}
.hero-cell:last-child { border-right: none; }
.hero-cell-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted2);
  line-height: 1.75;
}
.hero-tagline strong { color: var(--paper); font-style: normal; font-weight: 500; }

.hero-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.stat-row { display: flex; align-items: baseline; gap: 0.85rem; }
.stat-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-l {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-actions { display: flex; flex-direction: column; gap: 0.875rem; }

.btn-primary {
  display: block; text-align: center;
  background: var(--orange);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 2px solid var(--orange);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--orange); }

.btn-secondary {
  display: block; text-align: center;
  background: transparent;
  color: var(--muted2);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(245,240,246,0.3);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--paper); color: var(--paper); }

.hero-live {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-live::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── SHARED SECTION ──────────────── */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 3rem;
}
.divider { height: 1px; background: rgba(23,126,137,0.3); }

.eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: attr(data-num);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  opacity: 0.75;
}

.section-hed {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--paper);
}
.section-hed .dim { color: rgba(245,240,246,0.45); }

/* ── PROBLEM ─────────────────────── */
.problem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin: 3.5rem 0 4rem;
}
.problem-statement {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted2);
  line-height: 1.85;
}
.problem-statement strong { color: var(--paper); font-style: normal; font-weight: 500; }
.problem-statement .hi { color: var(--orange); font-style: normal; font-weight: 500; }

.law-card {
  background: var(--ink-light);
  border: 1px solid rgba(23,126,137,0.4);
  border-left: 3px solid var(--teal);
  padding: 2rem;
  border-radius: 2px;
}
.law-card-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.law-card-text {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.75;
}
.law-card-text em { color: var(--paper); font-style: italic; }

.processor-table-wrap {
  background: var(--ink-light);
  border: 1px solid rgba(23,126,137,0.35);
  border-radius: 4px;
  overflow: hidden;
}
.processor-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--body); font-size: 0.95rem;
}
.processor-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid rgba(23,126,137,0.3);
  font-weight: 400;
  background: rgba(23,126,137,0.1);
}
.processor-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(23,126,137,0.15);
  color: var(--muted2);
  font-weight: 300;
}
.processor-table tr:last-child td { border-bottom: none; }
.processor-table td:first-child { color: var(--paper); font-weight: 500; }
.processor-table tr:hover td { background: rgba(23,126,137,0.06); }
.t-bad { color: #ff6b4a !important; font-weight: 400 !important; }
.t-neutral { color: rgba(245,240,246,0.5) !important; }
.t-good { color: #3ecfdc !important; font-weight: 500 !important; }

.table-note {
  padding: 1rem 1.5rem;
  font-family: var(--body);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  border-top: 1px solid rgba(23,126,137,0.2);
  background: rgba(23,126,137,0.04);
  line-height: 1.65;
}

/* ── PLATFORM ────────────────────── */
.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 3rem;
}
.platform-header-desc {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 34ch;
  text-align: right;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--ink-light);
  border: 1px solid rgba(23,126,137,0.3);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover { border-color: rgba(23,126,137,0.65); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(23,126,137,0.15);
  line-height: 1;
  position: absolute; bottom: 1rem; right: 1.5rem;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.feature-card:hover .card-num { color: rgba(23,126,137,0.28); }

.card-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.card-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.card-body {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.card-items { list-style: none; display: flex; flex-direction: column; }
.card-items li {
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted2);
  padding: 0.55rem 0;
  border-top: 1px solid rgba(23,126,137,0.18);
  display: flex; align-items: center; gap: 0.75rem;
}
.card-items li::before { content: '→'; color: var(--teal); font-size: 0.7rem; flex-shrink: 0; }

/* ── HOW IT WORKS ────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.step-card {
  padding: 2rem;
  background: transparent;
  border: 1px solid rgba(23,126,137,0.25);
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.step-card:hover { background: var(--ink-light); border-color: rgba(23,126,137,0.5); }
.step-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.step-card:hover .step-n { opacity: 0.8; }
.step-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 0.875rem;
}
.step-body {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.75;
}

/* ── DATA BAND ───────────────────── */
.data-band {
  background: var(--ink-light);
  border-top: 1px solid rgba(23,126,137,0.3);
  border-bottom: 1px solid rgba(23,126,137,0.3);
}
.data-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 0 3rem;
}
.data-cell {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid rgba(23,126,137,0.2);
}
.data-cell:not(:first-child) { padding-left: 2rem; }
.data-cell:last-child { border-right: none; }
.data-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.875rem;
}
.data-val {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--paper);
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
}
.data-val .unit {
  font-size: 0.4em;
  color: var(--gold);
  vertical-align: super;
  letter-spacing: 0.04em;
}
.data-desc {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.6;
}

/* ── COMPARISON TABLE ────────────── */
.compare-table-wrap {
  margin-top: 3.5rem;
  background: var(--ink-light);
  border: 1px solid rgba(23,126,137,0.3);
  border-radius: 4px;
  overflow: hidden;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--body); font-size: 0.92rem;
}
.compare-table th {
  padding: 1.1rem 2rem;
  text-align: left;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
  border-bottom: 1px solid rgba(23,126,137,0.3);
  font-weight: 400;
  background: rgba(23,126,137,0.1);
}
.compare-table th:last-child { color: var(--gold); }
.compare-table td {
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(23,126,137,0.12);
  color: var(--muted2);
  font-weight: 300;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--paper); font-weight: 500; }
.compare-table td:last-child { color: #3ecfdc; font-weight: 500; }
.compare-table tr:hover td { background: rgba(23,126,137,0.05); }
.c-bad { color: #ff6b4a !important; font-weight: 400 !important; }
.c-neutral { color: rgba(245,240,246,0.5) !important; }

/* ── CTA ─────────────────────────── */
.cta-section {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden; padding: 9rem 3rem;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(23,126,137,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-bg-word {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
}
.cta-bg-word span {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28vw;
  color: rgba(23,126,137,0.06);
  letter-spacing: 0.1em;
  user-select: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; }
.cta-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ''; display: block; width: 2rem; height: 1px;
  background: var(--teal); opacity: 0.7;
}
.cta-hed {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--paper); margin-bottom: 1.5rem;
}
.cta-hed .stroke {
  color: var(--gold);
}
.cta-sub {
  font-family: var(--body);
  font-size: 1rem; font-weight: 300;
  color: var(--muted2); line-height: 1.75;
  max-width: 44ch; margin: 0 auto 3rem;
}
.cta-form {
  display: flex; max-width: 480px;
  margin: 0 auto 1.25rem;
  border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(23,126,137,0.5);
  transition: border-color 0.2s;
}
.cta-form:focus-within { border-color: var(--teal); }
.cta-form input {
  flex: 1; padding: 1rem 1.25rem;
  background: var(--ink-light); border: none;
  font-family: var(--mono); font-size: 0.85rem;
  color: var(--paper); outline: none;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form button {
  background: var(--orange); color: var(--paper); border: none;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 1.75rem; cursor: pointer;
  white-space: nowrap; transition: background 0.2s;
}
.cta-form button:hover { background: #d43600; }
.cta-note {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.08em; color: var(--muted2);
}

/* ── FOOTER ───────────────────────── */
footer {
  background: var(--ink-light);
  border-top: 1px solid rgba(23,126,137,0.3);
}
.footer-main {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  padding: 0 3rem;
}
.footer-col {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid rgba(23,126,137,0.18);
}
.footer-col:not(:first-child) { padding-left: 2rem; }
.footer-col:last-child { border-right: none; }
.footer-logo {
  font-family: var(--display); font-weight: 900;
  font-size: 2.5rem; letter-spacing: 0.05em;
  color: var(--paper); display: block; margin-bottom: 0.75rem;
}
.footer-logo .accent { color: var(--teal); }
.footer-tagline {
  font-family: var(--body); font-size: 0.9rem;
  font-weight: 300; color: var(--muted2);
  line-height: 1.7;
}
.footer-col-label {
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-family: var(--body); font-size: 0.92rem;
  font-weight: 300; color: var(--muted2);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: var(--paper); }
.footer-legal {
  font-family: var(--body); font-size: 0.85rem;
  font-weight: 300; color: var(--muted2);
  line-height: 1.75;
}
.footer-legal a { color: var(--muted2); text-decoration: none; }
.footer-legal a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(23,126,137,0.18);
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.footer-copy {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted2);
}
.footer-by {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted2);
}
.footer-by a { color: var(--gold); text-decoration: none; }
.footer-by a:hover { color: var(--paper); }

/* ── REVEAL ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE ───────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 86px 1.5rem 0; }
  .hero-lower { grid-template-columns: 1fr; }
  .hero-cell { border-right: none; border-bottom: 1px solid rgba(23,126,137,0.25); }
  .section-wrap { padding: 5rem 1.5rem; }
  .problem-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform-header { flex-direction: column; align-items: flex-start; }
  .platform-header-desc { text-align: left; max-width: none; }
  .feature-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .data-band-inner { grid-template-columns: 1fr 1fr; padding: 0 1.5rem; }
  .data-cell:first-child { padding-left: 0; }
  .data-cell:nth-child(2n) { border-right: none; }
  .data-cell:nth-child(n+3) { border-top: 1px solid rgba(23,126,137,0.2); }
  .compare-table th:nth-child(2), .compare-table td:nth-child(2) { display: none; }
  .cta-section { padding: 6rem 1.5rem; }
  .cta-form { flex-direction: column; border: none; }
  .cta-form input { border: 1px solid rgba(23,126,137,0.4); }
  .cta-form button { border-radius: 2px; }
  .footer-main { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(23,126,137,0.18); padding-left: 0 !important; }
  .footer-bottom { padding: 1.25rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
