:root {
  color-scheme: light;
  --ink: #1d2926;
  --muted: #66746d;
  --paper: #f5efe4;
  --surface: #fffaf1;
  --surface-2: #ebe2d2;
  --cream: #fbf6eb;
  --line: rgba(29, 41, 38, 0.13);
  --green: #203f38;
  --green-deep: #142c28;
  --sage: #dfe7dc;
  --clay: #bd6a52;
  --clay-dark: #9f513d;
  --gold: #f0c96d;
  --shadow: 0 26px 80px rgba(28, 41, 38, 0.14);
  --soft-shadow: 0 18px 45px rgba(28, 41, 38, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 239, 228, 0.94);
  box-shadow: 0 10px 40px rgba(29, 41, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.footer-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-nav {
  justify-content: center;
  gap: 26px;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer a {
  opacity: 0.82;
}

.site-nav a:hover,
.site-footer a:hover {
  opacity: 1;
}

.footer-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  opacity: 0.82;
}

.footer-button:hover {
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 16px;
  border: 1px solid currentColor;
}

.btn {
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn.primary {
  color: #fff;
  background: var(--clay);
  box-shadow: 0 14px 32px rgba(189, 106, 82, 0.26);
}

.btn.primary:hover {
  background: var(--clay-dark);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 52px;
  background:
    linear-gradient(135deg, rgba(20, 44, 40, 0.96), rgba(32, 63, 56, 0.92) 48%, rgba(78, 102, 88, 0.9)),
    radial-gradient(circle at 78% 24%, rgba(240, 201, 109, 0.24), transparent 30%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 44, 40, 0.18), transparent 52%),
    radial-gradient(circle at 18% 82%, rgba(189, 106, 82, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -160px;
  top: 12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(240, 201, 109, 0.12);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.48fr);
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.badge,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.section-kicker {
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 810px;
  margin-bottom: 18px;
  font-size: clamp(2.95rem, 5.45vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.6vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-subline {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 2.1vw, 1.68rem);
  font-weight: 750;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-copy.small {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.plain-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 690px;
  margin: 18px 0 0;
}

.plain-lines span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-card {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
  box-shadow: 0 28px 80px rgba(13, 28, 26, 0.28);
  backdrop-filter: blur(18px);
}

.card-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.76);
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.section {
  padding: 116px 0;
}

.problem {
  background: var(--surface);
}

.freebie-teaser {
  padding: 78px 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(240, 201, 109, 0.14), transparent 26%),
    var(--paper);
}

.teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.freebie-teaser h2 {
  max-width: 720px;
}

.freebie-teaser p {
  color: var(--muted);
  font-size: 1.08rem;
}

.teaser-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.teaser-card p {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 850;
}

.teaser-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.teaser-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.teaser-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 900;
}

.loops {
  background: var(--paper);
}

.loops-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.loops-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
}

.problem-grid,
.split-grid,
.founder-grid,
.offer-grid,
.faq-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: start;
}

.pressure-panel,
.position-card,
.lead-form,
.price-box,
.faq-list details,
.benefit-grid article,
.vision-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: var(--soft-shadow);
}

.pressure-panel,
.position-card {
  padding: 30px;
}

.word-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.word-stack span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.must-list {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
}

.must-list p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.must-list strong {
  font-size: 1.08rem;
}

.problem-close {
  margin: 26px 0 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.closing-line {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 850;
}

.positioning,
.benefits,
.skool-section {
  background: var(--paper);
}

.lead-text,
.positioning p,
.offer p,
.story p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list,
.final-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.final-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.check-list li::before,
.final-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--clay);
  font-weight: 900;
}

.quiet-proof,
.story-break {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.quiet-proof span,
.story-break span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green);
  font-weight: 850;
}

.vision {
  background: var(--green);
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.vision .section-kicker,
.founder .section-kicker,
.final-cta .section-kicker {
  color: var(--gold);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.vision-grid article {
  min-height: 164px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 250, 241, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  font-size: 1.08rem;
  font-weight: 750;
}

blockquote {
  max-width: 900px;
  margin: 52px 0 0;
  padding: 0 0 0 24px;
  border-left: 5px solid var(--gold);
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.15rem);
  font-weight: 900;
  line-height: 0.98;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-grid article {
  padding: 28px;
  background: var(--surface);
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--clay);
  font-weight: 900;
}

.benefit-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.founder {
  background:
    linear-gradient(135deg, rgba(20, 44, 40, 0.96), rgba(32, 63, 56, 0.98)),
    var(--green);
  color: #fff;
}

.founder .story p {
  color: rgba(255, 255, 255, 0.76);
}

.founder-photo {
  width: min(360px, 100%);
  margin: 34px 0 0;
}

.founder-photo img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(13, 28, 26, 0.24);
  object-fit: cover;
  object-position: center 34%;
  filter: sepia(0.08) saturate(1.06) contrast(0.94) brightness(1.08);
}

.founder-photo figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.different {
  background: var(--surface);
}

.different-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: start;
}

.different-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.different-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.reality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.reality-tags span {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--green);
  background: var(--sage);
  font-weight: 850;
}

.signature-line {
  margin-top: 26px !important;
  padding: 24px;
  border-left: 5px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink) !important;
  background: rgba(189, 106, 82, 0.08);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem) !important;
  font-weight: 900;
  line-height: 1.08;
}

.story {
  padding-top: 4px;
}

.story-break span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.big-statement {
  margin-top: 28px;
  padding: 26px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem) !important;
  font-weight: 900;
  line-height: 1.08;
}

.video-section {
  background: var(--surface);
}

.video-grid,
.freebie-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.video-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-deep);
  box-shadow: var(--shadow);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-hint {
  pointer-events: none;
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 18px 40px rgba(20, 44, 40, 0.22);
  transform: translate(-50%, -50%);
  font-size: 1.32rem;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.testimonial-grid p {
  min-height: 126px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.placeholder-note {
  max-width: 580px;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.freebie {
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 201, 109, 0.18), transparent 28%),
    var(--surface-2);
}

.transformations {
  background: var(--paper);
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.transform-grid article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.transform-grid article > div {
  padding: 24px;
}

.transform-grid article > div:first-child {
  border-right: 1px solid var(--line);
  background: rgba(235, 226, 210, 0.5);
}

.transform-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transform-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.freebie-form {
  position: relative;
}

.form-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer {
  background: var(--surface-2);
}

.skool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skool-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.skool-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 900;
}

.skool-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.skool-note {
  max-width: 820px;
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 5px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  font-size: 1.08rem;
  font-weight: 750;
}

.price-box {
  position: sticky;
  top: 98px;
  padding: 32px;
  color: #fff;
  background: var(--green-deep);
  box-shadow: var(--shadow);
}

.price-box span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.92;
}

.price-box p {
  color: rgba(255, 255, 255, 0.72);
}

.price-note {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.price-box .btn {
  width: 100%;
  min-height: 54px;
  white-space: normal;
  text-align: center;
}

.button-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.94rem !important;
  text-align: center;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  box-shadow: none;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: 116px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(240, 201, 109, 0.18), transparent 28%),
    linear-gradient(135deg, #142c28, #203f38);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-list {
  margin: 22px 0;
}

.final-list li {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

.final-list li::before {
  color: var(--gold);
}

.final-action-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.1);
  box-shadow: 0 26px 80px rgba(13, 28, 26, 0.18);
}

.final-action-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-action-card h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.final-action-card p {
  color: rgba(255, 255, 255, 0.74);
}

.final-action-card .btn {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  white-space: normal;
  text-align: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 4px;
}

.lead-form {
  padding: 28px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 850;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form input:focus {
  outline: 3px solid rgba(189, 106, 82, 0.16);
  border-color: var(--clay);
}

.lead-form .btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  cursor: pointer;
  font: inherit;
  white-space: normal;
  text-align: center;
}

.form-note,
.form-success {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-success {
  color: var(--green);
  font-weight: 850;
}

.form-success.is-error {
  color: var(--clay-dark);
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: var(--surface);
}

.footer-grid {
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 44, 40, 0.2));
}

.cookie-banner[hidden],
.cookie-settings[hidden],
.cookie-save[hidden] {
  display: none;
}

.cookie-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 44, 40, 0.96);
  box-shadow: 0 24px 80px rgba(20, 44, 40, 0.28);
}

.cookie-copy h2 {
  margin: 4px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.cookie-copy p:not(.section-kicker) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-settings {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--clay);
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: end;
}

.cookie-btn {
  min-height: 48px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cookie-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cookie-save {
  grid-column: 1 / -1;
  min-height: 48px;
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(189, 106, 82, 0.12), transparent 28%),
    var(--paper);
}

.legal-top {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 239, 228, 0.9);
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.legal-nav a:last-child {
  font-weight: 850;
  color: var(--clay-dark);
}

.legal-main {
  padding: 72px 0 96px;
}

.legal-card {
  max-width: 860px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.legal-card h1 {
  margin: 0 0 26px;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.96;
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: var(--green-deep);
  font-size: 1.08rem;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-info-box {
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.legal-info-box p {
  margin-bottom: 8px;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-toc {
  margin: 0 0 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.legal-toc h3 {
  margin-top: 0;
}

.legal-toc ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.legal-toc a {
  color: var(--green);
  font-weight: 760;
}

.legal-source {
  margin-top: 40px;
  font-size: 0.92rem;
}

.placeholder {
  display: inline-block;
  padding: 2px 7px;
  border: 1px dashed rgba(189, 106, 82, 0.6);
  border-radius: 5px;
  color: var(--clay-dark);
  background: rgba(189, 106, 82, 0.08);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .vision-grid,
  .benefit-grid,
  .testimonial-grid,
  .loops-grid,
  .skool-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-column: 1 / -1;
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    place-content: center;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .problem-grid,
  .teaser-grid,
  .split-grid,
  .different-grid,
  .founder-grid,
  .offer-grid,
  .faq-grid,
  .final-grid,
  .video-grid,
  .freebie-grid {
    grid-template-columns: 1fr;
  }

  .price-box {
    position: static;
  }

  .section {
    padding: 82px 0;
  }

  .cookie-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .brand span:last-child {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .hero-grid,
  .vision-grid,
  .benefit-grid,
  .testimonial-grid,
  .loops-grid,
  .transform-grid,
  .skool-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .badge {
    border-radius: var(--radius);
    line-height: 1.35;
  }

  .hero-actions .btn,
  .btn.primary,
  .btn.secondary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-card,
  .pressure-panel,
  .position-card,
  .benefit-grid article,
  .loops-grid article,
  .testimonial-grid article,
  .skool-grid article,
  .teaser-card,
  .different-card,
  .final-action-card,
  .price-box,
  .lead-form {
    padding: 22px;
  }

  .founder-photo {
    width: 80%;
    max-width: 320px;
  }

  .founder-photo img {
    height: min(320px, 88vw);
  }

  .play-hint {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }

  .testimonial-grid p {
    min-height: 0;
  }

  .loops-grid article {
    min-height: 0;
  }

  .transform-grid article {
    grid-template-columns: 1fr;
  }

  .transform-grid article > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-grid article {
    min-height: 0;
  }

  blockquote {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .footer-grid,
  .footer-grid div {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    padding: 10px;
  }

  .cookie-card {
    max-height: calc(100svh - 20px);
    overflow: auto;
    padding: 18px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn,
  .cookie-save {
    width: 100%;
    white-space: normal;
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 34px 0 64px;
  }
}
