/* ─────────────────────────────────────────────────────────────────
   1gigE · Founder Preview
   Worker-first. Cinematic. Honest.
   ───────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Noto+Sans+Gujarati:wght@400;500;600;700;800&display=swap');

:root {
  --paper:       #FAF7F1;
  --paper-warm:  #F4EDDF;
  --paper-deep:  #EADFC8;
  --paper-edge:  #E5D9BC;

  --sun:         #E87B1E;
  --sun-light:   #F5A93C;
  --sun-soft:    #F8C681;
  --sun-deep:    #C2641A;

  --teal:        #1F5266;
  --teal-deep:   #143844;
  --teal-night:  #0C232C;
  --teal-soft:   rgba(31, 82, 102, 0.08);

  /* Civic register — soft leaf green, evokes the tricolor without being literal */
  --leaf:        #2D6A4F;
  --leaf-deep:   #1B4332;
  --leaf-light:  #6E9A7C;
  --leaf-soft:   rgba(45, 106, 79, 0.10);

  --ink-1000:    #0E1B22;
  --ink-900:     #1A2A33;
  --ink-800:     #2A3D47;
  --ink-700:     #3F5560;
  --ink-500:     #6E8088;
  --ink-400:     #8C9AA1;
  --ink-300:     #B6C0C5;
  --ink-200:     #D9DEE1;
  --ink-100:     #ECEFF1;
  --ink-50:      #F6F8F9;

  --display: "Plus Jakarta Sans", "Noto Sans Devanagari", "Noto Sans Gujarati", system-ui, sans-serif;
  --body:    "Inter", "Noto Sans Devanagari", "Noto Sans Gujarati", system-ui, sans-serif;
  --serif:   "Cormorant Garamond", "Noto Sans Devanagari", "Noto Sans Gujarati", Georgia, serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

::selection { background: var(--sun); color: var(--paper); }

img, svg { display: block; max-width: 100%; }

/* ─── Reveal animation ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }
.reveal[data-delay="8"] { transition-delay: 0.64s; }

/* ─── Layout ─────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 768px) {
  .wrap { padding: 0 48px; }
}
.section {
  position: relative;
  padding: 120px 0;
}
@media (min-width: 768px) {
  .section { padding: 160px 0; }
}
.section--tight { padding: 80px 0; }
.section--tone {
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  position: relative;
}
.section--civic {
  position: relative;
  background:
    radial-gradient(1100px 600px at 90% 0%, rgba(245, 169, 60, 0.14) 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(45, 106, 79, 0.08) 0%, transparent 60%),
    var(--paper);
}
.section--deep {
  background: var(--teal-deep);
  color: var(--paper);
}
.section--night {
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-night) 100%);
  color: var(--paper);
}

/* ─── Type ───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid var(--ink-100);
}
.eyebrow.on-dark {
  color: var(--sun-light);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--sun);
}
.eyebrow.on-dark .dot { background: var(--sun-light); }

.headline {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: var(--ink-1000);
  margin: 0;
}
.headline--xl  { font-size: clamp(46px, 7.4vw, 96px); }
.headline--lg  { font-size: clamp(36px, 5.6vw, 64px); }
.headline--md  { font-size: clamp(30px, 4.4vw, 48px); }
.section--deep .headline,
.section--night .headline { color: var(--paper); }

.headline .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.h-teal  { color: var(--teal); }
.h-sun   { color: var(--sun); }
.h-paper { color: var(--paper); }
.h-sunlight { color: var(--sun-light); }

.lead {
  font-family: var(--body);
  color: var(--ink-700);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 560px;
}
.section--deep .lead,
.section--night .lead { color: rgba(250, 247, 241, 0.84); }

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink-900);
}
.section--deep .quote { color: var(--paper); }

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.section--deep .label,
.section--night .label { color: rgba(250, 247, 241, 0.6); }

.divider-rule {
  height: 1px;
  background: var(--ink-100);
  border: 0;
  margin: 32px 0;
}
.section--deep .divider-rule { background: rgba(255,255,255,0.12); }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
}
.btn--sun {
  background: var(--sun);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(232, 123, 30, 0.28);
}
.btn--sun:hover {
  background: var(--sun-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(232, 123, 30, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--ghost:hover {
  background: var(--teal);
  color: var(--paper);
}
.btn--ghost-paper {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250,247,241,0.4);
}
.btn--ghost-paper:hover {
  background: rgba(250,247,241,0.1);
  border-color: var(--paper);
}
.btn--text {
  background: transparent;
  color: var(--ink-700);
  border: 0;
  padding: 12px 6px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--ink-300);
}
.btn--text:hover {
  color: var(--sun);
  text-decoration-color: var(--sun);
}
.arrow-r {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .arrow-r { transform: translateX(3px); }

/* ─── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: 22px;
  padding: 28px;
}
.card--warm { background: var(--paper-warm); }
.card--teal {
  background: var(--teal);
  color: var(--paper);
  border-color: transparent;
}
.card--ink {
  background: var(--ink-1000);
  color: var(--paper);
  border-color: transparent;
}

/* ─── Pulse dot ──────────────────────────────────────────────────── */
.pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--sun);
  position: relative;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid var(--sun);
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ─── Lang switcher ──────────────────────────────────────────────── */
.lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 18px rgba(14, 27, 34, 0.06);
}
.lang-switch button {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  transition: all 0.2s var(--ease-out);
}
.lang-switch button:hover { color: var(--teal); }
.lang-switch button.active {
  background: var(--teal);
  color: var(--paper);
}

/* ─── Hero specifics ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 110px 0 80px;
  overflow: hidden;
  background: var(--paper);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Soft civic tricolor wash — saffron, paper white, leaf green — never literal */
  background:
    radial-gradient(720px 620px at 82% 18%, rgba(245, 169, 60, 0.22) 0%, transparent 60%),
    radial-gradient(680px 560px at 6% 88%, rgba(45, 106, 79, 0.13) 0%, transparent 60%),
    radial-gradient(900px 700px at 50% 50%, rgba(250, 247, 241, 0.4) 0%, transparent 70%);
}
.hero__horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42vh;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(232, 123, 30, 0.04) 50%,
      rgba(232, 123, 30, 0.08) 80%,
      rgba(45, 106, 79, 0.05) 100%);
}
/* Subtle tricolor ribbon — only visible as a 1-px hairline at the very bottom of hero */
.hero__ribbon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg,
    var(--sun) 0%, var(--sun) 33%,
    var(--paper-deep) 33%, var(--paper-deep) 67%,
    var(--leaf) 67%, var(--leaf) 100%);
  opacity: 0.5;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
  }
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__brand .pill {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 11px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  border-radius: 999px;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__meta {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--ink-100);
  max-width: 520px;
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.6;
}
.hero__meta .corp {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  text-transform: uppercase;
}

.hero__poem {
  margin-top: 56px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
  color: var(--ink-700);
  max-width: 560px;
}
.hero__poem em {
  font-style: normal;
  color: var(--sun);
}

.hero__mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__mark .halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,169,60,0.25) 0%, rgba(245,169,60,0) 65%);
  filter: blur(8px);
}

/* Wordmark */
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}
.wordmark .one {
  color: var(--sun);
  font-style: italic;
  font-weight: 700;
}
.wordmark .gigE {
  color: var(--teal);
  font-style: italic;
  font-weight: 600;
}
.wordmark--sm { font-size: 22px; }
.wordmark--md { font-size: 30px; }
.wordmark--lg { font-size: 48px; }
.wordmark--xl { font-size: clamp(64px, 8vw, 108px); }
.wordmark.on-dark .gigE { color: var(--paper); }

/* ─── Multilingual marquee strip ─────────────────────────────────── */
.lang-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-500);
}
.lang-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lang-strip span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--sun);
}

/* ─── Story / why trapped ────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 800px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); }
}
.story-card {
  padding: 32px;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--ink-100);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out);
}
.story-card:hover {
  transform: translateY(-3px);
  border-color: var(--paper-edge);
}
.story-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  color: var(--sun);
  line-height: 1;
}
.story-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--ink-1000);
  margin: 18px 0 12px;
}
.story-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}
.story-card .illus {
  margin-top: 22px;
  margin-bottom: -6px;
  height: 92px;
  border-radius: 14px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* ─── Vignette (Mumbai morning) ──────────────────────────────────── */
.vignette {
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-night) 60%, var(--teal-deep) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.vignette__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 520px at 78% 18%, rgba(245,169,60,0.32) 0%, transparent 60%),
    radial-gradient(900px 600px at 10% 100%, rgba(31,82,102,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.vignette__skyline {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 180px;
  pointer-events: none;
  opacity: 0.5;
}
.vignette__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .vignette__grid { grid-template-columns: 1.1fr 1fr; }
}
.vignette__lines {
  display: grid;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.5;
  color: rgba(250,247,241,0.94);
  max-width: 540px;
}
.vignette__lines .accent { color: var(--sun-light); font-style: normal; font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; }

.vignette__time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun-light);
}

/* ─── Phone preview ──────────────────────────────────────────────── */
.phone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}
@media (min-width: 900px) {
  .phone-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
  }
}
.phone {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  background: var(--ink-1000);
  border-radius: 42px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(14, 27, 34, 0.45),
    0 16px 36px -16px rgba(14, 27, 34, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: var(--ink-1000);
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone__statusbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-900);
}
.phone__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.phone-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.phone-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink-200);
  transition: all 0.3s var(--ease-out);
}
.phone-step-dot.active {
  background: var(--sun);
  width: 26px;
  border-radius: 999px;
}
.phone-step-dot.done {
  background: var(--teal);
}

.phone-stepper {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.phone-stepper button {
  appearance: none;
  border: 1.5px solid var(--ink-100);
  background: var(--paper);
  color: var(--ink-700);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.phone-stepper button:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
}
.phone-stepper button.primary {
  background: var(--sun);
  color: var(--paper);
  border-color: transparent;
}
.phone-stepper button.primary:hover:not(:disabled) {
  background: var(--sun-deep);
  border-color: transparent;
  color: var(--paper);
}
.phone-stepper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ─── Transparency / fare ────────────────────────────────────────── */
.fare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 56px;
}
@media (min-width: 900px) {
  .fare-grid { grid-template-columns: 1.35fr 1fr; }
}
.fare-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: 24px;
  padding: 36px;
}
.fare-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink-1000);
}
.fare-amount .decimals {
  color: var(--ink-300);
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.fare-bar {
  margin-top: 30px;
  height: 14px;
  border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
  display: flex;
}
.fare-bar > span {
  display: block;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out);
}
.in .fare-bar > span { transform: scaleX(1); }
.fare-bar > span:nth-child(1) { background: var(--sun); transition-delay: 0.15s; }
.fare-bar > span:nth-child(2) { background: var(--teal); transition-delay: 0.45s; }
.fare-bar > span:nth-child(3) { background: var(--sun-light); transition-delay: 0.75s; }

.fare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dashed var(--ink-100);
}
.fare-row:first-of-type { border-top: 0; }
.fare-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fare-row .dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.fare-row .label-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
}
.fare-row .label-name.lead {
  font-weight: 800;
  color: var(--ink-1000);
  font-size: 15.5px;
}
.fare-row .right {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.fare-row .pct {
  font-size: 11.5px;
  color: var(--ink-500);
}
.fare-row .amt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
}
.fare-row.lead .amt {
  font-size: 19px;
  color: var(--sun);
  font-weight: 800;
}

.fare-aside {
  position: relative;
  border-radius: 24px;
  padding: 36px;
  background:
    linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--paper);
  overflow: hidden;
}
.fare-aside::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(245,169,60,0.22);
  filter: blur(28px);
}

/* ─── Map ────────────────────────────────────────────────────────── */
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .map-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; }
}
.map-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(800px 600px at 30% 30%, rgba(31,82,102,0.65) 0%, transparent 60%),
    var(--teal-night);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-frame__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-light);
  background: rgba(245,169,60,0.12);
  border: 1px solid rgba(245,169,60,0.32);
  padding: 6px 11px;
  border-radius: 999px;
}
.map-frame__legend {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(250,247,241,0.55);
  text-transform: uppercase;
}

/* ─── Karmik list ─────────────────────────────────────────────────── */
.karmik-list {
  display: grid;
  gap: 14px;
}
.karmik-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--ink-100);
}
.karmik-row .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(232,123,30,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--sun);
}
.karmik-row h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--ink-1000);
  margin: 0 0 6px;
}
.karmik-row p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

/* ─── Interest CTA ───────────────────────────────────────────────── */
.invite {
  position: relative;
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 65%, var(--teal-night) 100%);
  color: var(--paper);
  overflow: hidden;
}
.invite::before, .invite::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.invite::before {
  top: -120px; right: -100px;
  background: rgba(245,169,60,0.22);
}
.invite::after {
  bottom: -120px; left: -100px;
  background: rgba(31,82,102,0.45);
}
.invite__grid {
  position: relative;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .invite__grid { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.invite__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper);
  color: var(--teal);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out);
}
.invite__cta:hover { transform: translateY(-2px); }
.invite__cta .channel {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.invite__cta .addr {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--teal-deep);
  letter-spacing: -0.012em;
}
.invite__cta .go {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--sun);
  display: inline-flex; align-items: center; gap: 6px;
}

.sms-note {
  margin-top: 22px;
  padding: 18px 22px;
  background: rgba(250,247,241,0.06);
  border: 1px solid rgba(250,247,241,0.12);
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,247,241,0.78);
}
.sms-note .tag {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10px;
  color: var(--sun-light);
  letter-spacing: 0.18em;
  white-space: nowrap;
  padding-top: 1px;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 60px;
  background: var(--teal-night);
  color: rgba(250,247,241,0.78);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer__col h5 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun-light);
  margin: 0 0 16px;
}
.footer__col ul {
  margin: 0; padding: 0; list-style: none;
  font-size: 13.5px;
  line-height: 1.9;
}
.footer__col a {
  color: rgba(250,247,241,0.84);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
.footer__col a:hover { color: var(--sun-light); }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,247,241,0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(250,247,241,0.55);
}
@media (min-width: 700px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ─── Integrity strip (slim, top of footer) ─────────────────────── */
.integrity {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
  padding: 22px 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-700);
}
.integrity .wrap { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: center; text-align: center; }
.integrity .tag {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun-deep);
}
.integrity .sep { color: var(--ink-300); }

/* ─── Tiny helpers ───────────────────────────────────────────────── */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 1fr 1.4fr; gap: 88px; }
}
.muted { color: var(--ink-500); }
.italic-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.tab-num { font-variant-numeric: tabular-nums; }

/* ─── Founder note ───────────────────────────────────────────────── */
.founder-note {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 26px;
  padding: clamp(36px, 4vw, 56px);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 14px 40px -22px rgba(14,27,34,0.18);
}
.founder-note__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(500px 320px at 90% 0%, rgba(245,169,60,0.12) 0%, transparent 60%),
    radial-gradient(600px 360px at 0% 100%, rgba(31,82,102,0.06) 0%, transparent 60%);
}
.founder-note__body {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  color: var(--ink-900);
  max-width: 720px;
}
.founder-note__body p { margin: 0 0 18px; }
.founder-note__body p:last-child { margin-bottom: 0; }
.founder-note__body em { font-style: italic; color: var(--sun); font-weight: 600; }
.founder-note__sig {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

/* ─── SVG decorative rays inside hero ────────────────────────────── */
@keyframes drift-up {
  0% { transform: translateY(8px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-32px); opacity: 0; }
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--sun-light);
  opacity: 0;
  animation: drift-up 6s var(--ease-out) infinite;
}
