/* ============================================================
   Counteroffer — marketing site styles (Direction A · Steady)
   Tokens lifted from the design handoff (tokens.css).
   ============================================================ */

:root {
  --co-ink:        #1f2a2e;
  --co-ink-2:      #2c3a3f;
  --co-ink-3:      #5a6770;
  --co-ink-4:      #8a949b;

  --co-green:      #3fb286;
  --co-green-700:  #2f9870;
  --co-green-800:  #1f7a57;
  --co-green-100:  #d2ebde;

  --co-mint:       #dceee5;
  --co-mint-2:     #eaf4ee;
  --co-cream:      #f7f5f0;
  --co-cream-2:    #efeae0;
  --co-paper:      #ffffff;
  --co-night:      #0e1416;

  --co-serif:  "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --co-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --co-mono:   "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --co-shadow-card:  0 1px 0 rgba(255,255,255,.6) inset, 0 30px 60px -20px rgba(31,42,46,.18), 0 8px 20px -10px rgba(31,42,46,.12);
  --co-shadow-phone: 0 60px 100px -40px rgba(31,42,46,.45), 0 30px 50px -25px rgba(31,42,46,.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--co-sans);
  color: var(--co-ink);
  /* Match the hero gradient's start color so the iOS safe-area
     behind the Dynamic Island blends into the hero. Every section
     paints its own background, so this only shows in safe-area /
     overscroll zones. */
  background: var(--co-mint-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}
h1, h2, h3, h4, p, ul, li, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--co-green-800);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Wordmark ----------
   Logo spec: Montserrat 600, tracking -0.02em, ink #1F2A2E.
   Dot: 0.28em, 0.06em gap, baseline-aligned, teal #4FB89C. */
.da-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--co-ink);
  line-height: 1;
  text-decoration: none;
}
.da-wordmark .da-dot {
  display: inline-block;
  width: .28em;
  height: .28em;
  border-radius: 999px;
  background: #4FB89C;
  margin-left: .06em;
}
.da-wordmark-sm { font-size: 18px; }

/* ---------- Phone frame ---------- */
.co-phone {
  position: relative;
  width: 320px;
  aspect-ratio: 1206 / 2622;
  border-radius: 46px;
  background: #0a0a0a;
  padding: 10px;
  box-shadow: var(--co-shadow-phone);
}
.co-phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--co-mint);
}
.co-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 30px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 5;
}
.co-phone img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Buttons ---------- */
.da-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 22px 0 18px;
  border-radius: 14px;
  background: var(--co-night);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.06);
  font-family: var(--co-sans);
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.da-app-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(31,42,46,.4); }
.da-app-btn__text { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; }
.da-app-btn__caption {
  font-size: 10.5px;
  opacity: .8;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.da-app-btn__store {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.da-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(31,42,46,.18);
  background: rgba(255,255,255,.5);
  color: var(--co-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background .15s ease;
}
.da-ghost-btn:hover { background: rgba(255,255,255,.8); }

/* ---------- Eyebrow / section h2 ---------- */
.da-eyebrow {
  font-family: var(--co-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--co-green-800);
  margin-bottom: 18px;
}

.da-section-h2 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--co-ink);
  margin-bottom: 22px;
}
.da-section-h2 em { font-style: italic; font-weight: 500; }
.da-h2-narrow { max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 50px; }

.da-section-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--co-ink-3);
  max-width: 520px;
}
.da-section-body + .da-section-body { margin-top: 16px; }

/* ---------- Layout helpers ---------- */
.da-container { max-width: 1240px; margin: 0 auto; }
.da-narrow { max-width: 880px; margin: 0 auto; }
.da-center { text-align: center; }

.da-section { padding: 120px 32px; }
.da-section-tight { padding: 110px 32px; }

/* ---------- Animations ---------- */
@keyframes co-pulse-dot {
  0%, 100% { opacity: .5; transform: scale(.9); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.da-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--co-mint-2) 0%, var(--co-mint) 60%, #cfe6d8 100%);
}

.da-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  font-family: var(--co-sans);
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.da-nav-links { display: flex; align-items: center; gap: 28px; }
.da-nav-links a {
  color: rgba(31,42,46,.7);
  text-decoration: none;
  transition: color .15s ease;
}
.da-nav-links a:hover { color: var(--co-ink); }

.da-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--co-ink) !important;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}
.da-nav-cta:hover { color: #fff !important; opacity: .92; }

.da-hero-pad {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 90px;
  position: relative;
  z-index: 1;
}
.da-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.da-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(31,42,46,.08);
  font-size: 13px;
  color: var(--co-ink-2);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.da-pill-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--co-green); }

.da-hero-h1 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--co-ink);
}
.da-hero-h1 em { font-style: italic; font-weight: 400; }

.da-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--co-ink-3);
  max-width: 520px;
  margin-bottom: 36px;
}

.da-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.da-hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: var(--co-ink-3);
  flex-wrap: wrap;
}
.da-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero visual */
.da-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Hero phone-manager view — realistic iPhone with David background,
   live transcript bubbles, and color-switching audio meter.
   Mirrors the in-app RoleplayView spec. */
.da-wf-wrap {
  position: relative;
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.da-wf-phone {
  position: relative;
  width: 360px;
  aspect-ratio: 1206 / 2622;
  border-radius: 52px;
  background: #0a0a0a;
  padding: 10px;
  box-shadow: var(--co-shadow-phone);
}
.da-wf-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 118px; height: 32px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 6;
}
.da-wf-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #0e1416;
  isolation: isolate;
}
.da-wf-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
}
.da-wf-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* Top bar — timer + End pill (RoleplayView.swift:658, :665) */
.da-wf-topbar {
  position: absolute;
  top: 56px;
  left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 0;
}
.da-wf-timer {
  font-family: var(--co-mono);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.da-wf-end {
  font-family: var(--co-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,59,48,.35);
  border: 1px solid rgba(255,59,48,.25);
  padding: 6px 14px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: default;
  pointer-events: none;
}

/* Bubble feed — anchored at the bottom, grows upward.
   Bottom offset clears the audio meter + caption. */
.da-wf-feed {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 168px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  max-height: 48%;
  overflow: hidden;
  pointer-events: none;
}
.da-wf-bubble {
  max-width: 86%;
  padding: 9px 14px;
  border-radius: 18px;
  font-family: var(--co-sans);
  font-size: 13.5px;
  line-height: 1.38;
  letter-spacing: -0.005em;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  animation: da-wf-bubble-in .42s cubic-bezier(.2,.7,.3,1) both;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  text-wrap: pretty;
}
.da-wf-bubble--them {
  align-self: flex-start;
  background: rgba(220,238,229,.94);
  color: #1a1f22;
  border-top-left-radius: 6px;
}
.da-wf-bubble--you {
  align-self: flex-end;
  background: rgba(245,240,228,.94);
  color: #1a1f22;
  border-top-right-radius: 6px;
}
@keyframes da-wf-bubble-in {
  0%   { opacity: 0; transform: translateY(20px) scale(.96); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}
.da-wf-feed > .da-wf-bubble:nth-last-child(n+4) { opacity: .7; }

/* Audio meter — 9 bars, color follows speaker (RoleplayView.swift:1683) */
.da-wf-meter {
  position: absolute;
  left: 0; right: 0;
  bottom: 96px;
  z-index: 4;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.da-wf-bar {
  display: block;
  width: 4px;
  height: var(--h, 6px);
  border-radius: 3px;
  background: rgba(255,255,255,.25);
  transform-origin: center;
  animation: da-wf-bar-pulse var(--dur, .45s) ease-in-out var(--delay, 0s) infinite alternate;
  transition: background 300ms ease-in-out;
}
@keyframes da-wf-bar-pulse {
  0%   { transform: scaleY(.35); }
  100% { transform: scaleY(1); }
}

/* Speaker caption — inside the phone, below the audio bars */
.da-wf-caption {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14,20,22,.32);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  color: rgba(255,255,255,.85);
  font-family: var(--co-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.08);
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.da-wf-caption-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
  animation: co-pulse-dot 1.4s ease-in-out infinite;
}
.da-wf-caption--them .da-wf-caption-dot { color: #2A9D8F; }
.da-wf-caption--you  .da-wf-caption-dot { color: #FF9500; }
.da-wf-caption-state {
  opacity: .75;
  font-weight: 400;
}

/* Pulse dot used by the counterpart chip */
.da-pulse-orange {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #ef6b3a;
  animation: co-pulse-dot 1.4s ease-in-out infinite;
}

/* Decorative shapes */
.da-hero-glow {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(63,178,134,.18), transparent 60%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   PROOF
   ───────────────────────────────────────────────────────────── */
.da-proof {
  padding: 38px 32px;
  border-bottom: 1px solid rgba(31,42,46,.06);
  background: var(--co-paper);
}
.da-proof-strip {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.da-proof-label {
  font-size: 13px;
  color: var(--co-ink-4);
  font-family: var(--co-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.da-proof-logos { display: flex; gap: 36px; flex-wrap: wrap; }
.da-proof-logos span {
  font-family: var(--co-mono);
  font-size: 12px;
  color: var(--co-ink-4);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────── */
.da-how { background: var(--co-paper); }
.da-how .da-section-h2 { max-width: 800px; margin-bottom: 60px; }

.da-how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.da-how-card {
  background: var(--co-cream);
  border: 1px solid rgba(31,42,46,.06);
  border-radius: 24px;
  padding: 32px 28px;
}
.da-step-num {
  font-family: var(--co-mono);
  font-size: 12px;
  color: var(--co-green-800);
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.da-card-h3 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.da-how-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--co-ink-3);
}

/* ─────────────────────────────────────────────────────────────
   PLAYBOOK + CURRICULUM
   ───────────────────────────────────────────────────────────── */
.da-playbook { background: var(--co-cream); }
.da-playbook-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.da-playbook-visual { position: relative; display: flex; justify-content: center; }
.da-playbook-phone { width: 300px; }

.da-playbook-progress-chip {
  position: absolute;
  top: 14%;
  left: -4%;
  background: var(--co-paper);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--co-shadow-card);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.da-progress-ring { position: relative; width: 36px; height: 36px; }
.da-progress-ring svg { transform: rotate(-90deg); }
.da-progress-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #ef9b3a;
}
.da-chip-eyebrow {
  font-family: var(--co-mono);
  font-size: 10px;
  color: var(--co-ink-4);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.da-chip-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--co-ink);
}

.da-curriculum-card {
  background: var(--co-paper);
  border-radius: 28px;
  padding: 48px 44px;
  border: 1px solid rgba(31,42,46,.06);
}
.da-curriculum-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.da-curriculum-h3 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.da-curriculum-h3 em { font-style: italic; font-weight: 500; }
.da-curriculum-meta {
  font-family: var(--co-mono);
  font-size: 12px;
  color: var(--co-ink-4);
  letter-spacing: .08em;
}

.da-curriculum-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.da-track-h4 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.da-dim { color: var(--co-ink-4); }

.da-lesson-list { display: flex; flex-direction: column; gap: 10px; }
.da-lesson-card {
  background: var(--co-cream);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(31,42,46,.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.da-lesson-card.da-lesson-done { background: var(--co-mint-2); }
.da-lesson-tick {
  flex: none;
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(31,42,46,.25);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.da-lesson-done .da-lesson-tick {
  border: 0;
  background: var(--co-green);
}
.da-lesson-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--co-ink);
  margin-bottom: 3px;
  line-height: 1.25;
}
.da-lesson-body {
  font-size: 13px;
  color: var(--co-ink-3);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────
   COUNTERPART
   ───────────────────────────────────────────────────────────── */
.da-counterpart {
  background: var(--co-mint-2);
  position: relative;
  overflow: hidden;
}
.da-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.da-counterpart-visual { position: relative; }
.da-counterpart-phone { margin: 0 auto; }

.da-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.da-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--co-ink-2);
}
.da-bullet {
  flex: none;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--co-green);
}

.da-counterpart-chip-top {
  position: absolute;
  top: 8%;
  right: -4%;
  background: var(--co-paper);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--co-shadow-card);
  font-size: 13.5px;
  max-width: 240px;
}
.da-counterpart-chip-top .da-chip-eyebrow { color: var(--co-green-800); margin-bottom: 6px; }
.da-chip-title {
  font-weight: 500;
  color: var(--co-ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.da-counterpart-chip-top .da-chip-text {
  color: var(--co-ink-3);
  line-height: 1.4;
  font-weight: 400;
}

.da-counterpart-chip-bottom {
  position: absolute;
  bottom: 12%;
  left: -6%;
  background: var(--co-paper);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--co-shadow-card);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--co-ink-2);
}
.da-counterpart-chip-bottom .da-pulse-orange { width: 8px; height: 8px; }

/* ─────────────────────────────────────────────────────────────
   DEBRIEF
   ───────────────────────────────────────────────────────────── */
.da-debrief { background: var(--co-paper); }
.da-debrief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.da-debrief-card {
  background: var(--co-cream);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(31,42,46,.05);
}
.da-debrief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.da-debrief-meta {
  font-family: var(--co-mono);
  font-size: 11px;
  color: var(--co-ink-4);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.da-debrief-quote {
  font-family: var(--co-serif);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.da-debrief-notes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.da-debrief-notes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--co-ink-2);
}
.da-tag {
  font-family: var(--co-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  flex: none;
  margin-top: 1px;
}
.da-tag-strong  { color: var(--co-green-800); background: rgba(63,178,134,.14); }
.da-tag-tighten { color: #a85a1f;             background: rgba(168,90,31,.12); }

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.da-faq { background: var(--co-paper); padding: 110px 32px; }
.da-faq .da-section-h2 { margin-bottom: 40px; }

.da-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(31,42,46,.08);
}
.da-faq-item {
  background: var(--co-paper);
}
.da-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  font-family: var(--co-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--co-ink);
}
.da-faq-item summary::-webkit-details-marker { display: none; }
.da-faq-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,46,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .2s ease;
}
.da-faq-item[open] .da-faq-icon { transform: rotate(45deg); }
.da-faq-answer {
  padding: 0 4px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--co-ink-3);
  max-width: 720px;
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────── */
.da-cta {
  background: linear-gradient(135deg, #cfe6d8, var(--co-mint-2));
  position: relative;
  overflow: hidden;
  padding: 110px 32px;
}
.da-cta-h2 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.da-cta-h2 em { font-style: italic; font-weight: 500; }
.da-cta-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--co-ink-2);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.da-footer {
  border-top: 1px solid rgba(31,42,46,.08);
  padding: 36px 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--co-sans);
  font-size: 13px;
  color: rgba(31,42,46,.55);
  background: var(--co-paper);
}
.da-footer-left { display: flex; align-items: center; gap: 18px; }
.da-footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.da-footer-links a {
  color: rgba(31,42,46,.55);
  text-decoration: none;
  transition: color .15s ease;
}
.da-footer-links a:hover { color: var(--co-ink); }

/* ─────────────────────────────────────────────────────────────
   "COMING SOON" DIALOG
   ───────────────────────────────────────────────────────────── */
.da-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 92vw;
  color: inherit;
}
.da-dialog::backdrop {
  background: rgba(14, 20, 22, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.da-dialog[open] {
  animation: da-dialog-in .22s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes da-dialog-in {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.da-dialog-card {
  background: var(--co-paper);
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: 420px;
  max-width: 92vw;
  text-align: center;
  box-shadow: var(--co-shadow-card);
  font-family: var(--co-sans);
}
.da-dialog-title {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.01em;
  color: var(--co-ink);
  margin-bottom: 12px;
}
.da-dialog-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--co-ink-3);
  margin-bottom: 24px;
}
.da-dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: var(--co-night);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .15s ease;
}
.da-dialog-close:hover { transform: translateY(-1px); }

/* =================================================================
   RESPONSIVE — tablet landscape and below (≤1024px)
   ================================================================= */
@media (max-width: 1024px) {
  .da-hero-grid,
  .da-playbook-grid,
  .da-feature-grid,
  .da-debrief-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .da-hero-grid > div:last-child { justify-content: flex-start; }
  .da-hero-visual { justify-content: flex-start; }
  .da-counterpart-phone { margin: 0 auto; }
  .da-wf-wrap, .da-wf-phone { width: 320px; }

  .da-how-cards { grid-template-columns: repeat(2, 1fr); }
  .da-how-cards > div:nth-child(3) { grid-column: span 2; }

  .da-curriculum-cols { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }

  .da-section { padding: 96px 28px; }
  .da-section-tight,
  .da-faq,
  .da-cta { padding: 88px 28px; }
}

/* =================================================================
   RESPONSIVE — tablet portrait / mobile (≤768px)
   ================================================================= */
@media (max-width: 768px) {
  .da-nav-links a:not(.da-nav-cta) { display: none; }
  .da-nav { padding: 18px 20px; }

  .da-hero-pad { padding: 24px 20px 64px; }
  .da-hero-grid { gap: 48px; }
  .da-hero-h1 { font-size: clamp(40px, 9vw, 56px); line-height: 1.04; }
  .da-hero-sub { font-size: 17px; }
  .da-hero-trust { flex-wrap: wrap; gap: 12px 18px; }

  .da-section,
  .da-section-tight,
  .da-faq,
  .da-cta { padding: 72px 20px; }

  .da-section-h2 { font-size: clamp(28px, 6.4vw, 40px); }

  .da-how-cards { grid-template-columns: 1fr; gap: 14px; }
  .da-how-cards > div:nth-child(3) { grid-column: auto; }
  .da-how-card { padding: 26px 22px; }

  .da-curriculum-card { padding: 32px 22px; border-radius: 22px; }
  .da-curriculum-cols { grid-template-columns: 1fr; row-gap: 28px; }
  .da-curriculum-head { flex-direction: row; align-items: baseline; }

  .da-feature-grid { gap: 40px; }
  .da-counterpart-chip-top {
    top: 6%;
    right: 4%;
    font-size: 12px;
    max-width: 200px;
    padding: 10px 14px;
  }
  .da-counterpart-chip-bottom { left: 4%; bottom: 8%; }

  .da-debrief-card { padding: 28px 22px; border-radius: 22px; }
  .da-debrief-quote { font-size: 22px; }

  .da-proof-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
  .da-proof-logos { gap: 18px; }

  .da-faq-item summary { font-size: 16px; padding: 20px 4px; }
  .da-faq-answer { font-size: 15px; }

  .da-cta-h2 { font-size: clamp(34px, 8.4vw, 52px); }
  .da-cta-h2 br { display: none; }

  .da-footer {
    padding: 28px 20px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .da-footer-links { flex-wrap: wrap; row-gap: 8px; }
}

/* =================================================================
   RESPONSIVE — phone (≤540px)
   ================================================================= */
@media (max-width: 540px) {
  .da-hero-pad { padding: 16px 16px 56px; }
  .da-section,
  .da-section-tight,
  .da-faq,
  .da-cta { padding: 64px 16px; }

  .da-hero-h1 { font-size: clamp(36px, 9.6vw, 50px); }

  .da-cta-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .da-cta-row > * {
    width: 100%;
    justify-content: center;
  }

  .da-counterpart-chip-top { right: 0; max-width: 180px; }

  .da-wf-wrap, .da-wf-phone { width: 280px; }
  .da-wf-bubble { font-size: 12.5px; padding: 8px 12px; }
  .da-wf-feed { bottom: 148px; }
  .da-wf-meter { bottom: 84px; height: 40px; }
  .da-wf-caption { bottom: 36px; font-size: 11px; padding: 5px 12px; }
  .da-wf-topbar { top: 48px; padding: 10px 16px 0; }
  .da-wf-end { padding: 5px 12px; font-size: 12px; }
  .da-wf-timer { font-size: 14px; }

  .da-playbook-phone { width: 240px; }
  .da-playbook-progress-chip {
    left: 0;
    top: 6%;
    font-size: 12px;
    padding: 10px 12px;
  }

  .da-counterpart-phone { width: 240px; }

  .da-lesson-card { padding: 12px 14px; }
}

/* =================================================================
   PRIVACY POLICY PAGE
   ================================================================= */

/* Slim header — only the title sits inside the green band */
.da-hero--doc .da-hero-pad { padding: 56px 32px 80px; }
.da-hero--doc .da-hero-h1 {
  font-size: clamp(48px, 6vw, 80px);
  margin-bottom: 0;
  text-align: center;
}

.da-privacy { background: var(--co-paper); padding-top: 80px; padding-bottom: 120px; }

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 48px;
}
.privacy-meta .da-eyebrow { margin-bottom: 0; }
.privacy-meta .da-eyebrow strong {
  color: var(--co-green-800);
  font-weight: 600;
}

/* Long-form content scope */
.privacy-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--co-ink-2);
  max-width: 760px;
}
.privacy-body p { margin-bottom: 18px; }
.privacy-body strong { color: var(--co-ink); font-weight: 600; }

.privacy-body h2 {
  font-family: var(--co-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.015em;
  color: var(--co-ink);
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 16px;
}
.privacy-body h3 {
  font-family: var(--co-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--co-ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-body ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.privacy-body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.privacy-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--co-green);
}

.privacy-body a {
  color: var(--co-green-800);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.privacy-body a:hover { color: var(--co-green-700); }

/* Tables */
.privacy-table-wrap {
  margin: 24px 0 28px;
  overflow-x: auto;
  border: 1px solid rgba(31,42,46,.08);
  border-radius: 14px;
}
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.privacy-table th,
.privacy-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31,42,46,.08);
}
.privacy-table th {
  font-family: var(--co-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--co-green-800);
  background: var(--co-mint-2);
  font-weight: 500;
}
.privacy-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 768px) {
  .da-hero--doc .da-hero-pad { padding: 40px 20px 56px; }
  .da-privacy { padding-top: 56px; padding-bottom: 80px; }
  .privacy-body h2 { font-size: 24px; margin-top: 44px; }
  .privacy-table th, .privacy-table td { padding: 12px 12px; }
}
