/* Home page — hero, problem, features, stats, audiences, pricing, final CTA */

/* ============ HERO ============ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  min-height: auto;
}
.hero-copy { position: relative; z-index: 3; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(110deg, var(--mustard) 20%, var(--coral) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-dim);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.meta-sep { width: 4px; height: 4px; background: var(--ink-dim); border-radius: 50%; }

.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.decor-sq { position: absolute; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.decor-sq.coral { width: 100px; height: 100px; top: 10%; right: 3%; opacity: 0.7; animation: float-a 7s ease-in-out infinite; }
.decor-sq.mustard { width: 80px; height: 80px; top: 45%; right: 4%; opacity: 0.65; animation: float-b 9s ease-in-out infinite; }
.decor-sq.teal { width: 120px; height: 24px; bottom: 18%; left: 2%; opacity: 0.8; animation: float-c 6s ease-in-out infinite; }
.decor-sq.cream-sq { width: 70px; height: 70px; top: 8%; left: 2%; opacity: 0.5; animation: float-d 11s ease-in-out infinite; }

@keyframes float-a {
  0%, 100% { transform: translateY(0px) rotate(-8deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(6deg); }
  50% { transform: translateY(14px) rotate(12deg); }
}
@keyframes float-c {
  0%, 100% { transform: translateX(0px) rotate(-3deg); }
  50% { transform: translateX(16px) rotate(2deg); }
}
@keyframes float-d {
  0%, 100% { transform: translateY(0px) rotate(4deg); }
  33% { transform: translateY(-12px) rotate(-2deg); }
  66% { transform: translateY(8px) rotate(8deg); }
}

.hero-viz {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% {transform: translate(-50%, 0);} 50% {transform: translate(-50%, 6px);} }

/* ============ PHONE MOCK ============ */
.phone-frame {
  position: relative;
  width: 320px;
  height: 650px;
  max-width: 100%;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(232, 169, 74, 0.15), transparent 60%);
  filter: blur(30px);
  z-index: 0;
}
.phone-body {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0706;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.7),
    inset 0 0 0 1.5px rgba(244, 234, 213, 0.08);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #050403;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #221a15 0%, #1a1410 100%);
  border-radius: 36px;
  padding: 16px 14px 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding: 0 12px 16px;
}
.status-icons { color: var(--ink); }
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 18px;
}
.phone-greet { font-size: 11px; color: var(--ink-dim); }
.phone-name { font-family: var(--font-display); font-size: 22px; color: var(--cream); letter-spacing: -0.01em; }
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8798e, #e8a94a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #1a1410; font-size: 13px;
}
.phone-tabs {
  display: flex;
  gap: 4px;
  background: rgba(244, 234, 213, 0.04);
  border-radius: 10px;
  padding: 3px;
  margin: 0 4px 14px;
}
.phone-tab {
  flex: 1;
  padding: 7px;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all 0.2s;
}
.phone-tab.active { background: var(--mustard); color: #1a1410; }
.phone-content {
  flex: 1;
  overflow: hidden;
  padding: 0 4px;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(244, 234, 213, 0.06);
  margin-top: 8px;
}
.pn-item { color: var(--ink-dim); padding: 4px; }
.pn-item.active { color: var(--mustard); }
.pn-item.pn-cta {
  width: 34px; height: 34px;
  background: var(--coral);
  color: #1a1410;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* Feed view */
.feed { display: flex; flex-direction: column; gap: 10px; }
.feed-card {
  background: rgba(244, 234, 213, 0.04);
  border: 1px solid rgba(244, 234, 213, 0.06);
  border-radius: 12px;
  padding: 11px 13px;
}
.fc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.fc-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 4px;
}
.teal-tag { background: rgba(63, 140, 171, 0.2); color: #6eb4cd; }
.coral-tag { background: rgba(232, 121, 142, 0.2); color: #f4a5b4; }
.mustard-tag { background: rgba(232, 169, 74, 0.2); color: #f0c07a; }
.fc-time { font-size: 10px; color: var(--ink-dim); }
.fc-title { font-size: 13px; font-weight: 600; color: var(--cream); line-height: 1.3; margin-bottom: 3px; }
.fc-title.small { font-size: 12px; margin-bottom: 0; }
.fc-body { font-size: 11px; color: var(--ink-muted); line-height: 1.4; margin-bottom: 6px; }
.fc-by { font-size: 10px; color: var(--ink-dim); }
.fc-attach {
  font-size: 10px;
  color: var(--teal-ink);
  padding: 4px 7px;
  background: rgba(63,140,171,0.1);
  border-radius: 5px;
  display: inline-block;
}
.feed-card.small { padding: 9px 12px; }

/* Fees view */
.fees { display: flex; flex-direction: column; gap: 12px; }
.fee-card {
  background: linear-gradient(135deg, #e8a94a, #e8798e);
  color: #1a1410;
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.4s;
}
.fee-card.paid { background: linear-gradient(135deg, #3f8cab, #4fa8c9); }
.fee-label { font-size: 11px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.08em; }
.fee-amount { margin: 8px 0 4px; display: flex; align-items: baseline; gap: 5px; }
.fee-currency { font-size: 12px; font-weight: 600; opacity: 0.7; }
.fee-num { font-family: var(--font-display); font-size: 36px; font-weight: 500; letter-spacing: -0.02em; }
.fee-due { font-size: 11px; opacity: 0.8; margin-bottom: 12px; }
.fee-pay {
  width: 100%;
  padding: 10px;
  background: #1a1410;
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all 0.2s;
}
.fee-pay.done { background: rgba(255,255,255,0.25); color: #fff; }
.fee-history {
  background: rgba(244, 234, 213, 0.03);
  border-radius: 12px;
  padding: 10px 14px;
}
.fh-item {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  font-size: 12px;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(244,234,213,0.05);
}
.fh-item:last-child { border-bottom: none; }
.fh-item .ok { color: var(--mustard-ink); font-weight: 600; }

/* Gallery view */
.gallery .g-title { font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.g-cell {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-cell.more {
  background: rgba(244, 234, 213, 0.06);
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 14px;
}

/* ============ TRUST STRIP ============ */
.trust { padding: 50px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.trust-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.6;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}
.trust-mark {
  width: 20px; height: 20px;
  border-radius: 4px;
  display: inline-block;
}

/* ============ PROBLEM ============ */
.problem { padding: 100px 0; }
.problem-head { margin-bottom: 50px; max-width: 820px; }
.problem-head .eyebrow { margin-bottom: 20px; display: block; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
}
.problem-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.problem-grid.in .problem-card { opacity: 1; transform: translateY(0); }
.p-old {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-dim);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-color: rgba(244,234,213,0.2);
  text-align: center;
}
.p-arrow { color: var(--ink-dim); display: flex; justify-content: center; }
.p-arrow.coral { color: var(--coral); }
.p-arrow.mustard { color: var(--mustard); }
.p-arrow.teal { color: var(--teal-ink); }
.p-arrow.cream { color: var(--cream); }
.p-new { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; text-align: center; }
.p-new.coral { color: var(--coral-ink); }
.p-new.mustard { color: var(--mustard-ink); }
.p-new.teal { color: var(--teal-ink); }
.p-new.cream { color: var(--cream); }

/* ============ FEATURES ============ */
.features-head { margin-bottom: 50px; max-width: 820px; }
.features-head .eyebrow { margin-bottom: 20px; display: block; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s, border-color 0.2s;
}
.feat-card.in { opacity: 1; transform: translateY(0); }
.feat-card:hover {
  background: var(--bg-2);
  border-color: var(--line-strong);
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-icon.coral { background: rgba(232, 121, 142, 0.15); color: var(--coral-ink); }
.feat-icon.mustard { background: rgba(232, 169, 74, 0.15); color: var(--mustard-ink); }
.feat-icon.teal { background: rgba(63, 140, 171, 0.18); color: var(--teal-ink); }
.feat-icon.cream { background: rgba(244, 234, 213, 0.1); color: var(--cream); }
.feat-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feat-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ============ STATS ============ */
.stats { padding: 100px 0; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-head { margin-bottom: 50px; max-width: 820px; }
.stats-head .eyebrow { margin-bottom: 20px; display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 4px;
  background: currentColor;
}
.stat-card.coral { color: var(--coral); }
.stat-card.mustard { color: var(--mustard); }
.stat-card.teal { color: var(--teal-ink); }
.stat-card.cream { color: var(--cream); }
.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
  color: currentColor;
  display: flex;
  align-items: baseline;
}
.stat-sign, .stat-suffix { font-size: 48px; opacity: 0.9; }
.stat-val { margin: 0 2px; }
.stat-label { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 6px; letter-spacing: -0.01em; }
.stat-sub { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }

/* ============ AUDIENCES ============ */
.aud-head { margin-bottom: 50px; max-width: 820px; }
.aud-head .eyebrow { margin-bottom: 20px; display: block; }
.aud-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.aud-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.aud-tab:hover { color: var(--ink); background: var(--bg-2); }
.aud-tab.active { color: #1a1410; background: var(--cream); border-color: var(--cream); }
.aud-tab.active.coral { background: var(--coral); border-color: var(--coral); }
.aud-tab.active.mustard { background: var(--mustard); border-color: var(--mustard); }
.aud-tab.active.teal { background: var(--teal); border-color: var(--teal); color: var(--cream); }
.aud-icon { font-size: 16px; }

.aud-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.aud-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  pointer-events: none;
}
.aud-panel.coral::before { background: linear-gradient(135deg, var(--coral), transparent 50%); -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000); -webkit-mask-composite: xor; mask-composite: exclude; }
.aud-panel.mustard::before { background: linear-gradient(135deg, var(--mustard), transparent 50%); -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000); -webkit-mask-composite: xor; mask-composite: exclude; }
.aud-panel.teal::before { background: linear-gradient(135deg, var(--teal), transparent 50%); -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000); -webkit-mask-composite: xor; mask-composite: exclude; }

.aud-title { font-size: 38px; font-weight: 800; margin-bottom: 18px; color: var(--cream); letter-spacing: -0.01em; }
.aud-body { font-size: 16px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 24px; max-width: 440px; }
.aud-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.aud-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.aud-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: #1a1410;
  font-weight: 700;
}
.aud-check.coral { background: var(--coral); }
.aud-check.mustard { background: var(--mustard); }
.aud-check.teal { background: var(--teal); color: var(--cream); }

.aud-viz {
  position: relative;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aviz {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
}
.parent-viz { display: flex; flex-direction: column; gap: 10px; }
.av-msg { padding: 12px 14px; border-radius: 12px; }
.coral-bg { background: rgba(232, 121, 142, 0.12); border-left: 3px solid var(--coral); }
.mustard-bg { background: rgba(232, 169, 74, 0.12); border-left: 3px solid var(--mustard); }
.teal-bg { background: rgba(63, 140, 171, 0.15); border-left: 3px solid var(--teal); }
.av-from { font-size: 11px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.av-body { font-size: 14px; color: var(--cream); }
.av-pay {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--cream); color: #1a1410;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  margin-top: 6px;
}
.av-chip { background: #1a1410; color: var(--cream); padding: 6px 12px; border-radius: 999px; font-size: 12px; }

.teacher-viz .tv-header {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.tv-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink);
}
.tv-row.done { color: var(--ink-dim); text-decoration: line-through; text-decoration-color: rgba(244,234,213,0.25); }
.tv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tv-dot.coral { background: var(--coral); }
.tv-dot.mustard { background: var(--mustard); }
.tv-dot.teal { background: var(--teal); }
.tv-dot.cream { background: var(--cream); }
.tv-save {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(232, 169, 74, 0.1);
  border-radius: 10px;
  font-size: 13px;
  color: var(--mustard-ink);
  font-weight: 500;
}

.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.av-stat { background: rgba(244,234,213,0.04); border-radius: 10px; padding: 14px; }
.av-val { font-family: var(--font-display); font-size: 30px; color: var(--cream); line-height: 1; margin-bottom: 4px; }
.av-val.teal-ink { color: var(--teal-ink); }
.av-val.mustard-ink { color: var(--mustard-ink); }
.av-val.coral-ink { color: var(--coral-ink); }
.av-lbl { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.admin-chart {
  background: rgba(244,234,213,0.04);
  border-radius: 10px;
  padding: 14px;
}
.chart-label { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 60px; }
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--teal-ink), var(--teal));
  border-radius: 3px 3px 0 0;
}

/* ============ PRICING PREVIEW ============ */
.pricing-prev { padding: 70px 0; }
.price-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(232, 169, 74, 0.12), transparent 70%);
  pointer-events: none;
}
.price-left .eyebrow { margin-bottom: 20px; display: block; }
.price-left .section-title { font-size: clamp(36px, 4vw, 56px); }
.price-right { position: relative; z-index: 1; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.price-row.dim .price-lbl { color: var(--ink-dim); }
.price-lbl { font-size: 14px; color: var(--ink-muted); }
.price-val {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-curr { font-size: 16px; color: var(--ink-dim); }
.price-val-sm { font-size: 18px; color: var(--ink); font-weight: 600; }
.price-val-sm.mustard-ink { color: var(--mustard-ink); }
.price-cta { width: 100%; justify-content: center; margin-top: 24px; }
.price-foot { font-size: 12px; color: var(--ink-dim); text-align: center; margin-top: 12px; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 100px 0; position: relative; }
.fcta-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.fcta-decor {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 280px;
  opacity: 0.9;
  z-index: -1;
}
.fcta-title {
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--cream);
}
.fcta-sub {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.fcta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.fcta-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.fcta-steps .step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
}
.fcta-steps .step-n {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--mustard-ink);
}

/* ============ TWEAKS PANEL ============ */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  background: rgba(26, 20, 16, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.6);
  font-family: var(--font-ui);
}
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tweaks-head strong { font-size: 15px; color: var(--cream); }
.tweaks-head span { font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.tweaks-group { margin-bottom: 16px; }
.tweaks-group label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); margin-bottom: 8px; }
.tw-swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tw-sw {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px 6px 6px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-ui);
}
.tw-sw span { width: 16px; height: 16px; border-radius: 4px; border: 1px solid var(--line); }
.tw-sw.on { border-color: var(--mustard); color: var(--cream); }
.tw-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tw-chips.vert { flex-direction: column; }
.tw-chip {
  padding: 6px 11px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-ui);
  text-align: left;
}
.tw-chip.on { background: var(--mustard); color: #1a1410; border-color: var(--mustard); }

/* Nav active */
.nav-links a.active { color: var(--cream); }

/* ============ FAQ ============ */
.home-faq { padding: 80px 0; }
.home-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.home-faq-head { position: sticky; top: 100px; }
.home-faq-list { border-top: 1px solid var(--line); }
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 600; color: var(--cream);
  gap: 16px;
}
.faq-q .plus {
  font-size: 24px; color: var(--ink-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); color: var(--mustard); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .hero-inner { gap: 32px; }
  .phone-frame { transform: scale(0.82); transform-origin: top center; margin-bottom: -117px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .phone-frame { transform: scale(0.95); transform-origin: top center; margin-bottom: -33px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .aud-panel { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .price-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .tweaks-panel { width: calc(100vw - 40px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-faq-head { position: static; }
}
@media (max-width: 600px) {
  .hero-inner { text-align: center; }
  .phone-frame { transform: scale(0.85); transform-origin: top center; margin-bottom: -98px; }
  .problem { padding: 48px 0 !important; }
  .stats { padding: 48px 0 !important; }
  .final-cta { padding: 48px 0 !important; }
  .pricing-prev { padding: 40px 0 !important; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .aud-tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; }
  .aud-tabs::-webkit-scrollbar { display: none; }
  .problem-card { grid-template-columns: 1fr; padding: 24px; }
  .p-arrow { transform: rotate(90deg); }
}
