* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --primary: #002C3C;
  --secondary: #288EA7;
  --secondary-dark: #1B748F;
  --accent: #ff8904;
  --mascot: #99BEB7;
  --mascot-tint: #D4E6E1;
  --cream: #F4F1E8;
  --bg: #FAF8F2;
  --ink: #1A2A2F;
  --ink-soft: #4A5A60;
  --ink-mute: #6B7A80;
  --line: rgb(0 0 0 / 8%);
  --teal-light: #3BAACC;
  --sage-light: #C4D9D6;
  --sage-pale: #EFF5F4;
  --sage-mid: #D9ECEB;
  --white: #FFFFFF;
  --body-bg: #F5F9F8;
  --text-body: #2A4A56;
  --text-muted: #5A7A88;
  --text-light: #89AABB;
  --font-title: 'Lora',Georgia,serif;
  --font-body: 'Geist','Inter',system-ui,sans-serif;
  --teal-dark: #1B748F;
  --teal-tint: rgba(40, 142, 167, 0.15);
  --teal-bright: #3BAACC;
  --surface: #031E28;
  --surface-2: #052433;
  --surface-3: #073040;
  --surface-card: #0A3545;
  --surface-input: #0C3D50;
  --navy-60: rgba(255, 255, 255, 0.6);
  --navy-30: rgba(255, 255, 255, 0.3);
  --navy-08: rgba(255, 255, 255, 0.06);
  --accent: #FFC07A;
  --accent-tint: rgba(255, 192, 122, 0.12);
  --mascot: #99BEB7;
  --mascot-tint: rgba(153, 190, 183, 0.12);
  --white: #FFFFFF;
  --bg: #031E28;
  --line-bright: rgba(255, 255, 255, 0.12);
  --text-primary: rgba(255, 255, 255, 0.92);
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);
  --font-head: 'Lora',Georgia,serif;
  --font-body: 'Geist','Inter',system-ui,sans-serif;
  --red: #E05252;
  --green: #2EBD6B
}
html {
  scroll-behavior: smooth
}
body {
  font-family: Geist,sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Lora,serif;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -.01em
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0
}
.logo {
  font-family: Lora,serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none
}
.logo span {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--secondary-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
  padding: 3px 8px;
  background: var(--mascot-tint);
  border-radius: 4px
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft)
}
.nav-links a {
  cursor: pointer;
  transition: color .15s;
  text-decoration: none;
  color: var(--ink-soft)
}
.nav-links a:hover {
  color: var(--primary)
}
.nav-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: .15s;
  text-decoration: none
}
.nav-ghost:hover {
  border-color: var(--primary);
  color: var(--primary)
}
.nav-cta {
  background: var(--secondary);
  color: var(--white)!important;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: .15s;
  text-decoration: none
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(40,142,167,.28);
  background: var(--secondary-dark)
}
.section-eyebrow {
  text-transform: uppercase;
  color: var(--secondary-dark)
}
.section-eyebrow.center {
  text-align: center
}
.section-head p {
  color: var(--ink-soft);
  line-height: 1.6
}
.hero-b2b {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0 48px
}
.hero-eyebrow {
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center
}
.hero-eyebrow::before {
  content: "";
  background: var(--accent);
  display: inline-block
}
.hero-b2b h1 {
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  font-weight: 500
}
.hero-b2b h1 em {
  font-style: normal;
  color: var(--secondary)
}
.hero-sub-b2b {
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px
}
.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Geist,sans-serif
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(40,142,167,.32);
  background: var(--secondary-dark)
}
.btn-ghost {
  background: 0 0;
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: .15s;
  font-family: Geist,sans-serif
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary)
}
.hero-visual-b2b {
  background: var(--primary);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 32px 72px rgba(0,44,60,.25)
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px
}
.dash-title {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--mascot);
  letter-spacing: .12em;
  text-transform: uppercase
}
.dash-live-wrap {
  display: flex;
  align-items: center;
  gap: 6px
}
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ebd6b;
  box-shadow: 0 0 0 3px rgba(46,189,107,.2);
  animation: 2s ease-in-out infinite pulse
}
.dash-live-text {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: #2ebd6b;
  letter-spacing: .08em
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 18px
}
.dash-stat {
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 16px 14px
}
.dash-stat-num {
  font-family: Lora,serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px
}
.dash-stat-num em {
  font-style: normal;
  font-size: 13px;
  color: var(--accent)
}
.dash-stat-label {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase
}
.dash-chart-label {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin-bottom: 18px
}
.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0
}
.dash-bar.b1 {
  height: 28%;
  background: rgba(152,189,182,.25)
}
.dash-bar.b2 {
  height: 38%;
  background: rgba(152,189,182,.32)
}
.dash-bar.b3 {
  height: 50%;
  background: rgba(152,189,182,.42)
}
.dash-bar.b4 {
  height: 44%;
  background: rgba(152,189,182,.42)
}
.dash-bar.b5 {
  height: 62%;
  background: rgba(152,189,182,.55)
}
.dash-bar.b6 {
  height: 70%;
  background: rgba(152,189,182,.65)
}
.dash-bar.b7 {
  height: 80%;
  background: var(--mascot)
}
.dash-bar.b8 {
  height: 90%;
  background: var(--secondary)
}
.dash-sessions {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.dash-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 10px 12px
}
.dash-session-left {
  display: flex;
  align-items: center;
  gap: 10px
}
.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--mascot-tint),var(--mascot));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Lora,serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0
}
.dash-session-name {
  font-size: 11.5px;
  color: rgba(255,255,255,.8);
  font-weight: 500
}
.dash-session-type {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .06em;
  margin-top: 1px
}
.dash-tag {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap
}
.dash-tag.ai {
  background: rgba(40,142,167,.25);
  color: var(--secondary)
}
.dash-tag.escalated {
  background: rgba(255,137,4,.2);
  color: var(--accent)
}
.proof-bar {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px
}
.proof-label {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px
}
.pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.14)
}
.pain-card.dark {
  background: var(--primary);
  border-color: var(--primary)
}
.pain-card.dark h3,
.pain-card.dark p {
  color: #fff
}
.pain-stat {
  font-family: Lora,serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em
}
.pain-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 500
}
.pain-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6
}
.pain-source {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .06em;
  margin-top: 14px;
  text-transform: uppercase
}
.mentra-core-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden
}
.mentra-core-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 240px;
  height: 240px;
  background: var(--mascot);
  border-radius: 50%;
  opacity: .08;
  pointer-events: none
}
.core-text h2 {
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  color: #fff
}
.core-text h2 em {
  font-style: normal;
  color: var(--mascot)
}
.core-lead {
  font-size: 16px;
  color: rgba(212,230,225,.85);
  line-height: 1.65;
  margin-bottom: 24px
}
.core-list {
  list-style: none;
  padding: 0
}
.core-list li {
  font-size: 14.5px;
  color: #c8ddd9;
  padding-left: 22px;
  position: relative;
  margin-bottom: 11px;
  line-height: 1.5
}
.core-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 4px;
  top: 9px
}
.core-chat {
  background: rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 24px
}
.core-chat-label {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  opacity: .7
}
.cc-msg {
  background: rgba(255,255,255,.1);
  border-radius: 13px 13px 13px 3px;
  padding: 11px 14px;
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  max-width: 86%
}
.cc-user {
  background: var(--secondary-dark);
  color: #fff;
  border-radius: 13px 13px 3px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-left: auto;
  max-width: 76%;
  text-align: right
}
.safety-net-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center
}
.safety-icon {
  font-size: 34px
}
.safety-text h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px
}
.safety-text p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6
}
.safety-badge {
  font-family: 'Geist Mono',monospace;
  font-size: 10.5px;
  color: var(--secondary-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--mascot-tint);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap
}
.identify-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px
}
.identify-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.identify-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(0,44,60,.12)
}
.identify-num {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,137,4,.08);
  border-radius: 4px
}
.identify-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.25
}
.identify-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6
}
.memory-section {
  background: var(--bg)
}
.memory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}
.memory-text h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px
}
.memory-text p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px
}
.memory-callout {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500
}
.memory-callout span {
  display: block;
  font-size: 10.5px;
  color: var(--ink-mute);
  font-weight: 400;
  font-family: 'Geist Mono',monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px
}
.work-chat {
  background: var(--primary);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 24px 56px rgba(0,44,60,.18)
}
.work-chat-label {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--mascot);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px
}
.wc-week {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: rgba(152,189,182,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  margin: 12px 0 8px
}
.wc-msg {
  background: rgba(255,255,255,.08);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 14px;
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  max-width: 88%
}
.wc-user {
  background: var(--secondary-dark);
  color: #fff;
  border-radius: 14px 14px 4px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-left: auto;
  max-width: 76%;
  text-align: right
}
.hr-gets-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px
}
.hr-tile {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.hr-tile:hover {
  transform: translateY(-3px);
  border-color: var(--mascot);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.12)
}
.hr-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block
}
.hr-tile h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500
}
.hr-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55
}
.impact-section {
  background: var(--primary)
}
.impact-section .section-head h2 {
  color: #fff
}
.impact-section .section-head p {
  color: var(--mascot)
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px
}
.impact-card {
  background: rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08)
}
.impact-num {
  font-family: Lora,serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em
}
.impact-label {
  font-size: 14px;
  color: var(--mascot);
  line-height: 1.5
}
.impact-source {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: rgba(152,189,182,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px
}
.faq-section {
  background: var(--bg)
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  transition: box-shadow .2s
}
.faq-item:hover {
  box-shadow: 0 8px 28px -8px rgba(0,44,60,.12)
}
.faq-q {
  font-family: Lora,serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3
}
.faq-a {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6
}
.trust-grid-b2b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.trust-block {
  border: 1px solid var(--line)
}
.trust-list li {
  color: var(--ink-soft)
}
.founder-meta span {
  color: var(--secondary-dark);
  text-transform: uppercase
}
.plans-section {
  background: var(--bg)
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto
}
.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px -16px rgba(0,44,60,.14)
}
.plan-card.featured {
  background: var(--primary);
  border-color: var(--primary)
}
.plan-tag {
  font-family: 'Geist Mono',monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 18px
}
.plan-card.featured .plan-tag {
  color: var(--accent)
}
.plan-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 500
}
.plan-card.featured h3 {
  color: #fff
}
.plan-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 22px
}
.plan-card.featured .plan-desc {
  color: var(--mascot)
}
.plan-includes {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px
}
.plan-card.featured .plan-includes {
  color: rgba(152,189,182,.55)
}
.plan-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px
}
.plan-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
  line-height: 1.5
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700
}
.plan-card.featured .plan-list li {
  color: #c8ddd9
}
.plan-card.featured .plan-list li::before {
  color: var(--accent)
}
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: Geist,sans-serif;
  transition: .15s
}
.plan-cta.accent {
  background: var(--secondary);
  color: var(--white)
}
.plan-cta.accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(40,142,167,.28);
  background: var(--secondary-dark)
}
.plan-cta.outline {
  background: 0 0;
  border: 1.5px solid var(--line);
  color: var(--ink)
}
.plan-cta.outline:hover {
  border-color: var(--primary);
  color: var(--primary)
}
.plan-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-mute);
  font-family: 'Geist Mono',monospace;
  letter-spacing: .04em
}
.final-cta {
  background: var(--primary);
  align-items: center
}
.final-cta::before {
  content: "";
  background: var(--mascot);
  opacity: .09;
  pointer-events: none
}
.final-cta-text h2 {
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 14px
}
.final-cta-text p {
  color: var(--mascot);
  font-size: 17px;
  line-height: 1.6;
  max-width: 500px
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 230px
}
.btn-cta-accent {
  background: var(--secondary);
  color: var(--white);
  padding: 17px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: Geist,sans-serif;
  transition: .15s
}
.btn-cta-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(40,142,167,.35);
  background: var(--secondary-dark)
}
.btn-cta-ghost {
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.14);
  font-family: Geist,sans-serif;
  transition: .15s
}
.btn-cta-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28)
}
.final-fine {
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center
}
footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.3fr 3fr;
  gap: 48px;
  font-size: 13.5px;
  color: var(--ink-mute)
}
.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  text-decoration: none
}
.footer-brand p {
  line-height: 1.55;
  font-size: 13.5px
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px
}
.footer-col h6 {
  font-family: 'Geist Mono',monospace;
  font-size: 10.5px;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600
}
.footer-col div {
  margin-bottom: 8px;
  cursor: pointer;
  transition: color .15s
}
.footer-col div:hover {
  color: var(--primary)
}
.menu-toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 4px
}
@media (max-width:900px) {
  .menu-toggle {
    display: block;
    z-index: 100
  }
  .nav {
    position: relative
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: -32px;
    right: -32px;
    background: #fff;
    padding: 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0,0,0,.05);
    z-index: 99
  }
  .nav-links.open {
    display: flex
  }
  .nav-cta,
  .nav-ghost {
    text-align: center;
    justify-content: center
  }
  .faq-grid,
  .footer-cols,
  .hero-b2b,
  .memory-grid,
  .mentra-core-card,
  .pain-grid,
  .plans-grid,
  .trust-grid-b2b,
  footer {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .hero-b2b h1 {
    font-size: 36px
  }
  .impact-grid {
    grid-template-columns: repeat(2,1fr)
  }
  .hr-gets-grid,
  .identify-grid {
    grid-template-columns: 1fr
  }
  .section-head h2 {
    font-size: 32px
  }
  .final-cta {
    grid-template-columns: 1fr;
    padding: 52px 28px
  }
  .final-cta-text h2 {
    font-size: 32px
  }
  .safety-net-strip {
    grid-template-columns: 1fr;
    gap: 16px
  }
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}
.hero-eyebrow {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}
.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px
}
.hero-sub {
  color: var(--ink-soft)
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin-bottom: 20px
}
.btn-download {
  background: var(--primary);
  color: #fff;
  padding: 17px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: Geist,sans-serif;
  transition: .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}
.btn-download:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,44,60,.22)
}
.btn-stores {
  display: flex;
  gap: 10px
}
.store-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: .15s
}
.store-pill:hover {
  border-color: var(--primary);
  transform: translateY(-1px)
}
.store-pill-icon {
  font-size: 18px
}
.store-pill-text {
  text-align: left
}
.store-pill-sub {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: .05em;
  text-transform: uppercase
}
.store-pill-name {
  font-family: Lora,serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1
}
.hero-fine {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .05em;
  text-transform: uppercase
}
.hero-visual {
  height: 520px
}
.phone-float {
  position: absolute;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0,44,60,.18);
  overflow: hidden
}
.phone-main {
  width: 260px;
  top: 0;
  left: 40px;
  z-index: 2
}
.phone-back {
  width: 220px;
  top: 40px;
  right: 0;
  z-index: 1;
  background: var(--primary)
}
.phone-bar {
  background: var(--primary);
  padding: 16px 18px 12px
}
.phone-bar.light {
  background: var(--mascot-tint);
  padding: 14px 16px
}
.phone-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mascot);
  display: inline-block;
  margin-right: 5px
}
.phone-label {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase
}
.phone-label.dark {
  color: var(--ink-mute)
}
.phone-time {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: rgba(255,255,255,.4)
}
.phone-body {
  padding: 14px 16px
}
.p-bubble-ai {
  background: var(--cream);
  border-radius: 12px 12px 12px 3px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 7px;
  max-width: 90%
}
.p-bubble-user {
  background: var(--primary);
  color: #fff;
  border-radius: 12px 12px 3px;
  padding: 9px 12px;
  font-size: 12.5px;
  line-height: 1.4;
  margin-bottom: 7px;
  margin-left: auto;
  max-width: 80%;
  text-align: right
}
.p-pill {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-top: 8px
}
.journal-body {
  padding: 16px
}
.journal-date {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px
}
.journal-prompt {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  font-style: italic
}
.journal-entry {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  line-height: 1.55
}
.journal-tag {
  display: inline-block;
  background: rgba(40,142,167,.3);
  color: var(--secondary);
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 10px;
  margin-top: 10px;
  letter-spacing: .06em
}
.proof-bar {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px
}
.proof-item {
  text-align: center
}
.proof-num {
  font-family: Lora,serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1
}
.proof-num em {
  font-style: normal;
  color: var(--accent)
}
.proof-lbl {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px
}
.proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1)
}
.why-section {
  background: var(--cream)
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s,border-color .2s
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--mascot);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.14)
}
.why-card.dark {
  background: var(--primary);
  border-color: var(--primary)
}
.why-card.dark h4 {
  color: #fff
}
.why-card.dark p {
  color: var(--mascot)
}
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block
}
.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2
}
.why-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65
}
.why-vs {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line)
}
.why-card.dark .why-vs {
  border-top-color: rgba(255,255,255,.1);
  color: rgba(152,189,182,.55)
}
.ai-section {
  background: var(--bg)
}
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}
.feature-split.flip {
  direction: rtl
}
.feature-split.flip > * {
  direction: ltr
}
.feature-text h2 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 18px
}
.feature-text h2 em {
  font-style: normal;
  color: var(--secondary)
}
.feature-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 22px
}
.feature-list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
  margin-bottom: 13px;
  line-height: 1.5
}
.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 4px;
  top: 9px
}
.feature-callout {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  font-style: italic
}
.ai-demo-wrap {
  background: linear-gradient(160deg,#fff 0,var(--mascot-tint) 100%);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 30px 64px -20px rgba(0,44,60,.22);
  position: relative
}
.ai-demo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(160deg,var(--mascot),transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}
.ai-demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-mute);
  text-transform: uppercase
}
.ai-bird-wrap {
  flex-shrink: 0
}
.ai-online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  animation: 2s ease-in-out infinite pulse
}
.ai-demo-name {
  color: var(--primary);
  flex: 1;
  font-size: 12px
}
.ai-demo-body {
  display: flex;
  flex-direction: column;
  gap: 9px
}
.ai-msg {
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,44,60,.05)
}
.ai-msg-user {
  background: var(--primary);
  align-self: flex-end
}
.ai-week {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  margin: 6px 0
}
.journal-section {
  background: var(--cream)
}
.journal-mock {
  background: var(--primary);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 28px 56px rgba(0,44,60,.2)
}
.journal-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}
.journal-mock-title {
  font-family: Lora,serif;
  font-size: 18px;
  color: #fff;
  font-weight: 500
}
.journal-mock-date {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase
}
.mood-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px
}
.mood-pill {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: default
}
.mood-pill.active {
  background: var(--accent);
  color: var(--primary)
}
.mood-pill.inactive {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5)
}
.journal-prompt-box {
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px
}
.journal-prompt-label {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--mascot);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px
}
.journal-prompt-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.5
}
.journal-entry-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  min-height: 80px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6
}
.journal-ai-note {
  background: rgba(40,142,167,.18);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start
}
.journal-ai-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px
}
.journal-ai-text {
  font-size: 12.5px;
  color: var(--secondary);
  line-height: 1.5
}
.therapist-section {
  background: var(--bg)
}
.therapist-mock {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 56px rgba(0,44,60,.12);
  border: 1px solid var(--line)
}
.therapist-mock-header {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px
}
.therapist-cards-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px
}
.t-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  transition: border-color .15s;
  cursor: default
}
.t-card.selected {
  border-color: var(--secondary);
  background: var(--mascot-tint)
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--mascot-tint),var(--mascot));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Lora,serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0
}
.t-info {
  flex: 1
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px
}
.t-spec {
  font-size: 12px;
  color: var(--ink-soft)
}
.t-avail {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--green);
  letter-spacing: .06em
}
.t-book-btn {
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  font-family: Geist,sans-serif
}
.therapist-note {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--line)
}
.daily-section {
  background: var(--cream)
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-bottom: 0
}
.daily-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s,border-color .2s;
  cursor: default
}
.daily-card:hover {
  transform: translateY(-3px);
  border-color: var(--mascot);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.13)
}
.daily-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center
}
.daily-card-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block
}
.daily-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500
}
.daily-card.featured h4 {
  color: #fff;
  font-size: 26px
}
.daily-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6
}
.daily-card.featured p {
  color: var(--mascot);
  font-size: 15px
}
.daily-streak {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px
}
.streak-bar {
  display: flex;
  gap: 4px
}
.streak-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line)
}
.streak-dot.done {
  background: var(--accent)
}
.streak-label {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .08em;
  text-transform: uppercase
}
.daily-activities-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.daily-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border-radius: 10px
}
.da-icon {
  font-size: 18px;
  flex-shrink: 0
}
.da-label {
  font-size: 13px;
  color: rgba(255,255,255,.8)
}
.da-tag {
  font-family: 'Geist Mono',monospace;
  font-size: 9px;
  color: var(--accent);
  letter-spacing: .08em;
  margin-left: auto
}
.moments-section {
  background: var(--primary)
}
.moments-section .section-head h2 {
  color: #fff
}
.moments-section .section-head p {
  color: var(--mascot)
}
.moments-section .eyebrow {
  color: var(--accent)
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px
}
.moment-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 32px;
  transition: background .2s,border-color .2s;
  cursor: default
}
.moment-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(152,189,182,.3)
}
.moment-card h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2
}
.moment-card p {
  font-size: 14.5px;
  color: var(--mascot);
  line-height: 1.6
}
.trust-section {
  background: var(--bg)
}
.trust-block {
  border: 1px solid var(--line)
}
.trust-block p {
  color: var(--ink-soft)
}
.trust-list {
  list-style: none;
  padding: 0;
  margin-top: 16px
}
.trust-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700
}
.founder-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px
}
.founder-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--mascot-tint);
  flex-shrink: 0;
  background: linear-gradient(135deg,var(--mascot-tint),var(--mascot))
}
.founder-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.founder-meta h5 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px
}
.founder-meta span {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--secondary-dark);
  letter-spacing: .08em;
  text-transform: uppercase
}
.pricing-section {
  background: var(--cream)
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto
}
.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -16px rgba(0,44,60,.14)
}
.price-card.featured {
  background: var(--primary);
  border-color: var(--primary)
}
.price-tag {
  font-family: 'Geist Mono',monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 18px
}
.price-card.featured .price-tag {
  color: var(--accent)
}
.price-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
  font-weight: 500
}
.price-card.featured h3 {
  color: #fff
}
.price-amount {
  font-family: Lora,serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em
}
.price-amount span {
  font-size: 18px;
  color: var(--ink-soft)
}
.price-card.featured .price-amount {
  color: #fff
}
.price-period {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 24px
}
.price-card.featured .price-period {
  color: var(--mascot)
}
.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px
}
.price-list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700
}
.price-card.featured .price-list li {
  color: #c8ddd9
}
.price-card.featured .price-list li::before {
  color: var(--accent)
}
.price-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: Geist,sans-serif;
  transition: .15s
}
.price-cta.primary {
  background: var(--secondary);
  color: var(--white)
}
.price-cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(40,142,167,.28);
  background: var(--secondary-dark)
}
.price-cta.outline {
  background: 0 0;
  border: 1.5px solid var(--line);
  color: var(--ink)
}
.price-cta.outline:hover {
  border-color: var(--primary);
  color: var(--primary)
}
.pricing-note {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-mute);
  font-family: 'Geist Mono',monospace;
  letter-spacing: .04em
}
.final-section {
  padding: 0 0 96px
}
.final-cta {
  background: var(--primary)
}
.final-cta::before {
  content: "";
  background: var(--mascot);
  opacity: .1;
  pointer-events: none
}
.final-cta::after {
  content: "";
  background: var(--accent);
  opacity: .07;
  pointer-events: none
}
.final-cta h2 {
  letter-spacing: -.025em
}
.final-cta > p {
  color: var(--mascot);
  line-height: 1.6
}
.final-store-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  flex-wrap: wrap
}
.final-store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  min-width: 190px;
  transition: transform .15s,box-shadow .15s
}
.final-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18)
}
.fsb-icon {
  font-size: 24px
}
.fsb-text {
  text-align: left
}
.fsb-sub {
  font-size: 10px;
  color: var(--ink-mute);
  font-family: 'Geist Mono',monospace;
  letter-spacing: .04em;
  text-transform: uppercase
}
.fsb-name {
  font-family: Lora,serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1
}
.final-fine {
  font-family: 'Geist Mono',monospace;
  font-size: 11.5px;
  color: rgba(152,189,182,.6);
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative
}
.final-fine .dot {
  color: var(--accent);
  padding: 0 10px
}
@media (max-width:900px) {
  .daily-grid,
  .feature-split,
  .footer-cols,
  .hero,
  .pricing-grid,
  .trust-grid,
  footer {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .hero h1 {
    font-size: 40px
  }
  .feature-text h2,
  .section-head h2 {
    font-size: 32px
  }
  .final-cta h2 {
    font-size: 36px
  }
  .hero-visual {
    display: none
  }
  .moments-grid,
  .why-grid {
    grid-template-columns: 1fr
  }
  .proof-sep {
    display: none
  }
  .daily-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr
  }
  .feature-split.flip {
    direction: ltr
  }
  .nav-links a:not(.nav-cta) {
    display: none
  }
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center
}
.hero h1 {
  font-size: 60px;
  letter-spacing: -.03em
}
.hero-sub {
  color: var(--ink-soft);
  margin-bottom: 36px
}
.hero-sub strong {
  color: var(--primary);
  font-weight: 600
}
.cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px
}
.cta-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s,background .15s,box-shadow .15s;
  border: none
}
.cta-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,44,60,.2)
}
.cta-primary:active {
  transform: translateY(0)
}
.cta-secondary {
  color: var(--secondary-dark);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: color .15s
}
.cta-secondary:hover {
  color: var(--primary)
}
.cta-fine {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase
}
.hero-visual {
  background: linear-gradient(160deg,var(--mascot-tint) 0,var(--mascot) 100%);
  border-radius: 24px;
  aspect-ratio: 4/5;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}
.phone-mock {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 20px 50px rgba(0,44,60,.18)
}
.phone-mock-header {
  font-family: 'Geist Mono',monospace;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between
}
.phone-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mascot);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle
}
.bubble-ai {
  background: var(--cream);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 8px;
  max-width: 90%;
  line-height: 1.45
}
.bubble-user {
  background: var(--primary);
  color: #fff;
  border-radius: 14px 14px 4px;
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 8px;
  margin-left: auto;
  max-width: 75%;
  text-align: right
}
.booking-pill {
  margin-top: 12px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.booking-pill .arrow {
  font-size: 16px
}
.proof-bar {
  background: var(--primary);
  border-radius: 12px;
  padding: 20px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  transform: translateY(16px);
  transition: opacity .6s,transform .6s
}
.proof-bar.visible {
  opacity: 1;
  transform: translateY(0)
}
.proof-point {
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap
}
.proof-sep {
  color: var(--secondary);
  padding: 0 22px;
  font-weight: 300
}
.section-eyebrow {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 14px;
  text-align: center
}
.section-head {
  text-align: center;
  margin-bottom: 56px
}
.section-head h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s,transform .55s
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 18px;
  align-items: stretch
}
.bridge-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.bridge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(0,44,60,.15)
}
.bridge-card.right {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff
}
.bridge-card.right .tag,
.bridge-card.right h3 {
  color: var(--mascot)
}
.bridge-card.right li {
  color: #d9e4e6
}
.bridge-card.right li::before {
  background: var(--accent)
}
.bridge-card .tag {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 18px
}
.bridge-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 500
}
.bridge-card ul {
  list-style: none;
  padding: 0
}
.bridge-card li {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5
}
.bridge-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  left: 4px;
  top: 9px
}
.bridge-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 32px;
  font-family: Lora,serif
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px
}
.step {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.14)
}
.step-num {
  font-family: 'Geist Mono',monospace;
  color: var(--accent);
  letter-spacing: .14em;
  margin-bottom: 18px
}
.step h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55
}
.moments-section {
  background: var(--cream)
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px
}
.moment {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s,border-color .2s;
  cursor: default
}
.moment:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -16px rgba(0,44,60,.15);
  border-color: var(--mascot)
}
.moment h4 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500
}
.moment p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5
}
.continuity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}
.continuity-text h2 {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -.02em
}
.continuity-text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px
}
.continuity-privacy {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--secondary);
  border-radius: 4px
}
.mock-chat {
  background: var(--primary);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,44,60,.15)
}
.mock-chat-label {
  font-size: 10px;
  color: var(--mascot);
  margin-bottom: 22px;
  font-family: 'Geist Mono',monospace;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase
}
.mock-msg {
  background: rgba(255,255,255,.08);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 16px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 88%
}
.mock-msg-user {
  background: var(--secondary);
  color: #fff;
  margin-left: auto;
  max-width: 72%;
  border-radius: 14px 14px 4px;
  padding: 11px 16px;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: right
}
.therapists-section {
  background: var(--cream)
}
.therapist-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px
}
.therapist {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .2s,box-shadow .2s
}
.therapist:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -14px rgba(0,44,60,.14)
}
.therapist-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--mascot-tint),var(--mascot));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Lora,serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--mascot)
}
.therapist h5 {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 500
}
.therapist .spec {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px
}
.therapist .lang {
  font-family: 'Geist Mono',monospace;
  font-size: 10.5px;
  color: var(--secondary-dark);
  letter-spacing: .08em;
  text-transform: uppercase
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}
.trust-block {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  border: 1px solid var(--line)
}
.trust-block h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 500
}
.trust-block p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6
}
.trust-block ul {
  list-style: none;
  padding: 0;
  margin-top: 18px
}
.trust-block li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px
}
.trust-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700
}
.founder-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 22px;
  border: 3px solid var(--mascot-tint);
  box-shadow: 0 4px 16px rgba(0,44,60,.12);
  flex-shrink: 0
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.mentra-ai-section {
  background: var(--bg)
}
.ai-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px
}
.ai-hero-text h2 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 22px
}
.ai-lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px
}
.ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
.ai-pill {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: .15s;
  cursor: default
}
.ai-pill:hover {
  background: var(--mascot-tint);
  border-color: var(--mascot);
  color: var(--primary)
}
.ai-demo {
  background: linear-gradient(160deg,#fff 0,var(--mascot-tint) 100%);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,44,60,.25);
  position: relative
}
.ai-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(160deg,var(--mascot),transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}
.ai-demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px 14px;
  border-bottom: 1px solid rgba(0,44,60,.08);
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em
}
.ai-bird-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0
}
.ai-bird-wrap svg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block
}
.ai-bird-online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ebd6b;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(46,189,107,.18);
  animation: 2s ease-in-out infinite pulse
}
.ai-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ebd6b;
  box-shadow: 0 0 0 4px rgba(46,189,107,.18);
  animation: 2s ease-in-out infinite pulse
}
.ai-demo-name {
  color: var(--primary);
  font-weight: 600;
  flex: 1
}
.ai-demo-status {
  font-size: 10px
}
.ai-demo-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.ai-msg {
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: 0 2px 8px rgba(0,44,60,.04);
  animation: .4s ease-out both msgIn
}
.ai-msg-user {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px 16px 4px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 80%;
  margin-left: auto;
  align-self: flex-end;
  animation: .4s ease-out both msgIn
}
.ai-msg-user:nth-child(2),
.ai-msg:nth-child(2) {
  animation-delay: .15s
}
.ai-msg-user:nth-child(3),
.ai-msg:nth-child(3) {
  animation-delay: .3s
}
.ai-msg-user:nth-child(4),
.ai-msg:nth-child(4) {
  animation-delay: .45s
}
.ai-msg-user:nth-child(5),
.ai-msg:nth-child(5) {
  animation-delay: .6s
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.ai-tiles {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-bottom: 32px
}
.ai-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform .2s,box-shadow .2s,border-color .2s;
  cursor: default
}
.ai-tile:hover {
  transform: translateY(-3px);
  border-color: var(--mascot);
  box-shadow: 0 16px 40px -20px rgba(0,44,60,.18)
}
.ai-tile-num {
  font-family: 'Geist Mono',monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,137,4,.1);
  border-radius: 4px
}
.ai-tile h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2
}
.ai-tile p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55
}
.ai-key-message {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--primary);
  margin: 10px 0 26px;
  line-height: 1.35;
  position: relative;
  padding-left: 18px
}
.ai-key-message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: var(--accent);
  border-radius: 4px
}
.work-section {
  background: var(--mascot-tint)
}
.work-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 44px 48px
}
.work-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -.015em
}
.work-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6
}
.work-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-block;
  cursor: pointer;
  transition: transform .15s,box-shadow .15s
}
.work-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,137,4,.25)
}
.final-cta-section {
  padding: 0 0 96px
}
.final-cta {
  background: var(--primary);
  border-radius: 20px;
  padding: 80px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--mascot);
  border-radius: 50%;
  opacity: .15
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .08
}
.final-cta h2 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
  position: relative
}
.final-cta > p {
  color: var(--mascot);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  flex-wrap: wrap
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  cursor: pointer;
  min-width: 190px
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18)
}
.store-icon {
  font-size: 24px
}
.store-text {
  text-align: left
}
.store-sub {
  font-size: 10.5px;
  color: var(--ink-mute);
  font-family: 'Geist Mono',monospace;
  letter-spacing: .04em;
  text-transform: uppercase
}
.store-name {
  font-family: Lora,serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1
}
.reassurance {
  font-family: 'Geist Mono',monospace;
  font-size: 12px;
  color: var(--mascot);
  letter-spacing: .06em;
  margin-top: 6px;
  position: relative;
  text-transform: uppercase
}
.reassurance .dot {
  color: var(--accent);
  padding: 0 8px
}
@media (max-width:880px) {
  .ai-hero {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .ai-hero-text h2 {
    font-size: 34px
  }
  .ai-tiles {
    grid-template-columns: 1fr
  }
  .bridge-grid,
  .continuity,
  .footer-cols,
  .hero,
  .moments-grid,
  .steps-grid,
  .therapist-row,
  .trust-grid,
  .work-card,
  footer {
    grid-template-columns: 1fr;
    gap: 32px
  }
  .hero h1 {
    font-size: 42px
  }
  .continuity-text h2,
  .section-head h2 {
    font-size: 32px
  }
  .final-cta h2 {
    font-size: 36px
  }
  .bridge-arrow,
  .nav-links span:not(.nav-cta) {
    display: none
  }
}
.hero-noom {
  background: #002c3c;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 20px
}
.noom-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center
}
.noom-headline {
  font-family: var(--font-title);
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -2px
}
.noom-line-1,
.noom-line-2,
.noom-line-3 {
  position: relative;
  display: block;
  opacity: 0;
  animation: .8s forwards fadeUp
}
.noom-line-1 {
  animation-delay: .2s
}
.noom-line-2 {
  animation-delay: .4s
}
.noom-line-3 {
  animation-delay: .6s
}
.noom-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: #fff;
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
  opacity: 0;
  animation: .8s .8s forwards fadeUp
}
.noom-sub strong {
  font-weight: 700
}
.noom-btn {
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s;
  opacity: 0;
  animation: .8s 1s forwards fadeUp
}
.noom-btn:hover {
  transform: scale(1.05)
}
.noom-bubble {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  z-index: 5;
  opacity: 0;
  animation-fill-mode: forwards
}
.noom-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.5)
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}
.nb-1 {
  width: 90px;
  height: 90px;
  top: 18%;
  left: 8%;
  animation: .8s cubic-bezier(.34,1.56,.64,1) .5s forwards popIn,5s ease-in-out 1.3s infinite floatBubble
}
.nb-2 {
  width: 130px;
  height: 130px;
  top: 38%;
  left: 18%;
  animation: .8s cubic-bezier(.34,1.56,.64,1) .7s forwards popIn,6s ease-in-out 1.5s infinite floatBubbleY
}
.nb-3 {
  width: 150px;
  height: 150px;
  bottom: 12%;
  left: 8%;
  animation: .8s cubic-bezier(.34,1.56,.64,1) .9s forwards popIn,7s ease-in-out 1.7s infinite floatBubble
}
.nb-4 {
  width: 100px;
  height: 100px;
  top: 15%;
  right: 20%;
  animation: .8s cubic-bezier(.34,1.56,.64,1) .6s forwards popIn,5.5s ease-in-out 1.4s infinite floatBubbleY
}
.nb-5 {
  width: 130px;
  height: 130px;
  bottom: 20%;
  right: 18%;
  animation: .8s cubic-bezier(.34,1.56,.64,1) .8s forwards popIn,6.5s ease-in-out 1.6s infinite floatBubble
}
.noom-swoosh {
  position: absolute;
  stroke: white;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  z-index: -1
}
.ns-1 {
  width: 140px;
  height: 80px;
  top: 10px;
  right: -120px
}
.ns-2 {
  width: 80px;
  height: 120px;
  top: -50px;
  left: -70px
}
.ns-3 {
  width: 60px;
  height: 80px;
  bottom: 10px;
  right: -60px
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: 1s 3s forwards fadeIn
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22)
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom,rgba(152,189,182,.5),transparent);
  animation: 2s infinite scrollPulse
}
section {
  padding: 96px 0
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px
}
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  display: block
}
.section-headline {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -.5px
}
.section-headline em {
  font-style: italic;
  color: var(--secondary)
}
.body-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-top: 20px
}
.section-spark {
  background: var(--white)
}
.spark-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px
}
.spark-quote {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.2vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.5;
  padding-left: 28px;
  border-left: 3px solid var(--mascot)
}
.spark-quote-attr {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 18px;
  padding-left: 28px;
  font-weight: 400;
  letter-spacing: .03em
}
.section-chapters {
  background: var(--body-bg)
}
.timeline {
  position: relative;
  margin-top: 60px
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--sage-light)
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 56px;
  margin-bottom: 56px;
  position: relative
}
.timeline-item:last-child {
  margin-bottom: 0
}
.timeline-year {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-align: right;
  padding-top: 4px
}
.timeline-dot {
  position: absolute;
  left: 112px;
  top: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--mascot);
  z-index: 1
}
.timeline-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(40,142,167,.15)
}
.timeline-title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px
}
.timeline-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8
}
.timeline-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase
}
.timeline-tag.milestone {
  background: rgba(40,142,167,.1);
  color: var(--secondary-dark)
}
.timeline-tag.current {
  background: rgba(255,137,4,.1);
  color: var(--accent)
}
.section-pivot {
  background: var(--primary)
}
.pivot-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto
}
.pivot-inner .section-label {
  color: rgba(152,189,182,.7)
}
.pivot-inner .section-headline {
  color: var(--white)
}
.pivot-highlight-em {
  color: var(--mascot)
}
.pivot-body {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-top: 28px
}
.pivot-highlight {
  font-family: var(--font-title);
  font-size: clamp(18px, 2.2vw, 28px);
  font-style: italic;
  color: var(--mascot);
  border-top: 1px solid rgba(152,189,182,.2);
  border-bottom: 1px solid rgba(152,189,182,.2);
  padding: 32px 0;
  margin: 44px 0;
  line-height: 1.55
}
.section-offer {
  background: var(--white)
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 52px;
  background: var(--sage-light);
  border-radius: 16px;
  overflow: hidden
}
.offer-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column
}
.offer-app-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}
.app-screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg,#eff5f4 0,#d9eceb 100%);
  position: relative
}
.app-screen-mockup {
  width: 90px;
  background: var(--primary);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative
}
.app-screen-mockup::before {
  content: '';
  display: block;
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  margin: 0 auto 4px
}
.app-bar {
  height: 8px;
  background: rgba(152,189,182,.5);
  border-radius: 4px
}
.app-bar.accent {
  background: var(--secondary);
  height: 10px
}
.app-bar.short {
  width: 60%
}
.app-bar.shorter {
  width: 40%
}
.app-chat-bubble {
  background: rgba(40,142,167,.35);
  border-radius: 8px 8px 8px 2px;
  padding: 5px 7px
}
.app-chat-bubble.reply {
  background: rgba(255,255,255,.2);
  border-radius: 8px 8px 2px;
  align-self: flex-end
}
.app-chat-dot {
  height: 4px;
  background: rgba(255,255,255,.6);
  border-radius: 2px
}
.app-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted)
}
.offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}
.offer-icon svg {
  width: 20px;
  height: 20px
}
.offer-available {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block
}
.offer-title {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.2
}
.offer-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75
}
.section-different {
  background: var(--body-bg)
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
  background: var(--sage-light);
  border-radius: 16px;
  overflow: hidden
}
.diff-card {
  background: var(--body-bg);
  padding: 36px
}
.diff-num {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 14px;
  display: block
}
.diff-title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.25
}
.diff-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75
}
.section-proof {
  background: var(--white)
}
.proof-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px
}
.proof-date-block {
  position: sticky;
  top: 90px
}
.proof-date {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
  display: block
}
.proof-date-sub {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 6px;
  display: block
}
.mou-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
  background: linear-gradient(135deg,#002c3c 0,#1b748f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px
}
.mou-img-placeholder .mou-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(152,189,182,.7)
}
.mou-img-placeholder .mou-text {
  font-family: var(--font-title);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 0 20px
}
.mou-sign-icons {
  display: flex;
  gap: 12px;
  align-items: center
}
.mou-person {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(152,189,182,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: #fff
}
.mou-line {
  width: 36px;
  height: 1px;
  background: rgba(152,189,182,.4)
}
.mou-signature {
  font-family: Lora,cursive;
  font-size: 18px;
  font-style: italic;
  color: rgba(152,189,182,.7);
  margin-top: 4px
}
.img-replace-note {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 9px;
  color: rgba(255,255,255,.25);
  font-weight: 500;
  letter-spacing: .05em
}
.proof-quote-big {
  font-family: var(--font-title);
  font-size: clamp(18px, 1.8vw, 26px);
  font-style: italic;
  color: var(--primary);
  line-height: 1.55;
  padding-left: 24px;
  border-left: 3px solid var(--secondary);
  margin: 32px 0
}
.proof-quote-attr {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  padding-left: 24px;
  margin-top: 10px
}
.section-recognition {
  background: var(--body-bg)
}
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px
}
.award-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--sage-mid)
}
.award-trophy {
  font-size: 30px;
  margin-bottom: 14px;
  display: block
}
.award-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 7px;
  display: block
}
.award-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px
}
.award-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7
}
.section-supported {
  background: var(--white)
}
.supporters-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 48px
}
.supporters-group {
  margin-bottom: 48px
}
.supporters-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sage-mid)
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center
}
.logo-tile {
  background: var(--body-bg);
  border: 1px solid var(--sage-mid);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 64px
}
.logo-tile svg {
  max-width: 100px;
  max-height: 32px
}
.logo-tile img {
  max-width: 100px;
  max-height: 32px;
  object-fit: contain
}
.logo-tile span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em
}
.section-team {
  background: var(--body-bg)
}
.team-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 540px;
  margin-top: 18px;
  line-height: 1.75
}
.team-grid {
  margin-top: 52px;
  display: grid;
  gap: 2px;
  background: var(--sage-light);
  border-radius: 16px;
  overflow: hidden
}
.team-founder {
  background: var(--primary);
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start
}
.team-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(152,189,182,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.team-avatar.teal {
  background: linear-gradient(135deg,#1b748f,#288ea7)
}
.team-avatar.sage {
  background: var(--mascot);
  color: var(--primary)
}
.team-member-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px
}
.team-member-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mascot);
  margin-bottom: 14px;
  display: block
}
.team-member-bio {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.75
}
.team-member-quote {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 16px;
  color: var(--mascot);
  margin-top: 18px;
  line-height: 1.6;
  border-top: 1px solid rgba(152,189,182,.2);
  padding-top: 18px
}
.team-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--sage-light)
}
.team-member-card {
  background: var(--white);
  padding: 32px
}
.team-member-card .team-member-name {
  color: var(--primary);
  font-size: 17px
}
.team-member-card .team-member-role {
  color: var(--secondary)
}
.team-member-card .team-member-bio {
  color: var(--text-body);
  font-size: 14px
}
.team-avatar-sm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0
}
.team-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.ph-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--body-bg);
  border: 1px solid var(--sage-mid);
  border-radius: 100px;
  padding: 2px 8px;
  margin-top: 10px
}
.section-values {
  background: var(--primary)
}
.section-values .section-label {
  color: rgba(152,189,182,.6)
}
.section-values .section-headline {
  color: var(--white)
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 52px
}
.value-line {
  width: 28px;
  height: 2px;
  background: var(--mascot);
  margin-bottom: 18px
}
.value-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.75
}
.section-reviews {
  background: var(--sage-pale)
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 44px
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--sage-mid)
}
.review-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block
}
.review-text {
  font-family: var(--font-title);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.65;
  margin-bottom: 18px
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--sage-mid);
  padding-top: 16px
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--white)
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.review-info {
  flex: 1
}
.review-info strong {
  display: block;
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 1px
}
.review-info span {
  font-size: 12px;
  color: var(--text-muted)
}
.review-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0077b5;
  flex-shrink: 0;
  transition: opacity .2s
}
.review-linkedin:hover {
  opacity: .85
}
.review-linkedin svg {
  width: 16px;
  height: 16px;
  fill: white
}
.section-cta {
  background: var(--primary);
  text-align: center;
  padding: 112px 48px
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mascot);
  display: block;
  margin-bottom: 22px
}
.cta-headline {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 18px
}
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.75
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s,transform .15s
}
.btn-primary:hover {
  background: #e07800;
  transform: translateY(-1px)
}
.btn-secondary {
  background: 0 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid rgba(152,189,182,.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s,background .2s,transform .15s
}
.btn-secondary:hover {
  border-color: var(--mascot);
  background: rgba(152,189,182,.08);
  transform: translateY(-1px)
}
@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-15px)
  }
}
@keyframes floatBubbleY {
  0%,
  100% {
    transform: translateY(-50%)
  }
  50% {
    transform: translateY(calc(-50% - 15px))
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
@keyframes fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: .3
  }
  50% {
    opacity: .8
  }
}
.reveal {
  opacity: 1;
  transform: none
}
.reveal-delay-1 {
  transition-delay: 0.1s
}
.reveal-delay-2 {
  transition-delay: 0.2s
}
.reveal-delay-3 {
  transition-delay: 0.3s
}
.reveal-delay-4 {
  transition-delay: 0.4s
}
@media (max-width:900px) {
  nav {
    padding: 0 24px
  }
  .nav-links {
    display: none
  }
  .hero {
    padding: 100px 24px 72px
  }
  .hero-faces-ring {
    width: 300px;
    height: 220px
  }
  .hero-stats {
    flex-direction: column;
    gap: 28px
  }
  .container,
  .container-narrow {
    padding: 0 24px
  }
  section {
    padding: 68px 0
  }
  .proof-inner,
  .spark-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }
  .proof-date-block {
    position: static
  }
  .timeline::before {
    left: 0
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px
  }
  .timeline-dot {
    display: none
  }
  .timeline-year {
    text-align: left;
    font-size: 11px
  }
  .awards-grid,
  .diff-grid,
  .offer-grid,
  .team-row {
    grid-template-columns: 1fr
  }
  .team-founder {
    grid-template-columns: 1fr;
    gap: 20px
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
  .review-grid {
    grid-template-columns: 1fr
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center
  }
  .logo-grid {
    gap: 10px
  }
  .logo-tile {
    min-width: 110px;
    padding: 12px 16px
  }
}
.hero {
  padding: 72px 0 48px
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mascot-tint);
  border: 1px solid rgba(153,190,183,.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mascot);
  animation: 2s infinite pulse
}
.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mascot)
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px
}
.hero h1 em {
  color: var(--secondary);
  font-style: italic;
  color: var(--secondary)
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7
}
.router {
  padding: 48px 0 56px
}
.router-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px
}
.router-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px
}
.intent-card {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color .15s,background .15s,transform .15s,box-shadow .15s;
  background: var(--surface-card);
  text-align: left;
  width: 100%;
  font-family: var(--font-body)
}
.intent-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.5)
}
.intent-card.selected-b2b {
  border-color: var(--secondary);
  background: rgba(40,142,167,.12)
}
.intent-card.intent-card--featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(40,142,167,.1),0 8px 24px -8px rgba(40,142,167,.18)
}
.intent-card.intent-card--featured:hover {
  box-shadow: 0 0 0 3px rgba(40,142,167,.15),0 14px 36px -10px rgba(40,142,167,.22)
}
.intent-card.selected-support {
  border-color: var(--mascot);
  background: rgba(153,190,183,.1)
}
.intent-card.selected-experience {
  border-color: var(--accent);
  background: rgba(255,192,122,.08)
}
.intent-card.selected-press {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05)
}
.intent-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}
.intent-icon svg {
  width: 20px;
  height: 20px
}
.intent-icon.b2b {
  background: rgba(40,142,167,.15)
}
.intent-icon.support {
  background: rgba(153,190,183,.15)
}
.intent-icon.experience {
  background: rgba(255,192,122,.12)
}
.intent-icon.press {
  background: rgba(255,255,255,.07)
}
.intent-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.2
}
.intent-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55
}
.intent-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 12px;
  padding: 3px 8px;
  border-radius: 4px
}
.intent-tag.b2b {
  background: rgba(40,142,167,.2);
  color: var(--teal-bright)
}
.intent-tag.support {
  background: rgba(153,190,183,.15);
  color: var(--mascot)
}
.intent-tag.experience {
  background: rgba(255,192,122,.15);
  color: var(--accent)
}
.intent-tag.press {
  background: rgba(255,255,255,.08);
  color: var(--text-secondary)
}
.divider {
  height: 1px;
  background: var(--line-bright);
  margin: 0
}
.panels {
  padding: 56px 0 0
}
.panel {
  display: none
}
.panel.active {
  display: block
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start
}
.form-block {
  background: var(--surface-card);
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  padding: 40px
}
.form-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px
}
.form-section-label.teal {
  color: var(--secondary)
}
.form-section-label.mascot {
  color: #5a9089
}
.form-section-label.accent {
  color: #b07820
}
.form-section-label.dark {
  color: var(--text-secondary)
}
.form-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -.3px
}
.form-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px
}
.form-divider {
  height: 1px;
  background: var(--line-bright);
  margin: 0 0 28px
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}
.form-row.single {
  grid-template-columns: 1fr
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary)
}
.form-label .req {
  color: var(--red);
  margin-left: 2px
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--line-bright);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: var(--surface-input);
  transition: border-color .15s,box-shadow .15s;
  appearance: none
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted)
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 0;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(40,142,167,.1)
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2399BEB7' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
  color-scheme: dark
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px
}
.form-consent input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--secondary);
  flex-shrink: 0;
  cursor: pointer
}
.form-consent label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer
}
.form-consent a {
  color: var(--secondary);
  text-decoration: none
}
.form-consent a:hover {
  text-decoration: underline
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background .15s,transform .1s
}
.form-submit.teal {
  background: var(--secondary)
}
.form-submit.teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px)
}
.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none
}
.form-submit-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px
}
.success-state {
  display: none;
  text-align: center;
  padding: 48px 0;
  color: var(--text-primary)
}
.success-state.show {
  display: block
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}
.success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary)
}
.success-title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px
}
.success-body {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto 24px;
  line-height: 1.65
}
.success-reset {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: 0 0;
  border: 1.5px solid var(--line-bright);
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: border-color .15s;
  font-family: var(--font-body)
}
.success-reset:hover {
  border-color: var(--secondary)
}
.context-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px
}
.context-card {
  border-radius: 18px;
  padding: 28px
}
.context-card.teal-bg {
  background: var(--surface-2);
  border: 1px solid var(--teal-tint)
}
.context-card.light {
  background: var(--surface-3);
  border: 1px solid var(--line-bright)
}
.context-card.mascot-bg {
  background: rgba(153,190,183,.08);
  border: 1px solid rgba(153,190,183,.2)
}
.context-card.accent-bg {
  background: rgba(255,192,122,.07);
  border: 1px solid rgba(255,192,122,.2)
}
.context-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px
}
.context-label.white {
  color: rgba(153,190,183,.8)
}
.context-label.teal {
  color: var(--secondary)
}
.context-label.mascot {
  color: #5a9089
}
.context-label.accent {
  color: #b07820
}
.context-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--white)
}
.context-title.white {
  color: #fff
}
.context-title.navy {
  color: var(--white)
}
.context-body {
  font-size: 13.5px;
  line-height: 1.7
}
.context-body.muted-white {
  color: rgba(153,190,183,.8)
}
.context-body.muted {
  color: var(--text-secondary)
}
.context-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px
}
.context-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5
}
.context-list li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}
.context-list li .check.teal {
  background: var(--teal-tint)
}
.context-list li .check.mascot {
  background: rgba(153,190,183,.3)
}
.context-list li .check svg {
  width: 10px;
  height: 10px
}
.context-list li span.white {
  color: rgba(255,255,255,.75)
}
.context-list li span.navy {
  color: var(--text-secondary)
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(153,190,183,.2)
}
.contact-row:last-child {
  border-bottom: none
}
.contact-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mascot)
}
.contact-row-val {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400
}
.contact-row-val a {
  color: var(--secondary);
  text-decoration: none
}
.contact-row-val a:hover {
  text-decoration: underline
}
.sla-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,189,107,.12);
  border-radius: 100px;
  padding: 5px 12px;
  margin-top: 12px
}
.sla-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green)
}
.sla-badge span {
  font-size: 11px;
  font-weight: 600;
  color: var(--green)
}
.officer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px
}
.officer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,192,122,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #b07820;
  flex-shrink: 0
}
.officer-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white)
}
.officer-meta span {
  font-size: 12px;
  color: var(--text-secondary)
}
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: var(--surface-3);
  border: 1.5px solid var(--line-bright);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .15s,background .15s
}
.quick-link:hover {
  border-color: var(--secondary);
  background: rgba(40,142,167,.1)
}
.quick-link-left {
  display: flex;
  align-items: center;
  gap: 10px
}
.quick-link-icon {
  font-size: 18px
}
.quick-link-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white)
}
.quick-link-text span {
  font-size: 11.5px;
  color: var(--text-secondary)
}
.quick-link-arrow {
  color: var(--navy-30);
  font-size: 14px
}
.escalation-steps {
  display: flex;
  flex-direction: column;
  gap: 0
}
.escalation-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-bright)
}
.escalation-step:last-child {
  border-bottom: none
}
.step-num {
  width: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #b07820;
  flex-shrink: 0;
  margin-top: 2px
}
.step-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px
}
.step-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55
}
.step-content a {
  color: var(--secondary);
  text-decoration: none
}
.step-content a:hover {
  text-decoration: underline
}
.press-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px
}
.press-resource {
  background: var(--surface-3);
  border: 1.5px solid var(--line-bright);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition: border-color .15s,transform .15s;
  display: block
}
.press-resource:hover {
  border-color: var(--secondary);
  transform: translateY(-1px)
}
.press-resource-icon {
  font-size: 22px;
  margin-bottom: 8px;
  display: block
}
.press-resource strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px
}
.press-resource span {
  font-size: 11.5px;
  color: var(--text-secondary)
}
.hq-section {
  padding: 56px 0;
  border-top: 1px solid var(--line-bright);
  margin-top: 72px
}
.hq-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}
.hq-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px
}
.hq-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px
}
.hq-addr {
  font-size: 14px;
  color: var(--text-secondary)
}
.hq-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0
}
.hq-badge {
  background: var(--surface-card);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 7px
}
.hq-badge span {
  font-size: 16px
}
.store-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background .15s
}
.store-badge:hover {
  background: rgba(255,255,255,.13)
}
.store-badge svg {
  width: 16px;
  height: 16px;
  fill: white;
  flex-shrink: 0
}
.store-badge-text {
  text-align: left
}
.store-badge-sub {
  font-size: 9px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block
}
.store-badge-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.2
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(46,189,107,.2);
    box-shadow: 0 0 0 3px rgba(46,189,107,.18);
    box-shadow: 0 0 0 4px rgba(46,189,107,.18);
    opacity: 1
  }
  50% {
    box-shadow: 0 0 0 7px rgba(46,189,107,.05);
    box-shadow: 0 0 0 8px rgba(46,189,107,.05);
    opacity: .5
  }
}
@media (max-width:900px) {
  .hero h1 {
    font-size: 36px
  }
  .router-grid {
    grid-template-columns: repeat(2,1fr)
  }
  .panel-grid {
    grid-template-columns: 1fr
  }
  .context-panel {
    position: static
  }
  .form-row {
    grid-template-columns: 1fr
  }
  .hq-inner {
    flex-direction: column;
    align-items: flex-start
  }
  .press-resources {
    grid-template-columns: 1fr
  }
}


:root {
  --teal: #288EA7;
  --teal-dark: #1B748F;
  --teal-bright: #3BAACC;
  --navy: #002C3C;
  --surface: #031E28;
  --surface-2: #052433;
  --surface-card: #0A3545;
  --surface-input: #0C3D50;
  --accent: #FFC07A;
  --mascot: #99BEB7;
  --white: #FFFFFF;
  --line: rgba(255,255,255,0.09);
  --line-bright: rgba(255,255,255,0.13);
  --text-primary: rgba(255,255,255,0.95);
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.50);
  --font-head: "Lora", Georgia, serif;
  --font-body: "Geist", "Inter", system-ui, sans-serif;
}


/* TABS */
.tabs { padding: 32px 0 40px; position: sticky; top: 64px; z-index: 50; background: var(--surface); }
.tabs-inner { display: flex; gap: 8px; flex-wrap: wrap; }
.tab { padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--line-bright); background: transparent; color: var(--text-secondary); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s; white-space: nowrap; }
.tab:hover { border-color: rgba(255,255,255,0.28); color: var(--white); }
.tab.active { background: var(--teal); border-color: var(--teal); color: white; }

/* DIVIDER */
hr { border: none; border-top: 1px solid var(--line-bright); margin: 0 0 48px; }

/* FAQ LIST */
.faq-section { display: none; padding-bottom: 80px; }
.faq-section.active { display: block; }

.faq-item { border-bottom: 1px solid var(--line-bright); }
.faq-item:first-child { border-top: 1px solid var(--line-bright); }

.faq-q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); }
.faq-q-text { font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.4; flex: 1; }
.faq-q:hover .faq-q-text { color: var(--mascot); }
.faq-q.open .faq-q-text { color: var(--mascot); }

.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; transition: transform .25s, border-color .15s, background .15s; }
.faq-q.open .faq-icon { border-color: var(--teal-bright); background: rgba(59,170,204,0.1); transform: rotate(45deg); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--text-muted); }
.faq-q.open .faq-icon svg { stroke: var(--teal-bright); }

.faq-a { display: none; padding-bottom: 28px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--white); font-weight: 600; }
.faq-a a { color: var(--teal-bright); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }
.faq-a ul { list-style: none; margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.faq-a ul li { display: flex; gap: 10px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.faq-a ul li::before { content: "→"; color: var(--teal-bright); flex-shrink: 0; font-weight: 700; }
.faq-note { background: rgba(59,170,204,0.07); border-left: 3px solid var(--teal-bright); padding: 14px 18px; border-radius: 0 8px 8px 0; margin-top: 16px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* CRISIS NOTE */
.crisis { background: rgba(224,82,82,0.07); border: 1px solid rgba(224,82,82,0.18); border-radius: 12px; padding: 16px 20px; margin-bottom: 48px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.crisis strong { color: rgba(255,255,255,0.85); }
.crisis a { color: #E87070; font-weight: 600; text-decoration: none; }

/* CTA */
.cta { background: var(--surface-2); border: 1px solid var(--line-bright); border-radius: 20px; padding: 44px 48px; margin-bottom: 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text {}
.cta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mascot); margin-bottom: 10px; display: block; }
.cta h3 { font-family: var(--font-head); font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -0.3px; line-height: 1.2; }
.cta p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-a { background: var(--accent); color: var(--navy); font-family: var(--font-body); font-size: 14px; font-weight: 700; padding: 13px 26px; border-radius: 100px; text-decoration: none; white-space: nowrap; text-align: center; transition: opacity .15s; }
.btn-a:hover { opacity: .88; }
.btn-b { border: 1.5px solid var(--line-bright); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 12px 26px; border-radius: 100px; text-decoration: none; white-space: nowrap; text-align: center; transition: border-color .15s; }
.btn-b:hover { border-color: rgba(255,255,255,.35); }

/* FOOTER */
footer { border-top: 1px solid var(--line); background: #001822; padding: 32px 0; }
.footer-inner { max-width: 1060px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--white); text-decoration: none; }
.footer-logo span { color: var(--mascot); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

@media (max-width: 768px) {
  .page { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 52px 0 40px; }
  .cta { flex-direction: column; padding: 32px 28px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}