:root {
  --ink: #101312;
  --paper: #f7f8f5;
  --white: #ffffff;
  --muted: #53615c;
  --line: #d5ddd9;
  --accent: #173f34;
  --accent-bright: #77e5b5;
  --accent-soft: #e1f3eb;
  --mint: var(--accent-bright);
  --mint-dark: var(--accent);
  --ice: var(--accent-soft);
  --signal: var(--accent);
  --radius: 8px;
  --max: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }
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.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--white);
  padding: 8px 12px;
  z-index: 10;
}
.skip-link:focus { left: 8px; }

.site-header {
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(247, 248, 245, .94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark strong { font-size: 16px; }
.wordmark span { color: var(--muted); font-size: 13px; font-weight: 650; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 680; }
nav a:hover { color: var(--ink); }
.nav-socials {
  display: flex;
  gap: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link .social-dot,
.social-link .social-fill {
  fill: currentColor;
  stroke: none;
}
.nav-cta {
  text-decoration: none;
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 760;
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 4px;
  min-height: 42px;
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(88vh - 72px);
  padding: 64px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { width: 100%; max-width: 840px; }
.hero > * { min-width: 0; }
.hero-simple { grid-template-columns: minmax(0, 1.25fr) minmax(340px, .65fr); }
.kicker, .section-number, .label {
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mint-dark);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(55px, 6.6vw, 88px);
  line-height: .94;
  letter-spacing: 0;
  margin-bottom: 26px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-wrap: balance;
}
h3 { font-size: 24px; line-height: 1.12; letter-spacing: 0; }
.hero-lead {
  font-size: clamp(20px, 2.3vw, 29px);
  max-width: 820px;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero-claim { font-weight: 800; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 30px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 790;
  cursor: pointer;
}
.button.primary { background: var(--ink); color: var(--white); }
.button.primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.button.secondary { background: transparent; color: var(--ink); }
.text-link, .text-action { font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}
.trust-line li:not(:last-child)::after { content: "·"; padding: 0 10px; color: var(--signal); }

.hero-offer {
  background: var(--accent-soft);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-offer .label { color: var(--mint-dark); }
.hero-offer h2 { font-size: clamp(38px, 4vw, 58px); }
.hero-offer > p:not(.label), .hero-offer li { color: var(--muted); }
.hero-offer .button { background: var(--ink); color: var(--white); border-color: var(--ink); }

.statement-band {
  background: var(--accent);
  color: var(--white);
  padding: 42px max(20px, calc((100vw - var(--max)) / 2));
}
.statement-band p { max-width: 1050px; font-size: clamp(25px, 3.5vw, 48px); line-height: 1.08; margin: 0; }

.section {
  padding: 110px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
}
.section-intro { max-width: 900px; margin-bottom: 56px; }
.section-intro > p:last-child { color: var(--muted); font-size: 19px; max-width: 720px; }
.two-col, .split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: 72px;
}
.large-copy p { font-size: clamp(25px, 3vw, 42px); line-height: 1.12; }
.reality-list p {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  margin: 0;
  font-size: 17px;
  font-weight: 690;
}
.reality-list span { display: inline-block; width: 38px; color: var(--accent); font-size: 12px; }

.section-dark { background: var(--accent-soft); color: var(--ink); border-color: #b9cec5; }
.section-dark .section-number { color: var(--mint-dark); }
.section-dark .section-intro > p:last-child, .section-dark article p, .method-note { color: var(--muted); }
.section-dark .section-intro { margin-bottom: 38px; }
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #33413b; }
.method-grid article { padding: 24px 18px 24px 0; border-bottom: 1px solid #33413b; }
.method-grid article:not(:last-child) { border-right: 1px solid #33413b; padding-left: 18px; }
.method-grid article:first-child { padding-left: 0; }
.method-code { display: block; font-size: 52px; line-height: 1; font-weight: 850; color: var(--mint); margin-bottom: 55px; }
.method-grid p { font-size: 15px; margin-bottom: 0; }
.method-note { max-width: 720px; margin: 34px 0 0; font-size: 17px; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #b9cec5;
}
.pillar-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 22px 18px;
  border-bottom: 1px solid #b9cec5;
  border-right: 1px solid #b9cec5;
  display: flex;
  flex-direction: column;
}
.pillar-grid article:nth-child(4n) { border-right: 0; }
.pillar-grid article:last-child { grid-column: span 2; }
.pillar-grid .method-code { margin-bottom: 28px; font-size: 34px; color: var(--accent); }
.pillar-grid h3 { min-height: 50px; font-size: 20px; overflow-wrap: normal; }
.pillar-grid p { color: var(--muted) !important; font-size: 14px; margin-top: auto; }
.pillar-system-note {
  max-width: 900px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #b9cec5;
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  gap: 34px;
}
.pillar-system-note strong { font-size: 20px; }
.pillar-system-note p { color: var(--muted); font-size: 16px; margin: 0; }

.trust-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; }
.trust-grid article, .product-grid > article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.credential-primary { background: var(--accent-soft) !important; }
.trust-grid ul, .compact-list { padding-left: 18px; color: var(--muted); }
.trust-grid li, .compact-list li { padding: 5px 0; }

.profile-grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.portrait-frame {
  min-height: 420px;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-fallback {
  height: 100%;
  min-height: 420px;
  padding: 28px;
  color: var(--mint);
  font-size: 28px;
  font-weight: 820;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.portrait-fallback small { margin-top: 8px; color: #aebbb5; font-size: 11px; font-weight: 600; }
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.profile-card ul { padding-left: 18px; color: var(--muted); }
.profile-card li { padding: 5px 0; }

.coaching-section { background: #f0f4f1; }
.coaching-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}
.check-list { padding: 0; list-style: none; margin: 0 0 28px; }
.check-list li { border-top: 1px solid var(--line); padding: 13px 0; font-weight: 680; }
.check-list li::before { content: "→"; color: var(--accent); margin-right: 10px; }
.intake-frame-wrap {
  min-height: 680px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.intake-frame { width: 100%; height: 760px; border: 0; display: block; }
.testimonial-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.testimonial-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-header h3 { margin-bottom: 0; font-size: clamp(28px, 4vw, 48px); }
.slider-controls { display: flex; gap: 8px; }
.slider-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}
.slider-button:hover { background: var(--ink); color: var(--white); }
.testimonial-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 42%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--mint-dark) transparent;
}
.testimonial-card {
  margin: 0;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
}
.testimonial-card .result { color: var(--mint-dark); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.testimonial-lead { min-height: 112px; font-size: 20px; font-weight: 760; line-height: 1.25; }
.testimonial-card details { border-top: 1px solid var(--line); padding-top: 14px; }
.testimonial-card summary { cursor: pointer; font-size: 13px; font-weight: 790; }
.testimonial-card details p { color: var(--muted); font-size: 14px; }
.testimonial-card cite { display: block; margin-top: 22px; color: var(--muted); font-size: 12px; font-style: normal; font-weight: 720; }
.testimonial-disclaimer { max-width: 840px; margin: 14px 0 0; color: var(--muted); font-size: 11px; }

.results-section { background: var(--white); }
.is-draft { display: none; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.result-grid article { border-top: 3px solid var(--ink); padding: 24px 0; }
.result-grid article:nth-child(2) { border-color: var(--mint-dark); }
.result-grid article:nth-child(3) { border-color: var(--signal); }
.result-grid p:last-child { color: var(--muted); }

.products-section { background: #f0f4f1; }
.product-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; align-items: stretch; }
.product-grid article { display: flex; flex-direction: column; gap: 15px; }
.product-grid img { max-height: 240px; object-fit: contain; margin: auto; }
.product-featured { background: var(--ink) !important; color: var(--white); display: grid !important; grid-template-columns: 1fr .75fr; }
.product-featured p:not(.label) { color: #aebbb5; }
.product-featured .label { color: var(--mint); }
.product-featured .button { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.text-action { margin-top: auto; }
.microcopy { color: var(--muted); font-size: 12px; margin-bottom: 0; }
code { font-size: 11px; }

.gude-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
  background: var(--accent-soft);
  border-color: #b9cec5;
}
.gude-section .section-number { color: var(--ink); }
.gude-section p { max-width: 740px; font-size: 19px; }
.gude-status { font-weight: 780; }
.gude-mark { font-size: clamp(55px, 10vw, 150px); line-height: .9; font-weight: 900; letter-spacing: -.05em; }
.gude-mark span { display: block; font-size: .3em; letter-spacing: 0; }
.gude-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gude-logo-link { display: block; max-width: 500px; justify-self: end; }
.gude-logo-link img { width: 100%; height: auto; }

.newsletter-section { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.newsletter-section > div { max-width: 800px; }
.newsletter-section > div > p:last-child { color: var(--muted); font-size: 19px; }

footer {
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}
.footer-brand p { margin: 0; font-size: 13px; color: #aebbb5; }
.footer-brand strong { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #aebbb5; font-size: 13px; }

.shift-hero {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(85vh - 72px);
  padding: 100px 0 60px;
}
.shift-hero h1 { max-width: 960px; }
.shift-method { background: var(--ink); color: var(--white); padding: 0; }
.day-list { list-style: none; padding: 0; margin: 0; counter-reset: days; }
.day-list li { counter-increment: days; border-top: 1px solid var(--line); padding: 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.day-list li::before { content: "Tag " counter(days); color: var(--signal); font-size: 12px; font-weight: 800; grid-column: 1 / -1; }
.day-list span { color: var(--muted); }
.signup-section { background: var(--accent); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.signup-section .section-number { color: var(--mint-dark); }
.signup-section .section-number { color: var(--accent-bright); }
.signup-section > div > p:not(.section-number) { color: #d7e6df; font-size: 18px; }
.form-placeholder { background: #19201d; border: 1px solid #33413b; border-radius: var(--radius); padding: 24px; display: grid; gap: 14px; }
.form-placeholder label { display: grid; gap: 5px; color: #aebbb5; font-size: 13px; font-weight: 700; }
.form-placeholder input { min-height: 48px; border: 1px solid #53645c; background: #101312; color: white; border-radius: 4px; padding: 10px 12px; }

.brevo-shell {
  max-width: 560px;
  width: 100%;
  justify-self: end;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
}
.brevo-shell form { display: grid; gap: 15px; }
.brevo-shell label { display: grid; gap: 6px; font-size: 13px; font-weight: 780; }
.brevo-shell input:not(.input--hidden) {
  min-height: 50px;
  width: 100%;
  border: 1px solid #9ba9a2;
  border-radius: 4px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
}
.brevo-shell .button { width: 100%; }
.brevo-legal { color: var(--muted); font-size: 11px; margin: 0; }
.brevo-legal a { color: inherit; }
.sib-form-message-panel { padding: 12px; margin-bottom: 12px; border-radius: 4px; }
#error-message { color: #661d1d; background: #ffeded; }
#success-message { color: #085229; background: #e7faf0; }
.homepage-signup { align-items: start; }
.brevo-iframe-shell {
  width: 100%;
  max-width: 560px;
  min-height: 680px;
  justify-self: end;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.brevo-iframe-shell iframe { display: block; width: 100%; max-width: 100%; height: 680px; border: 0; }

@media (max-width: 980px) {
  .hero, .two-col, .split-section, .signup-section, .gude-section, .coaching-grid { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-offer { min-height: auto; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid article { border-right: 1px solid #33413b; padding-left: 15px; }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar-grid article { border-right: 1px solid #b9cec5; }
  .pillar-grid article:nth-child(2n) { border-right: 0; }
  .pillar-grid article:last-child { grid-column: span 2; }
  .trust-grid, .product-grid, .result-grid, .profile-grid { grid-template-columns: minmax(0, 1fr); }
  .testimonial-slider { grid-auto-columns: minmax(320px, 70%); }
  .portrait-frame, .portrait-fallback { min-height: 520px; }
  .product-featured { grid-template-columns: 1fr !important; }
  .gude-mark { font-size: 86px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; }
  .menu-button { display: block; }
  #main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  #main-nav.open { display: flex; }
  .nav-socials {
    order: 2;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .social-link { width: 44px; height: 44px; }
  .nav-cta { order: 1; text-align: center; }
  .hero { width: calc(100% - 32px); gap: 36px; }
  .hero-copy, .hero-copy > *, .hero-offer { min-width: 0; max-width: 100%; }
  h1 { font-size: clamp(38px, 10.8vw, 43px); overflow-wrap: anywhere; text-wrap: wrap; }
  h2 { font-size: clamp(34px, 10vw, 44px); overflow-wrap: anywhere; text-wrap: wrap; }
  .hero p { max-width: 100%; overflow-wrap: anywhere; word-break: normal; }
  .hero-lead { font-size: 18px; }
  .hero-claim { font-size: 17px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { border-right: 0 !important; padding-left: 0; }
  .method-code { margin-bottom: 25px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article, .pillar-grid article:nth-child(2n), .pillar-grid article:nth-child(4n) {
    min-height: auto;
    border-right: 0;
    padding: 22px 0;
  }
  .pillar-grid article:last-child { grid-column: auto; }
  .pillar-grid .method-code { margin-bottom: 18px; }
  .pillar-grid h3 { min-height: auto; }
  .pillar-grid p { margin-top: 10px; }
  .pillar-system-note { grid-template-columns: 1fr; gap: 8px; }
  .newsletter-section, footer { align-items: stretch; flex-direction: column; }
  .day-list li { grid-template-columns: 1fr; gap: 5px; }
  .wordmark { display: grid; gap: 0; line-height: 1.1; }
  .wordmark span { font-size: 10px; margin-top: 3px; }
  .intake-frame-wrap { min-height: 580px; }
  .intake-frame { height: 650px; }
  .brevo-shell { padding: 20px; }
  .testimonial-header { grid-template-columns: 1fr; }
  .testimonial-slider { grid-auto-columns: 90%; }
  .gude-logo-link { justify-self: start; max-width: 300px; }
  .brevo-iframe-shell, .brevo-iframe-shell iframe { min-height: 1120px; height: 1120px; }
}

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 110px;
}
.legal-page > h1 { max-width: 820px; }
.legal-page section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-page section h2 { font-size: clamp(27px, 4vw, 42px); }
.legal-page section p, .legal-page section li { color: var(--muted); font-size: 16px; }
.legal-page a { text-underline-offset: 3px; }
.legal-date { margin-top: 40px; font-size: 13px; font-weight: 750; color: var(--muted); }

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