:root {
  color-scheme: light;
  --ink: #171815;
  --muted: #5d6259;
  --paper: #fff4f2;
  --soft: #fff0ee;
  --red: #b4232e;
  --red-bright: #ff5a52;
  --amber: #f59a3d;
  --clay: #7f1d1d;
  --line: #efd6d2;
  --white: #fffefb;
  --night: #160809;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(255, 254, 251, 0.9);
  border-bottom: 1px solid rgba(23, 24, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
nav,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
}

nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 26px);
  font-size: 0.95rem;
  color: var(--muted);
}

nav a,
footer a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 7vw, 86px) 54px;
  background:
    linear-gradient(180deg, #fff8f6 0%, #fffefb 72%),
    var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(180, 35, 46, 0.08), transparent 36%, rgba(255, 90, 82, 0.08));
  pointer-events: none;
}

.hero-copy,
.hero-app {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(780px, 100%);
  padding: 0;
  color: var(--ink);
}

.hero-app {
  width: min(540px, 100%);
  justify-self: center;
}

.hero-photo-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(180, 35, 46, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 242, 0.9)),
    var(--white);
  box-shadow: 0 34px 60px rgba(65, 17, 20, 0.16);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 8px;
  background: rgba(180, 35, 46, 0.1);
  transform: rotate(-4deg);
}

.screen-label {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(180, 35, 46, 0.16);
  border-radius: 8px;
  color: var(--red);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-photo-grid figcaption {
  padding: 11px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-photo-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red);
}

.hero .eyebrow {
  color: var(--red);
}

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

h1 {
  margin-bottom: 12px;
  font-size: 6.35rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: 3.45rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.secondary {
  border: 1px solid rgba(180, 35, 46, 0.22);
  color: var(--red);
  background: rgba(255, 255, 255, 0.62);
}

.band,
.journey,
.steps,
.note,
.document {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 7vw, 80px);
  align-items: center;
  padding: 112px 0;
}

.band > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.band p {
  font-size: 1.28rem;
  line-height: 1.45;
}

.journey {
  display: grid;
  gap: 64px;
  padding: 128px 0 80px;
}

.section-head,
.journey > div:first-child {
  max-width: 860px;
}

.step-stack {
  display: grid;
  gap: 56px;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(20px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 242, 0.78), rgba(255, 254, 251, 0.94)),
    var(--white);
  overflow: hidden;
}

.step-row:nth-child(even) {
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.9fr);
}

.step-row:nth-child(even) img {
  order: 2;
}

.step-row img {
  width: min(100%, 520px);
  max-height: 560px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 28px 32px rgba(65, 17, 20, 0.12));
}

.step-row span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.step-row h3 {
  font-size: 4rem;
}

.step-row p {
  max-width: 430px;
  font-size: 1.38rem;
  line-height: 1.45;
}

.steps article,
.note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 40px 0 118px;
}

.steps article {
  min-height: 190px;
  padding: 30px;
}

.steps h2 {
  font-size: 2.4rem;
}

.destination {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  padding-top: 84px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.outcome-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.outcome-grid strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.outcome-grid p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

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

.cue-comparison figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cue-comparison img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.cue-comparison figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.censor-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}

.censor-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--night);
}

.censor-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) grayscale(0.82) brightness(0.46);
  transform: scale(1.1);
  transition: filter 180ms ease, transform 180ms ease;
}

.censor-toggle.is-revealed img {
  filter: none;
  transform: scale(1);
}

.censor-gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(22, 8, 9, 0.82);
  color: white;
  text-align: center;
  transition: opacity 180ms ease;
}

.censor-gate span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.censor-gate strong {
  color: var(--red-bright);
  font-size: 0.95rem;
}

.censor-toggle.is-revealed .censor-gate {
  opacity: 0;
  pointer-events: none;
}

.censor-strips {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(0deg, transparent 0 20%, rgba(22, 8, 9, 0.92) 20% 32%, transparent 32% 57%, rgba(22, 8, 9, 0.9) 57% 69%, transparent 69%),
    linear-gradient(90deg, transparent 0 10%, rgba(22, 8, 9, 0.38) 10% 18%, transparent 18% 100%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.censor-toggle.is-revealed .censor-strips {
  opacity: 0;
}

.censor-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(22, 8, 9, 0.88);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.censored-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.censored-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.ritual {
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  padding-top: 4px;
}

.ritual > img {
  background: var(--soft);
}

.science {
  border-top: 1px solid var(--line);
}

.science-visual {
  display: grid;
  gap: 18px;
  align-items: center;
}

.science-visual img {
  width: min(100%, 420px);
  justify-self: center;
  filter: drop-shadow(0 30px 34px rgba(65, 17, 20, 0.14));
}

.science > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.22rem;
  line-height: 1.45;
}

.science-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.science-points p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.science-points p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 22px;
  height: 22px;
  border-left: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  transform: rotate(-45deg);
}

.research-summaries {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: -28px;
}

.research-summaries article,
.research-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.research-summaries article {
  padding: 22px;
}

.research-summaries span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.research-summaries h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.research-summaries p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.48;
}

.research-note {
  grid-column: 1 / -1;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.note {
  padding: 42px;
  margin-bottom: 88px;
}

.note h2 {
  font-size: 2.2rem;
}

.note p {
  max-width: 760px;
  font-size: 1.22rem;
  line-height: 1.45;
}

footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.plain {
  background: var(--paper);
}

.document {
  padding: 130px 0 72px;
  max-width: 760px;
}

.document h1 {
  font-size: 4.75rem;
  color: var(--ink);
}

.document h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

@media (min-width: 821px) and (max-width: 1040px) {
  h1 {
    font-size: 5.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .step-row h3 {
    font-size: 3rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    row-gap: 8px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 74svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 20px 56px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-app {
    width: min(100%, 430px);
    max-width: none;
    margin: 34px auto 0;
  }

  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1.1rem;
  }

  .band,
  .destination,
  .ritual,
  .steps {
    grid-template-columns: 1fr;
  }

  .step-row,
  .step-row:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .step-row:nth-child(even) img {
    order: 0;
  }

  .step-row h3 {
    font-size: 2.8rem;
  }

  .step-row p {
    font-size: 1.18rem;
  }

  .steps {
    padding-top: 0;
  }

  .research-summaries {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .document h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .cue-comparison {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .censored-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.95rem;
  }
}
