:root {
  --sand-50: #fbf8f2;
  --sand-100: #f4ede3;
  --sand-200: #e9dccb;
  --sand-300: #d9c4aa;
  --rose-100: #eedbd4;
  --rose-300: #d6aaa0;
  --rose-500: #a96159;
  --rose-600: #8f504a;
  --green-100: #e3e9df;
  --green-300: #afbea7;
  --green-600: #5e705a;
  --blue-100: #e3eaed;
  --blue-400: #8ca2ab;
  --ink: #3f3a35;
  --ink-soft: #69615a;
  --white: #fffdfa;
  --line: rgba(75, 65, 57, 0.13);
  --shadow: 0 24px 70px rgba(79, 61, 51, 0.11);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand-50);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-600);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: min(1200px, calc(100% - 48px));
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.7);
  box-shadow: inset 0 0 0 1px rgba(94, 112, 90, 0.15);
}

.brand-mark svg {
  width: 29px;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-mark svg path:nth-child(2) {
  fill: var(--green-100);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(63, 58, 53, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.55);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 760px;
  padding: 150px max(24px, calc((100vw - 1200px) / 2)) 95px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  background:
    radial-gradient(circle at 87% 13%, rgba(227, 234, 237, 0.8), transparent 30%),
    radial-gradient(circle at 5% 82%, rgba(238, 219, 212, 0.6), transparent 30%),
    linear-gradient(130deg, #f6efe5 0%, #f1e9de 48%, #e6ece8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--rose-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--rose-600);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
.adjust-link:focus-visible,
.dialog-close:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(140, 162, 171, 0.52);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--rose-600);
  box-shadow: 0 12px 30px rgba(143, 80, 74, 0.22);
}

.button-primary:hover {
  background: #7f4641;
  box-shadow: 0 15px 34px rgba(143, 80, 74, 0.28);
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  box-shadow: none;
}

.text-link {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.trust-list {
  margin: 31px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  list-style: none;
}

.trust-list span {
  margin-right: 5px;
  color: var(--green-600);
}

.hero-visual {
  min-height: 510px;
  display: grid;
  place-items: center;
}

.sun-orb {
  position: absolute;
  top: 0;
  right: 3%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.7);
  box-shadow: 0 0 90px rgba(255, 253, 250, 0.92);
}

.route-card {
  position: relative;
  z-index: 1;
  width: min(100%, 535px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  transform: rotate(1.2deg);
}

.route-card-top {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.status-dot {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-600);
  background: var(--green-100);
  font-size: 0.7rem;
}

.status-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green-600);
}

.route-map {
  position: relative;
  height: 290px;
  background: linear-gradient(165deg, rgba(227, 233, 223, 0.5), rgba(244, 237, 227, 0.15));
}

.route-map svg {
  position: absolute;
  inset: 8px 12px 0;
  width: calc(100% - 24px);
  height: calc(100% - 8px);
  overflow: visible;
}

.map-path {
  fill: none;
  stroke: var(--rose-500);
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  stroke-width: 3.2;
}

.map-path.shadow {
  stroke: rgba(169, 97, 89, 0.14);
  stroke-dasharray: 0;
  stroke-width: 17;
}

.point {
  fill: var(--white);
  stroke: var(--rose-500);
  stroke-width: 4;
}

.point.start {
  fill: var(--rose-500);
}

.point.finish {
  fill: var(--green-600);
  stroke: var(--white);
  filter: drop-shadow(0 5px 8px rgba(94, 112, 90, 0.3));
}

.map-label {
  position: absolute;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 253, 250, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-style: italic;
}

.label-one { left: 17%; top: 37%; }
.label-two { left: 49%; top: 68%; }
.label-three { right: 7%; top: 15%; }

.route-note {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.88);
}

.note-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-600);
  background: var(--rose-100);
}

.route-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.route-note strong {
  color: var(--ink);
}

.hand-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8px;
  margin: 0;
  color: var(--rose-600);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 0.92rem;
  transform: rotate(-4deg);
}

.method {
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

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

.section-heading h2,
.journey-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.journey-intro > p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--ink-soft);
}

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

.method-step {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sand-50);
}

.method-step.featured {
  background: var(--green-100);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(63, 58, 53, 0.3);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--rose-600);
  background: var(--rose-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.featured .step-icon {
  color: var(--green-600);
  background: rgba(255, 253, 250, 0.7);
}

.method-step h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.method-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.areas-strip {
  margin-top: 26px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  background: linear-gradient(90deg, var(--rose-100), var(--blue-100));
  font-size: 0.86rem;
}

.areas-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.areas-strip strong {
  color: var(--green-600);
}

.area-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--rose-500);
}

.food-dot { background: #b98e62; }
.sleep-dot { background: var(--blue-400); }
.goals-dot { background: var(--green-600); }

.journey {
  padding: 110px max(24px, calc((100vw - 1120px) / 2)) 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(227, 234, 237, 0.78), transparent 30%),
    linear-gradient(155deg, var(--sand-100), #efe5d9 65%, #e9ece5);
}

.journey-intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.privacy-note {
  max-width: 580px;
  margin: 25px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(94, 112, 90, 0.14);
  border-radius: 12px;
  color: var(--green-600);
  background: rgba(255, 253, 250, 0.45);
  text-align: left;
}

.privacy-note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.quiz-shell {
  width: min(100%, 840px);
  min-height: 600px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow);
}

.quiz-progress {
  margin-bottom: 44px;
}

.progress-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.progress-track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--sand-200);
}

.progress-track span {
  width: 33.333%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--rose-500);
  transition: width 350ms ease;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: none;
  border: 0;
  animation: slide-in 300ms ease both;
}

.form-step.active {
  display: block;
}

.form-step legend {
  width: 100%;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  line-height: 1.2;
}

.question-help {
  margin: 9px 0 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.choice-card {
  position: relative;
  min-height: 154px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--sand-50);
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, background 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 97, 89, 0.35);
}

.choice-card:has(input:checked) {
  border-color: var(--rose-500);
  background: var(--rose-100);
  box-shadow: inset 0 0 0 1px var(--rose-500);
}

.choice-card input,
.pill-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card:has(input:focus-visible),
.pill-choice:has(input:focus-visible) {
  outline: 3px solid rgba(140, 162, 171, 0.52);
  outline-offset: 3px;
}

.choice-symbol {
  width: 38px;
  height: 38px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--rose-600);
  background: var(--rose-100);
  font-size: 1.2rem;
}

.choice-card:has(input:checked) .choice-symbol {
  background: rgba(255, 253, 250, 0.72);
}

.food-symbol { color: #956b45; background: #f0e3d2; }
.sleep-symbol { color: #617984; background: var(--blue-100); }
.goals-symbol { color: var(--green-600); background: var(--green-100); }

.choice-card strong {
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.choice-card small {
  grid-column: 2;
  color: var(--ink-soft);
  line-height: 1.45;
}

.choice-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose-500);
  font-size: 0.72rem;
}

.choice-card:has(input:checked) .choice-check {
  display: grid;
}

.field-stack {
  display: grid;
  gap: 22px;
}

.select-field,
.text-field,
.name-field {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

select,
textarea,
input[type="text"] {
  width: 100%;
  border: 1px solid rgba(63, 58, 53, 0.2);
  border-radius: 13px;
  color: var(--ink);
  background: var(--sand-50);
}

select,
input[type="text"] {
  min-height: 54px;
  padding: 0 15px;
}

textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.text-field {
  position: relative;
}

.text-field > small {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: var(--ink-soft);
  font-weight: 400;
}

.support-options {
  margin-bottom: 25px;
  display: grid;
  gap: 10px;
}

.pill-choice {
  position: relative;
  min-height: 54px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--sand-50);
  cursor: pointer;
}

.pill-choice::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(63, 58, 53, 0.35);
  border-radius: 50%;
}

.pill-choice:has(input:checked) {
  border-color: var(--green-600);
  background: var(--green-100);
}

.pill-choice:has(input:checked)::before {
  border: 5px solid var(--white);
  background: var(--green-600);
  box-shadow: 0 0 0 1px var(--green-600);
}

.name-field small {
  color: var(--ink-soft);
  font-weight: 400;
}

.field-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--rose-600);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-navigation {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.form-navigation .button-quiet {
  margin-right: auto;
}

.hidden {
  display: none !important;
}

.route-result[hidden] {
  display: none;
}

.route-result {
  animation: rise 500ms ease both;
}

.quiz-shell:has(.route-result:not([hidden])) .quiz-progress,
.quiz-shell:has(.route-result:not([hidden])) form {
  display: none;
}

.result-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-600);
  background: var(--green-100);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-heading h3 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.result-heading p {
  margin: 0 0 28px;
  color: var(--ink-soft);
}

.result-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-area {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--sand-50);
}

.result-area span {
  display: block;
  margin-bottom: 7px;
  color: var(--rose-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-area p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.first-step {
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--rose-500);
  border-radius: 4px 13px 13px 4px;
  background: var(--rose-100);
}

.first-step span {
  color: var(--rose-600);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-step p {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}

.weekly-support {
  margin-top: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 13px;
  background: var(--blue-100);
}

.weekly-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-400);
}

.weekly-support p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.weekly-support strong {
  color: var(--ink);
}

.result-actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.adjust-link {
  margin-left: auto;
  padding: 8px 0;
  border: 0;
  color: var(--ink-soft);
  background: none;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.result-disclaimer {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.site-footer {
  margin-top: 90px;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1.7fr) auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(63, 58, 53, 0.14);
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

.footer-brand span {
  color: var(--rose-500);
}

.contact-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 36px;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-dialog::backdrop {
  background: rgba(63, 58, 53, 0.48);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--sand-100);
  font-size: 1.35rem;
  cursor: pointer;
}

.dialog-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-600);
  background: var(--rose-100);
}

.contact-dialog h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.contact-dialog > p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dialog-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--sand-100);
  font-size: 0.82rem;
  white-space: pre-line;
}

.contact-dialog small {
  margin-top: 12px;
  display: block;
  color: var(--ink-soft);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 10px 30px rgba(63, 58, 53, 0.2);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  animation: rise 700ms ease both;
}

.hero-visual { animation-delay: 130ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero-visual {
    min-height: 470px;
  }

  .route-card {
    max-width: 580px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: auto;
  }

  .step-icon {
    margin-bottom: 25px;
  }

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

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 32px);
    height: 78px;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 116px 20px 72px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.6rem);
  }

  .hero-lead {
    font-size: 0.97rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .trust-list {
    gap: 9px 14px;
    font-size: 0.75rem;
  }

  .hero-visual {
    min-height: 385px;
  }

  .sun-orb {
    width: 150px;
    height: 150px;
  }

  .route-card {
    border-radius: 23px;
    transform: none;
  }

  .route-card-top {
    padding: 17px;
  }

  .route-map {
    height: 220px;
  }

  .route-note {
    padding: 16px;
  }

  .hand-note {
    right: 5px;
    bottom: -2px;
  }

  .method,
  .journey {
    padding-left: 18px;
    padding-right: 18px;
  }

  .method {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .journey {
    padding-top: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading > p:last-child {
    margin: 0;
  }

  .section-heading h2,
  .journey-intro h2 {
    font-size: 2.2rem;
  }

  .method-step {
    padding: 24px;
  }

  .areas-strip {
    justify-content: flex-start;
    gap: 11px 18px;
  }

  .journey-intro {
    text-align: left;
  }

  .journey-intro > p {
    margin: 0;
  }

  .privacy-note {
    margin-left: 0;
  }

  .quiz-shell {
    min-height: 650px;
    padding: 25px 18px;
    border-radius: 23px;
  }

  .quiz-progress {
    margin-bottom: 30px;
  }

  .choice-grid,
  .result-areas {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 126px;
  }

  .form-navigation {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-navigation .button-quiet {
    width: 100%;
    margin: 0;
  }

  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .adjust-link {
    margin: 0;
  }

  .weekly-support {
    align-items: flex-start;
  }

  .site-footer {
    margin-top: 65px;
  }

  .contact-dialog {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
