:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  --page: #eef3f1;
  --page-soft: #f8fbfa;
  --surface: #ffffff;
  --surface-soft: #f4f8f6;
  --text: #17211e;
  --heading: #102a23;
  --muted: #5d6a65;
  --muted-strong: #40504b;
  --brand: #14372f;
  --brand-deep: #0c2923;
  --accent: #0f766e;
  --accent-strong: #0a625b;
  --accent-soft: #e3f3ef;
  --border: #d7e0dc;
  --border-strong: #b7c8c2;
  --success: #36c978;
  --shadow-large: 0 30px 80px rgba(15, 47, 40, .14);
  --shadow-card: 0 16px 44px rgba(15, 47, 40, .08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  color: var(--text);
  background: var(--page);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 0%, rgba(53, 181, 157, .17), transparent 390px),
    radial-gradient(circle at 88% 8%, rgba(15, 118, 110, .09), transparent 350px),
    linear-gradient(180deg, var(--page-soft) 0%, var(--page) 680px);
}
a { color: inherit; }
p { line-height: 1.68; }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 8px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 224, 220, .78);
  background: rgba(248, 251, 250, .86);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #d9fff6;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  box-shadow: 0 10px 22px rgba(15, 47, 40, .18);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.site-nav a:hover { color: var(--accent-strong); background: var(--accent-soft); }
.site-nav .nav-cta { border: 1px solid var(--border-strong); background: rgba(255, 255, 255, .74); }

.hero { padding: 88px 0 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .local-section h2, .audience-section h2, .availability-card h2 {
  margin: 0;
  color: var(--heading);
  letter-spacing: -.035em;
}
.hero h1 { max-width: 730px; font-size: clamp(44px, 5vw, 68px); line-height: 1.03; }
.hero-lede { max-width: 650px; margin: 24px 0 0; color: var(--muted-strong); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #10847a, var(--accent));
  box-shadow: 0 14px 28px rgba(15, 118, 110, .24);
}
.button-secondary { border: 1px solid var(--border-strong); background: rgba(255, 255, 255, .82); }
.hero-trust {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 750;
}
.hero-trust span { color: var(--accent); }

.product-preview {
  position: relative;
  border: 1px solid rgba(183, 200, 194, .8);
  border-radius: 26px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-large);
  overflow: hidden;
}
.product-preview::before {
  content: "";
  position: absolute;
  inset: -90px auto auto -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(61, 191, 164, .13);
  filter: blur(2px);
}
.preview-topbar {
  min-height: 62px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
}
.preview-topbar > div { display: flex; align-items: center; gap: 9px; }
.preview-topbar strong { font-size: 13px; }
.preview-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(54, 201, 120, .12); }
.local-pill, .status-pill {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.local-pill { color: #d9fff6; border: 1px solid rgba(217, 255, 246, .2); background: rgba(255, 255, 255, .06); }
.preview-body { min-height: 440px; display: grid; grid-template-columns: 90px 1fr; }
.preview-sidebar { padding: 24px 14px; border-right: 1px solid var(--border); background: var(--surface-soft); }
.sidebar-line { height: 9px; display: block; margin-bottom: 13px; border-radius: 999px; background: #cedad5; }
.sidebar-line.short { width: 65%; }
.sidebar-line.active { background: var(--accent); }
.preview-content { padding: 26px; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.preview-heading strong, .mini-label { display: block; }
.preview-heading strong { margin-top: 4px; color: var(--heading); font-size: 18px; }
.mini-label { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.status-pill { color: var(--accent-strong); background: var(--accent-soft); }
.metric-row { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row article { padding: 15px; border: 1px solid var(--border); border-radius: 14px; background: #fff; box-shadow: 0 8px 20px rgba(15, 47, 40, .05); }
.metric-row span, .metric-row strong { display: block; }
.metric-row span { color: var(--muted); font-size: 9px; font-weight: 800; }
.metric-row strong { margin-top: 7px; color: var(--heading); font-size: 23px; }
.route-card { margin-top: 14px; padding: 17px; border: 1px solid rgba(15, 118, 110, .18); border-radius: 16px; background: linear-gradient(135deg, #f8fffc, var(--accent-soft)); }
.route-card > strong { display: block; margin-top: 7px; color: var(--heading); font-size: 13px; line-height: 1.45; }
.route-steps { margin-top: 14px; display: flex; align-items: center; gap: 8px; color: var(--accent-strong); font-size: 9px; font-weight: 850; }
.route-steps span { padding: 6px 8px; border: 1px solid rgba(15, 118, 110, .18); border-radius: 999px; background: rgba(255, 255, 255, .76); }
.route-steps i { font-style: normal; }
.preview-table { margin-top: 18px; display: grid; grid-template-columns: 1.45fr .9fr .7fr; gap: 8px; }
.preview-table span { height: 10px; border-radius: 999px; background: #dce5e1; }
.preview-table span:nth-child(3n+1) { background: #cddbd6; }

.principle-strip { border-top: 1px solid rgba(215, 224, 220, .8); border-bottom: 1px solid rgba(215, 224, 220, .8); background: rgba(255, 255, 255, .62); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.principle-grid article { min-height: 138px; padding: 28px 28px; display: flex; gap: 18px; border-right: 1px solid var(--border); }
.principle-grid article:last-child { border-right: 0; }
.principle-number { color: var(--accent); font-size: 11px; font-weight: 900; }
.principle-grid strong { color: var(--heading); font-size: 14px; }
.principle-grid p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }

.section { padding: 96px 0; }
.section-soft { background: rgba(248, 251, 250, .72); }
.section-heading { max-width: 760px; }
.section-heading h2, .local-section h2, .audience-section h2, .availability-card h2 { font-size: clamp(34px, 4vw, 50px); line-height: 1.08; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 16px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .78fr; align-items: end; gap: 72px; }
.split-heading > p:last-child { margin: 0; }
.workflow-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.workflow-card { min-height: 250px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255, 255, 255, .9); box-shadow: var(--shadow-card); }
.workflow-card > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--brand); font-size: 13px; font-weight: 850; }
.workflow-card h3 { margin: 24px 0 0; color: var(--heading); font-size: 19px; }
.workflow-card p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.outputs-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.outputs-heading { position: sticky; top: 114px; }
.output-summary { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.output-summary span { padding: 9px 11px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted-strong); background: var(--surface-soft); font-size: 11px; }
.output-summary strong { color: var(--accent-strong); }
.output-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.output-card { min-height: 220px; padding: 25px; display: flex; gap: 18px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.output-card.feature-card { grid-column: 1 / -1; min-height: 190px; background: linear-gradient(135deg, #fff, #eef9f5); }
.card-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--accent); font-size: 13px; font-weight: 900; }
.output-card h3 { margin: 2px 0 0; color: var(--heading); font-size: 19px; }
.output-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.local-section { color: #e7f5f1; background: linear-gradient(145deg, var(--brand-deep), var(--brand)); }
.local-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; }
.eyebrow-light { color: #72d9c5; }
.local-section h2 { color: #fff; }
.local-section p { max-width: 720px; color: rgba(231, 245, 241, .76); }
.local-points { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.local-points span { padding: 11px 13px; border: 1px solid rgba(217, 255, 246, .14); border-radius: 12px; background: rgba(255, 255, 255, .05); font-size: 12px; font-weight: 750; }
.local-note { padding: 30px; border: 1px solid rgba(217, 255, 246, .18); border-radius: 22px; background: rgba(255, 255, 255, .06); box-shadow: 0 20px 50px rgba(0, 0, 0, .12); }
.note-kicker { display: block; color: #72d9c5; font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.local-note strong { display: block; margin-top: 10px; color: #fff; font-size: 22px; line-height: 1.35; }
.local-note p { margin-bottom: 0; font-size: 13px; }

.audience-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: start; }
.check-list { margin: 28px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.check-list li { padding: 13px 15px 13px 42px; position: relative; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .74); color: var(--muted-strong); font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 15px; color: var(--accent); font-weight: 900; }
.limits-card { padding: 34px; border: 1px solid rgba(154, 90, 18, .18); border-radius: 22px; background: #fffaf2; box-shadow: var(--shadow-card); }
.limits-card h3 { margin: 0; color: #633d11; font-size: 28px; }
.limits-card p { color: #695844; font-size: 14px; }

.availability-section { padding-top: 28px; }
.availability-card { padding: 44px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff, #edf8f4); box-shadow: var(--shadow-large); }
.availability-card p:last-child { color: var(--muted); }
.status-stack { display: grid; gap: 11px; }
.status-stack span { padding: 12px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .78); color: var(--muted-strong); font-size: 12px; font-weight: 750; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; }
.status-dot.ready { background: var(--success); box-shadow: 0 0 0 4px rgba(54, 201, 120, .12); }
.status-dot.building { background: #e4a03b; box-shadow: 0 0 0 4px rgba(228, 160, 59, .12); }

.site-footer { margin-top: 78px; padding: 34px 0; color: rgba(231, 245, 241, .78); background: var(--brand-deep); }
.footer-inner { display: flex; justify-content: space-between; gap: 36px; }
.footer-inner strong { color: #fff; }
.footer-inner p { margin: 5px 0 0; max-width: 640px; font-size: 11px; }

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta) { display: none; }
  .hero-grid, .outputs-grid, .local-grid, .audience-grid, .availability-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .product-preview { max-width: 720px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .outputs-heading { position: static; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { border-right: 0; border-bottom: 1px solid var(--border); }
  .principle-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 660px) {
  .shell { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .site-nav .nav-cta { padding: 8px 10px; font-size: 11px; }
  .hero { padding: 58px 0 52px; }
  .hero h1 { font-size: 42px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { display: grid; gap: 8px; }
  .preview-body { grid-template-columns: 58px 1fr; min-height: 390px; }
  .preview-content { padding: 18px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row article:nth-child(n+2) { display: none; }
  .route-steps i, .route-steps span:nth-of-type(n+3) { display: none; }
  .section { padding: 70px 0; }
  .section-heading h2, .local-section h2, .audience-section h2, .availability-card h2 { font-size: 34px; }
  .workflow-grid, .output-cards, .local-points { grid-template-columns: 1fr; }
  .output-card.feature-card { grid-column: auto; }
  .availability-card { padding: 28px; }
  .footer-inner { flex-direction: column; }
}
