/* =============================================================
   Limber — Marketing site
   Brand tokens
   ============================================================= */
:root {
  --sage: #3D6B5C;
  --sage-light: #7FA89A;
  --sage-soft: #E7EFEB;
  --coral: #F26B5E;
  --coral-soft: #FDE8E5;
  --ink: #1A2B2A;
  --muted: #5C6E6C;
  --surface: #F8F6F1;
  --card: #FFFFFF;
  --border: #E6E2D8;
  --border-soft: #EFEBDF;
  --success: #2E8B57;
  --warning: #D9A441;
  --error: #C24A3F;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(26, 43, 42, 0.04), 0 2px 6px rgba(26, 43, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(26, 43, 42, 0.06), 0 12px 36px -8px rgba(26, 43, 42, 0.10);
  --shadow-lg: 0 8px 28px rgba(26, 43, 42, 0.08), 0 24px 60px -16px rgba(26, 43, 42, 0.14);
  --container: 1180px;
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.dim { color: var(--muted); }
.ink-sage { color: var(--sage); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms var(--easing), background 160ms ease, color 160ms ease,
    border-color 160ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 4px 12px -2px rgba(61,107,92,0.35);
}
.btn-primary:hover { background: #2f5648; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { background: #fff; border-color: var(--sage); color: var(--sage); }
.btn-lg { padding: 13px 22px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* =============================================================
   Nav
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled {
  background: rgba(248, 246, 241, 0.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(61,107,92,0.3);
}
.brand-word {
  font-size: 20px;
  color: var(--ink);
}
.brand-dot { color: var(--coral); }
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 20px;
  margin-right: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.78;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--sage); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile a { font-size: 16px; font-weight: 500; }
.nav-mobile .btn { padding: 12px; justify-content: center; }
.nav-mobile .block { width: 100%; }

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-blob-sage {
  width: 460px;
  height: 460px;
  background: var(--sage-light);
  top: -120px;
  left: -120px;
  opacity: 0.35;
}
.hero-blob-coral {
  width: 380px;
  height: 380px;
  background: var(--coral);
  bottom: -160px;
  right: -120px;
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 6px 10px;
  background: var(--sage-soft);
  border-radius: 6px;
}
.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.hero-h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 18px 0 18px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-proof {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero visual: laptop + phone */
.hero-visual {
  position: relative;
  min-height: 380px;
}
.laptop {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: 0;
  filter: drop-shadow(0 30px 40px rgba(26, 43, 42, 0.18));
  position: relative;
  z-index: 1;
}
.laptop-bezel {
  background: #1A2B2A;
  border-radius: 14px 14px 4px 4px;
  padding: 14px 14px 10px;
}
.laptop-screen {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
}
.screen-chrome {
  background: #F4F1E9;
  padding: 9px 12px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border-soft);
}
.screen-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D9D4C5;
}
.screen-chrome span:nth-child(1) { background: #F26B5E; opacity: .7; }
.screen-chrome span:nth-child(2) { background: #D9A441; opacity: .7; }
.screen-chrome span:nth-child(3) { background: var(--sage); opacity: .7; }
.screen-body {
  flex: 1;
  padding: 18px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screen-head { display: flex; justify-content: space-between; align-items: flex-start; }
.screen-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.screen-title { font-size: 15px; font-weight: 700; margin-top: 2px; color: var(--ink); }
.rom-chart { width: 100%; flex: 1; min-height: 0; }
.rom-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
.rom-legend .tnum { margin-left: auto; font-weight: 600; color: var(--ink); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.dot-sage { background: var(--sage); }
.dot-dashed { width: 12px; height: 2px; border-radius: 0; background: #C8C2B0; }

.laptop-base {
  height: 12px;
  background: #2a3d3a;
  border-radius: 0 0 20px 20px;
  margin: 0 -10px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: #1A2B2A;
}

.phone {
  position: absolute;
  bottom: -36px;
  left: -34px;
  width: 156px;
  background: #1A2B2A;
  border-radius: 26px;
  padding: 9px;
  filter: drop-shadow(0 18px 30px rgba(26,43,42,0.28));
  transform: rotate(-6deg);
  z-index: 2;
}
.phone-notch {
  height: 16px;
  background: #1A2B2A;
  border-radius: 0 0 14px 14px;
  width: 60px;
  margin: -9px auto 0;
}
.phone-screen {
  background: #fff;
  border-radius: 18px;
  padding: 14px 14px 16px;
}
.phone-eyebrow {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.phone-h { font-weight: 700; font-size: 13px; margin-top: 2px; }
.phone-stat { font-size: 24px; font-weight: 800; color: var(--sage); margin: 2px 0 6px; }
.phone-mini-chart { height: 38px; margin-bottom: 8px; }
.phone-mini-chart svg { width: 100%; height: 100%; }
.phone-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  padding: 5px 0;
  border-top: 1px solid var(--border-soft);
}
.phone-row.dim { color: var(--muted); }
.check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check.empty { background: transparent; border: 1.5px solid var(--border); }

/* =============================================================
   Sections
   ============================================================= */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 14px 0 10px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.prob {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.prob-name {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 16px;
}
.prob p { color: var(--muted); margin: 0; font-size: 15px; }
.problem-kicker {
  text-align: center;
  margin-top: 36px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.problem-kicker em { color: var(--sage); font-style: normal; }

/* FEATURES */
.features { background: var(--card); }
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-row h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 16px;
}
.feat-list { padding-left: 0; list-style: none; margin: 0 0 14px; }
.feat-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--muted);
}
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage);
}
.feat-pull {
  font-size: 16px;
  color: var(--sage);
  font-weight: 600;
  margin-top: 18px;
}
.feat-pull em { font-style: italic; }

/* Mock cards */
.feat-mock { position: relative; }
.mock-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
}
.mock-card-tight { padding: 18px; }
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mock-title { font-weight: 700; font-size: 15px; }
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.pill-sage { background: var(--sage-soft); color: var(--sage); }
.pill-sage-soft { background: var(--sage-soft); color: var(--sage); }
.pill-coral { background: var(--coral-soft); color: var(--coral); }
.pill-mini { font-size: 10px; padding: 3px 7px; background: var(--surface); color: var(--ink); }

.mock-stretch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.mock-stretch.dragging {
  box-shadow: 0 12px 28px -8px rgba(61,107,92,0.35);
  border-color: var(--sage);
  transform: rotate(-0.7deg);
}
.grab {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -2px;
  user-select: none;
  cursor: grab;
}
.m-h { font-weight: 600; font-size: 14px; }
.m-meta { font-size: 12px; color: var(--muted); }
.mock-stretch > div { flex: 1; }
.mock-drop {
  margin-top: 10px;
  padding: 14px;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.rom-chart-lg { width: 100%; height: 200px; margin: 6px 0 14px; }
.mock-rom-rows { display: flex; flex-direction: column; gap: 6px; }
.rom-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: #FAF8F2;
  font-size: 13px;
}

.mock-lmn { position: relative; }
.lmn-line { font-size: 13px; color: var(--ink); margin: 4px 0 4px; }
.lmn-line.dim { color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.mock-pdf {
  position: absolute;
  top: 28px;
  right: -16px;
  width: 180px;
  transform: rotate(6deg);
  z-index: -1;
}
.pdf-page {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 20px 40px -10px rgba(26,43,42,0.18);
}
.pdf-h { font-weight: 700; font-size: 11px; margin-bottom: 10px; color: var(--sage); }
.pdf-line { height: 4px; background: #ECE7D8; border-radius: 4px; margin-bottom: 6px; }
.pdf-line.short { width: 60%; }
.pdf-sig { font-size: 10px; color: var(--muted); margin-top: 10px; font-style: italic; }

/* Quick grid */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.quick {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.quick-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--sage-soft);
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.quick h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.quick p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* =============================================================
   Pricing
   ============================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-popular {
  border: 2px solid var(--sage);
  box-shadow: 0 24px 50px -16px rgba(61,107,92,0.25);
  transform: translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--sage);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-enterprise {
  background: linear-gradient(180deg, #FAF8F2 0%, #fff 100%);
}
.price-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-amt {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 8px 0 4px;
  color: var(--ink);
}
.price-amt span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}
.price-tag { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.price ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price ul li {
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}
.price ul li:first-child { border-top: 0; }
.price-notes {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
}
.price-notes p { margin: 4px 0; font-size: 14px; }

/* =============================================================
   Practitioners
   ============================================================= */
.practitioners { background: var(--card); }
.prac-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.prac-quote, .prac-stack {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.prac-quote {
  background: linear-gradient(180deg, var(--sage-soft) 0%, #fff 100%);
  border-color: rgba(61,107,92,0.18);
}
.prac-quote p {
  font-size: 18px;
  line-height: 1.5;
  margin: 6px 0 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prac-quote footer {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}
.quote-mark { opacity: 0.85; margin-bottom: -4px; }
.prac-partners {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(61,107,92,0.14);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.prac-stack h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}
.stack-row:first-of-type { border-top: 0; }
.stack-row.total {
  border-top: 1.5px solid var(--ink);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 700;
}
.stack-vs {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0;
}
.stack-limber {
  background: var(--sage-soft);
  border-radius: 10px;
  padding: 10px 14px;
  border-top: 0;
  color: var(--sage);
}
.prac-stack .dim { font-size: 12.5px; margin-top: 10px; }

/* =============================================================
   Studios
   ============================================================= */
.studio-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.studio-points > div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.studio-points strong { font-size: 16px; font-weight: 700; }
.studio-points span { font-size: 14.5px; color: var(--muted); }
.studio-callout {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff 0%, var(--coral-soft) 100%);
  border: 1px solid rgba(242,107,94,0.25);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.studio-callout p { margin: 0; font-size: 15px; }
.studio-callout a { color: var(--sage); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   Signup
   ============================================================= */
.signup {
  background: var(--sage);
  color: #fff;
}
.signup .section-head h2 { color: #fff; }
.signup .eyebrow { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); }
.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.signup-copy h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
}
.signup-copy p { color: rgba(255,255,255,0.86); font-size: 17px; }
.signup-copy .dim { color: rgba(255,255,255,0.7); }
.signup-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.signup-perks li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 15px;
}
.signup-perks span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--sage);
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.signup-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(61,107,92,0.15);
  background: #fff;
}
.signup-form .form-note { margin-top: 12px; font-size: 12px; }
.form-success {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}
.form-success[hidden] { display: none; }
[hidden] { display: none !important; }
.check-big {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.form-success p { font-size: 17px; font-weight: 600; margin: 0; max-width: 340px; }

/* =============================================================
   FAQ
   ============================================================= */
.faq { background: var(--card); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.faq-list details:last-of-type { border-bottom: 1px solid var(--border); }
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 22px;
  color: var(--sage);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 720px;
}

/* =============================================================
   Footer
   ============================================================= */
.site-foot {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 0;
}
.site-foot .brand-word { color: #fff; }
.site-foot a:hover { color: var(--sage-light); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px 28px;
  padding-bottom: 40px;
}
.foot-brand .brand { margin-bottom: 14px; }
.foot-tag {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 280px;
}
.site-foot h5 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
  font-weight: 700;
}
.site-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.site-foot ul a { font-size: 14.5px; color: rgba(255,255,255,0.85); }

.foot-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* =============================================================
   ClubReady switch section
   ============================================================= */
.clubready {
  background: var(--surface);
}
.eyebrow-coral {
  background: var(--coral-soft);
  color: var(--coral);
}
.clubready-sub { max-width: 700px; margin-left: auto; margin-right: auto; }

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.15fr 1.4fr;
  gap: 0;
  align-items: stretch;
}
.compare-head {
  border-bottom: 1px solid var(--border);
  background: #FAF8F2;
}
.compare-row + .compare-row,
.compare-head + .compare-row {
  border-top: 1px solid var(--border-soft);
}
.compare-col {
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  display: block;
}
.compare-col-label {
  font-weight: 600;
  color: var(--ink);
  background: transparent;
}
.compare-col-other {
  color: var(--muted);
}
.compare-col-us {
  background: var(--sage-soft);
  position: relative;
  color: var(--ink);
}
.compare-col-meaning {
  color: var(--muted);
  font-size: 14px;
}
.compare-col strong { color: var(--sage); font-weight: 700; }
.compare-col-us strong { color: var(--sage); }
.compare-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare-name-muted { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-col-us .compare-name { color: var(--sage); }
.compare-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.compare-head .compare-col-us { padding-top: 28px; padding-bottom: 18px; }

.compare-fineprint {
  margin: 14px 4px 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.compare-fineprint a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }

.cr-quotes-head {
  margin-top: 64px;
  margin-bottom: 24px;
  text-align: center;
}
.cr-quotes-head h3 {
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  font-weight: 800;
  margin: 0;
}
.cr-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cr-quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--easing), border-color 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
}
.cr-quote:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.cr-quote .quote-mark { margin-bottom: 4px; opacity: 0.85; }
.cr-quote p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
  flex: 1;
}
.cr-quote footer {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
}
.cr-quote footer a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

.cr-migrate {
  margin-top: 56px;
  background: #EFF1ED;
  border: 1px solid rgba(61,107,92,0.16);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.cr-migrate-inner { max-width: 760px; margin: 0 auto; }
.cr-migrate h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.cr-migrate p {
  font-size: 16px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 18px;
}
.cr-migrate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cr-migrate-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.cr-migrate-list .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 12px;
  margin-top: 1px;
}

.cr-disclaimer {
  margin: 28px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 760px;
}
.cr-disclaimer em { font-style: italic; }

/* =============================================================
   Reveal-on-scroll
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--easing), transform 700ms var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: 2; min-height: auto; max-width: 540px; margin: 0 auto; width: 100%; }
  .feat-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .feat-row.reverse { direction: ltr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-popular { transform: none; }
  .prac-grid { grid-template-columns: 1fr; }
  .signup-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 1180px) {
  .nav-links { gap: 18px; font-size: 14px; }
}

@media (max-width: 1024px) {
  .compare-head, .compare-row { grid-template-columns: 1fr 1fr 1fr 1.4fr; }
  .cr-quotes { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: inline-flex; }
  .compare-head { display: none; }
  .compare-row {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
  }
  .compare-col {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-soft);
  }
  .compare-col:last-child { border-bottom: 0; }
  .compare-col-label { background: #FAF8F2; font-weight: 700; }
  .compare-col-other::before { content: 'ClubReady — '; color: var(--muted); font-weight: 600; margin-right: 4px; }
  .compare-col-us { position: relative; }
  .compare-col-us::before { content: 'Limber — '; color: var(--sage); font-weight: 700; margin-right: 4px; }
  .compare-col-meaning { color: var(--muted); font-style: italic; }
  .cr-migrate { padding: 28px 22px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 36px 0 56px; }
  .problem-grid { grid-template-columns: 1fr; }
  .studio-points { grid-template-columns: 1fr; }
  .signup-perks { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .studio-callout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero-h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .quick-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-popular { transform: none; }
  .signup-form { padding: 22px; }
  .phone { width: 132px; left: 0; }
  .mock-pdf { display: none; }
  .nav-inner { padding: 12px 18px; }
  .brand-word { font-size: 18px; }
}
