:root {
  --ink: #0e0e0e;
  --ink-soft: #171717;
  --cream: #f7f3ee;
  --cream-deep: #ebe3d8;
  --orange: #f5a623;
  --orange-deep: #d98511;
  --grey: #8f8b85;
  --line-dark: rgba(14, 14, 14, 0.14);
  --line-light: rgba(247, 243, 238, 0.14);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Avenir Next Condensed", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --section-pad: clamp(84px, 9vw, 144px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(14, 14, 14, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.96);
  border-bottom-color: var(--line-light);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(247, 243, 238, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a,
footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
footer a:hover {
  color: var(--cream);
}

.header-cta {
  justify-self: end;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.header-cta:hover,
.button:hover,
.hero-card-cta:hover {
  transform: translateY(-2px);
}

.eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100svh - 72px));
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.95) 34%, rgba(8, 8, 8, 0.36) 61%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.52) 0%, transparent 40%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 28%;
  transform: scale(1.035);
  will-change: transform;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(54%, 720px);
  min-height: max(720px, calc(100svh - 72px));
  padding: clamp(64px, 7vw, 112px) 24px clamp(80px, 8vw, 128px) clamp(24px, 7vw, 112px);
}

.hero-eyebrow {
  margin-bottom: 34px;
}

.day-marker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(247, 243, 238, 0.66);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.day-marker strong {
  color: var(--orange);
  font-size: 34px;
}

.day-marker span {
  color: var(--cream);
}

.hero h1,
.manifesto h2,
.section-heading h2,
.principles h2,
.trial h2,
.faq h2,
.closing h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  color: var(--cream);
  font-size: clamp(70px, 8.5vw, 138px);
}

.hero h1 span,
.section-heading h2 span,
.principles h2 span,
.trial h2 span,
.closing h2 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 520px;
  margin-top: 30px;
  color: rgba(247, 243, 238, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.app-store-badge {
  display: inline-flex;
  width: 180px;
  border-radius: 10px;
  transition: transform 160ms ease;
}

.app-store-badge:hover {
  transform: translateY(-2px) scale(1.01);
}

.text-link {
  border-bottom: 1px solid rgba(247, 243, 238, 0.4);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 4px;
}

.text-link span {
  color: var(--orange);
}

.trial-note {
  max-width: 500px;
  margin-top: 18px;
  color: rgba(247, 243, 238, 0.46);
  font-size: 12px;
}

.hero-card {
  position: absolute;
  right: clamp(24px, 5vw, 84px);
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 30px;
  width: min(510px, 42vw);
  padding: 28px 30px 24px;
  border-radius: 32px;
  background: rgba(247, 243, 238, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card-label,
.mini-progress > span {
  color: #746f68;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 6px 0 2px;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.hero-card p:not(.card-label) {
  color: #69645e;
  font-size: 13px;
}

.session-time {
  align-self: center;
  min-width: 74px;
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
  color: var(--orange-deep);
  text-align: center;
}

.session-time strong,
.session-time span {
  display: block;
  line-height: 1;
}

.session-time strong {
  font-family: var(--display);
  font-size: 38px;
}

.session-time span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
}

.hero-card-cta {
  grid-column: 1 / -1;
  padding: 15px 20px;
  border-radius: 13px;
  background: var(--orange);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.mini-progress {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.progress-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.progress-days i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(14, 14, 14, 0.16);
  border-radius: 50%;
  color: #716c65;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.progress-days i.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
}

.proof-bar div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line-light);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.proof-bar span {
  color: rgba(247, 243, 238, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(60px, 10vw, 150px);
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.manifesto h2,
.section-heading h2,
.principles h2,
.trial h2,
.faq h2,
.closing h2 {
  margin-top: 22px;
  font-size: clamp(60px, 8vw, 118px);
}

.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-deep);
  text-stroke: 2px var(--orange-deep);
}

.manifesto-body {
  align-self: end;
  padding-bottom: 8px;
}

.manifesto-body p {
  color: #615d57;
  font-size: 16px;
  line-height: 1.75;
}

.manifesto-body .manifesto-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 34px;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.button-orange {
  background: var(--orange);
  color: var(--ink);
}

.product-proof,
.principles,
.faq {
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(50px, 7vw, 86px);
}

.section-heading h2 {
  color: var(--cream);
  font-size: clamp(56px, 7vw, 106px);
}

.section-heading > p:last-child {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(247, 243, 238, 0.56);
  font-size: 17px;
}

.product-strip {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.product-strip img {
  width: 100%;
  height: auto;
}

.screen-gallery {
  display: grid;
  grid-template-columns: minmax(270px, 0.88fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screen-card {
  display: flex;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: #101010;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  flex-direction: column;
}

.screen-card-today {
  grid-row: 1 / span 2;
}

.screen-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: top;
}

.screen-card-today img {
  height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
}

.screen-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-top: 1px solid var(--line-light);
  color: var(--cream);
}

.screen-card figcaption span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.screen-card figcaption strong {
  font-size: 13px;
  text-align: right;
}

.product-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(247, 243, 238, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.journey {
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.section-heading-dark h2 {
  color: var(--ink);
}

.section-heading-dark > p:last-child {
  color: #6f6a63;
}

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

.journey-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #fffdf9;
}

.journey-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line-dark);
}

.journey-card > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 28px;
}

.journey-card span,
.principles-list > article > span {
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 25px;
}

.journey-card h3,
.principles-list h3 {
  grid-column: 2;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.journey-card p {
  grid-column: 2;
  margin-top: 10px;
  color: #6f6a63;
  font-size: 14px;
  line-height: 1.65;
}

.principles {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 8vw, 120px);
}

.principles h2 {
  color: var(--cream);
  font-size: clamp(54px, 6.5vw, 94px);
}

.principles-list {
  border-top: 1px solid var(--line-light);
}

.principles-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.principles-list h3 {
  color: var(--cream);
}

.principles-list p {
  margin-top: 7px;
  color: rgba(247, 243, 238, 0.52);
  font-size: 14px;
  line-height: 1.65;
}

.trial {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream-deep);
  color: var(--ink);
}

.trial-visual {
  display: flex;
  justify-content: center;
}

.trial-visual figure {
  width: min(100%, 520px);
}

.trial-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(14, 14, 14, 0.16);
}

.trial-visual figcaption {
  margin-top: 13px;
  color: #777169;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.trial h2 {
  color: var(--ink);
  font-size: clamp(56px, 7vw, 104px);
}

.trial ul {
  margin-top: 34px;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.trial li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line-dark);
  color: #504c47;
  font-size: 14px;
}

.trial li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 8px;
  height: 8px;
  margin: 5px 0 0 4px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.legal-note {
  max-width: 520px;
  margin-top: 14px;
  color: #777169;
  font-size: 11px;
  line-height: 1.55;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.editorial h2,
.guide-hero h1,
.guide-index-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.editorial h2 {
  margin-top: 22px;
  font-size: clamp(54px, 6.5vw, 94px);
}

.editorial h2 span {
  color: var(--orange-deep);
}

.editorial-heading > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 26px;
  color: #625d56;
  font-size: 16px;
  line-height: 1.7;
}

.text-link-dark {
  display: inline-flex;
  margin-top: 28px;
  border-color: rgba(14, 14, 14, 0.32);
  color: var(--ink);
}

.editorial-grid {
  border-top: 1px solid var(--line-dark);
}

.editorial-card {
  padding: 29px 0 31px;
  border-bottom: 1px solid var(--line-dark);
}

.editorial-card h3 {
  max-width: 620px;
  margin-top: 10px;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.editorial-card h3 a,
.editorial-card > a {
  transition: color 160ms ease;
}

.editorial-card h3 a:hover,
.editorial-card > a:hover {
  color: var(--orange-deep);
}

.editorial-card > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 12px;
  color: #6d675f;
  font-size: 14px;
  line-height: 1.65;
}

.editorial-card > a {
  display: inline-flex;
  margin-top: 17px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.editorial-card > a span {
  margin-left: 7px;
  color: var(--orange-deep);
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq h2 {
  color: var(--cream);
  font-size: clamp(60px, 7vw, 102px);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
}

.faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  color: var(--cream);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 620px;
  padding: 0 48px 28px 0;
  color: rgba(247, 243, 238, 0.56);
  font-size: 14px;
  line-height: 1.7;
}

body.guide-page {
  background: var(--cream);
  color: var(--ink);
}

.guide-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(247, 243, 238, 0.56);
  font-size: 12px;
}

.guide-breadcrumbs a:hover {
  color: var(--cream);
}

.guide-breadcrumbs span::before {
  margin-right: 8px;
  color: var(--orange);
  content: "/";
}

.guide-hero,
.guide-index-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 116px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 166, 35, 0.22), transparent 34%),
    var(--ink);
  color: var(--cream);
}

.guide-hero::after,
.guide-index-hero::after {
  position: absolute;
  right: -60px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 72px solid rgba(245, 166, 35, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.guide-kicker {
  margin-top: clamp(54px, 7vw, 86px);
}

.guide-hero h1,
.guide-index-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(58px, 8.2vw, 126px);
}

.guide-hero h1 span,
.guide-index-hero h1 span {
  color: var(--orange);
}

.guide-deck {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-top: 30px;
  color: rgba(247, 243, 238, 0.74);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  color: rgba(247, 243, 238, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 118px) clamp(24px, 4vw, 64px);
}

.guide-main {
  width: 100%;
  min-width: 0;
  max-width: 780px;
}

.guide-main > p:first-child {
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.5;
}

.guide-main h2,
.guide-main h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.guide-main h2 {
  margin: 64px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.guide-main h3 {
  margin: 34px 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.guide-main p,
.guide-main li {
  color: #56514b;
  font-size: 16px;
  line-height: 1.78;
}

.guide-main p + p {
  margin-top: 18px;
}

.guide-main ul,
.guide-main ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 0 22px;
}

.guide-main li::marker {
  color: var(--orange-deep);
  font-weight: 800;
}

.guide-main a:not(.button) {
  border-bottom: 1px solid rgba(217, 133, 17, 0.48);
  color: #8c560e;
  font-weight: 650;
}

.guide-main a:not(.button):hover {
  border-color: var(--orange-deep);
}

.guide-summary,
.guide-callout {
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(217, 133, 17, 0.32);
  border-radius: 20px;
  background: rgba(245, 166, 35, 0.1);
}

.guide-summary strong,
.guide-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.guide-week {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fffdf9;
}

.guide-week span {
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-week h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}

.guide-week p {
  font-size: 14px;
  line-height: 1.65;
}

.guide-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fffdf9;
}

.guide-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.guide-table th,
.guide-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line-dark);
  vertical-align: top;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.guide-table th {
  background: rgba(14, 14, 14, 0.04);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-table td {
  color: #5f5a53;
  font-size: 14px;
  line-height: 1.55;
}

.guide-aside {
  position: sticky;
  top: 100px;
  padding: 26px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--cream);
}

.guide-aside h2 {
  margin-top: 13px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 0.95;
  text-transform: uppercase;
}

.guide-aside h2 span {
  color: var(--orange);
}

.guide-aside > p:not(.eyebrow) {
  margin-top: 15px;
  color: rgba(247, 243, 238, 0.6);
  font-size: 13px;
  line-height: 1.65;
}

.guide-aside .button {
  width: 100%;
  margin-top: 22px;
}

.guide-aside small {
  display: block;
  margin-top: 12px;
  color: rgba(247, 243, 238, 0.38);
  font-size: 10px;
  line-height: 1.5;
}

.guide-sources {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.guide-sources h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.guide-sources p,
.guide-sources li {
  font-size: 13px;
}

.guide-disclaimer {
  margin-top: 34px;
  color: #777169 !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

.guide-index {
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

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

.guide-card {
  display: flex;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #fffdf9;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  border-color: rgba(217, 133, 17, 0.5);
  box-shadow: 0 24px 54px rgba(14, 14, 14, 0.08);
  transform: translateY(-4px);
}

.guide-card h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(25px, 2.8vw, 35px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.guide-card > p:not(.eyebrow) {
  margin-top: 15px;
  color: #68625b;
  font-size: 14px;
  line-height: 1.65;
}

.guide-card > span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
}

.guide-related {
  padding: var(--section-pad) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream-deep);
}

.guide-related .section-heading h2 {
  color: var(--ink);
}

.guide-related .section-heading > p:last-child {
  color: #6f6a63;
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-pad) 24px;
  background: var(--orange);
  color: var(--ink);
  text-align: center;
}

.closing .eyebrow {
  color: rgba(14, 14, 14, 0.64);
}

.closing h2 {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(66px, 9vw, 130px);
}

.closing h2 span {
  color: var(--cream);
}

.closing > p:last-child {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-light);
  background: #090909;
}

footer > p,
footer small {
  color: rgba(247, 243, 238, 0.38);
  font-size: 12px;
}

footer nav {
  display: flex;
  gap: 24px;
  color: rgba(247, 243, 238, 0.58);
  font-size: 12px;
}

footer small {
  grid-column: 1 / -1;
}

.mobile-download {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .journey-card:nth-child(2),
.js .principles-list article:nth-child(2) {
  transition-delay: 70ms;
}

.js .journey-card:nth-child(3),
.js .principles-list article:nth-child(3) {
  transition-delay: 140ms;
}

.js .journey-card:nth-child(4),
.js .principles-list article:nth-child(4) {
  transition-delay: 210ms;
}

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

  .nav-links {
    display: none;
  }

  .hero-copy {
    width: 64%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.88) 44%, rgba(8, 8, 8, 0.18) 100%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.62) 0%, transparent 50%);
  }

  .hero-card {
    width: min(440px, 45vw);
  }

  .manifesto,
  .principles,
  .trial,
  .faq,
  .editorial {
    gap: 54px;
  }

  .screen-gallery {
    grid-template-columns: minmax(220px, 0.8fr) repeat(2, minmax(0, 1fr));
  }

  .screen-card-today {
    grid-row: 1 / span 2;
  }

  .guide-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 46px;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }

  .hero-media {
    height: 680px;
  }

  .hero-media img {
    object-position: 59% 38%;
  }

  .hero::before {
    z-index: -1;
    height: 680px;
    background:
      linear-gradient(0deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.7) 25%, transparent 56%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.03) 78%);
  }

  .hero-copy {
    justify-content: flex-end;
    width: 100%;
    min-height: 680px;
    padding: 82px 22px 48px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .day-marker {
    gap: 7px;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .day-marker strong {
    font-size: 25px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 98px);
  }

  .hero-intro {
    max-width: 335px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    margin-top: 24px;
  }

  .hero-actions .text-link,
  .trial-note {
    display: none;
  }

  .app-store-badge {
    width: 158px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -2px 12px 18px;
    padding: 27px 24px 22px;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  }

  .hero-card h2 {
    font-size: 36px;
  }

  .session-time {
    min-width: 64px;
    padding-left: 14px;
  }

  .session-time strong {
    font-size: 32px;
  }

  .proof-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 18px 16px 38px;
  }

  .proof-bar div {
    justify-content: flex-start;
    padding: 16px 12px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .proof-bar div:nth-child(2n) {
    border-right: 0;
  }

  .proof-bar div:nth-child(n+3) {
    border-bottom: 0;
  }

  .proof-bar strong {
    font-size: 29px;
  }

  .proof-bar span {
    max-width: 80px;
    font-size: 9px;
  }

  .manifesto,
  .principles,
  .trial,
  .faq,
  .editorial {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 36px;
  }

  .manifesto h2,
  .section-heading h2,
  .principles h2,
  .trial h2,
  .faq h2,
  .editorial h2,
  .closing h2 {
    font-size: clamp(52px, 16.4vw, 76px);
  }

  .manifesto-body .manifesto-lead {
    font-size: 22px;
  }

  .manifesto-body p {
    font-size: 15px;
  }

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

  .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 15px;
  }

  .product-proof,
  .journey,
  .principles,
  .trial,
  .faq,
  .editorial {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-strip {
    margin-right: -8px;
    margin-left: -8px;
    border-radius: 18px;
  }

  .screen-gallery {
    display: flex;
    gap: 14px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screen-gallery::-webkit-scrollbar {
    display: none;
  }

  .screen-card,
  .screen-card-today {
    flex: 0 0 min(84vw, 340px);
    height: auto;
    scroll-snap-align: start;
  }

  .screen-card-today {
    height: 620px;
  }

  .product-pill-row {
    flex-wrap: nowrap;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-pill-row::-webkit-scrollbar {
    display: none;
  }

  .product-pill-row span {
    flex: 0 0 auto;
  }

  .journey-grid {
    display: flex;
    gap: 14px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .journey-grid::-webkit-scrollbar {
    display: none;
  }

  .journey-card {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .journey-card > div {
    padding: 22px;
  }

  .principles {
    gap: 46px;
  }

  .principles-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .principles-list > article > span {
    font-size: 21px;
  }

  .trial {
    gap: 46px;
  }

  .trial-visual {
    order: 2;
  }

  .trial-copy {
    order: 1;
  }

  .trial-visual img {
    width: 100%;
  }

  .trial-visual figure {
    width: min(92%, 420px);
  }

  .trial .button {
    width: 100%;
  }

  .faq {
    gap: 42px;
  }

  .editorial {
    gap: 46px;
  }

  .guide-hero,
  .guide-index-hero {
    padding: 62px 20px 72px;
  }

  .guide-kicker {
    margin-top: 46px;
  }

  .guide-hero h1,
  .guide-index-hero h1 {
    font-size: clamp(54px, 16.5vw, 78px);
  }

  .guide-deck {
    margin-top: 22px;
    font-size: 18px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 62px 20px 82px;
  }

  .guide-main > p:first-child {
    font-size: 20px;
  }

  .guide-main h2 {
    margin-top: 52px;
  }

  .guide-main p,
  .guide-main li {
    font-size: 15px;
  }

  .guide-week-grid,
  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
  }

  .guide-index,
  .guide-related {
    padding-right: 20px;
    padding-left: 20px;
  }

  .guide-card {
    min-height: 300px;
  }

  .faq summary {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 15px;
  }

  .faq summary::after {
    top: 19px;
  }

  .closing {
    padding-bottom: 110px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 38px 22px 110px;
  }

  footer small {
    grid-column: auto;
  }

  .mobile-download {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 10px 11px 10px 18px;
    border: 1px solid rgba(247, 243, 238, 0.1);
    border-radius: 18px;
    background: rgba(14, 14, 14, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-download span,
  .mobile-download strong,
  .mobile-download small {
    display: block;
  }

  .mobile-download strong {
    color: var(--cream);
    font-size: 13px;
  }

  .mobile-download small {
    margin-top: 1px;
    color: rgba(247, 243, 238, 0.48);
    font-size: 10px;
  }

  .mobile-download b {
    padding: 10px 14px;
    border-radius: 11px;
    background: var(--orange);
    color: var(--ink);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

@media (max-width: 380px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: 1fr 62px;
  }
}

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

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

  .hero-media img,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
