:root {
  --bg: #f8efe2;
  --bg-2: #f3e7d4;
  --bg-3: #fbf4e9;
  --paper: #fffaf2;
  --paper-2: #fffdf8;
  --ink: oklch(0.22 0.02 40);
  --ink-2: oklch(0.4 0.02 40);
  --ink-3: oklch(0.55 0.02 40);
  --ink-4: oklch(0.68 0.02 40);
  --rule: oklch(0.9 0.012 60);
  --rule-soft: oklch(0.94 0.008 60);
  --accent: oklch(0.62 0.15 35);
  --accent-2: oklch(0.56 0.16 30);
  --accent-soft: oklch(0.95 0.04 35);
  --accent-ink: oklch(0.38 0.12 30);
  --good: oklch(0.55 0.13 145);
  --good-soft: oklch(0.95 0.05 145);
  --display: Georgia, 'Times New Roman', serif;
  --body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --deva: 'Noto Sans Devanagari', Georgia, serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ============================================================
     Topbar
  ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--bg) l c h / 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid oklch(0.22 0.02 40 / 0.05);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-mark .ribbon {
  fill: var(--accent);
}
.brand-mark .ink {
  fill: currentColor;
}
.brand-mark .arch {
  stroke: currentColor;
  fill: none;
}
.brand b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 36;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.12s;
}
.nav a:hover {
  color: var(--ink);
}
.topbar-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  font: 500 14px var(--body);
  transition: all 0.12s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn-ghost:hover {
  color: var(--ink);
  background: oklch(0.22 0.02 40 / 0.05);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: oklch(0.18 0.02 40);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--paper-2);
}
.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 14px 22px;
  font-size: 15.5px;
}
.btn-xl {
  padding: 17px 28px;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
     Section scaffolding — Apple-style generous rhythm
  ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 140px 0;
}
@media (max-width: 720px) {
  section {
    padding: 96px 0;
  }
}

/* Reusable type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.stripe {
  display: inline-flex;
  height: 4px;
  width: 32px;
  border-radius: 2px;
  overflow: hidden;
}
.stripe span {
  flex: 1;
}
.stripe span:nth-child(1) {
  background: #ff9933;
}
.stripe span:nth-child(2) {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px oklch(0.5 0.16 25 / 0.1);
}
.stripe span:nth-child(3) {
  background: #138808;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: 'opsz' 144;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.display .deva {
  font-family: var(--deva);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 24px 0 0;
  max-width: 32ch;
  text-wrap: balance;
}

/* ============================================================
     Hero
  ============================================================ */
.hero {
  padding: 88px 0 0;
  text-align: center;
}
.hero .eyebrow {
  justify-content: center;
  margin-bottom: 36px;
}
.hero h1 {
  font-size: clamp(56px, 10vw, 132px);
}
.hero .lead {
  font-size: 21px;
  max-width: 36ch;
  margin: 32px auto 0;
  color: var(--ink-2);
}
.hero-cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.link-arrow {
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
}
.link-arrow:hover {
  color: var(--accent-2);
}
.link-arrow::after {
  content: '→';
  transition: transform 0.15s;
}
.link-arrow:hover::after {
  transform: translateX(3px);
}

/* ---- Hero composition: floating UI cards ---- */
.hero-stage {
  position: relative;
  margin-top: 96px;
  height: 600px;
}
@media (max-width: 1024px) {
  .hero-stage {
    height: 520px;
    margin-top: 64px;
  }
}
@media (max-width: 720px) {
  .hero-stage {
    height: 420px;
    margin-top: 48px;
  }
}

.hs-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow:
    0 4px 12px oklch(0.22 0.02 40 / 0.04),
    0 20px 50px oklch(0.22 0.02 40 / 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.hs-card:hover {
  transform: translateY(-4px);
}

/* card 1: Calendar week (back, centered, biggest) */
.hs-cal {
  top: 0;
  left: 50%;
  width: 720px;
  height: 460px;
  transform: translateX(-50%) rotate(-1.5deg);
  padding: 22px;
}
.hs-cal:hover {
  transform: translateX(-50%) translateY(-4px) rotate(-1.5deg);
}

.hs-cal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.hs-cal-head h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}
.hs-cal-head .week {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hs-cal-grid {
  display: grid;
  grid-template-columns: 50px repeat(6, 1fr);
  gap: 1px;
  background: var(--rule-soft);
  border-radius: 10px;
  overflow: hidden;
}
.hs-cal-grid > div {
  background: var(--paper);
  padding: 8px 6px;
  min-height: 38px;
  font-size: 10.5px;
}
.hs-cal-grid .hour {
  font-family: var(--mono);
  color: var(--ink-4);
  font-size: 9.5px;
  text-align: right;
  padding-right: 8px;
}
.hs-cal-grid .day-head {
  background: var(--bg-3);
  text-align: center;
  font-weight: 600;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  padding-top: 9px;
  padding-bottom: 9px;
}
.hs-cal-grid .day-head .dnum {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.hs-cal-grid .day-head.today {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.hs-cal-grid .day-head.today .dnum {
  color: var(--accent);
}
.hs-evt {
  position: relative;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 6px;
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 600;
  margin: 1px;
  line-height: 1.2;
}
.hs-evt.green {
  background: var(--good-soft);
  color: oklch(0.32 0.1 145);
}
.hs-evt.blue {
  background: oklch(0.94 0.04 240);
  color: oklch(0.4 0.12 240);
}
.hs-evt.amber {
  background: oklch(0.95 0.06 75);
  color: oklch(0.4 0.1 75);
}

/* card 2: A5 fee receipt (left, leaning) */
.hs-receipt {
  top: 220px;
  left: 4%;
  width: 270px;
  height: 360px;
  transform: rotate(-6deg);
  padding: 0;
}
.hs-receipt:hover {
  transform: rotate(-6deg) translateY(-4px);
}
@media (max-width: 1024px) {
  .hs-receipt {
    left: -8%;
  }
}
@media (max-width: 720px) {
  .hs-receipt {
    display: none;
  }
}

.hs-rec-band {
  background: oklch(0.45 0.1 155);
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hs-rec-band .lmark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: white;
  color: oklch(0.45 0.1 155);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
}
.hs-rec-band .sname {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hs-rec-band .saff {
  font-family: var(--mono);
  font-size: 8.5px;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.hs-rec-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--rule-soft);
  border-top: 1px solid oklch(0.45 0.1 155);
}
.hs-rec-title b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: oklch(0.45 0.1 155);
}
.hs-rec-title .num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
}
.hs-rec-body {
  padding: 12px 16px;
}
.hs-rec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
}
.hs-rec-row b {
  color: var(--ink);
  font-weight: 600;
}
.hs-rec-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px dashed var(--rule);
  margin-top: 6px;
}
.hs-rec-total .lbl {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.hs-rec-total .amt {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: oklch(0.45 0.1 155);
  letter-spacing: -0.01em;
}
.hs-rec-words {
  font-style: italic;
  font-size: 10px;
  color: var(--ink-3);
  padding: 0 16px 12px;
  line-height: 1.4;
}

/* card 3: Parent phone (right, leaning) */
.hs-phone {
  top: 110px;
  right: 4%;
  width: 240px;
  height: 480px;
  border-radius: 36px;
  transform: rotate(5deg);
  padding: 0;
  background: var(--ink);
  border: 1px solid oklch(0.18 0.02 40);
}
.hs-phone:hover {
  transform: rotate(5deg) translateY(-4px);
}
@media (max-width: 1024px) {
  .hs-phone {
    right: -6%;
  }
}
@media (max-width: 720px) {
  .hs-phone {
    display: none;
  }
}

.hs-phone-screen {
  margin: 10px;
  background: var(--paper);
  border-radius: 28px;
  height: calc(100% - 20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hs-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  font-weight: 600;
}
.hs-phone-notch {
  width: 60px;
  height: 14px;
  background: var(--ink);
  border-radius: 0 0 9px 9px;
  margin: 0 auto;
}
.hs-phone-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hs-hero-card {
  background: linear-gradient(135deg, oklch(0.93 0.07 145) 0%, oklch(0.88 0.1 145) 100%);
  border-radius: 14px;
  padding: 14px;
}
.hs-hero-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(0.32 0.1 145);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hs-hero-card .badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: oklch(0.55 0.13 145);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.hs-hero-card .headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: oklch(0.28 0.1 145);
  margin: 8px 0 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hs-hero-card .sub {
  font-size: 10px;
  color: oklch(0.4 0.06 145);
  line-height: 1.35;
}
.hs-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hs-tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
}
.hs-tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink-4);
  flex-shrink: 0;
}
.hs-tl-dot.done {
  background: var(--good);
}
.hs-tl-dot.live {
  background: var(--good);
  box-shadow: 0 0 0 3px oklch(0.55 0.13 145 / 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.hs-tl-item span {
  color: var(--ink-2);
}
.hs-tl-item.live span {
  color: var(--ink);
  font-weight: 600;
}
.hs-tl-time {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-4);
  margin-left: auto;
}

/* ============================================================
     Brand line — Made in India strip
  ============================================================ */
.brand-line {
  padding: 64px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.brand-line .stripe {
  width: 40px;
}
.brand-line .sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-4);
}

/* ============================================================
     Story section — alternating
  ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .story.alt .story-visual {
    order: -1;
  }
}
.story h2 {
  font-size: clamp(40px, 6vw, 76px);
}
.story p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 28px 0 0;
  max-width: 36ch;
}
.story .eyebrow {
  margin-bottom: 24px;
}
.story-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.story-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
     Section 2 visual — role tiles in a pile
  ============================================================ */
.role-stack {
  position: relative;
  width: 100%;
  height: 500px;
}
.role-tile {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 2px 8px oklch(0.22 0.02 40 / 0.04),
    0 12px 32px oklch(0.22 0.02 40 / 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  cursor: default;
}
.role-tile:hover {
  transform: translateY(-3px) rotate(0deg) !important;
}
.role-tile .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.role-tile b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24;
}
.role-tile small {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.role-tile:nth-child(1) {
  top: 0;
  left: 0;
  width: 200px;
  transform: rotate(-3deg);
}
.role-tile:nth-child(2) {
  top: 30px;
  left: 220px;
  width: 210px;
  transform: rotate(2deg);
}
.role-tile:nth-child(3) {
  top: 180px;
  left: 50px;
  width: 200px;
  transform: rotate(1deg);
}
.role-tile:nth-child(4) {
  top: 200px;
  left: 260px;
  width: 200px;
  transform: rotate(-2deg);
}
.role-tile:nth-child(5) {
  top: 360px;
  left: 10px;
  width: 200px;
  transform: rotate(-1deg);
}
.role-tile:nth-child(6) {
  top: 360px;
  left: 220px;
  width: 210px;
  transform: rotate(3deg);
}

/* ============================================================
     Big quote section — Apple-style headline only
  ============================================================ */
.quote-block {
  padding: 180px 0;
  text-align: center;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    oklch(0.95 0.04 35 / 0.5) 0%,
    transparent 60%
  );
}
.quote-block h2 {
  font-size: clamp(48px, 8vw, 110px);
}
.quote-block .lead {
  font-size: 20px;
  max-width: 40ch;
  margin: 36px auto 0;
}

/* ============================================================
     Receipt section — India ₹
  ============================================================ */
.receipt-section {
  background: var(--bg-2);
}
.receipt-section .india-callout {
  text-align: center;
  margin-bottom: 80px;
}
.receipt-section .india-callout h2 {
  font-size: clamp(44px, 7vw, 88px);
  margin: 24px auto 0;
  max-width: 14ch;
}
.receipt-section .india-callout .lead {
  margin: 32px auto 0;
  font-size: 19px;
  max-width: 38ch;
}

.receipt-display {
  max-width: 480px;
  margin: 64px auto 0;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--rule);
  box-shadow: 0 20px 60px oklch(0.22 0.02 40 / 0.12);
  overflow: hidden;
}
.receipt-display .rd-band {
  background: oklch(0.45 0.1 155);
  color: white;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.receipt-display .rd-lmark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: white;
  color: oklch(0.45 0.1 155);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
}
.receipt-display .rd-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.receipt-display .rd-aff {
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.receipt-display .rd-stripe {
  display: flex;
  height: 4px;
  margin-left: auto;
  width: 30px;
}
.receipt-display .rd-stripe span {
  flex: 1;
}
.receipt-display .rd-stripe span:nth-child(1) {
  background: #ff9933;
}
.receipt-display .rd-stripe span:nth-child(2) {
  background: white;
}
.receipt-display .rd-stripe span:nth-child(3) {
  background: #138808;
}
.receipt-display .rd-title {
  padding: 14px 26px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.receipt-display .rd-title b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.45 0.1 155);
}
.receipt-display .rd-title .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
}
.receipt-display .rd-body {
  padding: 22px 26px;
}
.receipt-display .rd-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 8px 0;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--ink-2);
}
.receipt-display .rd-row b {
  color: var(--ink);
  font-weight: 600;
}
.receipt-display .rd-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.receipt-display .rd-total .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.receipt-display .rd-total .amt {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  color: oklch(0.45 0.1 155);
  letter-spacing: -0.015em;
  line-height: 1;
}
.receipt-display .rd-words {
  padding: 0 26px 18px;
  font-style: italic;
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.4;
}
.receipt-display .rd-deva {
  font-family: var(--deva);
  font-style: normal;
}
.receipt-display .rd-foot {
  padding: 14px 26px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}

/* ============================================================
     Parent calm section — phone mockup
  ============================================================ */
.calm {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, oklch(0.95 0.05 145 / 0.4) 0%, transparent 60%),
    var(--bg);
}
.calm .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .calm .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.calm h2 {
  font-size: clamp(40px, 6vw, 80px);
}
.calm .phone-frame {
  margin: 0 auto;
  width: 320px;
  height: 660px;
  background: var(--ink);
  border-radius: 48px;
  padding: 14px;
  box-shadow:
    0 30px 80px oklch(0.22 0.02 40 / 0.18),
    0 0 0 1px oklch(0.18 0.02 40);
}
.calm .phone-screen {
  background: var(--paper);
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.calm .phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}
.calm .phone-body {
  padding: 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calm .calm-hero {
  background: linear-gradient(135deg, oklch(0.93 0.07 145) 0%, oklch(0.85 0.1 145) 100%);
  border-radius: 18px;
  padding: 18px;
}
.calm .calm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: oklch(0.32 0.1 145);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.calm .calm-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: oklch(0.55 0.13 145);
  animation: pulse 2s ease-in-out infinite;
}
.calm .calm-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: oklch(0.26 0.1 145);
  margin: 12px 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.calm .calm-sub {
  font-size: 12px;
  color: oklch(0.4 0.06 145);
  line-height: 1.4;
}
.calm .calm-tl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 4px;
}
.calm .calm-tl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.calm .calm-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink-4);
  flex-shrink: 0;
}
.calm .calm-tl-dot.done {
  background: var(--good);
}
.calm .calm-tl-dot.live {
  background: var(--good);
  box-shadow: 0 0 0 4px oklch(0.55 0.13 145 / 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.calm .calm-tl-item span {
  color: var(--ink-2);
}
.calm .calm-tl-item.live span {
  color: var(--ink);
  font-weight: 600;
}
.calm .calm-tl-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-4);
  margin-left: auto;
}

/* ============================================================
     Pricing teaser (minimal, Apple-style)
  ============================================================ */
.pricing-tease {
  text-align: center;
  background: var(--paper);
}
.pricing-tease h2 {
  font-size: clamp(40px, 6vw, 80px);
}
.pricing-tease .lead {
  margin: 28px auto 0;
  max-width: 38ch;
}
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .price-row {
    grid-template-columns: 1fr;
  }
  .price-row > div + div {
    border-top: 1px solid var(--rule);
    border-left: none !important;
  }
}
.price-col {
  padding: 56px 32px;
  text-align: left;
  border-left: 1px solid var(--rule);
}
.price-col:first-child {
  border-left: none;
}
.price-col.featured {
  background: var(--bg-3);
  position: relative;
}
.price-col.featured::before {
  content: 'Most popular';
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
}
.price-col .plan-name {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-weight: 600;
}
.price-col .plan-price {
  margin: 24px 0 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-col .plan-price .amt {
  font-family: var(--display);
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variation-settings: 'opsz' 96;
}
.price-col .plan-price .unit {
  font-size: 14px;
  color: var(--ink-3);
  margin-left: 4px;
}
.price-col .plan-tag {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 22ch;
}
.price-col .plan-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--accent);
  font-size: 15px;
}
.price-col .plan-cta::after {
  content: '→';
  transition: transform 0.15s;
}
.price-col:hover .plan-cta::after {
  transform: translateX(3px);
}

/* ============================================================
     Big CTA
  ============================================================ */
.cta {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: 160px 0;
}
.cta h2 {
  font-size: clamp(48px, 8vw, 100px);
  color: var(--bg);
  margin: 0 0 24px;
}
.cta h2 em {
  color: oklch(0.78 0.16 70);
}
.cta .lead {
  color: oklch(from var(--bg) l c h / 0.7);
  margin: 0 auto 48px;
  max-width: 38ch;
  font-size: 19px;
}
.cta .cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cta .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.cta .btn-primary:hover {
  background: var(--paper);
}
.cta .btn-ghost {
  color: oklch(from var(--bg) l c h / 0.7);
}
.cta .btn-ghost:hover {
  color: var(--bg);
  background: oklch(from var(--bg) l c h / 0.08);
}
.cta-fine {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 11px;
  color: oklch(from var(--bg) l c h / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
     Footer — minimal
  ============================================================ */
.footer {
  background: var(--bg-2);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--ink-3);
  max-width: 30ch;
  margin: 8px 0 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-foot {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* Subtle scroll-fade for sections */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.brand-byline {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}

.contact-pending {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 8px;
}
