/* AdaptioAI — v2 conversion-focused stylesheet */

:root {
  --bg: #070a10;
  --bg-2: #0b1018;
  --bg-3: #0e141d;
  --panel: #121922;
  --panel-2: #161d28;
  --border: rgba(186, 201, 220, 0.10);
  --border-2: rgba(186, 201, 220, 0.16);
  --border-strong: rgba(124, 196, 255, 0.32);
  --text: #eef2f7;
  --text-strong: #ffffff;
  --muted: #a7b2c1;
  --muted-2: #7d8898;
  --muted-3: #5b6573;
  --accent: #7cc4ff;
  --accent-strong: #a6d9ff;
  --accent-deep: #4ea8ff;
  --mint: #86f0c8;
  --mint-deep: #4cd4a4;
  --ok: #77d69a;
  --warn: #f0c674;
  --danger: #ff8b8b;
  --shadow-1: 0 8px 24px rgba(0, 0, 0, 0.22);
  --shadow-2: 0 18px 50px rgba(0, 0, 0, 0.32);
  --shadow-cta: 0 14px 36px rgba(134, 240, 200, 0.18), 0 4px 14px rgba(0, 0, 0, 0.3);
  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 14px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(1200px circle at 12% -4%, rgba(134, 240, 200, 0.10), transparent 38%),
    radial-gradient(900px circle at 88% 4%, rgba(124, 196, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #070a10 0%, #0a0f17 40%, #070a10 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  opacity: .6;
  z-index: 0;
}

a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-strong); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--bg-3); color: var(--text);
  padding: 8px 14px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.page-shell { position: relative; z-index: 1; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 { margin-top: 0; color: var(--text-strong); }
h1, h2 { text-wrap: balance; letter-spacing: -0.035em; line-height: 1.04; font-weight: 800; }
h3 { letter-spacing: -0.022em; line-height: 1.2; font-weight: 700; }
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  margin-bottom: 22px;
  max-width: 14ch;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  margin-bottom: 14px;
  max-width: 24ch;
}
h3 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-top: 0; }
.grad {
  background: linear-gradient(120deg, var(--mint) 0%, var(--accent) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  background: rgba(7, 10, 16, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 1.04rem;
}
.brand:hover { color: var(--text-strong); }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(134,240,200,0.16), rgba(124,196,255,0.16));
  border: 1px solid rgba(134,240,200,0.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 18px;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text-strong); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-strong);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-cta:hover {
  background: rgba(134,240,200,0.10);
  border-color: rgba(134,240,200,0.32);
  color: var(--text-strong);
}

/* Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  color: #061b14;
  background: linear-gradient(135deg, var(--mint) 0%, var(--accent) 100%);
  box-shadow: var(--shadow-cta);
  font-weight: 700;
}
.btn-primary:hover {
  color: #061b14;
  background: linear-gradient(135deg, #a4f5d4 0%, #b7dfff 100%);
  box-shadow: 0 18px 44px rgba(134, 240, 200, 0.26), 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn-ghost {
  color: var(--text-strong);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  color: var(--text-strong);
  border-color: rgba(134, 240, 200, 0.4);
  background: rgba(134, 240, 200, 0.06);
}
.btn-block { width: 100%; }
.btn-large { min-height: 54px; padding: 0 28px; font-size: 1.02rem; }
.btn-submit { width: 100%; margin-top: 4px; }

/* Hero -------------------------------------------------------- */
.hero { padding: 96px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: start;
}
.hero-copy { padding-top: 8px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(134, 240, 200, 0.08);
  border: 1px solid rgba(134, 240, 200, 0.22);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.eyebrow--inline {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 12px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}
.eyebrow--inline::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
  vertical-align: middle;
  margin-right: 4px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(134, 240, 200, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(134, 240, 200, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(134, 240, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 240, 200, 0); }
}
.lead {
  max-width: 60ch;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-row li svg { width: 14px; height: 14px; color: var(--mint); flex-shrink: 0; }

/* Hero panel: sample weekly report ---------------------------- */
.hero-panel {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.96), rgba(11, 16, 24, 0.96));
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  padding: 0;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 90% -10%, rgba(134, 240, 200, 0.12), transparent 50%);
  z-index: 0;
}
.panel-chrome {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chrome-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.chrome-dot--red { background: #ff6c6c; }
.chrome-dot--amber { background: #f0c674; }
.chrome-dot--green { background: #6ad29c; }
.chrome-title {
  margin-left: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.report {
  position: relative; z-index: 1;
  padding: 22px;
}
.report-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.report-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.report-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  color: var(--text-strong);
  font-size: 0.98rem;
}
.report-status .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--ok); box-shadow: 0 0 0 4px rgba(119, 214, 154, 0.18); }
.report-week {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--muted-2);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.metric {
  padding: 14px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}
.metric--highlight {
  background: linear-gradient(180deg, rgba(134, 240, 200, 0.10), rgba(134, 240, 200, 0.03));
  border-color: rgba(134, 240, 200, 0.28);
}
.metric-label {
  font-size: 0.72rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.metric-value {
  font-size: 1.7rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: var(--text-strong);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-delta {
  font-size: 0.74rem;
  color: var(--muted-2);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.delta-up { color: var(--ok); }
.bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  background: rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.bar-seg { height: 100%; }
.seg-pos { background: linear-gradient(90deg, var(--mint), var(--mint-deep)); }
.seg-neu { background: rgba(124, 196, 255, 0.55); }
.seg-neg { background: rgba(255, 139, 139, 0.5); }
.bar-legend {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.bar-legend i {
  display: inline-block; width: 8px; height: 8px; border-radius: 999px;
  vertical-align: middle; margin-right: 6px;
}
.bar-legend i.dot--pos { background: var(--mint); }
.bar-legend i.dot--neu { background: var(--accent); }
.bar-legend i.dot--neg { background: var(--danger); }
.report-note {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: rgba(124, 196, 255, 0.05);
  border-left: 2px solid var(--accent);
}
.panel-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-3);
  padding: 0 0 14px;
  font-style: italic;
}

/* Strip ------------------------------------------------------- */
.strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  padding: 26px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-item strong { color: var(--text-strong); font-size: 0.96rem; font-weight: 700; }
.strip-item span { color: var(--muted-2); font-size: 0.88rem; }

/* Sections ---------------------------------------------------- */
.section { padding: 96px 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, rgba(11, 16, 24, 0.6), rgba(11, 16, 24, 0));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}
.section-note {
  color: var(--muted-2);
  max-width: 30ch;
  margin: 0;
  font-size: 0.96rem;
}

/* Grid -------------------------------------------------------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Problem ----------------------------------------------------- */
.problem-grid { gap: 16px; }
.problem {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.78), rgba(11, 16, 24, 0.78));
  border: 1px solid var(--border-2);
  transition: border-color .2s ease, transform .2s ease;
}
.problem:hover { transform: translateY(-2px); border-color: rgba(255, 139, 139, 0.28); }
.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 139, 139, 0.10);
  color: var(--danger);
  border: 1px solid rgba(255, 139, 139, 0.22);
  font-weight: 800;
  margin-bottom: 16px;
}
.problem h3 { font-size: 1.15rem; margin-bottom: 10px; }
.problem p { color: var(--muted); margin: 0; font-size: 0.96rem; }

.problem-pivot {
  margin-top: 36px;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(134, 240, 200, 0.08), rgba(124, 196, 255, 0.06));
  border: 1px solid rgba(134, 240, 200, 0.20);
  display: flex;
  align-items: center;
  gap: 22px;
}
.pivot-bar {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), var(--accent));
  min-height: 50px;
}
.problem-pivot p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Loop diagram ------------------------------------------------ */
.loop {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 36px;
}
.loop-step {
  position: relative;
  padding: 22px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.94), rgba(11, 16, 24, 0.94));
  border: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.loop-step--accent {
  border-color: rgba(134, 240, 200, 0.32);
  background: linear-gradient(180deg, rgba(134, 240, 200, 0.10), rgba(11, 16, 24, 0.92));
}
.loop-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--mint);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-weight: 600;
}
.loop-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.loop-step p { color: var(--muted); font-size: 0.92rem; margin: 0 0 16px; flex: 1; }
.loop-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.loop-arrow {
  display: grid;
  place-items: center;
  color: rgba(134, 240, 200, 0.5);
  font-size: 1.2rem;
}
.how-foot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.how-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}
.how-stat strong {
  color: var(--text-strong);
  font-size: 1.4rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

/* Deliverables ------------------------------------------------ */
.deliver-grid { gap: 18px; }
.deliver {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.92), rgba(11, 16, 24, 0.92));
  border: 1px solid var(--border-2);
}
.deliver-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(134, 240, 200, 0.08);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(134, 240, 200, 0.22);
}
.deliver-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.deliver-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
}
.deliver-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--mint), var(--accent));
  transform: rotate(45deg);
}
.deliver-list strong { color: var(--text-strong); font-weight: 650; }

/* Pricing ----------------------------------------------------- */
.pricing-grid { gap: 18px; align-items: stretch; }
.tier {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.94), rgba(11, 16, 24, 0.94));
  border: 1px solid var(--border-2);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-3px); border-color: rgba(124, 196, 255, 0.24); box-shadow: var(--shadow-2); }
.tier--featured {
  border-color: rgba(134, 240, 200, 0.36);
  background: linear-gradient(180deg, rgba(134, 240, 200, 0.10), rgba(11, 16, 24, 0.94));
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}
.tier--featured:hover { transform: translateY(-8px); }
.tier-flag {
  position: absolute;
  top: -12px; left: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--accent));
  color: #061b14;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.tier-name {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.tier-from { color: var(--muted-2); font-size: 0.86rem; margin-right: 4px; }
.tier-amount { color: var(--text-strong); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.tier-period { color: var(--muted-2); font-size: 0.96rem; }
.tier-blurb { color: var(--muted); font-size: 0.96rem; margin-bottom: 20px; line-height: 1.55; }
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.tier-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}
.tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--mint);
  font-weight: 800;
}
.tier .btn { margin-top: auto; }

.feature-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: grid;
  gap: 4px;
}
.list-clean { list-style: none; padding-left: 0; margin-left: 0; }
.list-clean li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.96rem;
}
.list-clean li:last-child { border-bottom: 0; }
.check::before { content: "✓"; color: var(--mint); margin-right: 14px; font-weight: 800; }

/* Comparison table -------------------------------------------- */
.compare-wrap {
  border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.78), rgba(11, 16, 24, 0.78));
  overflow-x: auto;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.95rem;
}
.compare th, .compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
}
.compare thead th {
  font-weight: 600;
  color: var(--muted-2);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare thead th.us {
  color: var(--mint);
  background: linear-gradient(180deg, rgba(134, 240, 200, 0.10), transparent);
}
.compare tbody th {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 0.94rem;
}
.compare td.dim { color: var(--muted-3); }
.compare td.us, .compare .us {
  color: var(--text-strong);
  background: rgba(134, 240, 200, 0.04);
  font-weight: 600;
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }

/* Founder ----------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: start;
}
.founder-card {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.94), rgba(11, 16, 24, 0.94));
  border: 1px solid var(--border-2);
  text-align: left;
}
.founder-avatar {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(134, 240, 200, 0.08);
  border: 1px solid rgba(134, 240, 200, 0.22);
  margin-bottom: 18px;
}
.founder-name {
  color: var(--text-strong);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.founder-title {
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.founder-bio {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.55;
}
.founder-copy h2 { margin-bottom: 18px; max-width: 22ch; }
.founder-copy p { color: var(--muted); margin-bottom: 16px; max-width: 62ch; font-size: 1.02rem; }
.founder-copy .cta-row { margin-top: 28px; }

/* FAQ --------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: start;
}
.faq-list { display: grid; gap: 10px; }
details {
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: 18px 22px;
  transition: background .15s ease, border-color .15s ease;
}
details:hover { background: rgba(255,255,255,0.035); }
details[open] {
  background: rgba(124, 196, 255, 0.05);
  border-color: rgba(124, 196, 255, 0.18);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  font-weight: 650;
  color: var(--text-strong);
  font-size: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--mint);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
  transition: transform .2s ease;
}
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 12px 0 0; font-size: 0.96rem; line-height: 1.6; }

.faq-aside {
  position: sticky;
  top: 100px;
  padding: 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.92), rgba(11, 16, 24, 0.92));
  border: 1px solid var(--border-2);
}
.faq-aside .meta {
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-aside h3 { font-size: 1.18rem; margin-bottom: 10px; }
.faq-aside p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.aside-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.aside-list li {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.aside-list li strong { color: var(--text-strong); }

/* Book CTA ---------------------------------------------------- */
.cta-band {
  padding: 96px 0 110px;
  background:
    radial-gradient(900px circle at 10% 30%, rgba(134, 240, 200, 0.10), transparent 50%),
    radial-gradient(800px circle at 90% 70%, rgba(124, 196, 255, 0.12), transparent 50%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.95fr);
  gap: 36px;
  align-items: start;
}
.contact-copy { padding-top: 8px; }
.contact-copy h2 { margin-bottom: 16px; max-width: 22ch; }
.contact-copy p { color: var(--muted); max-width: 58ch; font-size: 1.05rem; }
.book-options { margin: 28px 0 22px; }
.or {
  margin-top: 14px;
  color: var(--muted-3);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-style: italic;
}
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  color: var(--muted);
  font-size: 0.84rem;
}
.contact-form {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.96), rgba(11, 16, 24, 0.96));
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-2);
  display: grid;
  gap: 16px;
}
label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
input, textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
input::placeholder, textarea::placeholder { color: rgba(167,178,193,0.55); }
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(134, 240, 200, 0.4);
  box-shadow: 0 0 0 4px rgba(134, 240, 200, 0.10);
  background: rgba(255,255,255,0.045);
}
textarea { min-height: 110px; resize: vertical; }
.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
}

/* Footer ------------------------------------------------------ */
footer {
  padding: 56px 0 42px;
  color: var(--muted-2);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(7, 10, 16, 0.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .brand { font-size: 0.98rem; }
.footer-brand p { margin: 0; color: var(--muted-2); font-size: 0.86rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--text-strong); }
.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
  color: var(--muted-3);
  text-align: left;
}

/* Audit page -------------------------------------------------- */
.audit-q {
  position: relative;
  padding: 28px 32px 28px 88px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.78), rgba(11, 16, 24, 0.78));
  border: 1px solid var(--border-2);
  margin-bottom: 18px;
}
.audit-q h2 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  max-width: none;
  line-height: 1.25;
}
.audit-q p { color: var(--muted); margin: 0 0 12px; font-size: 1rem; }
.audit-q code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.88em;
  background: rgba(124, 196, 255, 0.10);
  padding: 1px 6px;
  border-radius: 5px;
  color: var(--accent-strong);
}
.audit-num {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(134, 240, 200, 0.12), rgba(124, 196, 255, 0.12));
  border: 1px solid rgba(134, 240, 200, 0.24);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.audit-fix {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(134, 240, 200, 0.06);
  border-left: 3px solid var(--mint);
  color: var(--muted);
  font-size: 0.94rem;
}
.audit-fix strong { color: var(--text-strong); }
.audit-score {
  position: relative;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(134, 240, 200, 0.08), rgba(124, 196, 255, 0.04));
  border: 1px solid rgba(134, 240, 200, 0.24);
  margin: 32px 0 18px;
}
.audit-score h2 { font-size: 1.5rem; margin-bottom: 14px; }
.audit-score p { color: var(--muted); margin-bottom: 12px; font-size: 1rem; }
.audit-score p strong { color: var(--text-strong); font-weight: 700; }
.audit-score .audit-num {
  position: static;
  display: inline-grid;
  margin-bottom: 16px;
}
.audit-cta {
  padding: 36px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.96), rgba(11, 16, 24, 0.96));
  border: 1px solid var(--border-2);
  margin-top: 18px;
  text-align: left;
}
.audit-cta h2 { font-size: 1.6rem; margin-bottom: 14px; max-width: none; }
.audit-cta p { color: var(--muted); margin-bottom: 24px; font-size: 1.02rem; }
@media (max-width: 720px) {
  .audit-q { padding: 24px 22px 24px 22px; }
  .audit-num { position: static; margin-bottom: 14px; }
  .audit-cta { padding: 28px 22px; }
}

/* Legal & thanks pages reset ---------------------------------- */
.legal-page section { padding: 80px 0; }
.legal-page h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); max-width: none; margin-bottom: 18px; }
.legal-page h2 { font-size: 1.25rem; margin-top: 28px; margin-bottom: 10px; max-width: none; }
.legal-page p { color: var(--muted); margin-bottom: 14px; }
.legal-page .sub { color: var(--muted-2); margin-bottom: 30px; }

/* Responsive -------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid,
  .faq-layout,
  .contact-grid,
  .founder-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .loop {
    grid-template-columns: 1fr;
  }
  .loop-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .how-foot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { flex-direction: column; align-items: start; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-3px); }
  .founder-card { position: static; }
  .faq-aside { position: static; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 40px; }
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
  .nav-cta { padding: 0 14px; font-size: 0.86rem; }
  .brand-text { display: inline; }
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); max-width: none; }
  .lead { font-size: 1rem; }
  .section { padding: 64px 0; }
  .strip-inner { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-foot { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-band { padding: 64px 0 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
