@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-700.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-800.ttf') format('truetype');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --white: #ffffff;
  --black: #000000;
  --amber: #e49d37;
  --page-width: 1320px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--white);
  color: var(--black);
  font-synthesis: none;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--amber);
  color: var(--black);
}

a,
button,
input,
summary {
  color: inherit;
  font: inherit;
}

a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

button,
summary {
  cursor: pointer;
}

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

.section-dark button:focus-visible,
.section-dark a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--white);
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: -0.052em;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.skip-link {
  background: var(--amber);
  border: 2px solid var(--black);
  font-weight: 800;
  left: 12px;
  padding: 12px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-180%);
  z-index: 100;
}

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

.story-progress {
  background: var(--black);
  height: 4px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 70;
}

.story-progress span {
  background: var(--amber);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 100ms linear;
  width: 100%;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  margin: 0 auto;
  min-height: 84px;
  padding: 12px max(32px, calc((100vw - var(--page-width)) / 2));
  position: sticky;
  top: 4px;
  width: 100%;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 25px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  width: max-content;
}

.site-header .brand-mark {
  align-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 13px;
  box-shadow: 3px 3px 0 var(--black);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  overflow: hidden;
  width: 46px;
}

.site-header .brand img {
  display: block;
  height: 43px;
  width: 43px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav .nav-link {
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 12px 14px 10px;
  text-decoration: none;
}

.site-nav .nav-link:hover,
.site-nav .nav-link[aria-current='location'] {
  border-bottom-color: var(--amber);
}

.site-nav .nav-cta {
  display: none;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  align-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 10px;
  display: none;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  transition:
    box-shadow 120ms ease,
    transform 120ms ease;
}

.menu-toggle-lines {
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-toggle-lines span {
  background: var(--black);
  display: block;
  height: 2px;
  width: 100%;
  transition: transform 120ms ease;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines {
  gap: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines span:first-child {
  transform: translateY(1px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines span:last-child {
  transform: translateY(-1px) rotate(-45deg);
}

.button,
.launch-form button {
  align-items: center;
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 12px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  text-decoration: none;
  transition:
    box-shadow 120ms ease,
    transform 120ms ease;
}

.button,
.menu-toggle,
.demo-controls button {
  box-shadow: 4px 4px 0 var(--black);
}

@media (hover: hover) {
  .button:hover,
  .launch-form button:hover,
  .menu-toggle:hover,
  .demo-controls button:hover {
    box-shadow: 6px 6px 0 var(--black);
    transform: translateY(-2px);
  }
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
}

.button:active,
.launch-form button:active,
.demo-controls button:active,
.menu-toggle:active {
  transform: translateY(2px);
}

main > section,
.site-footer {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--page-width);
}

.hero {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.92fr) minmax(570px, 1.08fr);
  max-width: none;
  min-height: calc(100svh - 88px);
  padding: 52px 0 62px;
  width: min(var(--page-width), calc(100% - 120px));
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 5.3vw, 78px);
  font-weight: 800;
  letter-spacing: -0.062em;
  line-height: 0.94;
  margin: 0;
}

h1 span {
  background: var(--amber);
  box-decoration-break: clone;
  display: inline;
  padding: 0 0.08em 0.04em;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.54;
  margin: 25px 0 26px;
  max-width: 585px;
}

.launch-form {
  max-width: 600px;
  position: relative;
}

.launch-form > label:first-child {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.launch-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.launch-form-row input {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px 0 0 12px;
  caret-color: var(--black);
  min-height: 56px;
  min-width: 0;
  padding: 13px 16px;
}

.launch-form-row input::placeholder {
  color: var(--black);
}

.launch-form-row button {
  border-left: 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 4px 4px 0 var(--black);
}

.launch-form[data-state='success'] .launch-form-row button {
  background: var(--black);
  color: var(--white);
}

.launch-form[data-email-error='true'] .launch-form-row input,
.launch-form[data-consent-error='true'] .consent-row {
  border-width: 3px;
}

.launch-form input:disabled {
  background: var(--white);
  color: var(--black);
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}

.launch-form button:disabled {
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}

.consent-row {
  align-items: start;
  border: 2px solid transparent;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  line-height: 1.45;
  margin: 12px 0 0;
  padding: 0;
}

.consent-row input {
  appearance: none;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 3px;
  color: var(--black);
  display: inline-grid;
  flex: 0 0 auto;
  height: 24px;
  justify-content: center;
  margin: 0;
  opacity: 1;
  width: 24px;
}

.consent-row input::before {
  border-bottom: 3px solid var(--black);
  border-left: 3px solid var(--black);
  content: '';
  height: 7px;
  transform: rotate(-45deg) scale(0);
  transition: transform 100ms ease;
  width: 12px;
}

.consent-row input:checked {
  background: var(--amber);
}

.consent-row input:checked::before {
  transform: rotate(-45deg) scale(1);
}

.consent-row input:disabled {
  background: var(--amber);
  color: var(--black);
  opacity: 1;
}

.launch-form-message {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  margin: 7px 0 0;
  min-height: 20px;
}

.launch-privacy-note {
  font-size: 11px;
  line-height: 1.45;
  margin: 7px 0 0 34px;
}

.launch-privacy-note a {
  font-weight: 800;
}

.launch-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.hero-boundaries {
  border-top: 2px solid var(--black);
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin-top: 22px;
  padding-top: 14px;
}

.hero-boundaries span {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
}

.hero-boundaries span::before {
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 50%;
  content: '';
  height: 11px;
  width: 11px;
}

.hero-demo {
  min-width: 0;
}

.demo-stage {
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 34px;
  box-shadow: 10px 10px 0 var(--black);
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.phone-frame {
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: 30px;
  box-shadow: 6px 6px 0 var(--black);
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.phone-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.demo-phone-primary,
.demo-phone-secondary {
  position: absolute;
  transition: transform 180ms ease;
}

.demo-phone-primary {
  bottom: -64px;
  left: 8%;
  transform: rotate(-2deg);
  width: 280px;
  z-index: 3;
}

.demo-phone-secondary {
  right: 8%;
  top: 54px;
  transform: rotate(3deg);
  width: 236px;
  z-index: 4;
}

.demo-phone-primary.is-changing,
.demo-phone-secondary.is-changing {
  transform: translateY(12px) scale(0.98);
}

.demo-kicker {
  background: var(--white);
  border: 2px solid var(--black);
  left: 22px;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 9px 12px;
  position: absolute;
  top: 22px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 8;
}

.demo-caption {
  background: var(--black);
  bottom: 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  left: auto;
  line-height: 1.45;
  margin: 0;
  max-width: 430px;
  padding: 12px 15px;
  position: absolute;
  right: 18px;
  text-align: center;
  transform: none;
  width: calc(100% - 36px);
  z-index: 8;
}

.demo-controls {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.demo-controls button {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  min-height: 56px;
  padding: 10px;
  transition:
    background 120ms ease,
    transform 120ms ease;
}

.demo-controls button.is-active {
  background: var(--amber);
}

.proof-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 11px 0 0;
  text-align: center;
  text-transform: uppercase;
}

.section {
  border-top: 2px solid var(--black);
  padding: 108px 30px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-amber {
  background: var(--amber);
}

.section-heading {
  margin: 0 auto 58px;
  max-width: 900px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 0.99;
  margin: 0;
}

.section-heading > p:last-child {
  font-size: 18px;
  line-height: 1.62;
  margin: 22px 0 0;
}

.section-heading > p:last-child {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.tension-section {
  padding-bottom: 112px;
  padding-top: 92px;
}

.tension-inner {
  margin: 0 auto;
  max-width: var(--content-width);
}

.tension-heading {
  margin-bottom: 0;
  max-width: 940px;
}

.tension-heading h2 {
  font-size: clamp(64px, 5.6vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.tension-heading .tension-lead {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 24px;
}

.tension-flow {
  border: 2px solid var(--black);
  border-radius: 22px;
  box-shadow: 12px 12px 0 var(--black);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 54px 12px 0 0;
  overflow: hidden;
  padding: 0;
}

.tension-flow li {
  align-content: space-between;
  display: grid;
  min-height: 264px;
  padding: 28px 30px 32px;
}

.tension-flow li + li {
  border-left: 2px solid var(--black);
}

.tension-flow li:last-child {
  background: var(--black);
  border-bottom: 8px solid var(--amber);
  color: var(--white);
}

.tension-flow span {
  font-size: clamp(62px, 5.4vw, 80px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.tension-flow li:last-child span {
  color: var(--amber);
}

.trust-points span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.tension-flow p {
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin: 36px 0 0;
}

.mechanism-section {
  padding-bottom: 116px;
  padding-top: 90px;
}

.mechanism-section .setup-heading {
  margin-bottom: 0;
  max-width: 1040px;
}

.mechanism-section .setup-heading .eyebrow {
  color: var(--amber);
}

.mechanism-section .setup-heading h2 {
  font-size: clamp(56px, 4.7vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.mechanism-section .setup-heading > p:last-child {
  font-size: 19px;
  line-height: 1.55;
  max-width: 780px;
}

.screen-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 86px auto 0;
  max-width: var(--content-width);
  position: relative;
}

.screen-steps::before {
  background: var(--amber);
  content: '';
  height: 4px;
  left: 15%;
  position: absolute;
  right: 15%;
  top: -34px;
}

.screen-steps article {
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--black);
  color: var(--black);
  min-width: 0;
  padding: 46px 28px 32px;
  position: relative;
  text-align: left;
}

.screen-steps article:nth-child(2) {
  margin-bottom: 18px;
  margin-top: -18px;
}

.setup-number {
  align-items: center;
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  font-size: 24px;
  font-weight: 800;
  height: 60px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -66px;
  transform: translateX(-50%);
  width: 60px;
  z-index: 1;
}

.screen-steps .phone-frame {
  border-color: var(--black);
  border-radius: 30px;
  box-shadow: 7px 7px 0 var(--black);
  margin: 0 auto 30px;
  max-width: 216px;
}

.step-number {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.screen-steps h3,
.outcome-columns h3,
.trust-points h3 {
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 12px;
}

.screen-steps h3 {
  font-size: 27px;
  letter-spacing: -0.045em;
}

.screen-steps article > p:last-child {
  font-size: 15px;
  line-height: 1.58;
}

.screen-steps article > p:last-child,
.outcome-columns article > div > p:last-child,
.trust-points p {
  line-height: 1.6;
  margin: 0;
}

.outcome-section,
.check-in-section,
.recovery-section {
  min-height: 830px;
}

.outcome-heading,
.recovery-heading,
.check-in-heading {
  max-width: 980px;
}

.outcome-layout {
  align-items: center;
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  margin: 0 auto;
  max-width: var(--content-width);
}

.outcome-copy {
  max-width: 610px;
}

.outcome-copy > :first-child {
  margin-top: 0;
}

.outcome-list {
  border-top: 2px solid currentColor;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.outcome-list li {
  border-bottom: 2px solid currentColor;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  padding: 17px 2px;
}

.boundary-copy,
.medical-note {
  border: 2px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  margin: 28px 0 0;
  padding: 16px 18px;
}

.medical-note {
  background: var(--amber);
  border-color: var(--white);
  color: var(--black);
}

.screen-choice {
  border-top: 2px solid currentColor;
  margin-top: 28px;
  padding-top: 18px;
}

.screen-choice-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.screen-choice-buttons {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screen-choice button {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--black);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  min-height: 48px;
  padding: 10px 12px;
  transition:
    background 120ms ease,
    box-shadow 120ms ease,
    transform 120ms ease;
}

.screen-choice button[aria-pressed='true'] {
  background: var(--amber);
  box-shadow: 6px 6px 0 var(--black);
  transform: translateY(-2px);
}

.screen-choice-dark button {
  background: var(--black);
  border-color: var(--white);
  color: var(--white);
}

.screen-choice-dark button[aria-pressed='true'] {
  background: var(--amber);
  color: var(--black);
}

.screen-choice-caption {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 12px 0 0;
  min-height: 36px;
}

.screen-pair,
.recovery-visual {
  min-height: 680px;
  position: relative;
}

.screen-pair .phone-frame,
.recovery-visual .phone-frame {
  position: absolute;
  width: 290px;
}

.phone-back {
  left: 4%;
  top: 0;
  transform: rotate(-4deg);
}

.phone-front {
  bottom: 0;
  right: 4%;
  transform: rotate(4deg);
  z-index: 2;
}

[data-screen-pair] .phone-frame {
  transition:
    box-shadow 220ms ease,
    transform 260ms ease;
}

[data-screen-pair] .phone-back.is-muted {
  transform: rotate(-5deg) scale(0.92);
  z-index: 1;
}

[data-screen-pair] .phone-front.is-muted {
  transform: rotate(5deg) scale(0.92);
  z-index: 1;
}

[data-screen-pair] .phone-back.is-focused,
[data-screen-pair] .phone-front.is-focused {
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(0) scale(1.035);
  z-index: 4;
}

.screen-pair-calendar .phone-back {
  width: 300px;
}

.outcome-section .screen-pair {
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 32px;
  box-shadow: 12px 12px 0 var(--black);
  min-height: 720px;
}

.outcome-section .screen-pair .phone-back {
  left: 5%;
  top: 54px;
}

.outcome-section .screen-pair .phone-front {
  bottom: 46px;
  right: 5%;
}

.outcome-section .boundary-copy {
  background: var(--black);
  color: var(--white);
}

.check-in-section .boundary-copy {
  background: var(--black);
  color: var(--white);
}

.two-outcomes .section-heading {
  max-width: 930px;
}

.outcome-columns {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--content-width);
}

.outcome-columns article {
  align-items: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--black);
  display: grid;
  gap: 28px;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 560px;
  padding: 28px;
}

.outcome-columns .phone-frame {
  max-width: 230px;
}

.outcome-columns .eyebrow {
  margin-bottom: 12px;
}

.recovery-layout {
  grid-template-columns: minmax(560px, 1.08fr) minmax(0, 0.92fr);
}

.recovery-visual .phone-frame {
  border-color: var(--white);
}

.trust-section .section-heading {
  max-width: 850px;
}

.trust-layout {
  align-items: center;
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(520px, 1.05fr) minmax(0, 0.95fr);
  margin: 0 auto;
  max-width: var(--content-width);
}

.trust-screens {
  align-items: center;
  display: flex;
  gap: 26px;
}

.trust-screens .phone-frame {
  flex: 1 1 0;
  max-width: 275px;
}

.trust-screens .phone-frame:nth-child(2) {
  transform: translateY(42px);
}

.trust-points article {
  border-top: 2px solid var(--black);
  padding: 24px 0 26px;
}

.trust-points article:last-child {
  border-bottom: 2px solid var(--black);
}

.trust-points h3 {
  margin-top: 20px;
}

.availability-section {
  padding-bottom: 76px;
  padding-top: 76px;
  text-align: center;
}

.availability-heading {
  margin-bottom: 0;
  max-width: 820px;
}

.availability-heading .eyebrow {
  color: var(--amber);
}

.availability-section .button {
  margin-top: 28px;
}

.faq-list {
  border-top: 2px solid var(--black);
  margin: 0 auto;
  max-width: 940px;
}

.faq-list details {
  border-bottom: 2px solid var(--black);
}

.faq-list summary {
  align-items: center;
  display: flex;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  min-height: 76px;
  padding: 18px 4px;
}

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

.faq-list summary::after {
  align-items: center;
  background: var(--amber);
  border: 2px solid var(--black);
  border-radius: 50%;
  content: '+';
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  margin-left: 24px;
  width: 38px;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details[open] summary {
  border-bottom: 2px solid var(--black);
}

.faq-list details > p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 800px;
  padding: 22px 4px 28px;
}

.faq-list a {
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-heading {
  max-width: 940px;
}

.final-cta .launch-form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: left;
}

.final-cta h2 {
  font-size: clamp(40px, 4.2vw, 62px);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  padding: 72px 30px 34px;
}

.site-footer .brand img {
  background: var(--white);
}

.footer-brand > p {
  line-height: 1.5;
  margin: 18px 0 10px;
}

.site-footer nav {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer strong {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 2px solid var(--white);
  display: flex;
  gap: 32px;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.has-reveal [data-reveal] {
  transform: translateY(24px);
  transition: transform 420ms ease var(--reveal-delay, 0ms);
}

.has-reveal [data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .site-header {
    gap: 12px;
    grid-template-columns: minmax(140px, 1fr) auto minmax(184px, 1fr);
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav .nav-link {
    padding-left: 9px;
    padding-right: 9px;
  }

  .header-cta {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero {
    gap: 36px;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    width: calc(100% - 28px);
  }

  .demo-stage {
    min-height: 600px;
  }

  .demo-phone-primary {
    width: 235px;
  }

  .demo-phone-secondary {
    width: 190px;
  }

  .outcome-section,
  .check-in-section,
  .recovery-section,
  .outcome-layout {
    gap: 48px;
  }

  .outcome-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  }

  .recovery-layout {
    grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr);
  }

  .outcome-columns article {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .trust-layout {
    gap: 48px;
    grid-template-columns: minmax(460px, 1fr) minmax(0, 1fr);
  }
}

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

  .site-header {
    --header-gutter: 18px;
    gap: 16px;
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 0 var(--header-gutter);
  }

  .header-cta {
    display: none;
  }

  .site-header .brand {
    font-size: 22px;
    gap: 10px;
  }

  .site-header .brand-mark {
    border-radius: 12px;
    height: 42px;
    width: 42px;
  }

  .site-header .brand img {
    height: 39px;
    width: 39px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: var(--black);
    color: var(--white);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    left: calc(-1 * var(--header-gutter));
    max-height: calc(100dvh - 78px);
    min-height: min(482px, calc(100dvh - 78px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px 18px max(28px, env(safe-area-inset-bottom));
    position: absolute;
    right: calc(-1 * var(--header-gutter));
    top: 100%;
  }

  .js .site-nav {
    pointer-events: none;
    transform: translateY(-12px) scaleY(0.98);
    transform-origin: top center;
    transition:
      transform 160ms ease,
      visibility 0s linear 160ms;
    visibility: hidden;
  }

  .js .site-nav.is-open {
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition:
      transform 160ms ease,
      visibility 0s linear 0s;
    visibility: visible;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .site-nav .nav-link {
    align-items: center;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    display: flex;
    font-size: 21px;
    min-height: 62px;
    padding: 0 16px;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link[aria-current='location'] {
    background: var(--amber);
    border: 2px solid var(--amber);
    color: var(--black);
  }

  .site-nav a:focus-visible {
    outline-color: var(--white);
  }

  .site-nav .nav-cta {
    align-self: end;
    border-color: var(--white);
    box-shadow: 4px 4px 0 var(--white);
    color: var(--black);
    display: inline-flex;
    margin-top: 24px;
    min-height: 58px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 68px 30px 82px;
    width: 100%;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-demo {
    margin: 0 auto;
    max-width: 720px;
    width: 100%;
  }

  .demo-stage {
    min-height: 680px;
  }

  .demo-phone-primary {
    left: 14%;
    width: 270px;
  }

  .demo-phone-secondary {
    right: 4%;
    width: 220px;
  }

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

  .tension-flow li:nth-child(3) {
    border-left: 0;
  }

  .tension-flow li:nth-child(n + 3) {
    border-top: 2px solid var(--black);
  }

  .outcome-layout {
    grid-template-columns: 1fr;
  }

  .outcome-section .screen-pair,
  .check-in-section .screen-pair {
    grid-row: 1;
  }

  .outcome-section .outcome-copy,
  .check-in-section .outcome-copy {
    grid-row: 2;
  }

  .outcome-copy {
    max-width: 780px;
  }

  .screen-pair,
  .recovery-visual {
    margin: 0 auto;
    max-width: 650px;
    width: 100%;
  }

  .outcome-columns {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .outcome-columns article {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-screens {
    justify-content: center;
  }

  .trust-points {
    margin: 24px auto 0;
    max-width: 720px;
    width: 100%;
  }

  .final-cta .launch-form {
    max-width: 720px;
  }

  .site-footer {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    gap: 42px;
    padding: 50px 18px 64px;
  }

  h1 {
    font-size: clamp(44px, 13.6vw, 58px);
    line-height: 0.99;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .launch-form-row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .launch-form-row input,
  .launch-form-row button {
    border: 2px solid var(--black);
    border-radius: 11px;
    min-height: 54px;
  }

  .hero-boundaries {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-stage {
    border-radius: 24px;
    min-height: 520px;
  }

  .demo-kicker {
    left: 14px;
    top: 14px;
    font-size: 10px;
  }

  .demo-phone-primary {
    bottom: -38px;
    left: 5%;
    width: 195px;
  }

  .demo-phone-secondary {
    right: 3%;
    top: 68px;
    width: 165px;
  }

  .demo-caption {
    bottom: 12px;
    font-size: 11px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .demo-controls {
    grid-template-columns: 1fr;
  }

  .demo-controls button {
    min-height: 48px;
  }

  .section {
    padding: 82px 18px;
  }

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

  .section-heading h2 {
    font-size: clamp(39px, 11vw, 55px);
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .tension-section {
    padding-bottom: 82px;
    padding-top: 74px;
  }

  .tension-heading h2 {
    font-size: clamp(43px, 12.4vw, 52px);
  }

  .tension-heading .tension-lead {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 22px;
  }

  .tension-flow {
    border-radius: 16px;
    box-shadow: 8px 8px 0 var(--black);
    grid-template-columns: 1fr;
    margin: 42px 8px 0 0;
  }

  .tension-flow li,
  .tension-flow li:nth-child(3) {
    align-items: center;
    border-left: 0;
    border-right: 0;
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 142px;
    padding: 22px 20px;
  }

  .tension-flow li + li {
    border-top: 2px solid var(--black);
  }

  .tension-flow li:last-child {
    min-height: 182px;
  }

  .tension-flow span {
    font-size: 55px;
  }

  .tension-flow p {
    font-size: 21px;
    line-height: 1.2;
    margin: 0;
  }

  .mechanism-section {
    padding-bottom: 84px;
    padding-top: 72px;
  }

  .mechanism-section .setup-heading h2 {
    font-size: clamp(41px, 11.5vw, 50px);
  }

  .mechanism-section .setup-heading > p:last-child {
    font-size: 17px;
  }

  .screen-steps {
    gap: 28px;
    grid-template-columns: 1fr;
    margin: 56px 0 0 46px;
  }

  .screen-steps::before {
    bottom: 44px;
    height: auto;
    left: -28px;
    right: auto;
    top: 44px;
    width: 4px;
  }

  .screen-steps article,
  .screen-steps article:nth-child(2) {
    margin: 0;
    padding: 30px 22px 28px;
  }

  .setup-number {
    font-size: 20px;
    height: 52px;
    left: -50px;
    top: 28px;
    transform: none;
    width: 52px;
  }

  .screen-steps .phone-frame {
    max-width: 220px;
  }

  .outcome-section,
  .check-in-section,
  .recovery-section,
  .outcome-layout {
    gap: 50px;
  }

  .screen-pair,
  .recovery-visual {
    min-height: 570px;
  }

  .outcome-section .screen-pair {
    min-height: 600px;
    width: calc(100% - 12px);
  }

  .outcome-section .screen-pair .phone-back {
    left: 4%;
    top: 38px;
  }

  .outcome-section .screen-pair .phone-front {
    bottom: 34px;
    right: 4%;
  }

  .screen-pair .phone-frame,
  .recovery-visual .phone-frame {
    width: 235px;
  }

  .screen-pair-calendar .phone-back {
    width: 240px;
  }

  .phone-back {
    left: 0;
  }

  .phone-front {
    right: 0;
  }

  .outcome-columns article {
    gap: 26px;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .outcome-columns .phone-frame {
    margin: 0 auto;
    max-width: 240px;
  }

  .trust-screens {
    gap: 12px;
  }

  .trust-screens .phone-frame {
    max-width: 225px;
  }

  .trust-screens .phone-frame:nth-child(2) {
    transform: translateY(24px);
  }

  .faq-list summary {
    font-size: 20px;
    min-height: 70px;
  }

  .faq-list summary::after {
    height: 34px;
    width: 34px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 58px 18px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .screen-steps {
    margin-left: 42px;
  }

  .screen-steps::before {
    left: -25px;
  }

  .setup-number {
    height: 48px;
    left: -44px;
    width: 48px;
  }

  .screen-steps article,
  .screen-steps article:nth-child(2) {
    padding-left: 18px;
    padding-right: 18px;
  }

  .screen-steps .phone-frame {
    max-width: 205px;
  }

  .screen-steps h3 {
    font-size: 25px;
  }

  .demo-stage {
    min-height: 520px;
  }

  .demo-phone-primary {
    bottom: -38px;
    left: 5%;
    width: 195px;
  }

  .demo-phone-secondary {
    right: 3%;
    top: 68px;
    width: 165px;
  }

  .screen-pair,
  .recovery-visual {
    min-height: 500px;
  }

  .screen-pair .phone-frame,
  .recovery-visual .phone-frame,
  .screen-pair-calendar .phone-back {
    width: 205px;
  }

  .final-cta-copy {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }
}

@media (max-width: 319px) {
  .site-header {
    --header-gutter: 10px;
    gap: 8px;
  }

  .site-header .brand {
    font-size: 21px;
    gap: 7px;
  }

  .site-header .brand-mark {
    height: 40px;
    width: 40px;
  }

  .site-header .brand img {
    height: 37px;
    width: 37px;
  }

  .menu-toggle {
    gap: 7px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 44px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .tension-heading h2 {
    font-size: 39px;
  }

  .tension-flow li,
  .tension-flow li:nth-child(3) {
    grid-template-columns: 62px minmax(0, 1fr);
    padding-left: 16px;
    padding-right: 16px;
  }

  .tension-flow span {
    font-size: 47px;
  }

  .tension-flow p {
    font-size: 19px;
  }

  .mechanism-section .setup-heading h2 {
    font-size: 38px;
  }

  .screen-steps {
    margin-left: 36px;
  }

  .screen-steps::before {
    left: -22px;
  }

  .setup-number {
    height: 42px;
    left: -38px;
    width: 42px;
  }

  .screen-steps .phone-frame {
    max-width: 180px;
  }

  .outcome-section .screen-pair {
    min-height: 500px;
  }

  .outcome-section .screen-pair .phone-frame {
    width: 190px;
  }

  .outcome-section .screen-pair-calendar .phone-back {
    width: 195px;
  }

  .phone-back,
  .phone-front {
    transform: none;
  }

  .screen-choice-buttons {
    grid-template-columns: 1fr;
  }

  [data-screen-pair] .phone-back.is-muted,
  [data-screen-pair] .phone-front.is-muted,
  [data-screen-pair] .phone-back.is-focused,
  [data-screen-pair] .phone-front.is-focused {
    transform: none;
  }
}

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

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