:root {
  --paper: #f4f0e8;
  --paper-soft: #fbf8f2;
  --ink: #171714;
  --ink-soft: #5f5b53;
  --line: rgba(23, 23, 20, 0.17);
  --coral: #ff6b4a;
  --coral-dark: #d8492b;
  --blue: #a8c8ff;
  --yellow: #f8d85b;
  --dark-surface: #171714;
  --light-ink: #f4f0e8;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --radius: 1.6rem;
  --container: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
  transition: transform .2s;
}

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

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

.site-header {
  width: min(calc(100% - 2.5rem), var(--container));
  height: 5.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
  font-size: 1.15rem;
}

.brand-mark {
  width: 1.25rem;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 8%;
  background: var(--coral);
  transform: rotate(-45deg);
}

nav { display: flex; gap: 2rem; }

nav a,
.header-cta {
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover { color: var(--ink); }

.header-cta {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-block: .35rem;
}

.hero {
  width: min(calc(100% - 2.5rem), var(--container));
  min-height: calc(100svh - 5.5rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: 3rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4rem, 9.4vw, 8.5rem);
  line-height: .83;
  letter-spacing: -.082em;
  font-weight: 850;
}

h1 span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.065em;
}

.hero-lead {
  max-width: 570px;
  margin: 2.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-actions span {
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.35;
}

.button {
  min-height: 3.25rem;
  padding: .85rem 1.35rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s, color .25s;
}

.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--coral-dark); }

.hero-visual {
  width: min(100%, 420px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
}

.clock-face,
.sun,
.orbit { position: absolute; border-radius: 50%; }

.clock-face {
  inset: 13%;
  border: 1px solid var(--ink);
  background: var(--yellow);
  box-shadow: 1.2rem 1.2rem 0 var(--blue);
  transform: rotate(6deg);
}

.sun {
  width: 18%;
  aspect-ratio: 1;
  right: 1%;
  top: 0;
  background: var(--coral);
}

.orbit { inset: 2%; border: 1px dashed var(--line); }
.orbit-two { inset: 22%; border-style: solid; opacity: .3; }

.clock-label {
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform-origin: 50% 100%;
}

.hand-long { height: 29%; transform: rotate(55deg); }
.hand-short { height: 20%; transform: rotate(-65deg); }

.clock-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.visual-note {
  position: absolute;
  right: -1rem;
  bottom: 12%;
  margin: 0;
  padding: .45rem .8rem;
  background: var(--paper-soft);
  border: 1px solid var(--ink);
  transform: rotate(-5deg);
  font-family: Georgia, serif;
  font-size: .95rem;
  font-style: italic;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue svg { width: 1.1rem; fill: none; stroke: currentColor; stroke-width: 1.5; }

.section {
  padding: clamp(5.5rem, 10vw, 9rem) max(1.25rem, calc((100vw - var(--container)) / 2));
}

.benefits { background: var(--paper-soft); }

.section-heading {
  display: grid;
  grid-template-columns: .5fr 1.5fr .75fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading .eyebrow { align-self: start; }

.section-heading h2,
.reality-intro h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.section-heading > p:last-child,
.reality-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-card {
  min-height: 410px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(23, 23, 20, .08);
}

.card-wide {
  grid-column: 1 / -1;
  min-height: 350px;
  display: grid;
  grid-template-columns: 4rem 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.card-number {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.benefit-card h3 {
  max-width: 720px;
  margin: auto 0 1.25rem;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.benefit-card p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}

.card-accent { background: var(--coral); }
.card-accent p { color: rgba(23, 23, 20, .72); }

.energy-line {
  width: 100%;
  margin-top: 2.5rem;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  overflow: visible;
}

.energy-line path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1.2s .25s var(--ease);
}

.energy-line.draw path { stroke-dashoffset: 0; }

.mini-schedule { display: grid; gap: .75rem; }

.mini-schedule span {
  width: var(--w);
  padding: .75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mini-schedule span:nth-child(2) { margin-left: 27%; background: var(--blue); }
.mini-schedule span:nth-child(3) { margin-left: 8%; background: var(--yellow); }

.route {
  height: 3.5rem;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.route::before {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  border-top: 1px dashed var(--ink);
}

.route i {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  position: relative;
}

.route i:last-child { background: var(--coral); }

.card-quote {
  margin-top: auto !important;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}

.card-dark { background: var(--dark-surface); color: var(--light-ink); }
.card-dark p { color: rgba(244, 240, 232, .68); }

.pulse {
  width: 5.5rem;
  aspect-ratio: 1;
  margin-top: auto;
  border: 1px solid var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 1.1rem rgba(255, 107, 74, .12), 0 0 0 2.2rem rgba(255, 107, 74, .06);
}

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

.rhythm-words {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.3vw, 2.3rem);
  font-style: italic;
}

.rhythm-words span:nth-child(2),
.rhythm-words span:nth-child(4) { align-self: flex-start; }

.reality {
  background: var(--dark-surface);
  color: var(--light-ink);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.reality-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.reality-intro h2 { max-width: 650px; }
.reality-intro > p:last-child { max-width: 480px; margin-top: 2rem; color: rgba(244, 240, 232, .62); }

.reality-item {
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  border-top: 1px solid rgba(244, 240, 232, .2);
}

.reality-item > span {
  color: var(--coral);
  font-size: .7rem;
  font-weight: 800;
}

.reality-item h3 {
  margin: 0 0 .75rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.reality-item p { margin: 0; color: rgba(244, 240, 232, .62); }

.manifest {
  min-height: 95svh;
  background: var(--coral);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.manifest h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: .86;
  letter-spacing: -.08em;
  position: relative;
  z-index: 1;
}

.manifest h2 span { color: var(--paper); }

.manifest-bottom {
  width: min(520px, 100%);
  margin: 4rem 0 0 auto;
  position: relative;
  z-index: 1;
}

.manifest-bottom > p { margin: 0; font-size: .8rem; font-weight: 750; }

blockquote {
  margin: .75rem 0 1.75rem;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  font-style: italic;
  line-height: 1.25;
}

.button-light { background: var(--light-ink); color: var(--dark-surface); }
.button-light:hover { background: var(--dark-surface); color: var(--light-ink); }
.manifest .button-light:focus-visible { outline-color: var(--dark-surface); }

.manifest-ring {
  position: absolute;
  width: min(52vw, 700px);
  aspect-ratio: 1;
  right: -14vw;
  top: -14vw;
  border: 1px solid rgba(23, 23, 20, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(23, 23, 20, .03), 0 0 0 12vw rgba(23, 23, 20, .025);
}

footer {
  padding: 2rem max(1.25rem, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--paper);
  font-size: .72rem;
  color: var(--ink-soft);
}

footer p { margin: 0; }
footer p:last-child { text-align: right; }

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

@media (max-width: 900px) {
  nav { gap: 1rem; }
  .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-visual { width: min(75vw, 380px); justify-self: center; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .reality { grid-template-columns: 1fr; }
  .reality-intro { position: static; }
}

@media (max-width: 680px) {
  .site-header { width: min(calc(100% - 2rem), var(--container)); height: 4.75rem; }
  nav { gap: .75rem; }
  nav a { font-size: .67rem; }
  .hero { width: min(calc(100% - 2rem), var(--container)); min-height: auto; padding: 3.5rem 0 5rem; gap: 4rem; }
  h1 { font-size: clamp(3.65rem, 18vw, 5.4rem); }
  .hero-lead { margin-top: 2rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: min(86vw, 360px); }
  .scroll-cue { display: none; }
  .section { padding-block: 5.5rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .section-heading > p:last-child { grid-column: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 360px; }
  .card-wide { grid-column: auto; display: flex; gap: 0; }
  .card-wide h3 { margin-top: auto; }
  .mini-schedule { margin-top: 2rem; }
  .rhythm-words { height: auto; margin-top: 2rem; flex-direction: row; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; }
  .rhythm-words span:nth-child(n) { align-self: auto; }
  .manifest { min-height: 85svh; }
  .manifest-bottom { margin-top: 3rem; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .energy-line path { stroke-dashoffset: 0; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1a1a17;
    --paper-soft: #22221e;
    --ink: #f2eee5;
    --ink-soft: #b9b4aa;
    --line: rgba(242, 238, 229, .18);
    --blue: #7396d2;
    --yellow: #d4b73f;
  }
  .button-dark { background: var(--coral); color: #171714; }
  .card-accent, .manifest { color: #171714; }
  .card-accent p { color: rgba(23, 23, 20, .72); }
  .clock-face, .mini-schedule span, .route i { color: #171714; border-color: #171714; }
  .clock-face .hand, .clock-dot { background: #171714; }
  .clock-face { border-color: #171714; }
}
