/* ═══════════════════════════════════════════════════════
   StepOz Design System V2
   Australia-wide · Life-completion agent · Family-trusted
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:          #0d3553;
  --navy-mid:      #1a5276;
  --navy-light:    rgba(13, 53, 83, 0.08);
  --orange:        #f4762a;
  --orange-deep:   #dc5e16;
  --orange-tint:   rgba(244, 118, 42, 0.09);
  --green:         #2a7b5c;
  --green-tint:    rgba(42, 123, 92, 0.08);
  --green-border:  rgba(42, 123, 92, 0.18);

  /* Backgrounds */
  --bg-page:       #f9f4ed;
  --bg-warm:       #fffcf8;
  --bg-card:       #ffffff;
  --bg-card-alt:   #faf7f3;

  /* Text */
  --text:          #1a1614;
  --text-mid:      #5a4f47;
  --text-light:    #9e8f87;

  /* Borders */
  --border:        rgba(13, 53, 83, 0.09);
  --border-warm:   rgba(180, 155, 130, 0.22);

  /* Typography */
  --serif:         "Playfair Display", "Iowan Old Style", Georgia, "Songti SC", serif;
  --sans:          "Inter", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  --mono:          "SF Mono", "Fira Code", monospace;

  /* Shadows — layered from light to heavy */
  --sh-1:  0 1px 4px rgba(13,40,70,0.04), 0 2px 10px rgba(13,40,70,0.04);
  --sh-2:  0 4px 16px rgba(13,40,70,0.06), 0 8px 32px rgba(13,40,70,0.05);
  --sh-3:  0 12px 40px rgba(13,40,70,0.09), 0 24px 64px rgba(13,40,70,0.07);
  --sh-4:  0 28px 80px rgba(13,40,70,0.13), 0 8px 24px rgba(13,40,70,0.07);
  --sh-phone: 0 40px 100px rgba(8,24,48,0.22), 0 8px 24px rgba(8,24,48,0.12);

  /* Radii */
  --r-xs:  8px;
  --r-sm:  14px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
  --r-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 140ms var(--ease);
  --t-base: 220ms var(--ease);
  --t-slow: 380ms var(--ease);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }


/* ══════════════════════════════════════════════════════
   PAGE SHELL
   ══════════════════════════════════════════════════════ */
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(12px, 2.5vw, 28px) clamp(12px, 2.5vw, 28px) 80px;
  display: grid;
  gap: clamp(12px, 2vw, 20px);
}

/* Shared panel shell */
.hero, .section {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}


/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 108% -5%, rgba(244, 118, 42, 0.24) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at -5% 105%, rgba(42, 123, 92, 0.09) 0%, transparent 100%),
    linear-gradient(152deg, #0a2d48 0%, #0d3553 44%, #0e3a5e 100%);
  color: var(--bg-warm);
  padding: clamp(22px, 3vw, 38px) clamp(20px, 3.5vw, 48px) clamp(32px, 5vw, 56px);
  box-shadow: var(--sh-4);
}

/* — Topbar — */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 60px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-copy { display: grid; gap: 2px; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bg-warm);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.78rem;
  color: rgba(255, 240, 218, 0.55);
  letter-spacing: 0.01em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.topnav a {
  padding: 6px 12px;
  border-radius: var(--r-xs);
  font-size: 0.83rem;
  color: rgba(255, 242, 222, 0.52);
  transition: color var(--t-fast), background var(--t-fast);
}

.topnav a:hover {
  color: rgba(255, 248, 236, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.topnav a.nav-cta {
  margin-left: 6px;
  padding: 7px 17px;
  border-radius: var(--r-full);
  background: rgba(244, 118, 42, 0.16);
  border: 1px solid rgba(244, 118, 42, 0.26);
  color: #f6c9a8;
  font-weight: 600;
}

.topnav a.nav-cta:hover {
  background: rgba(244, 118, 42, 0.26);
  color: #ffdcb5;
}

/* — Hero body — */
.hero-body {
  margin-top: clamp(40px, 6vw, 68px);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy { display: grid; gap: 18px; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 201, 168, 0.9);
  font-weight: 600;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fffaf3;
}

.hero-h1 span { display: block; }

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  color: rgba(255, 248, 236, 0.86);
  max-width: 560px;
}

.hero-support {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 242, 222, 0.54);
  max-width: 50ch;
}

/* CTAs */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}

.btn-primary {
  background: var(--orange);
  color: #fff8f0;
  box-shadow: 0 12px 32px rgba(244, 118, 42, 0.32);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(244, 118, 42, 0.38);
}

.btn-ghost {
  border: 1px solid rgba(255, 242, 222, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 248, 236, 0.9);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

/* Category chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 246, 229, 0.13);
  color: rgba(255, 244, 222, 0.76);
}

/* — Hero demo — */
.hero-demo {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}

/* Step navigator */
.demo-nav {
  display: grid;
  gap: 0;
}

.demo-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  cursor: pointer;
  opacity: 0.36;
  transition: opacity var(--t-base);
  position: relative;
}

.demo-nav-item.active { opacity: 1; }

.demo-nav-item::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 33px;
  bottom: -9px;
  width: 1px;
  background: rgba(255, 240, 210, 0.14);
}

.demo-nav-item:last-child::after { display: none; }

.nav-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 240, 210, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 240, 210, 0.45);
  flex-shrink: 0;
  transition: all var(--t-base);
}

.demo-nav-item.active .nav-dot {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.nav-label {
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(255, 240, 210, 0.62);
  padding-top: 4px;
  max-width: 72px;
}

.demo-nav-item.active .nav-label { color: rgba(255, 248, 236, 0.94); }

/* — Phone shell — */
.phone-shell {
  width: 262px;
  border-radius: 46px;
  background: linear-gradient(155deg, #1c1c1e 0%, #2a2a2c 100%);
  padding: 11px;
  box-shadow: var(--sh-phone), inset 0 0 0 1px rgba(255,255,255,0.055);
  flex-shrink: 0;
}

.phone-inner {
  border-radius: 37px;
  background: var(--bg-warm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 536px;
}

/* Status bar */
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 5px;
  flex-shrink: 0;
}

.phone-time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.phone-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sig-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.sig-bars span {
  width: 3px;
  background: var(--text);
  border-radius: 1px;
}

.sig-bars span:nth-child(1) { height: 30%; }
.sig-bars span:nth-child(2) { height: 55%; }
.sig-bars span:nth-child(3) { height: 78%; }
.sig-bars span:nth-child(4) { height: 100%; }

.batt {
  width: 21px;
  height: 11px;
  border: 1.5px solid var(--text);
  border-radius: 2.5px;
  position: relative;
}
.batt::before {
  content: '';
  position: absolute;
  right: -4.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  background: var(--text);
  border-radius: 0 1px 1px 0;
}
.batt::after {
  content: '';
  position: absolute;
  inset: 2px;
  right: 3px;
  background: var(--text);
  border-radius: 1px;
}

/* Phone progress bar */
.phone-progress {
  height: 2px;
  background: rgba(13,53,83,0.06);
  flex-shrink: 0;
}

.phone-progress-bar {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 4.5s linear;
}

/* Phone app header */
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 18px 9px;
  border-bottom: 1px solid rgba(13,53,83,0.065);
  flex-shrink: 0;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.phone-brand-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.phone-task-pill {
  font-size: 0.67rem;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--orange-tint);
  color: var(--orange-deep);
  font-weight: 600;
}

/* Demo screens */
.phone-msgs {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.demo-screen {
  position: absolute;
  inset: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
  pointer-events: none;
}

.demo-screen.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bubbles */
.bbl {
  max-width: 87%;
  padding: 9px 13px;
  border-radius: 17px;
  font-size: 0.81rem;
  line-height: 1.58;
}

.bbl-user {
  background: var(--navy);
  color: #fff9f1;
  align-self: flex-end;
  border-radius: 17px 17px 3px 17px;
}

.bbl-ai {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(13,53,83,0.08);
  border-radius: 3px 17px 17px 17px;
  align-self: flex-start;
  box-shadow: 0 1px 4px rgba(13,53,83,0.05);
}

/* Info card inside phone */
.p-card {
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(13,53,83,0.08);
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  box-shadow: 0 1px 4px rgba(13,53,83,0.05);
}

.p-card-name  { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.p-card-detail{ font-size: 0.71rem; color: var(--text-mid); line-height: 1.45; }
.p-card-tag   { font-size: 0.66rem; color: var(--green); font-weight: 600; margin-top: 2px; }

/* Quick reply chips */
.p-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1px; }

.p-chip {
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.71rem;
  border: 1px solid rgba(13,53,83,0.14);
  background: rgba(255,255,255,0.88);
  color: var(--navy);
}

.p-chip.cta {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.p-chip.done {
  background: var(--green-tint);
  border-color: var(--green-border);
  color: var(--green);
}

/* Phone input bar */
.phone-input {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px 7px;
  border-top: 1px solid rgba(13,53,83,0.065);
  flex-shrink: 0;
}

.phone-input-field {
  flex: 1;
  background: rgba(13,53,83,0.05);
  border-radius: var(--r-full);
  padding: 7px 13px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.phone-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon-btn.cam { background: rgba(13,53,83,0.06); color: var(--text-mid); }
.phone-icon-btn.send { background: var(--navy); }

.phone-home {
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-home::after {
  content: '';
  width: 78px;
  height: 4px;
  background: rgba(0,0,0,0.18);
  border-radius: var(--r-full);
}


/* ══════════════════════════════════════════════════════
   CITIES STRIP
   ══════════════════════════════════════════════════════ */
.cities-section {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--sh-1);
  display: flex;
  align-items: center;
}

.cities-strip {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cities-inner {
  display: inline-block;
  animation: cities-scroll 30s linear infinite;
}

.cities-inner span {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  margin: 0 6px;
}

.cities-inner span.city {
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: var(--bg-card-alt);
  border: 1px solid var(--border-warm);
  color: var(--navy);
  font-weight: 600;
}

.cities-inner span.dot {
  color: var(--orange);
  font-size: 1rem;
}

.cities-label {
  padding: 0 22px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
}

@keyframes cities-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════
   SECTIONS — shared
   ══════════════════════════════════════════════════════ */
.section {
  background: var(--bg-card);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 52px) clamp(32px, 4.5vw, 56px);
  box-shadow: var(--sh-2);
}

.section-alt { background: var(--bg-card-alt); }

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 40px);
  text-align: center;
}

.kicker {
  font-size: 0.69rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.9vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 920px;
  margin: 0 auto;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


/* ══════════════════════════════════════════════════════
   BRAND INTRO — 3 pillars
   ══════════════════════════════════════════════════════ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card {
  padding: 26px 22px 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 12px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-tint), rgba(244,118,42,0.04));
  border: 1px solid rgba(244,118,42,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
}

.pillar-card h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
}


/* ══════════════════════════════════════════════════════
   11 LIFE DOMAINS
   ══════════════════════════════════════════════════════ */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.domain-card {
  padding: 20px 18px 22px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 8px;
  align-content: start;
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: rgba(244, 118, 42, 0.22);
}

.domain-card.p1 {
  background: var(--bg-card-alt);
  opacity: 0.72;
}

.domain-card.placeholder {
  background: transparent;
  border-style: dashed;
  border-color: var(--border-warm);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.6;
}

.domain-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.domain-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.domain-desc {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.domain-badge {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 2px;
}

.domain-badge.p0 {
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  color: var(--green);
}

.domain-badge.p1 {
  background: rgba(13,53,83,0.06);
  border: 1px solid rgba(13,53,83,0.12);
  color: var(--text-mid);
}

.domain-placeholder-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}


/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: start;
  gap: 0;
}

.how-step {
  padding: 28px 24px 30px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 12px;
}

.how-step.final { border-color: var(--green-border); }

.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}

.how-connector-line {
  display: flex;
  align-items: center;
  gap: 4px;
}

.how-connector-line span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-warm);
}

.how-connector-line::before,
.how-connector-line::after {
  content: '';
  width: 10px;
  height: 1.5px;
  background: var(--border-warm);
}

.how-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.how-num-1 { background: var(--navy-light); color: var(--navy); }
.how-num-2 { background: var(--orange-tint); color: var(--orange-deep); }
.how-num-3 { background: var(--green-tint); color: var(--green); }

.how-step h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.how-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.how-ex {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  color: var(--text-mid);
}


/* ══════════════════════════════════════════════════════
   DEMO FLOW (6 steps ordered list)
   ══════════════════════════════════════════════════════ */
.demo-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  counter-reset: dstep;
}

.dflow-item {
  counter-increment: dstep;
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  align-items: flex-start;
}

.dflow-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dflow-num::after { content: counter(dstep); }

.dflow-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 4px;
}


/* ══════════════════════════════════════════════════════
   SCENE CARDS (4 archetypes)
   ══════════════════════════════════════════════════════ */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.scene-card {
  padding: 28px 26px 30px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 14px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.scene-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.scene-num {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}

.scene-card h3 {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.28;
}

.scene-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.78;
}

.scene-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.fstep {
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(13,53,83,0.055);
  color: var(--navy);
  font-weight: 500;
}

.farrow {
  font-size: 0.65rem;
  color: var(--text-light);
  margin: 0 1px;
}

.scene-result {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--navy);
  padding: 11px 15px 11px 17px;
  border-radius: var(--r-sm);
  background: linear-gradient(90deg, rgba(244,118,42,0.07), rgba(13,53,83,0.03));
  border-left: 3px solid var(--orange);
  line-height: 1.55;
}


/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  padding: 30px 26px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #fff 0%, rgba(250,247,243,0.9) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  align-content: start;
  gap: 0;
}

.review-mark {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 8px;
}

.review-quote {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: normal;
  color: var(--navy);
  line-height: 1.88;
}

.review-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2px;
}

.review-person {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review-loc {
  font-size: 0.77rem;
  color: var(--text-light);
}

.google-review-entry {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 118, 42, 0.14), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, #f8efe5 100%);
  border: 1px solid rgba(244, 118, 42, 0.16);
  box-shadow: var(--sh-1);
}

.google-review-entry h3 {
  margin-top: 4px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  color: var(--navy);
  line-height: 1.35;
}

.google-review-entry p:not(.kicker) {
  max-width: 68ch;
  color: var(--text-mid);
  line-height: 1.72;
  font-size: 0.9rem;
}

.google-review-btn {
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid rgba(13, 53, 83, 0.12);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--sh-1);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.google-review-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 118, 42, 0.28);
  box-shadow: var(--sh-2);
}


/* ══════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════ */
.pricing-wrap { display: grid; gap: 18px; }

.starter-band {
  padding: 30px 36px;
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, #0a2d48 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,0.055);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.starter-copy { display: grid; gap: 8px; }

.starter-eye {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,201,168,0.88);
  font-weight: 700;
}

.starter-title {
  font-family: var(--serif);
  font-size: 1.52rem;
  color: var(--bg-warm);
  line-height: 1.28;
}

.starter-sub {
  font-size: 0.87rem;
  color: rgba(255,242,218,0.58);
  max-width: 52ch;
  line-height: 1.7;
}

.starter-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 30px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  text-align: center;
  flex-shrink: 0;
}

.starter-n {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.starter-unit { font-size: 0.78rem; color: rgba(255,242,218,0.52); }

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan-card {
  padding: 26px 22px 30px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 14px;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.plan-card.featured {
  background: rgba(255,249,242,0.98);
  border-color: rgba(244,118,42,0.26);
  box-shadow: 0 0 0 3px rgba(244,118,42,0.08), var(--sh-2);
  padding-top: 50px;
}

.plan-feat-label {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 7px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange-deep);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-amt {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.plan-per { font-size: 0.84rem; color: var(--text-light); }

.plan-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.plan-divider { height: 1px; background: var(--border); }

.plan-feats { display: grid; gap: 8px; }

.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.5;
}

.plan-feat::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ══════════════════════════════════════════════════════
   SAFETY / TRUST
   ══════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-card {
  padding: 22px 20px 24px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 9px;
}

.trust-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); }
.trust-card p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }


/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-item {
  padding: 22px 20px 24px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 9px;
}

.faq-item h3 { font-size: 0.94rem; font-weight: 700; color: var(--navy); line-height: 1.45; }
.faq-item p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.78; }

.static-explainer-link {
  color: inherit;
  text-decoration: none;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.static-explainer-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 118, 42, 0.26);
  box-shadow: 0 18px 36px rgba(13, 31, 52, 0.08);
}

.static-explainer-link h3,
.static-explainer-link p {
  text-decoration: none;
}


/* ══════════════════════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════════════════════ */
.section.footer-cta {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(244,118,42,0.08) 0%, transparent 48%),
    radial-gradient(ellipse at 20% 80%, rgba(42,123,92,0.05) 0%, transparent 40%),
    var(--bg-card);
  text-align: center;
  padding: clamp(52px, 7vw, 88px) clamp(24px, 4vw, 52px) clamp(64px, 9vw, 104px);
}

.section.footer-cta .section-head { margin-bottom: 32px; }
.section.footer-cta .section-head h2 { margin: 0 auto; }

.footer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid var(--border-warm);
  background: rgba(255,255,255,0.6);
  color: var(--navy);
  transition: transform var(--t-base), background var(--t-base);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
}


/* ══════════════════════════════════════════════════════
   FOUNDER STORY SECTION
   ══════════════════════════════════════════════════════ */
.story-section {
  background:
    radial-gradient(ellipse 55% 40% at 100% 10%, rgba(244, 118, 42, 0.16) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 0% 90%, rgba(42, 123, 92, 0.08) 0%, transparent 100%),
    linear-gradient(150deg, #082840 0%, #0d3553 50%, #0b2f4b 100%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--bg-warm);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4.5vw, 64px) clamp(40px, 5.5vw, 70px);
  box-shadow: var(--sh-4);
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.story-head { display: grid; gap: 14px; }

.story-head .kicker { color: rgba(246, 201, 168, 0.85); }

.story-h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: #fffaf3;
  max-width: 22ch;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.story-body { display: grid; gap: 20px; }

.story-body p {
  font-size: 0.96rem;
  color: rgba(255, 245, 230, 0.72);
  line-height: 1.95;
  max-width: 56ch;
}

.story-pull {
  padding: 16px 20px 16px 22px;
  border-left: 2.5px solid var(--orange);
  background: rgba(244, 118, 42, 0.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--serif);
  font-size: 1.06rem;
  color: rgba(255, 248, 236, 0.94);
  line-height: 1.72;
}

/* Moment card — the SMS-style emotional peak */
.story-moment-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: grid;
  gap: 14px;
  align-self: start;
  position: sticky;
  top: 100px;
}

.story-moment-label {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 242, 218, 0.4);
  font-weight: 700;
}

.story-moment-msgs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.story-msg {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 16px;
  font-size: 0.87rem;
  line-height: 1.6;
  max-width: 90%;
}

.story-msg.system {
  background: rgba(42, 123, 92, 0.22);
  border: 1px solid rgba(42, 123, 92, 0.28);
  color: rgba(160, 240, 200, 0.94);
  align-self: flex-start;
  border-radius: 4px 16px 16px 16px;
}

.story-msg.child {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 236, 0.82);
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
}

.story-msg.parent {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 236, 0.78);
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
}

.story-moment-note {
  font-size: 0.75rem;
  color: rgba(255, 242, 218, 0.36);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* Story taglines */
.story-taglines {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: clamp(24px, 3vw, 36px);
}

.story-tagline {
  font-family: var(--serif);
  line-height: 1.45;
  color: rgba(255, 248, 236, 0.5);
  letter-spacing: 0.01em;
}

.story-tagline.primary {
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  color: rgba(255, 248, 236, 0.92);
}

.story-tagline.secondary {
  font-size: clamp(0.95rem, 1.5vw, 1.16rem);
  color: rgba(255, 248, 236, 0.62);
}


/* ══════════════════════════════════════════════════════
   LANGUAGE SUPPORT SECTION
   ══════════════════════════════════════════════════════ */
.lang-section {
  background: var(--bg-card);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 52px) clamp(32px, 4.5vw, 48px);
}

.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-warm);
  background: var(--bg-card-alt);
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.lang-chip.available {
  border-color: var(--green-border);
  background: var(--green-tint);
  color: var(--green);
}

.lang-chip.available::before {
  content: '✓';
  font-weight: 700;
  font-size: 0.72rem;
}

.lang-chip.soon {
  opacity: 0.52;
  border-style: dashed;
}

.lang-note {
  margin-top: 20px;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.community-language-panel {
  margin: 24px auto 0;
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--r-md);
  border: 1px solid rgba(13, 53, 83, 0.1);
  background:
    radial-gradient(circle at 9% 14%, rgba(244, 118, 42, 0.13), transparent 30%),
    linear-gradient(135deg, #fff, var(--bg-card-alt));
  box-shadow: var(--sh-1);
}

.community-language-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.community-language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.community-language-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(42, 123, 92, 0.13);
  background: rgba(255, 255, 255, 0.74);
}

.community-language-card strong {
  color: var(--navy);
  line-height: 1.35;
}

.community-language-card span {
  color: var(--text-mid);
  font-size: 0.82rem;
  line-height: 1.55;
}

.community-language-note {
  margin: 14px 0 0;
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
}


/* ══════════════════════════════════════════════════════
   WHO IS IT FOR — 4 user types
   ══════════════════════════════════════════════════════ */
.users-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.user-card {
  padding: 26px 22px 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-1);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.user-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.user-icon { font-size: 1.9rem; line-height: 1; }

.user-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
}

.user-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ══════════════════════════════════════════════════════
   COMPARISON — 2 cards side by side, centered
   ══════════════════════════════════════════════════════ */
.compare-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  flex-shrink: 0;
  width: 32px;
}

.compare-card {
  flex: 1;
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-card.weak {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
}

.compare-card.strong {
  background: var(--bg-card);
  border: 1.5px solid rgba(244, 118, 42, 0.24);
  box-shadow: var(--sh-2);
}

.compare-card-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-self: flex-start;
}

.compare-card.weak .compare-card-head {
  background: rgba(13, 53, 83, 0.07);
  color: var(--text-mid);
}

.compare-card.strong .compare-card-head {
  background: var(--orange);
  color: #fff;
}

.compare-card-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.compare-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare-card-list li::before {
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.compare-card.weak .compare-card-list li {
  color: var(--text-light);
}

.compare-card.weak .compare-card-list li::before {
  content: '—';
  color: var(--border-warm);
}

.compare-card.strong .compare-card-list li {
  color: var(--text);
  font-weight: 500;
}

.compare-card.strong .compare-card-list li::before {
  content: '✓';
  color: var(--orange);
}


/* ══════════════════════════════════════════════════════
   CAPABILITY GRID — 3 columns
   ══════════════════════════════════════════════════════ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cap-col {
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.cap-col-direct {
  background: var(--orange-tint);
  border: 1px solid rgba(244, 118, 42, 0.15);
}

.cap-col-step {
  background: var(--navy-light);
  border: 1px solid rgba(13, 53, 83, 0.12);
}

.cap-col-sync {
  background: var(--green-tint);
  border: 1px solid var(--green-border);
}

.cap-col-eyebrow {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cap-col-direct .cap-col-eyebrow { color: var(--orange-deep); }
.cap-col-step   .cap-col-eyebrow { color: var(--navy); }
.cap-col-sync   .cap-col-eyebrow { color: var(--green); }

.cap-col h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
}

.cap-items { display: grid; gap: 10px; }

.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
}

.cap-item-arrow {
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.cap-col-direct .cap-item-arrow { color: var(--orange); }
.cap-col-step   .cap-item-arrow { color: var(--navy-mid); }
.cap-col-sync   .cap-item-arrow { color: var(--green); }


/* ══════════════════════════════════════════════════════
   DOMAIN CAPABILITY TAGS (replaces P0/P1 badges)
   ══════════════════════════════════════════════════════ */
.domain-cap-tag {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 2px;
}

.domain-cap-tag.bookable {
  background: var(--orange-tint);
  border: 1px solid rgba(244, 118, 42, 0.2);
  color: var(--orange-deep);
}

.domain-cap-tag.navigable {
  background: var(--navy-light);
  border: 1px solid rgba(13, 53, 83, 0.14);
  color: var(--navy-mid);
}

.domain-cap-tag.searchable {
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  color: var(--green);
}

.domain-cap-tag.photo {
  background: rgba(180, 155, 130, 0.12);
  border: 1px solid var(--border-warm);
  color: var(--text-mid);
}

.domain-cap-tag.coming {
  background: rgba(13, 53, 83, 0.04);
  border: 1px dashed rgba(13, 53, 83, 0.14);
  color: var(--text-light);
}

.domain-card.coming {
  background: var(--bg-card-alt);
  opacity: 0.6;
}


/* ══════════════════════════════════════════════════════
   PRICING V2 — 4 tiers
   ══════════════════════════════════════════════════════ */
.pricing-v2 { display: grid; gap: 20px; }

.pricing-hero-panel {
  padding: clamp(24px, 4vw, 34px);
  border-radius: calc(var(--r-lg) + 8px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(244, 118, 42, 0.18), transparent 35%),
    linear-gradient(135deg, #0b2f4c 0%, #123e61 54%, #f4eee7 180%);
  color: #fff8ef;
  box-shadow: 0 24px 60px rgba(13, 53, 83, 0.18);
  overflow: hidden;
  position: relative;
}

.pricing-hero-kicker {
  color: rgba(255, 216, 184, 0.88);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-hero-panel h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.pricing-hero-panel p:not(.pricing-hero-kicker) {
  margin-top: 12px;
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.78;
  max-width: 68ch;
}

.pricing-mini-grid {
  display: grid;
  gap: 10px;
}

.pricing-mini {
  padding: 15px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.pricing-mini span {
  font-size: 0.76rem;
  color: rgba(255, 248, 239, 0.68);
}

.pricing-mini strong {
  color: #fff8ef;
  font-size: 0.95rem;
  white-space: nowrap;
}

.pricing-v2-note {
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: rgba(244,118,42,0.04);
  border: 1px solid rgba(244,118,42,0.12);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.pricing-v2-note strong { color: var(--orange-deep); }

.pricing-v2-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.p4-card {
  border-radius: var(--r-lg);
  padding: 48px 20px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 247, 0.98));
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(13, 53, 83, 0.06);
  display: grid;
  gap: 14px;
  position: relative;
  min-height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.p4-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

.p4-card-trial {
  padding-top: 48px;
}

.p4-card.featured {
  background:
    radial-gradient(circle at top right, rgba(244, 118, 42, 0.2), transparent 36%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 74%);
  border-color: rgba(244, 118, 42, 0.28);
  box-shadow: 0 0 0 3px rgba(244, 118, 42, 0.07), var(--sh-2);
  padding-top: 48px;
}

.p4-card-care {
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 6% 20%, rgba(244, 118, 42, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f4ebe1 100%);
}

.p4-card-care .p4-feats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p4-feat-label {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 7px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.p4-feat-label.soft {
  background: var(--green);
}

.p4-feat-label.calm {
  background: var(--navy-mid);
}

.p4-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.p4-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  line-height: 1;
}

.p4-currency {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 5px;
}

.p4-amt {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.p4-amt.is-free {
  font-size: 1.6rem;
  color: var(--green);
}

.p4-per {
  font-size: 0.79rem;
  color: var(--text-light);
  align-self: flex-end;
  padding-bottom: 4px;
}

.p4-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.p4-billing-options {
  display: grid;
  gap: 8px;
}

.p4-billing-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(27, 55, 83, 0.11);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.p4-billing-options a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 111, 36, 0.32);
  background: var(--cream);
}

.p4-divider { height: 1px; background: var(--border); }

.p4-feats { display: grid; gap: 9px; }

.p4-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.52;
}

.p4-feat::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

.p4-btn {
  display: block;
  text-align: center;
  padding: 11px 14px;
  border-radius: var(--r-full);
  font-size: 0.84rem;
  font-weight: 600;
  transition: transform var(--t-base), background var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  align-self: end;
}

.p4-btn-primary {
  background: var(--orange);
  color: #fff8f0;
  box-shadow: 0 6px 18px rgba(244, 118, 42, 0.24);
}

.p4-btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(244, 118, 42, 0.3);
}

.p4-btn-outline {
  border: 1.5px solid var(--border-warm);
  color: var(--navy);
  background: transparent;
}

.p4-btn-outline:hover {
  background: var(--bg-card-alt);
  transform: translateY(-1px);
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 4px;
}

.pricing-note {
  padding: 18px 18px 20px;
  border-radius: var(--r-md);
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  display: grid;
  gap: 7px;
}

.pricing-note h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.pricing-note p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .domains-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-connector { display: none; }
  .users-grid { grid-template-columns: repeat(2, 1fr); }
  .community-language-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-v2-plans { grid-template-columns: repeat(2, 1fr); }
  .p4-card-care .p4-feats { grid-template-columns: 1fr; }
}

@media (max-width: 1050px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-demo { justify-content: center; flex-direction: column; align-items: center; gap: 18px; }
  .demo-nav {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 400px;
    overflow-x: auto;
  }
  .demo-nav-item { flex-direction: column; align-items: center; text-align: center; padding: 8px 10px; gap: 5px; }
  .demo-nav-item::after { display: none; }
  .nav-label { max-width: 54px; font-size: 0.67rem; }
  .pillar-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 860px) {
  .pillar-grid, .review-grid, .plans-row { grid-template-columns: 1fr; }
  .scene-grid { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .faq-grid { grid-template-columns: 1fr; }
  .demo-flow { grid-template-columns: repeat(2,1fr); }
  .starter-band { flex-direction: column; text-align: center; }
  .cities-label { display: none; }
  .story-layout { grid-template-columns: 1fr; }
  .story-moment-card { position: static; }
  .capability-grid { grid-template-columns: 1fr; }
  .pricing-v2-plans { grid-template-columns: repeat(2, 1fr); }
  .pricing-hero-panel { grid-template-columns: 1fr; }
  .google-review-entry { align-items: flex-start; flex-direction: column; }
  .pricing-notes { grid-template-columns: 1fr; }
  .users-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-cards { flex-direction: column; max-width: 480px; }
  .compare-vs { width: auto; padding: 4px 0; }
}

@media (max-width: 600px) {
  .page { padding: 10px 10px 60px; gap: 10px; }
  .topnav { display: none; }
  .hero-h1 { font-size: 2.1rem; }
  .demo-nav { display: none; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-flow { grid-template-columns: 1fr; }
  .phone-shell { width: 238px; }
  .phone-inner { height: 484px; }
  .plan-card.featured { padding-top: 46px; }
  .pricing-v2-plans { grid-template-columns: 1fr; }
  .users-grid { grid-template-columns: 1fr; }
  .community-language-grid { grid-template-columns: 1fr; }
  .p4-card.featured { padding-top: 44px; }
}

/* ═══════════════════════════════════════════
   STORY BRAND BYLINE
   ═══════════════════════════════════════════ */
.story-brand-byline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.32);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 20px 32px;
  margin-top: 0;
}

.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.site-footer-built {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.site-footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .site-footer { padding: 32px 16px 28px; }
  .site-footer-links { gap: 4px 14px; }
}

/* ═══════════════════════════════════════════════════
   LANGUAGE SWITCHER  (shared across all pages)
   ═══════════════════════════════════════════════════ */

/* Container injected into topnav */
.ls-wrap { position: relative; }

.ls-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: var(--r-full);
  border: 1px solid var(--border-warm);
  background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem;
  color: var(--text-mid); transition: background var(--t-fast), border-color var(--t-fast);
}
.ls-btn:hover { background: var(--orange-tint); border-color: rgba(244,118,42,0.35); }
.ls-globe { font-size: 0.85rem; }
.ls-cur   { font-weight: 600; }
.ls-caret { font-size: 0.65rem; opacity: 0.6; }

.ls-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-3); z-index: 200; overflow: hidden;
  padding: 6px;
}
.ls-menu.open { display: block; }

.ls-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--r-sm);
  text-decoration: none; color: var(--text-mid);
  font-size: 0.82rem; transition: background var(--t-fast);
}
.ls-option:hover    { background: var(--bg-card-alt); }
.ls-option.active   { color: var(--orange); font-weight: 600; background: var(--orange-tint); }
.ls-flag  { font-size: 1.1rem; flex-shrink: 0; }
.ls-name  { flex: 1; }
.ls-check { font-size: 0.75rem; color: var(--orange); }

/* ═══════════════════════════════════════════════════
   RTL SUPPORT  (Arabic and other RTL languages)
   Applied when <html dir="rtl"> is set
   ═══════════════════════════════════════════════════ */

[dir="rtl"] .topbar          { direction: rtl; }
[dir="rtl"] .topnav           { flex-direction: row-reverse; }
[dir="rtl"] .hero-body        { direction: rtl; }
[dir="rtl"] .hero-copy        { text-align: right; }
[dir="rtl"] .cta-row          { flex-direction: row-reverse; justify-content: flex-start; }
[dir="rtl"] .chip-row         { justify-content: flex-end; }
[dir="rtl"] .section          { direction: rtl; }
[dir="rtl"] .section-head     { text-align: right; }
[dir="rtl"] .compare-cards    { flex-direction: row-reverse; }
[dir="rtl"] .cap-items        { direction: rtl; }
[dir="rtl"] .cap-item-arrow   { transform: scaleX(-1); }
[dir="rtl"] .how-grid         { direction: rtl; }
[dir="rtl"] .how-connector    { transform: scaleX(-1); }
[dir="rtl"] .story-layout     { direction: rtl; }
[dir="rtl"] .story-body       { text-align: right; }
[dir="rtl"] .story-taglines   { text-align: right; }
[dir="rtl"] .faq-item         { text-align: right; }
[dir="rtl"] .ls-menu          { right: auto; left: 0; }
[dir="rtl"] .demo-nav         { direction: rtl; }
[dir="rtl"] .domain-card      { text-align: right; }
[dir="rtl"] .review-card      { text-align: right; }
[dir="rtl"] .trust-card       { text-align: right; }
[dir="rtl"] .footer-actions   { flex-direction: row-reverse; }
[dir="rtl"] .site-footer      { direction: rtl; }
