/* ──────────────────────────────────────────────
   Zovena v2.4 — Landing page styles
   Mobile-first. Plain CSS. No frameworks.
   Fonts: Fraunces (serif) + DM Sans (body)
   ────────────────────────────────────────────── */

/* ===== SELF-HOSTED FONTS ===== */

/* DM Sans — latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Sans — latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces normal — latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fraunces normal — latin */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces italic — latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fraunces italic — latin */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #FAF5EE;
  --cream-deep: #F2E8DA;
  --cream-mid: #F7EFE3;
  --navy: #2A3548;
  --navy-deep: #1F2838;
  --terracotta: #D4713B;
  --terracotta-hover: #B85D2A;
  --terracotta-soft: #E89968;
  --text-primary: #2A3548;
  --text-muted: #6B6E78;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-dark-muted: rgba(255, 255, 255, 0.65);
  --border-soft: #E8DFD3;
  --shadow-soft: 0 8px 32px rgba(42, 53, 72, 0.06);
  --shadow-card: 0 16px 48px rgba(42, 53, 72, 0.10);
}

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

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--terracotta); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVBAR ===== */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.logo-text { line-height: 1.1; }
.logo-text .brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-text .brand .z { color: #D17E55; }
.logo-text .brand .rest { color: #314459; }
.logo-text .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 113, 59, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.hero h1 .accent {
  color: var(--terracotta);
  font-weight: 600;
  font-style: italic;
}
.hero-lede {
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.55;
  max-width: 520px;
}
.hero-lede strong {
  font-weight: 600;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-style: italic;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 113, 59, 0.25);
}
.btn-primary .arrow {
  transition: transform 0.2s;
}
.btn-primary:hover .arrow {
  transform: translateX(3px);
}
.hero-microcopy {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-form-wrapper {
  max-width: 440px;
  margin-top: 28px;
}

.hero-credibility {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Hero visual: organic shapes + Zoey voice */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob {
  position: absolute;
  pointer-events: none;
}
.blob-1 {
  width: 560px;
  height: 560px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.blob-2 {
  width: 300px;
  height: 300px;
  left: -70px;
  bottom: -40px;
  z-index: 0;
  opacity: 0.9;
}
.voice-fragment {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 40px;
  max-width: 400px;
}
.voice-rule {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 auto 22px;
  border-radius: 2px;
}
.voice-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 30px;
}
.voice-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.voice-attribution {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: var(--cream);
  padding: 40px 0 100px;
}
.pain-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.pain-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.1;
  max-width: 720px;
}
.pain-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.pain-item {
  border-left: 3px solid var(--terracotta);
  padding-left: 28px;
}
.pain-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.pain-item p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.65;
}
.pain-item p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== BRIDGE SECTION ===== */
.bridge-section {
  background: var(--cream);
  padding: 100px 0 120px;
  border-top: 1px solid var(--border-soft);
}
.bridge-header {
  text-align: center;
  margin-bottom: 72px;
}
.bridge-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.bridge-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.bridge-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 685px;
  margin: 10px auto;
  line-height: 1.55;
}
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.bridge-card {
  text-align: center;
}
.bridge-label {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.bridge-caption {
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* Email mockup */
.email-mock {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 0;
  text-align: left;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  max-width: 380px;
  margin: 0 auto;
}
.email-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.email-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.email-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}
.email-from-line {
  flex: 1;
  min-width: 0;
}
.email-from {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.email-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.email-body {
  padding: 20px 22px 24px;
}
.email-subject {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.email-preview {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.email-preview .signature {
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 15px;
}

/* Bridge phone mockup (app vision) */
.bridge-phone {
  position: relative;
  opacity: 0.95;
}
.bridge-phone .vision-tag {
  position: absolute;
  top: -16px;
  right: -8px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

/* ===== LINEAGE (dark section) ===== */
.lineage {
  background: var(--navy);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.lineage::before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 113, 59, 0.12), transparent 70%);
  border-radius: 50%;
}
.lineage-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lineage-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--terracotta-soft);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.lineage h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: white;
}
.lineage p {
  color: var(--text-on-dark);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lineage p.callout {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--terracotta-soft);
  font-weight: 400;
  border-left: 2px solid var(--terracotta);
  padding-left: 20px;
  margin-top: 32px;
  line-height: 1.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.stat {
  text-align: left;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--terracotta-soft);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 600;
}
.founders {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.founder {
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #4A5568, #2D3748);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.founder-info .name {
  font-weight: 600;
  font-size: 14.5px;
  color: white;
  margin-bottom: 2px;
}
.founder-info .role {
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--navy-deep);
  color: white;
  padding: 120px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 113, 59, 0.08), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--terracotta-soft);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: white;
}
.cta h2 em {
  font-style: italic;
  color: var(--terracotta-soft);
  font-weight: 600;
}
.cta-lede {
  font-size: 19px;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-secondary {
  font-size: 16px;
  color: var(--text-on-dark-muted);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-form-wrapper {
  max-width: 440px;
  margin: 0 auto;
}
.cta-microcopy {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
}

.cta-footnote {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Kit form styling for CTA section (dark background) */
.cta-form-wrapper .formkit-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}
.cta-form-wrapper .formkit-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form-wrapper .formkit-input,
.cta-form-wrapper input[type="text"],
.cta-form-wrapper input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.10);
  color: white;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s;
}
.cta-form-wrapper .formkit-input::placeholder,
.cta-form-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.cta-form-wrapper .formkit-input:focus,
.cta-form-wrapper input[type="text"]:focus,
.cta-form-wrapper input[type="email"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--terracotta-soft);
  color: var(--navy-deep);
}
.cta-form-wrapper .formkit-submit,
.cta-form-wrapper button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--terracotta);
  color: white;
  padding: 17px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-top: 6px;
}
.cta-form-wrapper .formkit-submit:hover,
.cta-form-wrapper button[type="submit"]:hover {
  background: var(--terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 113, 59, 0.25);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--cream);
  padding: 110px 0 130px;
}
.faq-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.1;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 32px;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.faq-item p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== INLINE APP MOCKUP (animated phone) ===== */
.phone-shell {
  position: relative;
  width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: 38px;
  border: 8px solid #1A2230;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
  text-align: left;
}
.phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1A2230;
  border-radius: 12px;
  z-index: 10;
}

.zphone-status {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  flex-shrink: 0;
  background: #FAF7F0;
}
.zphone-status .time { font-size: 13px; font-weight: 700; color: #2A1F14; letter-spacing: -0.3px; }
.zphone-status .island { width: 88px; height: 26px; background: #111; border-radius: 14px; }
.zphone-status .icons { display: flex; align-items: center; gap: 5px; color: #2A1F14; }
.zphone-status .icons svg { fill: currentColor; }

.zphone-header {
  padding: 6px 14px 10px;
  border-bottom: 1px solid #E8DDD2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #FAF7F0;
}
.zphone-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.zphone-avatar svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(209, 126, 85, 0.4));
}
.zphone-header .name { font-size: 15px; font-weight: 700; color: #2A1F14; letter-spacing: -0.3px; }
.zphone-header .sub { font-size: 11px; color: #4caf50; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.zphone-header .dot-online { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; }
.zphone-header .info { flex: 1; }

.zphone-conv {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #FAF7F0;
}
.zphone-thread {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: #FAF7F0;
}
.zphone-thread::-webkit-scrollbar { width: 3px; }
.zphone-thread::-webkit-scrollbar-thumb { background: #E8DDD2; border-radius: 2px; }

.zphone-tray {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.zphone-tray-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E8DDD2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
  transition: transform 0.15s, background 0.2s;
}
.zphone-tray-btn:active { transform: scale(0.87); }
.zphone-tray-btn.done { background: #EDE6DD; border-color: #DDD2C4; }
.zphone-tray-btn.done > span { opacity: 0.45; }
.zphone-tray-btn.pulsing { animation: zphone-icon-pulse 1.1s ease infinite; }
.zphone-tray-ring {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #FAF7F0;
}

.zphone-row { display: flex; flex-direction: column; background: #FAF7F0; }
.zphone-row.zoey { align-items: flex-start; }
.zphone-row.rep { align-items: flex-end; }

.zphone-typing { display: none; align-items: center; gap: 4px; padding: 4px 0; background: #FAF7F0; }
.zphone-typing.visible { display: flex; }
.zphone-typing .d { width: 6px; height: 6px; border-radius: 50%; background: #9B8676; animation: zphone-bounce 1.2s infinite; }
.zphone-typing .d:nth-child(2) { animation-delay: 0.2s; }
.zphone-typing .d:nth-child(3) { animation-delay: 0.4s; }

.zphone-zoey-text {
  font-size: 14px;
  line-height: 1.65;
  color: #2A1F14;
  width: 100%;
}
.zphone-rep-bubble {
  background: #FBE9DC;
  border: 1px solid #E8C9B6;
  border-radius: 18px 4px 18px 18px;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.5;
  color: #2A1F14;
  max-width: 82%;
}

.zphone-card {
  margin-top: 8px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  animation: zphone-slide-in 0.38s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
}
.zphone-card.followup { background: #FFF8F3; border-left: 3px solid #C4633A; border-radius: 0 10px 10px 0; }
.zphone-card.focus { background: #F4F0FB; border-left: 3px solid #7B6FA8; border-radius: 0 10px 10px 0; }
.zphone-card.study { background: #F0F8F5; border-left: 3px solid #4A8B7C; border-radius: 0 10px 10px 0; }
.zphone-card .title { font-weight: 700; margin-bottom: 4px; }
.zphone-card .body { line-height: 1.45; margin-bottom: 8px; }
.zphone-card .sub { font-size: 10px; margin-bottom: 4px; }
.zphone-card .btns { display: flex; gap: 5px; flex-wrap: wrap; }
.zphone-cbtn { padding: 4px 9px; border-radius: 8px; font-size: 10px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; }
.zphone-cbtn.primary { background: #C4633A; color: #fff; }
.zphone-cbtn.outline { background: transparent; color: #C4633A; border: 1px solid #C4633A; }
.zphone-cbtn.purple { background: #7B6FA8; color: #fff; }
.zphone-cbtn.teal { background: #4A8B7C; color: #fff; }

.zphone-input {
  padding: 10px 12px 12px;
  background: #FDFAF6;
  border-top: 1px solid #E8DDD2;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.zphone-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E8DDD2;
  border-radius: 24px;
  padding: 9px 14px;
}
.zphone-input-placeholder { font-size: 13px; color: #9B8676; }
.zphone-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #C4633A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(196, 99, 58, 0.45);
}

.zphone-nav {
  height: 58px;
  background: #FDFAF6;
  border-top: 1px solid #E8DDD2;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px 4px;
  flex-shrink: 0;
}
.zphone-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #9B8676; }
.zphone-tab.active { color: #C4633A; }
.zphone-tab span { font-size: 10px; font-weight: 400; letter-spacing: 0.2px; }
.zphone-tab.active span { font-weight: 700; }
.zphone-nav-dot { width: 4px; height: 4px; border-radius: 50%; background: #C4633A; }

@keyframes zphone-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
@keyframes zphone-slide-in {
  from { transform: translateY(12px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes zphone-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zphone-icon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 99, 58, 0.5), 0 2px 10px rgba(0, 0, 0, 0.09); }
  50% { box-shadow: 0 0 0 6px rgba(196, 99, 58, 0), 0 2px 10px rgba(0, 0, 0, 0.09); }
}
.zphone-msg-new { animation: zphone-fade-in 0.28s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero h1 { font-size: 44px; }
  .bridge-grid { grid-template-columns: 1fr; gap: 64px; }
  .lineage-inner { grid-template-columns: 1fr; gap: 56px; }
  .pain-title, .bridge-title { font-size: 34px; }
  .cta h2 { font-size: 42px; }
  .phone-shell { width: 280px; }
  .hero-visual { min-height: 380px; }
  .blob-1 { width: 440px; height: 440px; right: -40px; }
  .blob-2 { width: 240px; height: 240px; }
  .voice-quote { font-size: 34px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 38px; }
  .pain-section { padding: 30px 0 64px; }
  .bridge-section { padding: 64px 0 80px; }
  .lineage { padding: 64px 0; }
  .cta { padding: 80px 0 90px; }
  .faq-section { padding: 64px 0 80px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .founders { flex-direction: column; gap: 16px; }
  .voice-quote { font-size: 30px; }
  .blob-1 { width: 360px; height: 360px; }
  .blob-2 { width: 200px; height: 200px; }
  .faq-title { font-size: 32px; }
  .lineage h2 { font-size: 32px; }
  .cta h2 { font-size: 36px; }
}

/* ===== VISUALLY HIDDEN (for screen readers) ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
