@font-face {
  font-family: "Montserrat";
  src: url("Montserrat/static/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas";
  src: url("Neue Haas Grotesk Display Pro/Linotype - NHaasGroteskDSPro-95Blk.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas";
  src: url("Neue Haas Grotesk Display Pro/Linotype - NHaasGroteskDSPro-75Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("Space_Mono/SpaceMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("Space_Mono/SpaceMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --acid: #fbff47;
  --cream: #f8f9f0;
  --cream-card: #f8f9f0;
  --pink: #f6e4ee;
  --pink-soft: #f6e4ee;
  --coral: #ff0000;
  --coral-deep: #ff0000;
  --line-soft: rgba(255, 0, 0, 0.14);
  --blue: #d9eef8;
  --ink: #151515;
  --ink-strong: #151515;
  --white: #f8f9f0;
  --font-title: "Neue Haas", "Arial Black", sans-serif;
  --font-body: "Space Mono", monospace;
  --font-accent: "Neue Haas", "Space Mono", system-ui, sans-serif;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --border: 1.5px solid var(--coral);
  --border-strong: 2px solid var(--coral);
  --shadow: none;
  --shadow-sm: none;
  --space-section: clamp(44px, 5vw, 72px);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.68;
  background-color: var(--cream);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: clamp(84px, 12vw, 172px) clamp(84px, 12vw, 172px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--coral) 0 56px, transparent 56px);
  z-index: -1;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--coral-deep);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 72px), var(--max));
  margin: 28px auto 0;
  padding: 18px 22px;
  border: var(--border);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}

.legal-studio-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 72px), var(--max));
  margin: 28px auto 0;
  padding: 14px 22px;
  border: 2px solid var(--coral);
  border-radius: 30px;
  background: var(--cream);
}

.legal-studio-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-title);
  font-weight: 900;
  line-height: 1;
}

.legal-studio-brand img {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
}

.legal-studio-brand-text {
  display: grid;
  gap: 3px;
}

.legal-studio-brand-text strong {
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.legal-studio-brand-text small {
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-studio-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.legal-studio-pill {
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--pink);
  color: var(--coral);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand,
.nav-links,
.site-footer nav,
.cta-row,
.pill-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1;
}

.brand-copy small {
  color: var(--coral);
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  gap: clamp(10px, 2vw, 24px);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: var(--border-strong);
  border-radius: 999px;
  background: var(--pink);
  color: var(--coral);
  line-height: 1;
}

.header-cta {
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 42px;
  padding: 8px 14px;
  border: var(--border-strong);
  border-radius: 999px;
  background: var(--pink);
  font-family: var(--font-accent);
  font-weight: 700;
  text-decoration: none;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.section {
  scroll-margin-top: 110px;
  width: min(calc(100% - 72px), var(--max));
  margin: 0 auto;
  padding: var(--space-section) 0;
}

.hero + .section,
.problem + .section {
  padding-top: clamp(18px, 2.4vw, 32px);
}

.problem {
  padding-bottom: clamp(26px, 4vw, 46px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 0.78fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(10px, 2vw, 18px);
}

.hero-copy {
  max-width: 720px;
}

.badge,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 15px;
  border: var(--border);
  border-radius: 999px;
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 900;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-size: clamp(3.3rem, 8.4vw, 6rem);
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5.8vw, 4.8rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.22rem, 2.2vw, 1.78rem);
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.34;
}

.emotional-line {
  display: inline;
  padding: 0;
  background: none;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero-text {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.cta-row {
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 10px;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(280px, 390px);
  align-items: start;
  width: min(100%, 390px);
  max-width: 390px;
}

.primary-action {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  width: 100%;
  min-width: 0;
}

.primary-action .btn {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.2em;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-secondary {
  background: var(--cream-card);
  border: var(--border);
  width: 100%;
}

.reassurance,
.price-panel p,
.site-footer p {
  font-size: 0.82rem;
}

.reassurance {
  width: 100%;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.58rem;
  line-height: 1.45;
}

.cover-showcase {
  width: min(100%, 430px);
  margin: 0 0 0 auto;
  padding: 0;
}

.cover-image {
  display: block;
  width: 100%;
  max-height: min(70vh, 620px);
  border: var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.site-mockup {
  margin: 0;
}

.site-mockup img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: var(--border);
  border-radius: 24px;
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  object-position: center;
}

.hero-mockup {
  justify-self: end;
  align-self: center;
  width: min(100%, 620px);
  transform: rotate(1.2deg);
}

.problem-mockup {
  align-self: center;
  justify-self: end;
  width: min(100%, 330px);
  transform: rotate(-0.8deg);
}

.offer-mockup {
  justify-self: end;
  width: min(100%, 340px);
  transform: rotate(0.8deg);
}

.offer-mockup img {
  border-radius: 26px;
}

.mockup-board {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 390px;
  border: var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--cream);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 96px 96px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-board::before,
.mockup-board::after {
  content: "";
  position: absolute;
  border: 3px solid var(--ink);
  background: rgba(255, 171, 203, 0.72);
}

.mockup-board::before {
  width: 78%;
  height: 110px;
  left: 9%;
  top: 48px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
}

.mockup-board::after {
  width: 82%;
  height: 128px;
  left: 9%;
  top: 162px;
  border-radius: 999px;
  transform: none;
  background: var(--pink);
  box-shadow: var(--shadow-sm);
}

.mock-book {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(82%, 430px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.book-label {
  display: inline-flex;
  margin-bottom: 0;
  padding: 9px 18px;
  border: var(--border);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-book strong {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 132px;
  padding: 18px 22px;
  border: var(--border);
  border-radius: 42px;
  background: var(--pink);
  box-shadow: var(--shadow-sm);
  color: var(--coral);
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.book-scene {
  display: grid;
  place-items: center;
  width: 92%;
  min-height: 72px;
  padding: 12px 18px;
  border: var(--border);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.book-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 18px;
  border: var(--border);
  border-radius: 999px;
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-bubble {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 2.05rem;
  font-weight: 900;
  transform: rotate(8deg);
}

.sheet-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.mockup-board > .sheet-icon {
  position: absolute;
  z-index: 4;
  border-radius: 24px;
  filter: drop-shadow(5px 5px 0 var(--ink));
}

.mockup-board .icon-pdf {
  left: 22px;
  top: 28px;
}

.mockup-board .icon-checklist {
  right: 28px;
  top: 150px;
}

.mockup-board .icon-calendar {
  left: 34px;
  bottom: 28px;
}

.mockup-board .icon-shop {
  right: 36px;
  bottom: 30px;
}

.section-heading {
  margin-bottom: 34px;
}

.inside .section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.inside h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.text-columns p,
.problem-copy,
.feature-card,
.step-card,
.content-grid article,
.promise,
.visual-card,
.offer-card,
.ready-card,
.faq details {
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.46fr);
  gap: clamp(22px, 3.5vw, 42px);
  align-items: center;
}

.problem-copy {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--pink);
}

.problem-copy p {
  margin: 0;
  line-height: 1.72;
}

.problem-copy p:first-child {
  max-width: 62ch;
  font-family: var(--font-title);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 900;
  line-height: 1.2;
}

.text-columns p {
  margin: 0;
  padding: 30px;
  line-height: 1.72;
}

.mini-grid,
.steps-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

.mini-grid {
  margin-top: clamp(24px, 3.5vw, 38px);
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid.three {
  align-items: stretch;
}

.feature-card,
.step-card,
.content-grid article {
  padding: clamp(20px, 2.5vw, 28px);
}

.feature-card .sheet-icon {
  width: 118px;
  height: 118px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  column-gap: 22px;
  min-height: 148px;
  padding: clamp(18px, 1.8vw, 24px);
}

.feature-card .sheet-icon {
  position: static;
  grid-row: 1 / span 2;
  justify-self: center;
  opacity: 1;
}

.feature-card h3 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: clamp(1.08rem, 1.28vw, 1.36rem);
  line-height: 1.02;
}

.feature-card p {
  grid-column: 2;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.38;
}

.feature-card.blue {
  background: var(--pink);
}

.feature-card.pink {
  background: var(--pink);
}

.feature-card.yellow,
.step-card:nth-child(odd) {
  background: var(--cream-card);
}

.step-card:nth-child(even) {
  background: var(--pink);
}

.content-grid article:nth-child(odd) {
  background: var(--cream-card);
}

.content-grid article:nth-child(even) {
  background: var(--pink);
}

.split-section,
.audience,
.offer-card,
.ready-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.visual-card {
  padding: clamp(30px, 4vw, 46px);
  background: var(--pink);
  transform: none;
}

.pill-list {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pill-list span,
.promise-list span {
  display: inline-flex;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream-card);
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.18;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chapter-overview {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
}

.chapter-overview > p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.chapter-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--pink);
}

.chapter-list article:nth-child(odd) {
  background: var(--cream);
}

.chapter-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 900;
}

.chapter-list h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.step-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  background: var(--coral);
}

.step-card:nth-child(even)::before {
  background: var(--pink);
}

.chapter-label {
  display: inline-flex;
  justify-self: start;
  width: fit-content;
  margin: 0 0 18px 48px;
  padding: 8px 15px;
  border: var(--border);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.step-card h3 {
  max-width: 13ch;
  margin: 0 0 22px;
  color: var(--coral);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.step-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  list-style: none;
  overflow: hidden;
}

.step-card li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 28px;
  border-bottom: 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.step-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}

.step-card p:not(.chapter-label) {
  margin: 0;
  line-height: 1.52;
}

.step-number {
  position: absolute;
  top: 28px;
  right: auto;
  left: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cream-card);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 1.3rem;
  line-height: 1;
}

.content-block {
  display: grid;
  gap: 24px;
}

.content-block + .content-block {
  margin-top: clamp(34px, 6vw, 58px);
}

.content-label {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.content-grid .sheet-icon {
  width: 84px;
  height: 84px;
  margin: 0;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid-core {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid-bonus {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
}

.content-grid article > .sheet-icon {
  position: static;
  justify-self: center;
  transform: none;
}

.content-grid article.bonus-card-link {
  display: block;
  padding: 0;
}

.content-grid article.bonus-card-link a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 124px;
  gap: 14px;
  padding: 20px 22px;
  text-decoration: none;
}

.content-grid article.bonus-card-link .sheet-icon {
  position: static;
  justify-self: center;
  transform: none;
}

.content-grid article.bonus-card-link span {
  grid-column: 3;
  grid-row: 1;
  width: fit-content;
  margin-top: 0;
  align-self: center;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.content-grid h3 {
  display: flex;
  align-items: center;
  min-height: 70px;
  margin: 0;
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  line-height: 1.08;
}

.audience {
  align-items: start;
}

.audience h2,
.ready-intro h2 {
  font-size: clamp(2.7rem, 4.9vw, 4.35rem);
  line-height: 0.98;
}

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

.check-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px 24px 18px 86px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 34px;
  width: 18px;
  height: 10px;
  border-left: 4px solid var(--coral);
  border-bottom: 4px solid var(--coral);
  transform: translateY(-68%) rotate(-45deg);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 38px;
  height: 38px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-50%);
}

.promise {
  padding: clamp(50px, 6vw, 76px);
  background: var(--pink);
}

.promise h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.promise p {
  max-width: 900px;
  line-height: 1.72;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.promise-list span {
  background: var(--cream-card);
}

.offer,
.ready-box {
  padding-top: clamp(40px, 6vw, 80px);
}

.offer-card,
.ready-card {
  padding: clamp(38px, 5vw, 58px);
}

.offer-card {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.58fr);
  gap: 28px;
  align-items: center;
  background: var(--pink);
}

.offer-prices,
.countdown,
.offer-action {
  grid-column: 1 / -1;
}

.ready-card {
  background: var(--pink);
}

.ready-intro {
  display: grid;
  gap: 18px;
}

.ready-intro h2 {
  margin: 0;
  max-width: 13ch;
}

.ready-intro p {
  margin: 0;
  line-height: 1.68;
}

.drop-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.drop-calendar span {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-accent);
  font-weight: 900;
  text-transform: uppercase;
}

.drop-calendar strong {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4.6vw, 3.8rem);
  line-height: 0.9;
}

.waitlist-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
}

.waitlist-card h3,
.waitlist-card p {
  margin: 0;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.waitlist-form label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: var(--border);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(17, 17, 17, 0.58);
}

.waitlist-form .btn {
  width: 100%;
}

.offer-intro {
  display: grid;
  gap: 12px;
}

.offer-intro .badge {
  width: fit-content;
}

.offer-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.92;
}

.offer-format {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.offer-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.price-tile,
.countdown,
.offer-action {
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.price-tile {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 26px 30px;
  background: var(--cream-card);
  overflow: hidden;
}

.launch-price {
  background: var(--coral);
  color: var(--white);
}

.price-label,
.countdown-label {
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.launch-amount,
.future-amount {
  display: block;
  margin-top: 8px;
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 5.6vw, 4.85rem);
  font-weight: 900;
  line-height: 0.92;
  white-space: nowrap;
}

.future-amount {
  color: var(--coral);
}

.countdown {
  padding: 24px;
  background: var(--cream-card);
}

.countdown-label {
  margin: 0 0 14px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown-unit {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 14px 8px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--acid);
}

.countdown-unit strong {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
}

.countdown-unit small {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-action {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  background: var(--cream-card);
}

.offer-action p {
  max-width: 460px;
  margin: 0;
}

.price-panel {
  display: grid;
  justify-items: start;
  gap: 20px;
  padding: 34px;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
}

.price {
  display: inline-grid;
  place-items: center;
  min-width: 160px;
  min-height: 116px;
  padding: 12px 20px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.normal-price,
.limited-note {
  font-family: var(--font-accent);
  font-weight: 700;
}

.limited-note {
  padding: 20px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: rgba(251, 255, 71, 0.52);
}

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

.faq details {
  overflow: hidden;
  background: var(--cream-card);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1;
}

.faq details[open] summary {
  background: var(--pink);
  border-bottom: 3px solid var(--ink);
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 24px 28px 30px;
  line-height: 1.72;
}

.legal-simple-main {
  width: min(calc(100% - 72px), 900px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 88px) 0 clamp(74px, 10vw, 120px);
}

.legal-simple-card {
  padding: clamp(28px, 5vw, 52px);
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  box-shadow: var(--shadow);
}

.legal-simple-card h1 {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 8vw, 5.3rem);
}

.legal-updated {
  margin: 0 0 clamp(28px, 5vw, 46px);
  font-size: 1rem;
}

.legal-block {
  padding: clamp(22px, 4vw, 34px) 0;
  border-top: 2px solid var(--ink);
}

.legal-block:first-of-type {
  border-top-width: 3px;
}

.legal-block:last-of-type {
  padding-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: clamp(1.28rem, 3vw, 2rem);
  line-height: 1.04;
}

.legal-block p {
  margin-bottom: 12px;
  line-height: 1.7;
}

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

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding-left: 1.25rem;
  line-height: 1.62;
}

.legal-block li::marker {
  color: var(--coral);
}

.legal-block dl {
  display: grid;
  gap: 0;
  margin: 16px 0;
}

.legal-block dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.45);
}

.legal-block dl div:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.45);
}

.legal-block dt {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-block dd {
  min-width: 0;
  margin: 0;
  line-height: 1.45;
}

.legal-block a {
  font-weight: 800;
  color: var(--coral);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  width: min(calc(100% - 72px), var(--max));
  margin: 64px auto 32px;
  padding: 24px 28px;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--pink);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  max-width: none;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.78rem;
  line-height: 1.35;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-email {
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-legal-list a {
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-legal-list a:hover,
.footer-legal-list a:focus-visible {
  color: var(--coral);
}

.copyright {
  flex-basis: 100%;
  padding-top: 12px;
  border-top: 2px solid var(--ink);
  font-size: 0.74rem;
  opacity: 0.76;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
}

:focus-visible {
  outline: 4px solid var(--acid);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --space-section: clamp(42px, 6vw, 68px);
    --shadow: none;
    --shadow-sm: none;
  }

  body::before {
    background: linear-gradient(90deg, var(--coral) 0 24px, transparent 24px);
  }

  .site-header {
    width: min(calc(100% - 112px), var(--max));
    border-radius: 24px;
  }

  .legal-studio-header {
    width: min(calc(100% - 112px), var(--max));
    border-radius: 24px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .nav-links {
    display: none;
  }

  .section {
    width: min(calc(100% - 112px), var(--max));
  }

  .site-footer {
    width: min(calc(100% - 112px), var(--max));
  }

  h1 {
    font-size: clamp(3rem, 7.4vw, 4.25rem);
  }

  h2 {
    max-width: 780px;
    font-size: clamp(2.15rem, 5vw, 3rem);
  }

  .audience h2,
  .ready-intro h2,
  .promise h2 {
    font-size: clamp(2.1rem, 4.8vw, 2.85rem);
  }

  .hero,
  .split-section,
  .audience,
  .offer-card,
  .ready-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .hero-actions {
    grid-template-columns: minmax(280px, 390px);
    width: min(100%, 390px);
    max-width: 390px;
  }

  .primary-action {
    min-width: 0;
  }

  .cta-row .btn {
    width: 100%;
    min-width: 0;
  }

  .reassurance {
    width: 100%;
    font-size: 0.58rem;
    line-height: 1.5;
  }

  .cover-showcase {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .hero-mockup,
  .problem-mockup,
  .offer-mockup {
    justify-self: center;
    transform: none;
  }

  .hero-mockup {
    width: min(100%, 500px);
  }

  .problem-mockup {
    width: min(100%, 360px);
  }

  .offer-mockup {
    width: min(100%, 430px);
  }

  .cover-image {
    max-height: 620px;
  }

  .mockup-board {
    min-height: 500px;
  }

  .problem-layout,
  .text-columns,
  .three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-layout {
    align-items: stretch;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 118px;
    padding: 14px;
  }

  .feature-card .sheet-icon {
    width: 108px;
    height: 108px;
  }

  .feature-card h3 {
    font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  }

  .feature-card p {
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .chapter-overview {
    padding: clamp(26px, 4.5vw, 36px);
  }

  .chapter-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 74px;
    padding: 14px;
  }

  .chapter-list span {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .chapter-list h3 {
    font-size: clamp(1rem, 2.8vw, 1.22rem);
  }

  .content-grid .sheet-icon {
    width: 80px;
    height: 80px;
  }

  .content-grid article {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 82px;
    gap: 12px;
    padding: 12px 16px;
  }

  .content-grid article.bonus-card-link a {
    grid-template-columns: 88px minmax(0, 1fr);
    width: 100%;
    min-height: 104px;
    gap: 12px;
    padding: 12px 16px;
  }

  .content-grid article.bonus-card-link span {
    grid-column: 2;
    grid-row: auto;
    margin-top: 6px;
    align-self: start;
  }

  .content-grid h3 {
    min-height: 72px;
    font-size: clamp(0.96rem, 1.8vw, 1.1rem);
  }

  .check-list {
    gap: 14px;
  }

  .check-list li {
    min-height: 78px;
    padding: 17px 20px 17px 78px;
  }

  .check-list li::before {
    left: 31px;
  }

  .check-list li::after {
    left: 19px;
  }

  .back-to-top {
    right: 18px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    font-size: 1.18rem;
  }
}

@media (max-width: 720px) {
  :root {
    --border: 1.5px solid var(--coral);
    --shadow: none;
    --shadow-sm: none;
  }

  body {
    background-size: 78px 78px;
  }

  body::before {
    background: linear-gradient(90deg, var(--coral) 0 14px, transparent 14px);
  }

  .site-header {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 9px;
  }

  .legal-studio-header {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 9px;
    padding: 14px;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .legal-studio-actions {
    width: 100%;
    justify-content: stretch;
  }

  .legal-studio-pill {
    flex: 1 1 120px;
    text-align: center;
  }

  .brand > span:not(.brand-copy):last-child {
    max-width: 94px;
    line-height: 1.05;
  }

  .brand .brand-copy {
    max-width: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .section {
    width: min(calc(100% - 64px), var(--max));
    padding: 56px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 16.5vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .primary-action {
    width: 100%;
  }

  .reassurance {
    width: 100%;
    margin-top: 0;
    font-size: 0.68rem;
  }

  .text-columns,
  .problem-layout,
  .three,
  .steps-grid,
  .chapter-list,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .mini-grid.three {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .steps-grid,
  .content-grid {
    gap: 14px;
  }

  .mockup-board {
    width: 100%;
    max-width: 100%;
    min-height: 430px;
    box-shadow: var(--shadow);
  }

  .cover-showcase {
    width: min(100%, 360px);
  }

  .cover-image {
    max-height: 540px;
    border-radius: 28px;
  }

  .hero-mockup,
  .problem-mockup,
  .offer-mockup {
    width: 100%;
    transform: none;
  }

  .site-mockup img {
    border-radius: 28px;
  }

  .mock-book {
    width: min(72%, 270px);
    min-height: 330px;
    padding: 20px;
  }

  .mock-book strong {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .price-bubble {
    width: 92px;
    height: 92px;
    font-size: 2rem;
  }

  .sheet-icon {
    width: 38px;
    height: 38px;
  }

  .step-card {
    min-height: auto;
    padding: 22px 18px 22px 26px;
  }

  .step-card::before {
    width: 12px;
  }

  .chapter-label {
    justify-self: start;
    margin-left: 46px;
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .step-card .step-number {
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    font-size: 1.12rem;
  }

  .step-card h3 {
    max-width: 12ch;
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .step-card li {
    padding-left: 26px;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .feature-card,
  .step-card,
  .content-grid article,
  .offer-card,
  .ready-card,
  .price-panel {
    padding: 18px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    min-height: auto;
    padding: 18px;
  }

  .feature-card h3 {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: clamp(1.12rem, 5.4vw, 1.42rem);
  }

  .feature-card p {
    grid-column: 2;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .feature-card .sheet-icon {
    position: static;
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
    width: 86px;
    height: 86px;
    margin: 0;
    opacity: 1;
  }

  .content-grid h3 {
    margin: 0;
    min-height: 66px;
    font-size: clamp(1.02rem, 4.8vw, 1.24rem);
    line-height: 1.08;
  }

  .content-grid .sheet-icon {
    width: 66px;
    height: 66px;
    margin: 0;
  }

  .content-grid article {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 16px;
  }

  .content-grid article > .sheet-icon,
  .content-grid article.bonus-card-link .sheet-icon {
    position: static;
    transform: none;
  }

  .content-grid article.bonus-card-link a {
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 86px;
    padding: 16px;
  }

  .content-grid article.bonus-card-link span {
    grid-column: 2;
    grid-row: auto;
    margin-top: 6px;
    align-self: start;
    font-size: 0.66rem;
  }

  .content-block + .content-block {
    margin-top: 30px;
  }

  .check-list li {
    min-height: 72px;
    padding: 16px 16px 16px 70px;
  }

  .check-list li::before {
    left: 27px;
  }

  .check-list li::after {
    left: 15px;
  }

  .promise {
    padding: 44px 30px 72px;
  }

  .promise h2,
  .faq h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }

  .faq {
    padding-top: 76px;
  }

  .faq .section-heading {
    padding-inline: 0;
  }

  .offer-card {
    gap: 14px;
  }

  .offer-intro {
    gap: 6px;
  }

  .offer-intro h2 {
    font-size: clamp(2.15rem, 9.4vw, 3.1rem);
    line-height: 0.96;
  }

  .offer-prices {
    gap: 12px;
  }

  .price-tile {
    min-height: 96px;
    padding: 14px 12px;
    border-radius: 22px;
  }

  .price-label,
  .countdown-label {
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .launch-amount,
  .future-amount {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .countdown {
    padding: 14px;
    border-radius: 22px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-unit {
    padding: 8px 5px;
    border-radius: 16px;
  }

  .countdown-unit strong {
    font-size: clamp(1.35rem, 6.4vw, 2rem);
  }

  .countdown-unit small {
    font-size: 0.56rem;
  }

  .offer-action {
    padding: 14px;
    border-radius: 22px;
  }

  .ready-card {
    gap: 18px;
  }

  .ready-intro {
    gap: 14px;
  }

  .ready-intro h2 {
    font-size: clamp(2.15rem, 9.4vw, 3.1rem);
    line-height: 0.96;
  }

  .ready-intro p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .drop-calendar {
    gap: 10px;
  }

  .drop-calendar span {
    padding: 14px 12px;
    border-radius: 18px;
    font-size: 0.75rem;
    line-height: 1.1;
  }

  .drop-calendar strong {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .waitlist-card {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .waitlist-card h3 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
  }

  .waitlist-form input {
    min-height: 50px;
  }

  .site-footer {
    width: min(calc(100% - 48px), var(--max));
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
  }

  .legal-simple-main {
    width: min(calc(100% - 48px), 900px);
    padding-top: 44px;
  }

  .legal-simple-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .legal-block dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-legal {
    justify-items: start;
  }

  .footer-email {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-legal-list a {
    font-size: 0.72rem;
  }
}

/* Landing publique V4 */

body.landing-v4 .site-header {
  align-items: center;
  margin-bottom: clamp(18px, 3vw, 32px);
}

body.landing-v4 .header-cta {
  min-width: 168px;
  white-space: nowrap;
}

body.landing-v4 .landing-featured-mockup {
  width: min(calc(100% - 72px), var(--max));
  margin: 0 auto clamp(22px, 4vw, 42px);
  overflow: hidden;
  border: var(--border-strong);
  border-radius: 34px;
  background: var(--pink);
  box-shadow: var(--shadow-sm);
}

body.landing-v4 .landing-featured-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing-v4 .hero-interactive {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.85fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  border: var(--border-strong);
  border-radius: 34px;
  background: var(--pink);
  padding-right: clamp(24px, 4vw, 48px);
  padding-left: clamp(24px, 4vw, 48px);
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

body.landing-v4 .difference-section,
body.landing-v4 .fill-section,
body.landing-v4 .preview-section,
body.landing-v4 .journey-section,
body.landing-v4 .resources-section,
body.landing-v4 .final-cta {
  margin-top: clamp(22px, 4vw, 42px);
}

body.landing-v4 h1,
body.landing-v4 h2,
body.landing-v4 h3 {
  color: var(--coral);
}

body.landing-v4 .hero-interactive h1 {
  max-width: 12.5ch;
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  line-height: 0.96;
}

body.landing-v4 .hero-actions {
  justify-content: center;
}

body.landing-v4 .hero-actions .primary-action {
  width: min(100%, 520px);
}

body.landing-v4 .hero-actions .primary-action .btn {
  margin-inline: auto;
}

body.landing-v4 .hero-subtitle {
  max-width: 760px;
  color: var(--ink);
}

body.landing-v4 .hero-text,
body.landing-v4 .difference-copy,
body.landing-v4 .fill-copy,
body.landing-v4 .resources-copy {
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.65;
}

body.landing-v4 .hero-visual {
  display: grid;
  align-content: start;
  gap: clamp(14px, 2vw, 18px);
  justify-items: stretch;
}

body.landing-v4 .mockup-card {
  margin: 0;
  overflow: hidden;
  border: var(--border-strong);
  border-radius: 30px;
  background: var(--cream);
}

body.landing-v4 .mockup-card img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing-v4 .mockup-card-primary {
  background: var(--blue);
}

body.landing-v4 .mockup-card-secondary {
  width: min(82%, 420px);
  margin-top: -42px;
  justify-self: end;
  background: var(--pink);
}

body.landing-v4 .workbook-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--coral);
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

body.landing-v4 .preview-page {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
}

body.landing-v4 .preview-page-left {
  border-right: 2px solid var(--coral);
  background: rgba(255, 171, 203, 0.28);
}

body.landing-v4 .preview-page-right {
  background: var(--cream);
}

body.landing-v4 .preview-pill {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body.landing-v4 .preview-page h2,
body.landing-v4 .preview-page h3 {
  margin: 0;
  color: var(--coral);
}

body.landing-v4 .preview-page h2 {
  max-width: 7ch;
  font-size: clamp(2.5rem, 4.9vw, 4.55rem);
}

body.landing-v4 .preview-page h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

body.landing-v4 .preview-page p,
body.landing-v4 .preview-page li,
body.landing-v4 .preview-page label,
body.landing-v4 .preview-validation span {
  font-size: clamp(0.94rem, 1.45vw, 1.08rem);
  line-height: 1.55;
}

body.landing-v4 .preview-page ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.landing-v4 .preview-page li {
  position: relative;
  padding-left: 30px;
}

body.landing-v4 .preview-page li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
}

body.landing-v4 .preview-answer,
body.landing-v4 .preview-validation {
  display: block;
  margin-top: 10px;
  padding: 16px;
  border: 2px solid var(--coral);
  border-radius: 20px;
  background: rgba(255, 171, 203, 0.24);
  font-weight: 700;
}

body.landing-v4 .preview-validation {
  display: grid;
  gap: 8px;
  background: var(--acid);
}

body.landing-v4 .preview-validation strong {
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.landing-v4 .difference-section,
body.landing-v4 .fill-section,
body.landing-v4 .preview-section,
body.landing-v4 .journey-section,
body.landing-v4 .resources-section,
body.landing-v4 .final-cta {
  border: var(--border-strong);
  border-radius: 34px;
  background: rgba(248, 249, 240, 0.92);
  padding: clamp(34px, 5vw, 56px);
}

body.landing-v4 .difference-section,
body.landing-v4 .resources-section {
  background: var(--blue);
}

body.landing-v4 .fill-section {
  background: var(--cream);
}

body.landing-v4 .preview-section {
  background: var(--pink);
}

body.landing-v4 .journey-section {
  background: var(--pink);
}

body.landing-v4 .final-cta {
  background: var(--acid);
}

body.landing-v4 .difference-copy,
body.landing-v4 .fill-grid,
body.landing-v4 .resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

body.landing-v4 .notion-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}

body.landing-v4 .notion-strip article,
body.landing-v4 .interaction-sequence li,
body.landing-v4 .journey-groups article,
body.landing-v4 .resource-preview span {
  border: var(--border-strong);
  border-radius: 22px;
  background: var(--cream);
}

body.landing-v4 .notion-strip article:nth-child(even),
body.landing-v4 .interaction-sequence li:nth-child(3n),
body.landing-v4 .journey-groups article:nth-child(even),
body.landing-v4 .resource-preview span:nth-child(even) {
  background: var(--pink);
}

body.landing-v4 .notion-strip article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
}

body.landing-v4 .notion-strip h3 {
  margin: 0;
  color: var(--coral);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
}

body.landing-v4 .notion-strip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

body.landing-v4 .interaction-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  padding: 0;
  list-style: none;
}

body.landing-v4 .interaction-sequence li {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  counter-increment: step;
}

body.landing-v4 .interaction-sequence li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
  color: var(--coral);
  font-family: var(--font-accent);
  font-weight: 900;
}

body.landing-v4 .interaction-sequence span,
body.landing-v4 .journey-groups span {
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

body.landing-v4 .interaction-sequence strong {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.38;
}

body.landing-v4 .preview-section > .section-heading {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

@media (min-width: 981px) {
  body.landing-v4 .preview-section {
    display: block;
  }

  body.landing-v4 .preview-section > .section-heading {
    margin: 0;
    position: static;
    margin-bottom: clamp(26px, 4vw, 42px);
  }

  body.landing-v4 .preview-layout {
    min-width: 0;
  }
}

body.landing-v4 .preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

body.landing-v4 .preview-stack {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

body.landing-v4 .preview-item {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

body.landing-v4 .preview-label {
  width: fit-content;
  padding: 7px 11px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

body.landing-v4 .preview-frame {
  overflow: hidden;
  border: var(--border-strong);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

body.landing-v4 .preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing-v4 .preview-item figcaption {
  max-width: 38ch;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.45;
}

body.landing-v4 .journey-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.landing-v4 .journey-groups article {
  padding: 22px;
}

body.landing-v4 .journey-groups ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body.landing-v4 .journey-groups li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

body.landing-v4 .journey-groups li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
}

body.landing-v4 .resource-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 4vw, 36px);
}

body.landing-v4 .resource-preview span {
  display: grid;
  min-height: 74px;
  align-items: center;
  padding: 12px 15px;
  border: var(--border);
  border-radius: 20px;
  background: var(--cream);
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

body.landing-v4 .offer-v4 .offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

body.landing-v4 .offer-v4 .offer-intro {
  gap: 12px;
}

body.landing-v4 .offer-v4 .offer-intro p:not(.badge) {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.55;
}

body.landing-v4 .offer-price-card {
  display: grid;
  place-items: center;
  width: clamp(142px, 18vw, 210px);
  aspect-ratio: 1;
  border: var(--border-strong);
  border-radius: 999px;
  background: var(--acid);
  box-shadow: var(--shadow-sm);
  color: var(--coral);
}

body.landing-v4 .offer-price-card span {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
}

body.landing-v4 .offer-v4 .offer-action {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

body.landing-v4 .offer-v4 .offer-action p {
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
}

body.landing-v4 .offer-v4 .offer-action p:first-of-type {
  color: var(--coral);
  font-family: var(--font-accent);
  font-weight: 900;
}

@media (min-width: 981px) {
  body.landing-v4 .faq {
    display: grid;
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1.72fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
  }

  body.landing-v4 .faq .section-heading {
    margin: 0;
  }
}

body.landing-v4 .faq .section-heading .kicker {
  width: fit-content;
  min-width: 112px;
  margin-inline: auto;
  padding: 15px 28px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-accent);
  line-height: 1;
  text-align: center;
}

body.landing-v4 .final-cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
  justify-items: start;
  background: var(--pink);
}

body.landing-v4 .final-cta-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

body.landing-v4 .final-cta h2 {
  max-width: 880px;
  margin: 0;
  color: var(--coral);
  font-family: var(--font-accent);
  text-transform: uppercase;
}

body.landing-v4 .final-cta p {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  color: var(--coral);
  text-transform: uppercase;
}

body.landing-v4 .final-cta .kicker {
  padding: 10px 16px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: var(--coral);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  line-height: 1;
}

body.landing-v4 .final-cta .btn {
  width: fit-content;
  margin-top: 6px;
}

body.landing-v4 .final-cta small {
  color: var(--coral);
  font-family: var(--font-accent);
  font-weight: 700;
}

body.landing-v4 .faq summary {
  background: var(--coral);
  color: var(--pink);
}

body.landing-v4 .faq summary::after {
  color: var(--acid);
}

body.landing-v4 .faq details[open] summary {
  color: var(--pink);
}

body.landing-v4 .faq details[open] summary::after {
  color: var(--acid);
}

body.landing-v4 .final-cta-visual {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: var(--border-strong);
  border-radius: 28px;
  background: var(--cream);
}

body.landing-v4 .final-cta-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  body.landing-v4 .hero-interactive,
  body.landing-v4 .difference-copy,
  body.landing-v4 .fill-grid,
  body.landing-v4 .resources-grid,
  body.landing-v4 .offer-v4 .offer-card {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .hero-interactive h1 {
    max-width: 14ch;
  }

  body.landing-v4 .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  body.landing-v4 .notion-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-v4 .interaction-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-v4 .journey-groups {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .offer-price-card {
    justify-self: start;
  }

  body.landing-v4 .resource-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-v4 .final-cta {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .final-cta-visual {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  body.landing-v4 .site-header {
    gap: 10px;
  }

  body.landing-v4 .landing-featured-mockup {
    width: min(calc(100% - 28px), var(--max));
    margin-bottom: 22px;
    border-radius: 28px;
  }

  body.landing-v4 .hero-interactive h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12.5vw, 4.1rem);
  }

  body.landing-v4 .hero-visual {
    gap: 14px;
  }

  body.landing-v4 .mockup-card {
    border-radius: 24px;
  }

  body.landing-v4 .mockup-card-secondary {
    width: 100%;
    margin-top: 0;
  }

  body.landing-v4 .difference-section,
  body.landing-v4 .fill-section,
  body.landing-v4 .preview-section,
  body.landing-v4 .journey-section,
  body.landing-v4 .resources-section,
  body.landing-v4 .final-cta {
    padding: 24px;
    border-radius: 28px;
  }

  body.landing-v4 .notion-strip,
  body.landing-v4 .interaction-sequence {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .resource-preview {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .notion-strip article,
  body.landing-v4 .interaction-sequence li {
    min-height: auto;
  }

  body.landing-v4 .offer-v4 .offer-action {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  body.landing-v4 .final-cta .btn {
    width: 100%;
  }

  body.landing-v4 .preview-layout {
    grid-template-columns: 1fr;
  }

  body.landing-v4 .preview-stack {
    gap: 24px;
  }

  body.landing-v4 .preview-item figcaption {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
