:root {
  --paper: #F7F4EF;
  --sheet: #FFFDF9;
  --ink: #1C2524;
  --muted: #56625F;
  --teal: #0F766E;
  --teal-dark: #0B5C56;
  --deep: #0A3431;
  --rule: #D8D1C4;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); }
a:focus-visible, button:focus-visible, summary:focus-visible, audio:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  font-optical-sizing: auto;
}
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 22px; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.read { max-width: 640px; }

/* Header */
.top { padding: 20px 0; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand {
  font-family: var(--serif); font-weight: 600; font-size: 20px;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand::after {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 4px;
  border-radius: 50%; background: var(--teal); vertical-align: 1px;
}
.top-cta { font-weight: 600; font-size: 15px; text-decoration: none; color: var(--teal-dark); }

/* Buttons */
.btn {
  display: inline-block; background: var(--teal); color: #fff;
  font: 600 17px/1 var(--sans); text-decoration: none;
  padding: 18px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--teal-dark); }
.btn-light { background: var(--paper); color: var(--deep); }
.btn-light:hover { background: #fff; }
.fine { font-size: 15px; color: var(--muted); margin-top: 14px; }

/* Hero: the headline sits on journal lines, one dot per line */
.hero { padding: 32px 0 72px; }
.hero .wrap { display: grid; grid-template-columns: 1.65fr 1fr; gap: 56px; align-items: center; }
.hero h1 {
  --lh: 1.18em;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: var(--lh);
  padding-left: 30px;
  margin-bottom: 30px;
  background:
    radial-gradient(circle at 7px calc(var(--lh) - 0.12em), var(--teal) 5px, transparent 5.6px) 0 0 / 16px var(--lh) repeat-y,
    repeating-linear-gradient(to bottom, transparent 0 calc(var(--lh) - 0.14em), var(--rule) calc(var(--lh) - 0.14em) calc(var(--lh) - 0.1em), transparent calc(var(--lh) - 0.1em) var(--lh)) 30px 0 / calc(100% - 30px) 100% no-repeat;
}
.hero h1 span { display: block; }
@media (min-width: 881px) { .hero h1 span { white-space: nowrap; } }
.lead { font-size: 19px; max-width: 34em; }
.hero-art img { border-radius: 6px; box-shadow: 0 30px 60px -30px rgba(10, 52, 49, .45); }

/* Sections */
section { padding: 80px 0; }
.section-title { margin-bottom: 28px; }
.quiet { background: var(--sheet); border-top: 1px solid #ECE6DB; border-bottom: 1px solid #ECE6DB; }
.pull { font-family: var(--serif); font-size: 26px; line-height: 1.35; margin-top: 28px; }

/* The 3-Line Method, written as three ruled lines */
.method { list-style: none; margin: 36px 0 0; padding: 0; max-width: 760px; }
.method li {
  display: grid; grid-template-columns: 22px 1fr; gap: 0 18px;
  padding: 22px 0; border-bottom: 2px solid var(--rule);
}
.method li::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--teal);
  margin-top: 12px; grid-row: 1 / span 3;
}
.method h3 { font-size: 28px; }
.method p { margin: 6px 0 0; }
.method .example { font-family: var(--serif); font-style: italic; color: var(--muted); }

/* Day 1 sample */
.sample { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.listen h2 { margin-bottom: 18px; }
.player {
  margin-top: 22px; padding: 22px; border-radius: 14px;
  background: var(--deep); color: var(--paper);
}
.player p { margin: 0 0 12px; font-weight: 500; }
.player audio { width: 100%; }
.sheet {
  background: var(--sheet); border-radius: 4px; padding: 36px 34px 30px;
  box-shadow: 0 1px 0 #E7E0D3, 0 24px 50px -30px rgba(28, 37, 36, .35);
}
.sheet .day { font-family: var(--serif); font-size: 26px; line-height: 1.25; margin-bottom: 6px; }
.sheet .intent { color: var(--muted); font-style: italic; font-family: var(--serif); margin-bottom: 22px; }
.sheet .label { font-weight: 600; font-size: 14px; letter-spacing: .02em; color: var(--teal-dark); margin: 18px 0 2px; }
.sheet .q { margin: 0 0 6px; }
.lines { height: 96px; background: repeating-linear-gradient(to bottom, transparent 0 30px, var(--rule) 30px 32px); }
.check { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.check span { width: 18px; height: 18px; border: 2px solid var(--teal); border-radius: 4px; flex: none; }
.sheet .affirm { font-family: var(--serif); font-size: 19px; margin-top: 22px; }

/* How it works: a real sequence, so it is numbered */
.steps { list-style: none; padding: 0; margin: 36px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: s; }
.steps li { counter-increment: s; }
.steps li::before {
  content: counter(s); display: block; font-family: var(--serif); font-size: 44px;
  color: var(--teal); line-height: 1; margin-bottom: 10px;
}
.steps h3 { margin-bottom: 6px; }

/* Inside */
.inside { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid var(--rule); }
.ticks li::before {
  content: ""; position: absolute; left: 4px; top: 21px; width: 12px; height: 7px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.weeks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.weeks img { border-radius: 6px; border: 1px solid #E6DFD2; }

/* Fit */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 28px; }
.fit h3 { margin-bottom: 10px; }
.fit ul { margin: 0; padding-left: 20px; }
.fit li { margin-bottom: 8px; }

/* Offer */
.offer { background: var(--deep); color: var(--paper); }
.offer .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.offer h2 { color: var(--paper); margin-bottom: 16px; }
.price { font-family: var(--serif); font-size: 84px; line-height: 1; margin: 8px 0 6px; }
.price small { font-family: var(--sans); font-size: 17px; opacity: .8; margin-left: 8px; }
.offer .ticks li { border-color: rgba(247, 244, 239, .18); }
.offer .ticks li::before { border-color: #7FD1C6; }
.guarantee { margin-top: 22px; font-size: 16px; opacity: .9; max-width: 30em; }
.offer .fine { color: rgba(247, 244, 239, .75); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--rule); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 18px; list-style: none; position: relative; padding-right: 32px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: -2px; font-size: 24px; color: var(--teal); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: #2E3836; }

.final { text-align: center; }
.final h2 { margin-bottom: 26px; }

/* Footer */
footer { padding: 40px 0 110px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--rule); }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 12px 0; }
footer a { color: var(--muted); }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--muted); text-decoration: underline; cursor: pointer; }

/* Sticky buy bar on small screens */
.sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 20;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--sheet); border: 1px solid #E4DDD0; border-radius: 999px;
  padding: 8px 8px 8px 20px; box-shadow: 0 12px 30px -12px rgba(0,0,0,.25);
}
.sticky strong { font-family: var(--serif); font-size: 20px; }
.sticky .btn { padding: 13px 20px; font-size: 15px; }

/* Consent notice */
.consent {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30; max-width: 520px; margin: 0 auto;
  background: var(--sheet); border: 1px solid #E4DDD0; border-radius: 14px; padding: 18px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.3); font-size: 15px;
}
.consent p { margin: 0 0 12px; }
.consent .row { display: flex; gap: 10px; flex-wrap: wrap; }
.consent .btn { padding: 12px 20px; font-size: 15px; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.btn-ghost:hover { background: var(--paper); }

/* Legal pages */
.legal { padding: 24px 0 80px; }
.legal h1 { font-size: clamp(34px, 5vw, 48px); margin-bottom: 8px; }
.legal h2 { font-size: 24px; margin: 36px 0 10px; }
.legal .updated { color: var(--muted); margin-bottom: 28px; }
.legal li { margin-bottom: 6px; }

@media (max-width: 880px) {
  section { padding: 60px 0; }
  .hero .wrap, .sample, .inside, .offer .wrap, .fit { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 360px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .sticky.show { display: flex; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding-top: 12px; }
  .lead { font-size: 18px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .sheet { padding: 28px 22px 24px; }
  .top-cta { display: none; }
  .price { font-size: 68px; }
}
