:root {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --paper2: #fbfaf7;
  --ink: #171713;
  --muted: #6f6d65;
  --line: #e4dfd2;
  --lime: #d8ff68;
  --dark: #181a16;
  --orange: #ff8a4c;
  --accent2: #20251b;
  --shadow: 0 24px 60px rgba(30, 28, 20, 0.09);
  --shadow-s: 0 8px 24px rgba(30, 28, 20, 0.06);
  --pad: clamp(18px, 4.5vw, 52px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: Manrope, system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); }

.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.mono {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  border-radius: 99px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag.gr { background: #e8e4d8; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 15px 26px;
  font-weight: 700;
  font-size: 15.5px;
  transition: 0.18s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(23, 23, 19, 0.22); }
.btn.lime { background: var(--lime); color: var(--ink); }
.btn.ghost { background: transparent; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn.full { width: 100%; }
.card {
  background: var(--paper);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.header-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 223, 210, 0.85);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.header-start {
  padding: 11px 16px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}
.logo .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  flex: none;
}
.logo .dot i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); display: block;
}
.logo small {
  font-weight: 500; font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 500;
  margin-left: auto;
}
.nav-desktop a:not(.btn) { color: #4f4d47; white-space: nowrap; }
.nav-desktop a:not(.btn):hover { color: var(--ink); }
.nav-cta { padding: 13px 20px !important; font-size: 14.5px !important; white-space: nowrap; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 99;
  background: rgba(23, 23, 19, 0.35);
}
.mobile-nav__panel {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-nav__panel a:not(.btn) {
  padding: 16px 14px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
}
.mobile-nav__panel a:not(.btn):active { background: #f4f1ea; }
.mobile-nav__panel .btn { margin-top: 10px; padding: 16px 20px; font-size: 16px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s, opacity 0.2s;
}
.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 56px 0 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-trust {
  margin: 20px 0 0;
  color: #6c6961;
  font-size: 13px;
  max-width: 520px;
  line-height: 1.55;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 13px; background: rgba(255,255,255,.5);
  font-size: 13px; color: #5d5b54; margin-bottom: 22px;
}
.eyebrow i { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; display: block; }
.hero h1 {
  font-size: clamp(44px, 6.2vw, 86px);
  font-weight: 800; line-height: 0.96;
  letter-spacing: -0.05em; margin-bottom: 24px; max-width: 760px;
}
.hero .lead { font-size: 19px; line-height: 1.65; color: #66635b; max-width: 620px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: stretch; gap: 15px; flex-wrap: wrap; margin-bottom: 12px; }
.btn-hero { width: 100%; max-width: 360px; justify-content: center; }
.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
}
.hero-free-badge__pill {
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-free-badge__meta {
  font-size: 14px;
  font-weight: 600;
  color: #5a574f;
}
.hide-mobile { display: block; }

@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
}

.visual { position: relative; min-height: 560px; }
.glow {
  position: absolute; inset: 40px 0 20px 80px;
  background: linear-gradient(160deg,#e9ffad,#fbd9bc);
  border-radius: 40% 60% 50% 45%; transform: rotate(-7deg);
}
.demo-card {
  position: absolute; background: var(--paper2);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 30px 80px rgba(30,28,20,.1);
  border-radius: 28px;
}
.demo-main { width: 420px; max-width: 94%; right: 22px; top: 26px; padding: 34px; transform: rotate(2.5deg); }
.demo-quote { left: 0; bottom: 35px; width: 320px; max-width: 72%; padding: 24px; transform: rotate(-4deg); }
.demo-mini { right: 0; bottom: 20px; width: 205px; padding: 20px; transform: rotate(6deg); background: var(--accent2); color: #fff; }
.demo-mini .price { font-family: Manrope; font-size: 40px; font-weight: 800; letter-spacing: -2px; }
.barline { display: grid; grid-template-columns: 92px 1fr 30px; gap: 10px; align-items: center; font-size: 12px; margin-top: 13px; }
.bartrack { height: 8px; background: #ebe7dc; border-radius: 999px; overflow: hidden; }
.barfill { height: 100%; background: var(--ink); border-radius: inherit; }

.section { padding: clamp(70px, 9vw, 110px) 0; }
.section-tight { padding-top: 0; padding-bottom: 60px; }
.center { text-align: center; max-width: 800px; margin: 0 auto; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #77746c; }
.h2 { font-size: clamp(34px, 5vw, 62px); font-weight: 800; letter-spacing: -0.045em; margin: 15px 0 20px; }
.lead { font-size: clamp(16px, 1.9vw, 18px); color: #6e6b63; line-height: 1.65; }

.band {
  background: var(--accent2); color: #fff;
  border-radius: 30px; padding: clamp(28px, 4vw, 46px);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.compare-row {
  display: grid; grid-template-columns: 100px 1fr 1fr; gap: 12px;
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px;
}
.compare-row .label { color: #8d9184; font-weight: 600; }
.compare-row .them { color: #8d9184; }
.compare-row .us { color: #fff; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.step {
  background: rgba(255,255,255,.55); border: 1px solid var(--line);
  border-radius: 24px; padding: 30px;
}
.step-no { font-family: Manrope; font-weight: 800; font-size: 13px; }
.step h3 { font-size: 23px; margin: 42px 0 10px; font-weight: 800; letter-spacing: -0.03em; }
.step p { color: #706d65; line-height: 1.6; font-size: 15.5px; }

.layer-row {
  display: grid; grid-template-columns: 46px 1fr auto; gap: 16px;
  align-items: center; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.layer-row:last-child { border-bottom: none; }
.layer-row .n { font-family: Manrope; font-weight: 800; color: var(--lime); }
.layer-row h4 { font-size: 19px; margin-bottom: 3px; font-weight: 700; }
.layer-row p { font-size: 14px; color: #b9bdb0; }
.layer-row .ct { font-size: 11px; color: #8d9184; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.quiz {
  margin-top: 55px; background: var(--paper2); border: 1px solid var(--line);
  border-radius: 30px; overflow: hidden; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.25fr 0.75fr;
}
.quiz-main { padding: 44px; }
.quiz-side {
  background: var(--accent2); color: #fff; padding: 38px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.progress { height: 6px; background: #e9e5dc; border-radius: 20px; overflow: hidden; margin-bottom: 38px; }
.progress span { display: block; width: 44%; height: 100%; background: var(--ink); }
.question { font-family: Manrope; font-weight: 800; font-size: clamp(24px, 3.2vw, 34px); line-height: 1.15; margin: 15px 0 28px; letter-spacing: -0.04em; }
.option {
  border: 1px solid var(--line); border-radius: 16px; padding: 17px 18px;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; font-size: 15.5px; margin-bottom: 12px;
}
.option.active { border-color: #1c1c18; background: #f0ffbd; }

.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; max-width: 880px; margin-left: auto; margin-right: auto; }
.price-card {
  background: rgba(255,255,255,.55); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px; display: flex; flex-direction: column;
}
.price-card.featured { background: var(--dark); color: #fff; border-color: var(--dark); box-shadow: var(--shadow); }
.price-big { font-family: Manrope; font-weight: 800; font-size: 42px; letter-spacing: -0.04em; }
.price-card.featured .price-big { font-size: 52px; color: var(--lime); }
.price-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; font-size: 14.5px; color: #625f58; flex: 1; }
.price-card.featured .price-list { color: rgba(255,255,255,.82); font-size: 14px; }

.report-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 55px; margin-top: 55px; align-items: start; }
.report-dark { background: #161713; color: #fff; padding: 36px; border-radius: 28px; box-shadow: var(--shadow); }
.report-row { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 15px; }
.tick { width: 24px; height: 24px; background: var(--lime); color: #111; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; flex: none; }
.sticky-box { border: 1px solid var(--line); border-radius: 25px; padding: 34px; background: rgba(255,255,255,.5); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.benefit-card { padding: 24px; background: rgba(255,255,255,.55); border: 1px solid var(--line); }
.benefit-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.03em; }
.benefit-card p { color: #625f58; line-height: 1.6; font-size: 15px; margin: 0; }

.visual--character {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  min-height: auto;
}
.hero-character {
  display: block;
  width: min(380px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(30, 28, 20, 0.14));
}
.hero-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  width: 100%;
  max-width: 480px;
}
.visual--character .demo-card {
  position: static;
  transform: none;
  width: auto;
  max-width: none;
}
.visual--character .demo-quote { padding: 20px; }
.visual--character .demo-mini { padding: 20px; display: flex; flex-direction: column; justify-content: center; }

.characters { padding: clamp(40px, 6vw, 72px) 0; }
.characters--gallery { padding-top: clamp(20px, 3vw, 36px); }

.character-teaser {
  padding: clamp(46px, 7vw, 90px) 0 clamp(30px, 4vw, 50px);
  position: relative;
  overflow: hidden;
}
.character-teaser__glow {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(760px, 92vw);
  height: 420px;
  background: radial-gradient(ellipse at center, var(--lime), transparent 68%);
  opacity: 0.5;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.character-teaser__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.character-teaser__eyebrow {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a887f;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.character-teaser__eyebrow::before,
.character-teaser__eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.character-teaser__title {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 18px 0 0;
}
.character-teaser__title span {
  position: relative;
  white-space: nowrap;
}
.character-teaser__title span::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--lime);
  z-index: -1;
  border-radius: 2px;
}
.character-teaser__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #6f6d64;
  max-width: 46ch;
  margin: 20px auto 0;
  line-height: 1.55;
}
.character-teaser__deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: clamp(30px, 4vw, 50px);
  padding-bottom: 14px;
  min-height: 260px;
}
.character-teaser__card {
  width: clamp(120px, 15vw, 180px);
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(20, 20, 18, 0.16);
  background: #fff;
  margin: 0 -22px;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
  flex-shrink: 0;
}
.character-teaser__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.character-teaser__deck .character-teaser__card:nth-child(1) { transform: rotate(-13deg) translateY(16px); }
.character-teaser__deck .character-teaser__card:nth-child(2) { transform: rotate(-6deg) translateY(4px); }
.character-teaser__deck .character-teaser__card:nth-child(3) { transform: rotate(0deg) translateY(-12px) scale(1.06); z-index: 5; }
.character-teaser__deck .character-teaser__card:nth-child(4) { transform: rotate(6deg) translateY(4px); }
.character-teaser__deck .character-teaser__card:nth-child(5) { transform: rotate(13deg) translateY(16px); }
.character-teaser__deck:hover .character-teaser__card { transform: rotate(0) translateY(0) scale(1); }
.character-teaser__deck:hover .character-teaser__card:nth-child(3) { transform: translateY(-6px) scale(1.04); }
.character-teaser__card--mystery {
  background: var(--ink);
  border-color: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
}
.character-teaser__q {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 10vw, 64px);
  color: var(--lime);
  line-height: 1;
}
.character-teaser__lock {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.character-teaser__cue {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 6px;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.character-teaser__cue:hover { opacity: 0.75; }
.character-teaser__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 17px;
  animation: teaser-bob 1.8s ease-in-out infinite;
}
@keyframes teaser-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .character-teaser__arrow { animation: none; }
  .character-teaser__card { transition: none; }
}
@media (max-width: 640px) {
  .character-teaser__deck { min-height: 200px; }
  .character-teaser__card { width: 34vw; margin: 0 -16px; }
  .character-teaser__deck .character-teaser__card:nth-child(1),
  .character-teaser__deck .character-teaser__card:nth-child(5) { display: none; }
  .character-teaser__deck .character-teaser__card:nth-child(3),
  .character-teaser__deck:hover .character-teaser__card:nth-child(3) {
    transform: rotate(0) translateY(-8px) scale(1.05);
  }
}

.characters-intro { display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,56px); align-items:center; margin-bottom:48px; }
.characters-featured { margin:0; border-radius:20px; overflow:hidden; box-shadow:var(--shadow); background:#fff; }
.characters-featured img { width:100%; height:auto; display:block; }
.characters-featured figcaption { padding:14px 18px 18px; font-size:14px; border-top:1px solid var(--line); }
.characters-strip { display:flex; gap:14px; overflow-x:auto; padding-bottom:8px; scroll-snap-type:x mandatory; }
.characters-preview { flex:0 0 min(180px,42vw); scroll-snap-align:start; border-radius:16px; overflow:hidden; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow-s); }
.characters-preview img { width:100%; display:block; }
.characters-preview p { padding:0 12px 12px; margin:0; font-size:13px; }
.characters-preview p strong { display:block; font-size:13px; margin-top:10px; }
.characters-preview p span { display:block; color:#6f6d65; font-size:12px; margin-top:2px; }
.characters-more { flex:0 0 min(180px,42vw); scroll-snap-align:start; padding:24px; display:flex; flex-direction:column; justify-content:center; background:rgba(255,255,255,.55); }
.characters-more span { color:#6f6d65; font-size:14px; margin-top:8px; display:block; }

.result-checklist { list-style: none; padding: 0; margin: 40px auto 0; max-width: 640px; display: grid; gap: 8px; font-size: 14.5px; color: #625f58; }

.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 40px auto 0; text-align: center; }
.proof-stat { padding: 20px; border-radius: 20px; background: var(--dark); color: #fff; }
.proof-stat .val { font-family: Manrope; font-weight: 800; font-size: 36px; letter-spacing: -0.04em; color: var(--lime); }
.proof-stat .lbl { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.testimonial { padding: 24px; margin: 0; background: rgba(255,255,255,.55); border: 1px solid var(--line); }
.testimonial p { font-size: 16px; line-height: 1.65; color: #3f3d38; margin: 0 0 16px; }
.testimonial footer { font-size: 13px; color: #8a877f; }

.shareband {
  background: var(--lime); border-radius: 30px; padding: clamp(30px, 4vw, 52px);
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
}
.sharecard {
  background: linear-gradient(165deg,#232752,#12142e); color: #fff;
  border-radius: 20px; padding: 28px; width: 270px; max-width: 100%;
  box-shadow: var(--shadow); transform: rotate(3deg);
}
.sharecard .arch { font-family: Manrope; font-size: 24px; font-weight: 800; margin: 12px 0 8px; letter-spacing: -0.04em; }

.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--paper); border-radius: 18px; padding: 18px 22px;
  margin-bottom: 10px; box-shadow: var(--shadow-s); border: 1px solid var(--line);
}
.faq summary {
  font-family: Manrope; font-weight: 700; font-size: 17px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.6; }

.cta-band { background: var(--dark); color: #fff; padding: clamp(56px, 8vw, 88px) 0; text-align: center; }
.cta-band h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; margin: 16px auto 20px; max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }

footer {
  padding: 40px 0 55px; border-top: 1px solid var(--line);
  color: #77736b; font-size: 13px;
}
.foot-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }

@media (min-width: 901px) {
  .header-actions { display: none; }
}

@media (max-width: 900px) {
  .header-bar {
    min-height: 64px;
    flex-wrap: nowrap;
  }

  .nav-desktop { display: none !important; }

  .nav-toggle { display: inline-flex !important; }

  .hero, .steps, .quiz, .pricing, .report-grid, .shareband, .compare-grid, .benefits-grid, .testimonials, .proof-stats, .characters-intro { grid-template-columns: 1fr !important; }
  .hero {
    padding: 28px 0 36px;
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.02;
    margin-bottom: 16px;
  }
  .hero .lead {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-cta { margin-bottom: 14px; }
  .btn-hero { max-width: none; width: 100%; font-size: 16px; padding: 17px 24px; }
  .hero-trust {
    font-size: 13px;
    margin-top: 18px;
    text-align: left;
  }
  .section-tight { padding-bottom: 40px; }
  .characters { padding-top: 32px; }
  .layer-row .ct { display: none; }
  .layer-row { grid-template-columns: 36px 1fr; }
}
@media (max-width: 560px) {
  .shell { padding: 0 18px; }
  .demo-main { width: 94%; right: 0; padding: 26px; }
  .header-start { padding: 10px 14px !important; font-size: 13px !important; }
}
