/* ============================================================
   SEER Business Systems — Redesign 2026
   Bright, editorial, modern. White theme.
   Type: Bricolage Grotesque (display) / Inter (body) / Instrument Serif (accents)
   ============================================================ */

:root {
  --ink: #10201a;
  --ink-soft: #45564e;
  --ink-faint: #64736b;
  --paper: #ffffff;
  --paper-warm: #f6f8f4;
  --paper-mint: #eaf6ee;
  --line: #e3e9e3;
  --line-strong: #cfd9d0;
  --green: #0e7a4a;
  --green-deep: #0a5c38;
  --green-bright: #16a45f;
  --mint: #d7f2e0;
  --amber: #b45309;
  --amber-soft: #fdf1de;
  --red: #b3402f;
  --red-soft: #fdeae6;
  --blue: #2456a6;
  --blue-soft: #e8effc;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 2px 10px rgba(16, 32, 26, 0.05), 0 12px 40px rgba(16, 32, 26, 0.06);
  --shadow-lift: 0 4px 16px rgba(16, 32, 26, 0.08), 0 20px 60px rgba(16, 32, 26, 0.1);
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--mint); color: var(--green-deep); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }
.container--wide { max-width: 1320px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }

.display-xl { font-size: clamp(2.6rem, 6.4vw, 4.9rem); font-weight: 800; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
.display-md { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.display-sm { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--green);
}

.lead { font-size: clamp(1.06rem, 1.6vw, 1.25rem); color: var(--ink-soft); line-height: 1.7; }
.small { font-size: 0.875rem; }
.muted { color: var(--ink-faint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }

/* ---------- Pills & badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-display);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
}
.pill--mint { background: var(--paper-mint); border-color: #cbe8d5; color: var(--green-deep); }
.pill--amber { background: var(--amber-soft); border-color: #f3ddb7; color: var(--amber); }
.pill--red { background: var(--red-soft); border-color: #f5cfc7; color: var(--red); }
.pill svg { width: 16px; height: 16px; flex-shrink: 0; }

.dot-live {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 164, 95, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(22, 164, 95, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--green); color: #fff;
  box-shadow: 0 6px 20px rgba(14, 122, 74, 0.28);
}
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14, 122, 74, 0.35); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #23342c; transform: translateY(-2px); }

.btn--ghost { background: var(--paper); color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--green-deep); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.15); }

.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.92); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--ink-soft); padding: 8px 14px; border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--ink); background: var(--paper-warm); }
.main-nav a.is-active { color: var(--green-deep); background: var(--paper-mint); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft);
  padding: 10px 14px; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.header-phone:hover { color: var(--green-deep); background: var(--paper-mint); }
.header-phone svg { width: 17px; height: 17px; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; position: relative; z-index: 102; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 101;
  background: #fff; padding: calc(var(--header-h) + 24px) 24px 32px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  padding: 14px 8px; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-menu a.is-active { color: var(--green); }
.mobile-menu .mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mobile-menu-cta a { border: none; padding: 0; font-size: 1rem; }

@media (max-width: 920px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--warm { background: var(--paper-warm); }
.section--mint { background: var(--paper-mint); }
.section--tight { padding: 64px 0; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { margin: 14px 0 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(52% 44% at 82% 4%, rgba(22, 164, 95, 0.11) 0%, transparent 100%),
    radial-gradient(40% 36% at 8% 22%, rgba(180, 83, 9, 0.06) 0%, transparent 100%),
    var(--paper);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(16,32,26,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,32,26,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 68% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 68% at 50% 0%, black 30%, transparent 100%);
}
.hero-center { max-width: 900px; margin: 0 auto; text-align: center; }
.hero h1 { margin: 22px 0 24px; }
.hero .lead { max-width: 640px; margin: 0 auto 14px; }
.hero-sub { font-size: 0.98rem; color: var(--ink-faint); max-width: 560px; margin: 0 auto 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 44px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; font-size: 0.9rem; color: var(--ink-faint); }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--green); }

/* ---------- Marquee ---------- */
.marquee-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-warm); padding: 18px 0; overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-band:hover .marquee { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-group span {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint);
  padding: 0 18px; white-space: nowrap;
}
.marquee-group i {
  font-style: normal; color: var(--green-bright); font-size: 0.8rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 40px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--green); line-height: 1;
}
.stat-num sub, .stat-num small { font-size: 0.45em; font-weight: 700; color: var(--green-bright); }
.stat-label { margin-top: 10px; font-weight: 600; font-family: var(--font-display); color: var(--ink); }
.stat-sub { font-size: 0.85rem; color: var(--ink-faint); margin-top: 4px; }
@media (max-width: 760px) { .stats-row { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  color: var(--green-bright); letter-spacing: 0.06em; margin-bottom: 18px; display: block;
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--paper-mint); color: var(--green); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon--amber { background: var(--amber-soft); color: var(--amber); }
.card-icon--red { background: var(--red-soft); color: var(--red); }
.card-icon--blue { background: var(--blue-soft); color: var(--blue); }

.card-impact {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-size: 0.88rem; color: var(--amber); font-weight: 600; display: flex; gap: 8px; align-items: flex-start;
}
.card-impact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }

.card-outcome {
  margin-top: 18px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--paper-mint); font-size: 0.9rem; color: var(--green-deep); font-weight: 600;
  display: flex; gap: 8px; align-items: flex-start;
}
.card-outcome svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }

/* ---------- Steps (how we work) ---------- */
.steps { display: grid; gap: 0; counter-reset: step; }
.step-row {
  display: grid; grid-template-columns: 120px 1fr 1.1fr; gap: 40px;
  padding: 48px 0; border-top: 1px solid var(--line); align-items: start;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-index {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; color: var(--mint);
  -webkit-text-stroke: 1.5px var(--green);
}
.step-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.step-tanglish { font-family: var(--font-serif); font-style: italic; color: var(--amber); font-size: 1.1rem; margin-bottom: 14px; }
.step-body p { color: var(--ink-soft); }
.step-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-self: center; }
.step-list li {
  list-style: none; display: flex; align-items: center; gap: 9px;
  background: var(--paper-warm); border: 1px solid var(--line);
  padding: 11px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--ink-soft);
}
.step-list svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
@media (max-width: 900px) {
  .step-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .step-index { font-size: 2.4rem; }
  .step-list { grid-template-columns: 1fr; }
}

/* ---------- Stories / testimonials ---------- */
.story-card { display: flex; flex-direction: column; }
.story-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 12px; font-family: var(--font-display); }
.story-block { margin-bottom: 14px; }
.story-block b { font-family: var(--font-display); font-size: 0.85rem; color: var(--ink); display: block; margin-bottom: 3px; }
.story-block p { font-size: 0.92rem; }
.story-quote {
  margin-top: auto; padding: 18px; border-radius: var(--radius-sm);
  background: var(--paper-mint); font-family: var(--font-serif); font-style: italic;
  font-size: 1.02rem; color: var(--green-deep); line-height: 1.55;
}
.story-meta { margin-top: 14px; font-size: 0.85rem; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.story-meta svg { width: 15px; height: 15px; color: var(--green); }

/* ---------- Anti-sales ---------- */
.no-card { border-color: #efd9d3; background: #fffcfb; }
.no-card:hover { border-color: #e4b8ad; }
.no-card h3 { display: flex; align-items: center; gap: 10px; }
.no-card h3 svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }

.yes-banner {
  margin-top: 40px; padding: 36px 40px; border-radius: var(--radius);
  background: var(--ink); color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; justify-content: space-between;
}
.yes-banner h3 { font-size: 1.4rem; color: #fff; }
.yes-banner h3 span { color: #7fe0ae; }
.yes-banner ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.yes-banner li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: #cfe5d9; }
.yes-banner svg { width: 17px; height: 17px; color: #7fe0ae; }

/* ---------- WhatsApp / JARVIS mock ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.chat-mock {
  border: 1px solid var(--line); border-radius: 28px; background: #fff;
  box-shadow: var(--shadow-lift); overflow: hidden; max-width: 420px; margin: 0 auto; width: 100%;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--green-deep); color: #fff; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; }
.chat-head b { font-family: var(--font-display); font-size: 0.98rem; display: block; line-height: 1.2; }
.chat-head small { font-size: 0.75rem; opacity: 0.85; display: flex; align-items: center; gap: 5px; }
.chat-body { padding: 20px; background: #eef3ee; display: flex; flex-direction: column; gap: 10px; min-height: 300px; }
.chat-bubble {
  max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 0.9rem; line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.chat-bubble--in { background: #fff; border-top-left-radius: 4px; align-self: flex-start; }
.chat-bubble--out { background: #d5f6e0; border-top-right-radius: 4px; align-self: flex-end; }
.chat-bubble small { display: block; text-align: right; font-size: 0.68rem; color: var(--ink-faint); margin-top: 4px; }
.chat-bubble .chat-order {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  margin: 4px 0 6px; background: var(--paper-warm);
}
.chat-order .co-head {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-bottom: 1px dashed var(--line);
}
.chat-order .co-emoji {
  width: 34px; height: 34px; border-radius: 9px; background: var(--mint);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0;
}
.chat-order .co-head b { font-family: var(--font-display); font-size: 0.85rem; display: block; line-height: 1.25; }
.chat-order .co-head span { font-size: 0.72rem; color: var(--ink-faint); }
.chat-order .co-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; font-size: 0.8rem; color: var(--ink-soft);
}
.chat-order .co-total b { font-family: var(--font-display); color: var(--green-deep); font-size: 0.9rem; }
.chat-pay {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 6px;
  background: var(--green); color: #fff; border-radius: 9px;
  padding: 8px 14px; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
}
.chat-pay svg { width: 14px; height: 14px; }
.chat-status { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--green-deep); font-weight: 600; margin-top: 6px; }
.chat-status svg { width: 14px; height: 14px; color: var(--green-bright); flex-shrink: 0; }
/* ============================================================
   SEERFlow LIVE DEMO — WhatsApp-authentic animated phone
   Bot = white bubbles, left. Customer = green bubbles, right.
   ============================================================ */
.flow-fold {
  min-height: calc(100vh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 0 56px;
}
.flow-fold .section-head { margin-bottom: 28px; }

.flow-split { align-items: center; gap: 72px; }
.flow-copy .lead { margin-bottom: 30px; }

.flow-legend { list-style: none; display: grid; gap: 6px; counter-reset: none; }
.flow-legend li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, opacity 0.35s;
  opacity: 0.55;
}
.flow-legend li i {
  font-style: normal; font-family: var(--font-display); font-weight: 800;
  font-size: 0.85rem; color: var(--ink-faint); margin-top: 2px;
  transition: color 0.35s;
}
.flow-legend li b { font-family: var(--font-display); display: block; font-size: 1rem; }
.flow-legend li span { font-size: 0.88rem; color: var(--ink-soft); }
.flow-legend li.is-active {
  opacity: 1; background: var(--paper-mint); border-color: #cbe8d5;
}
.flow-legend li.is-active i { color: var(--green); }

@media (max-width: 900px) {
  .flow-split { gap: 36px; }
  .flow-copy { text-align: center; }
  .flow-copy .eyebrow { justify-content: center; }
  .flow-legend li { text-align: left; }
  .flow-copy .hero-actions { justify-content: center !important; }
}

.flow-demo-phone { max-width: 348px; margin: 0 auto; width: 100%; }

.phone-owner-tag {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 auto 14px; width: fit-content;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow-soft); transition: background 0.4s, color 0.4s;
}
.phone-owner-tag.is-owner { background: var(--ink); color: #7fe0ae; border-color: var(--ink); }

/* phone bezel — true phone proportions (~9:19) */
.wa-phone {
  border: 8px solid #1b1b1f; border-radius: 46px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-lift);
}
.wa-statusbar {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px 4px; background: #f6f5f3;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; color: #111;
}
.wa-statusbar::after {
  content: ''; position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 999px; background: #1b1b1f;
}
.wa-statusbar .wa-sysicons { display: inline-flex; align-items: center; gap: 4px; }
.wa-statusbar .wa-sysicons svg { width: 14px; height: 11px; display: block; }
.wa-head {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px 10px; background: #f6f5f3; border-bottom: 1px solid #e5e2dc;
}
.wa-homebar {
  display: flex; justify-content: center; padding: 5px 0 8px; background: #f6f5f3;
}
.wa-homebar i { width: 110px; height: 4px; border-radius: 4px; background: #1b1b1f; opacity: 0.85; }
.wa-back { color: #0b846f; flex-shrink: 0; }
.wa-back svg { width: 18px; height: 18px; display: block; }
.wa-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; overflow: hidden; transition: background 0.3s;
}
.wa-title { min-width: 0; }
.wa-title b { font-family: var(--font-display); font-size: 0.95rem; display: block; line-height: 1.2; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-title small { font-size: 0.72rem; color: #667; display: flex; align-items: center; gap: 5px; }
.wa-head-dots { margin-left: auto; color: #54655f; flex-shrink: 0; }
.wa-head-dots svg { width: 20px; height: 20px; }

/* wallpaper + scroll area */
.wa-body {
  position: relative;
  height: clamp(430px, 60vh, 590px);
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto; scrollbar-width: none;
  background-color: #efe7dd;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c9bba7' stroke-width='1.4' opacity='0.35'%3E%3Ccircle cx='22' cy='24' r='7'/%3E%3Cpath d='M78 18l8 8m0-8l-8 8'/%3E%3Cpath d='M18 84c4-6 10-6 14 0'/%3E%3Crect x='72' y='72' width='14' height='14' rx='3'/%3E%3Cpath d='M48 52c0-4 8-4 8 0s-8 6-8 6'/%3E%3C/g%3E%3C/svg%3E");
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-body::-webkit-scrollbar { display: none; }
.wa-body.is-switching { opacity: 0; transform: translateX(-24px); }

/* bubbles */
.wa-msg {
  position: relative; max-width: 84%;
  border-radius: 10px; padding: 7px 9px 6px;
  font-size: 0.875rem; line-height: 1.45; color: #111;
  box-shadow: 0 1px 1px rgba(0,0,0,0.09);
}
.wa-msg--bot { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.wa-msg--user { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 3px; }
.wa-msg.pop-in { animation: bubblePop 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) both; }
@keyframes bubblePop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-meta {
  display: flex; justify-content: flex-end; align-items: center; gap: 3px;
  font-size: 0.66rem; color: #8696a0; margin-top: 3px; line-height: 1;
}
.wa-ticks { color: #53bdeb; display: inline-flex; }
.wa-ticks svg { width: 14px; height: 10px; }

/* quoted reply inside a bubble (like real WhatsApp) */
.wa-quote {
  display: block; border-left: 4px solid var(--green);
  background: rgba(0, 0, 0, 0.055); border-radius: 6px;
  padding: 5px 8px; margin-bottom: 5px;
}
.wa-quote b { display: block; font-size: 0.72rem; color: var(--green-deep); font-family: var(--font-display); }
.wa-quote span { font-size: 0.76rem; color: #556; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 210px; }

/* action rows (list/reply buttons) attached to a bot bubble */
.wa-actions { margin: 8px -9px -6px; border-top: 1px solid #ece9e2; }
.wa-action {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 8px; border-bottom: 1px solid #ece9e2;
  color: #0b846f; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s, transform 0.12s;
}
.wa-action:last-child { border-bottom: none; }
.wa-action svg { width: 15px; height: 15px; flex-shrink: 0; }
.wa-action.is-tapped { background: #e7f5f1; transform: scale(0.97); }

/* cake catalog inside a bot bubble */
.wa-cakes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 8px; }
.wa-cake {
  border: 1.5px solid #ece9e2; border-radius: 10px; overflow: hidden; background: #fff; margin: 0;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.wa-cake img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }
.wa-cake figcaption { padding: 5px 6px 7px; }
.wa-cake b { display: block; font-family: var(--font-display); font-size: 0.67rem; line-height: 1.25; }
.wa-cake span { font-size: 0.66rem; color: #778; }
.wa-cake.is-tapped { border-color: var(--green); transform: scale(0.95); box-shadow: 0 0 0 3px rgba(14, 122, 74, 0.2); }

/* order summary + owner alert inside bubbles */
.wa-order { border: 1px solid #ece9e2; border-radius: 8px; overflow: hidden; margin: 6px 0; background: #fafaf8; }
.wa-order-row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; }
.wa-order-row img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.wa-order-row b { font-family: var(--font-display); font-size: 0.8rem; display: block; line-height: 1.3; }
.wa-order-row span { font-size: 0.72rem; color: #778; }
.wa-order-total {
  display: flex; justify-content: space-between; padding: 7px 10px;
  border-top: 1px dashed #e0ddd5; font-size: 0.76rem; color: #556;
}
.wa-order-total b { color: var(--green-deep); font-family: var(--font-display); }

.owner-alert { border-left: 4px solid var(--green); background: var(--paper-mint); border-radius: 8px; padding: 9px 11px; margin-top: 6px; }
.owner-alert b { font-family: var(--font-display); font-size: 0.82rem; display: block; margin-bottom: 3px; color: var(--green-deep); }
.owner-alert span { font-size: 0.78rem; color: var(--ink-soft); display: block; line-height: 1.55; }

/* fake input bar */
.wa-inputbar { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: #f6f5f3; border-top: 1px solid #e5e2dc; }
.wa-inputbar .wa-plus { color: #54655f; font-size: 1.3rem; line-height: 1; }
.wa-inputbar .wa-field {
  flex: 1; background: #fff; border: 1px solid #e5e2dc; border-radius: 999px;
  padding: 8px 14px; font-size: 0.8rem; color: #99a;
}
.wa-inputbar .wa-mic {
  width: 34px; height: 34px; border-radius: 50%; background: #0b846f; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-inputbar .wa-mic svg { width: 16px; height: 16px; }

/* tap ripple */
.tap-dot {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(16, 32, 26, 0.28); border: 2px solid rgba(255, 255, 255, 0.85);
  pointer-events: none; z-index: 5; transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
}
.tap-dot.is-tapping { animation: tapPulse 0.55s ease both; }
@keyframes tapPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  35% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
}

@media (max-width: 720px) {
  .flow-fold { min-height: 0; }
  .wa-body { height: clamp(400px, 58vh, 520px); }
  .flow-demo-phone { max-width: 320px; }
  .wa-phone { border-width: 6px; border-radius: 40px; }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-stat { display: flex; align-items: baseline; gap: 10px; }
}

.chat-typing { display: inline-flex; gap: 4px; padding: 13px 16px; }
.chat-typing i { width: 7px; height: 7px; border-radius: 50%; background: #9db3a6; animation: typing 1.2s infinite; }
.chat-typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

.feature-list { list-style: none; display: grid; gap: 18px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fl-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--paper-mint); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-list .fl-icon svg { width: 20px; height: 20px; }
.feature-list b { font-family: var(--font-display); display: block; margin-bottom: 2px; }
.feature-list p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- FAQ accordion ---------- */
.faq-group { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-group + .faq-group { margin-top: 40px; }
.faq-group-head { display: flex; align-items: center; gap: 14px; padding: 26px 32px 8px; }
.faq-group-head h2 { font-size: 1.35rem; }
.faq-group-head .card-icon { width: 42px; height: 42px; margin: 0; border-radius: 12px; }
.faq-group-head .card-icon svg { width: 21px; height: 21px; }

details.faq-item { border-top: 1px solid var(--line); }
details.faq-item:first-of-type { border-top: none; margin-top: 14px; }
details.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; padding: 22px 32px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  transition: background 0.2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { background: var(--paper-warm); }
details.faq-item summary .faq-chev {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s, border-color 0.3s;
}
details.faq-item summary .faq-chev svg { width: 15px; height: 15px; }
details.faq-item[open] summary .faq-chev { transform: rotate(180deg); background: var(--green); border-color: var(--green); color: #fff; }
.faq-answer { padding: 0 32px 26px; color: var(--ink-soft); }
.faq-answer .faq-example {
  margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--paper-mint); font-size: 0.92rem; color: var(--green-deep);
}
.faq-answer .faq-example b { font-family: var(--font-display); display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.faq-answer .faq-example--blue { background: var(--blue-soft); color: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--green-deep); border-radius: 32px;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
  color: #fff; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 85% 10%, rgba(127, 224, 174, 0.22) 0%, transparent 100%),
    radial-gradient(40% 55% at 10% 90%, rgba(127, 224, 174, 0.14) 0%, transparent 100%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band .serif-accent { color: #7fe0ae; }
.cta-band p { color: #cfe5d9; max-width: 560px; margin: 0 auto 34px; }
.cta-band .hero-actions { margin-bottom: 28px; }
.cta-band .hero-meta { color: #a8c9b8; }
.cta-band .hero-meta svg { color: #7fe0ae; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); padding: 72px 0 36px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-deep); }
.footer-col .small { color: var(--ink-faint); }

.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--ink-faint);
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--green); }

.footer-wordmark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 14vw, 11rem); line-height: 0.9; letter-spacing: -0.04em;
  color: var(--mint); text-align: center; margin: 40px 0 -10px; user-select: none;
}

/* ---------- Forms ---------- */
.form-shell {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-soft);
}
.form-field { margin-bottom: 30px; }
.form-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; }
.form-label .optional { font-weight: 500; color: var(--ink-faint); font-size: 0.9rem; }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 16px 18px; font: inherit; font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line-strong); border-radius: 14px; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2345564e' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 18px;
  padding-right: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(14, 122, 74, 0.12);
}
.form-input.has-error, .form-select.has-error { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-error { display: none; margin-top: 8px; font-size: 0.85rem; color: var(--red); align-items: center; gap: 6px; }
.form-error.is-visible { display: flex; }
.form-error svg { width: 15px; height: 15px; flex-shrink: 0; }

/* challenge radio cards */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }
.choice-card { position: relative; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card label {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  border: 1.5px solid var(--line-strong); border-radius: 14px; padding: 16px 18px;
  font-size: 0.95rem; line-height: 1.45; color: var(--ink-soft);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  height: 100%;
}
.choice-card label:hover { border-color: var(--green); }
.choice-card svg { width: 20px; height: 20px; color: var(--ink-faint); flex-shrink: 0; margin-top: 1px; transition: color 0.2s; }
.choice-card input:checked + label { border-color: var(--green); background: var(--paper-mint); color: var(--green-deep); font-weight: 600; }
.choice-card input:checked + label svg { color: var(--green); }
.choice-card input:focus-visible + label { box-shadow: 0 0 0 4px rgba(14, 122, 74, 0.15); }

.form-reveal { display: none; }
.form-reveal.is-visible { display: block; animation: fadeUp 0.5s ease both; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  padding: 18px 24px; margin-bottom: 36px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.88rem; color: var(--ink-soft);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip svg { width: 17px; height: 17px; color: var(--green); }
@media (max-width: 720px) { .trust-strip { border-radius: var(--radius); } }

/* success state */
.success-shell { text-align: center; padding: clamp(36px, 5vw, 64px); }
.success-icon {
  width: 88px; height: 88px; border-radius: 50%; background: var(--paper-mint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 28px;
  color: var(--green);
}
.success-icon svg { width: 44px; height: 44px; }
.countdown-num { color: var(--green); font-weight: 800; font-size: 1.5em; font-family: var(--font-display); }
.success-note {
  display: flex; gap: 14px; text-align: left; align-items: flex-start;
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 28px 0;
}
.success-note svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.success-note p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Answers page ---------- */
.summary-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); margin-bottom: 40px; }
.summary-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
@media (max-width: 680px) { .summary-card dl { grid-template-columns: 1fr; } }
.summary-card dt { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.summary-card dd { color: var(--ink-soft); font-size: 0.97rem; }
.summary-card dd a { color: var(--green-deep); font-weight: 600; }
.summary-card .span-2 { grid-column: 1 / -1; }

.answer-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; }
.answer-item + .answer-item { margin-top: 16px; }
.answer-item h2 { font-size: 1.15rem; margin-bottom: 8px; }
.answer-item p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Prose (privacy) ---------- */
.prose h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 22px; margin: 12px 0; }
.prose li { margin-bottom: 6px; }

/* ---------- SEERFlow specifics ---------- */
.price-note {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  padding: 12px 20px; border-radius: 999px; background: var(--amber-soft);
  color: var(--amber); font-weight: 600; font-size: 0.92rem;
}
.template-card .card-icon { margin-bottom: 16px; }
.template-card ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.template-card li { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: var(--ink-soft); }
.template-card li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

.dash-mock {
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lift); background: #fff;
}
.dash-top { display: flex; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper-warm); }
.dash-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.dash-top i:first-child { background: #f0a8a0; }
.dash-top i:nth-child(2) { background: #f3d489; }
.dash-top i:nth-child(3) { background: #9ed9b5; }
.dash-body { padding: 24px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.dash-stat { border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.dash-stat b { font-family: var(--font-display); font-size: 1.3rem; color: var(--green); display: block; }
.dash-stat span { font-size: 0.75rem; color: var(--ink-faint); }
.dash-row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
.dash-row .dash-dot { width: 34px; height: 34px; border-radius: 10px; background: var(--paper-mint); color: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-row .dash-dot svg { width: 17px; height: 17px; }
.dash-row b { font-size: 0.85rem; font-family: var(--font-display); display: block; }
.dash-row span { font-size: 0.75rem; color: var(--ink-faint); }

/* ---------- Reveal animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #22c15e; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 193, 94, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- 404 ---------- */
.page-404 { min-height: 70vh; display: flex; align-items: center; text-align: center; }
.page-404 .display-xl { color: var(--mint); -webkit-text-stroke: 2px var(--green); font-size: clamp(5rem, 16vw, 10rem); }

/* ============================================================
   TIME DIAL — scroll companion that follows the whole page.
   A clock that winds forward as you scroll: your day coming back.
   Injected by js/main.js on every page.
   ============================================================ */
.time-dial {
  position: fixed; left: 20px; bottom: 20px; z-index: 92;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; border: none; background: none; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.time-dial-face {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.time-dial:hover .time-dial-face { transform: scale(1.07); }
.time-dial-face svg { width: 100%; height: 100%; display: block; }
.time-dial .ring-track { stroke: var(--line); }
.time-dial .ring-progress {
  stroke: var(--green); stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.15s linear;
}
.time-dial .hand { stroke: var(--ink); stroke-linecap: round; transform-origin: 50% 50%; }
.time-dial .hand--minute { stroke-width: 2.4; }
.time-dial .hand--hour { stroke-width: 3.2; }
.time-dial .dial-pin { fill: var(--green); }
.time-dial .dial-check { opacity: 0; transform: scale(0.5); transform-origin: 50% 50%; transition: opacity 0.3s, transform 0.3s; }
.time-dial.is-done .dial-check { opacity: 1; transform: scale(1); }
.time-dial.is-done .hand, .time-dial.is-done .dial-pin { opacity: 0; }
.time-dial.is-done .ring-progress { stroke: var(--green-bright); }

.time-dial-label {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 8px 14px; box-shadow: var(--shadow-soft);
  text-align: left; white-space: nowrap;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.time-dial.has-label .time-dial-label { opacity: 1; transform: translateX(0); }
.time-dial-label b {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--ink); line-height: 1.2;
}
.time-dial-label small { font-size: 0.68rem; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 720px) {
  .time-dial { left: 14px; bottom: 14px; }
  .time-dial-face { width: 52px; height: 52px; }
  .time-dial-label b { font-size: 0.72rem; }
  .time-dial-label { padding: 6px 11px; }
  .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------- Story chapters ---------- */
.chapter-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 18px;
}
.chapter-tag b { color: var(--green); font-size: 1rem; letter-spacing: 0; }
.chapter-tag::after { content: ''; width: 40px; height: 1px; background: var(--line-strong); }

/* one-line "illa" strip (condensed anti-sales) */
.illa-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px;
  padding: 26px 28px; border-radius: var(--radius);
  background: var(--ink); color: #fff;
}
.illa-strip .illa-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-right: 8px; color: #7fe0ae; }
.illa-strip span.illa-item {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  padding: 8px 15px; font-size: 0.88rem; color: #dceee4; font-weight: 600;
}
.illa-strip svg { width: 15px; height: 15px; color: #f2a08e; flex-shrink: 0; }

/* hero clock asset */
.hero-clock {
  width: 84px; height: 84px; margin: 0 auto 26px; position: relative;
}
.hero-clock svg { width: 100%; height: 100%; }
.hero-clock .hc-minute { transform-origin: 50% 50%; animation: hc-spin 12s linear infinite; }
.hero-clock .hc-hour { transform-origin: 50% 50%; animation: hc-spin 144s linear infinite; }
@keyframes hc-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-clock .hc-minute, .hero-clock .hc-hour { animation: none; } }

/* quote-first story cards */
.quote-card { display: flex; flex-direction: column; gap: 14px; }
.quote-card .story-quote { margin-top: 0; font-size: 1.06rem; }
.quote-card .quote-result {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--green-deep);
}
.quote-card .quote-result svg { width: 18px; height: 18px; color: var(--green-bright); flex-shrink: 0; }
.quote-card .quote-who { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- Responsive polish ---------- */
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .split { gap: 44px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 48px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding-top: calc(var(--header-h) + 44px); padding-bottom: 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .card { padding: 24px; }
  .cta-band { border-radius: 22px; }
  .cta-band .hero-actions .btn { width: 100%; }
  .form-shell { border-radius: 20px; }
  .chat-mock { max-width: 100%; }
  .footer-wordmark { margin-top: 24px; }
  .yes-banner { padding: 26px 24px; }
  .illa-strip { padding: 22px 20px; }
  .marquee-group span { font-size: 0.82rem; padding: 0 13px; }
}
@media (min-width: 921px) and (max-width: 1120px) {
  .main-nav a { padding: 8px 10px; font-size: 0.9rem; }
  .header-phone { display: none; }
}
