/* ============================================================
   Tandem — marketing site styles (client-facing)
   Warm editorial light theme: paper ground, serif display,
   deep-green accent. The ops console renders as a dark "screen"
   object on the light page — the one machine artifact.
   The operator dashboard overrides these tokens (dashboard.css)
   and stays dark.
   ============================================================ */

:root {
  /* warm paper ground with green-biased neutrals */
  --bg: #faf8f4;
  --bg-alt: #f2efe8;
  --panel: #ffffff;
  --panel-2: #f6f4ee;
  --border: #e5e1d6;
  --text: #20241f;
  --muted: #5f6659;
  --accent: #0e6b3a;        /* deep confident green */
  --accent-hover: #0a5530;
  --accent-dim: #e4f2e8;    /* green wash */
  --accent-ink: #ffffff;    /* text on accent fills */
  --warm: #c9821f;          /* sparing amber highlight */
  --warn: #b45309;
  --danger: #b91c1c;
  --font-head: "Lora", Charter, "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 18px;
  --header-h: 72px;
  --shadow-soft: 0 2px 6px rgba(41, 37, 27, 0.04), 0 14px 40px rgba(41, 37, 27, 0.07);
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 0.9rem; }
h3 { font-size: 1.25rem; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}
.container-narrow { width: min(760px, 100% - 2.5rem); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-alt { background: var(--bg-alt); }

.section-sub {
  color: var(--muted);
  max-width: 46rem;
  margin-top: 0.6rem;
  font-size: 1.12rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.accent { color: var(--accent); }

/* hand-drawn marker underline for the hero's key phrase */
.accent-marker {
  position: relative;
  white-space: nowrap;
}
.accent-marker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 0.32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 10 C 40 4, 90 3, 197 7' fill='none' stroke='%23c9821f' stroke-width='5' stroke-linecap='round' opacity='0.55'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 2px 4px rgba(14, 107, 58, 0.18), 0 8px 20px rgba(14, 107, 58, 0.16);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: #cfc9ba;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 2.3rem; font-size: 1.08rem; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
}
.logo:hover { text-decoration: none; }

.logo-mark {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--accent);
}

.logo-svg { width: 27px; height: 29px; flex-shrink: 0; }

/* Client / Operator mode switch */
.mode-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--panel);
}
.mode-opt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}
.mode-opt:hover { color: var(--text); text-decoration: none; }
.mode-opt.active { background: var(--accent-dim); color: var(--accent); }
@media (max-width: 500px) {
  .mode-opt { padding: 0.28rem 0.55rem; font-size: 0.66rem; }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--text); text-decoration: none; }
.site-nav .nav-cta a { color: var(--accent-ink); }
.site-nav .nav-cta a:hover { color: var(--accent-ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 9px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    display: none;
    padding: 1rem 1.25rem 1.5rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .site-nav a { display: block; padding: 0.7rem 0.5rem; font-size: 1.05rem; }
  .site-nav .nav-cta { margin-top: 0.75rem; }
  .site-nav .nav-cta a { text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero-glow { display: none; }

.hero-watermark {
  position: absolute;
  left: -80px;
  bottom: -40px;
  width: 460px;
  height: auto;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(-8deg);
}
@media (max-width: 960px) { .hero-watermark { width: 240px; left: -50px; bottom: -50px; } }

/* soft warm light fields on the paper ground */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora {
  position: absolute;
  width: 48vw;
  height: 48vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.aurora-a {
  background: radial-gradient(circle, rgba(20, 113, 63, 0.1), transparent 65%);
  top: -14%;
  right: -6%;
}
.aurora-b {
  background: radial-gradient(circle, rgba(196, 123, 42, 0.1), transparent 65%);
  bottom: -20%;
  left: -10%;
}
@media (prefers-reduced-motion: no-preference) {
  .aurora-a { animation: drift-a 24s ease-in-out infinite alternate; }
  .aurora-b { animation: drift-b 28s ease-in-out infinite alternate; }
  @keyframes drift-a {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-7%, 9%) scale(1.12); }
  }
  @keyframes drift-b {
    from { transform: translate(0, 0) scale(1.08); }
    to { transform: translate(9%, -7%) scale(0.96); }
  }
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.hero-sub {
  color: var(--muted);
  font-size: 1.17rem;
  max-width: 33rem;
  margin: 1.4rem 0 2.2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-center { justify-content: center; margin-top: 2rem; }

.hero-note {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Campaign Ops console — the one dark object ---------- */
.console {
  --c-bg: #10141d;
  --c-bg2: #171d29;
  --c-border: #262e40;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(32, 36, 31, 0.35);
  font-family: var(--font-mono);
  font-size: 0.83rem;
  color: #e6ebf4;
  overflow: hidden;
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.7rem 1rem;
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
}
.console-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2d3650;
}
.console-title { margin-left: 0.5rem; color: #8b96ad; font-size: 0.78rem; }
.console-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
  font-size: 0.78rem;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
}
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse 1.6s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  }
}

.console-feed {
  padding: 1rem 1rem 0.5rem;
  height: 330px;            /* fixed: typing must never reflow the page */
  overflow: hidden;         /* newest lines anchor to the bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
}
@media (max-width: 640px) {
  .console-feed { height: 296px; }
  /* cheaper aurora on phones — big blurs cause scroll jank */
  .aurora { filter: blur(36px); opacity: 0.45; }
}

.console-line {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  line-height: 1.5;
}
.console-time { color: #5b667f; flex-shrink: 0; }
.console-msg { word-break: break-word; }

.console-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.45rem;
  border-radius: 5px;
  border: 1px solid;
}
.badge-auto     { color: #4ade80; border-color: rgba(74, 222, 128, 0.35); background: rgba(74, 222, 128, 0.08); }
.badge-guard    { color: #7dd3fc; border-color: rgba(125, 211, 252, 0.35); background: rgba(125, 211, 252, 0.07); }
.badge-escalate { color: #fbbf24; border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.08); }
.badge-alert    { color: #f87171; border-color: rgba(248, 113, 113, 0.35); background: rgba(248, 113, 113, 0.08); }

.console-caret {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #4ade80;
  vertical-align: text-bottom;
  margin-left: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  .console-caret { animation: blink 1s steps(1) infinite; }
  @keyframes blink { 50% { opacity: 0; } }
}

.console-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--c-border);
  color: #8b96ad;
  font-size: 0.76rem;
  flex-wrap: wrap;
}
.console-footer .ok { color: #4ade80; font-weight: 600; }

/* ---------- Cards / model section ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-3px);
    border-color: #d5cfc0;
    box-shadow: 0 4px 10px rgba(41, 37, 27, 0.05), 0 22px 50px rgba(41, 37, 27, 0.1);
  }
}

.model-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.75rem;
}
@media (min-width: 860px) { .model-grid { grid-template-columns: repeat(3, 1fr); } }

.model-card h3 { margin-bottom: 0.6rem; }
.model-card p { color: var(--muted); font-size: 0.99rem; }

.model-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.model-label.bad { color: #a19a89; }
.model-label.good { color: var(--accent); }

.model-card-us {
  border-color: rgba(20, 113, 63, 0.35);
  background: linear-gradient(180deg, var(--accent-dim), var(--panel) 60%);
}
.model-card-us p { color: var(--text); }

/* ---------- Channels ---------- */
.channel-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.75rem;
}
@media (min-width: 640px) { .channel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .channel-grid { grid-template-columns: repeat(3, 1fr); } }

.channel-card h3 { margin: 1rem 0 0.5rem; font-size: 1.12rem; }
.channel-card p { color: var(--muted); font-size: 0.97rem; }

.channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-dim);
}
.channel-icon svg { width: 23px; height: 23px; }

.brand-icon { background: #ffffff; border: 1px solid var(--border); }
.brand-icon svg { width: 22px; height: 22px; }

.channel-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}

/* ---------- Process / phases ---------- */
.phases {
  list-style: none;
  margin-top: 3rem;
  display: grid;
  position: relative;
}

.phase {
  position: relative;
  padding: 0 0 2.4rem 2.6rem;
  border-left: 2px solid var(--border);
  margin-left: 0.4rem;
}
.phase:last-child { padding-bottom: 0; }

.phase::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3.5px solid var(--accent);
}

.phase-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.phase-num {
  font-family: var(--font-body);
  font-weight: 600;
  color: #a19a89;
  font-size: 0.85rem;
}

.phase h3 { margin-bottom: 0.45rem; font-size: 1.3rem; }
.phase p { color: var(--muted); max-width: 40rem; }

.lead-badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
}
.lead-human { color: #1d4ed8; background: #e5edfc; }
.lead-ai    { color: var(--accent); background: var(--accent-dim); }
.lead-both  { color: #6d28d9; background: #efe9fb; }

/* ---------- Guardrails ---------- */
.guardrails { position: relative; }

.guardrail-table-wrap {
  margin-top: 2.75rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.guardrail-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.99rem;
}

.guardrail-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: left;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid var(--border);
  background: var(--panel-2);
}

.guardrail-table td {
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid #efece3;
  vertical-align: top;
}
.guardrail-table tr:last-child td { border-bottom: none; }
.guardrail-table td:first-child { font-weight: 600; }
.guardrail-table td:last-child { color: var(--muted); }
.guardrail-table td strong { color: var(--text); }

.auth {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.auth-auto     { color: var(--accent); background: var(--accent-dim); }
.auth-escalate { color: #92400e; background: #fbeed7; }
.auth-propose  { color: #1d4ed8; background: #e5edfc; }
.auth-alert    { color: #b91c1c; background: #fde8e8; }

.guardrail-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Strategist ---------- */
.strategist { background: var(--bg-alt); }

.strategist-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .strategist-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
}

.strategist-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.75rem 2rem;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 210deg, var(--accent), var(--warm), var(--accent));
  margin-bottom: 1.1rem;
}
.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text);
}
.avatar-ring-sm { width: 54px; height: 54px; padding: 3px; margin-bottom: 0; }
.avatar-ring-sm .avatar { font-size: 1.05rem; }

.strategist-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
}
.strategist-title { color: var(--muted); font-size: 0.94rem; }
.strategist-status {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.strategist-status .pulse { background: var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .strategist-status .pulse {
    animation: pulse-green 1.6s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20, 113, 63, 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(20, 113, 63, 0); }
  }
}

.strategist-points {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.9rem;
}
.strategist-points li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
  font-size: 1.01rem;
}
.strategist-points li strong { color: var(--text); }
.strategist-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.9em;
  height: 0.48em;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.75rem;
  align-items: start;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card { display: flex; flex-direction: column; }
.price-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 0.8rem;
  line-height: 1;
}
.price-per { font-size: 1.05rem; color: var(--muted); font-weight: 400; }

.price-fee {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 0.45rem;
}

.price-features {
  list-style: none;
  margin: 1.6rem 0 1.9rem;
  flex-grow: 1;
  display: grid;
  gap: 0.65rem;
}
.price-features li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.98rem;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.85em;
  height: 0.45em;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

.price-card-featured {
  border-color: rgba(20, 113, 63, 0.45);
  background: linear-gradient(180deg, var(--accent-dim), var(--panel) 45%);
  box-shadow: 0 6px 14px rgba(20, 113, 63, 0.08), 0 26px 60px rgba(41, 37, 27, 0.12);
}
@media (min-width: 900px) {
  .price-card-featured { transform: translateY(-14px); }
}

.featured-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pilot-banner {
  margin-top: 2.25rem;
  border: 1.5px dashed rgba(196, 123, 42, 0.55);
  border-radius: var(--radius);
  background: #faf3e8;
  padding: 2.1rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pilot-copy { max-width: 42rem; }
.pilot-copy h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.pilot-copy p { color: var(--muted); font-size: 0.98rem; }

.pilot-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.8rem;
}

.ownership-note {
  margin-top: 2.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.04rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.ownership-note strong { color: var(--text); }

.consult-note {
  margin-top: 1.1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
}
.consult-note strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.75rem; display: grid; gap: 1rem; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(20, 113, 63, 0.4); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 3.4rem 1.25rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.12rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }

.faq-body { padding: 0 1.6rem 1.5rem; }
.faq-body p { color: var(--muted); font-size: 1rem; }

/* ---------- Final section — booking on the deep green band ---------- */
.cta-final {
  background: #113d28;
  color: #f2f6ef;
}
.cta-final h2 { color: #ffffff; }
.cta-final .accent { color: #7fdc9f; }
.cta-final .eyebrow { color: #7fdc9f; }

.book-head { text-align: center; }
.book-head .section-sub { color: #b9ccb9; margin-inline: auto; }
.book-head .section-sub strong { color: #ffffff; }

.cta-final .book-list li { color: #c2d4c4; }
.cta-final .book-list li strong { color: #ffffff; }
.cta-final .book-list li::before {
  border-left-color: #7fdc9f;
  border-bottom-color: #7fdc9f;
}

/* white cards keep dark ink even on the green band */
.cta-final .book-why,
.cta-final .book-panel { color: var(--text); }
.cta-final .book-why h3,
.cta-final .book-panel h3 { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
}

.footer-brand p { color: var(--muted); font-size: 0.94rem; margin-top: 0.7rem; }

.footer-nav { display: grid; gap: 0.5rem; }
.footer-nav a { color: var(--muted); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--text); text-decoration: none; }

.footer-contact { display: grid; gap: 0.75rem; justify-items: start; }
.footer-contact > a { font-size: 0.95rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--muted); font-size: 0.9rem; }
.footer-social a:hover { color: var(--accent); }

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.87rem;
}

/* ---------- Booking section ---------- */
.book-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (min-width: 960px) {
  .book-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.book-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0.6rem 0 2.1rem;
}
.book-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
  font-size: 1.01rem;
}
.book-list li strong { color: var(--text); }
.book-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.9em;
  height: 0.48em;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

.book-why {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.6rem;
}
.book-why h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.book-why p { color: var(--muted); font-size: 0.97rem; }
.book-why .js-consult-fee { color: var(--text); font-weight: 600; }

.book-panel {
  background: var(--panel);
  border: 1px solid rgba(20, 113, 63, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem;
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.book-panel-head h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.book-panel-head > p { color: var(--muted); font-size: 0.94rem; }

.book-meet {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
}
.book-meet-label {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-meet-name { font-size: 0.94rem; color: var(--text); }
.book-meet-name .js-strategist-title { color: var(--muted); }

.scheduler-embed iframe {
  width: 100%;
  height: 560px;
  border: none;
  border-radius: 12px;
  background: var(--panel-2);
}

.scheduler-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 2.4rem 1.5rem;
  text-align: center;
  background: var(--panel-2);
}
.scheduler-note { color: var(--muted); font-size: 0.92rem; }
.scheduler-note code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 5px;
  padding: 0.05rem 0.35rem;
}

.book-alt { text-align: center; color: var(--muted); font-size: 0.92rem; }

.book-assure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  justify-content: center;
  padding: 0;
}
.book-assure li {
  font-size: 0.84rem;
  color: var(--muted);
  position: relative;
  padding-left: 1.15rem;
}
.book-assure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 0.7em;
  height: 0.38em;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.book-next {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 0;
}
.book-next li {
  counter-increment: step;
  position: relative;
  padding-left: 2.5rem;
  color: #c2d4c4;
  font-size: 0.97rem;
}
.book-next li strong { color: #ffffff; }
.book-next li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(127, 220, 159, 0.15);
  color: #7fdc9f;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Scroll reveal (disabled for reduced motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
}
