@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-italic-latin-ext.woff2") format("woff2");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cream: #faf6f1;
  --cream-deep: #f2eadf;
  --sand: #e8dcc4;
  --gold: #d4af7a;
  --gold-deep: #9a7048;
  --blush: #f4d7d7;
  --mint: #c8e6c9;
  --lavender: #e1d5e7;
  --sky: #b3e5fc;
  --beige: #d7ccc8;
  --warm-gray: #bcaaa4;
  --ink: #352d36;
  --ink-soft: #625760;
  --plum: #55405f;
  --plum-deep: #3f3046;
  --white: #fffdfa;
  --line: rgba(85, 64, 95, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
  --radius: 28px;
  --shadow: 0 24px 70px rgba(63, 48, 70, 0.13);
  --ease: cubic-bezier(.2, .72, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

::selection { background: var(--lavender); color: var(--plum-deep); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.wrap { width: var(--wrap); margin-inline: auto; }
.section-pad { position: relative; padding: clamp(96px, 11vw, 168px) 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 12px 18px;
  background: var(--plum-deep);
  color: white;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 92px;
  padding: 0 clamp(22px, 4.2vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 45, 54, .34);
  border-radius: 50%;
  color: var(--gold-deep);
}

.brand b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(53, 45, 54, .28);
  border-radius: 999px;
  background: rgba(250, 246, 241, .45);
  backdrop-filter: blur(14px);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background .3s ease, transform .3s var(--ease), border-color .3s ease;
}

.header-cta:hover { background: var(--white); border-color: var(--gold); transform: translateY(-2px); }

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

.hero-media, .hero-veil {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("assets/hero-dawn.webp") 66% center / cover no-repeat;
  transform: scale(1.035);
  animation: hero-image 1.8s var(--ease) both;
}

.hero-veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(250,246,241,.99) 0%, rgba(250,246,241,.94) 33%, rgba(250,246,241,.43) 58%, rgba(250,246,241,.08) 84%),
    linear-gradient(0deg, rgba(53,45,54,.18) 0%, transparent 26%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to top, rgba(53,45,54,.12), transparent);
  pointer-events: none;
}

.hero-inner {
  width: var(--wrap);
  min-height: max(820px, 100svh);
  margin: 0 auto;
  padding: 128px 0 72px;
  display: flex;
  align-items: center;
}

.hero-copy { width: min(780px, 67%); }

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--plum);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span { width: 26px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.78); }
.eyebrow.dark { color: var(--plum); }

.kicker {
  margin: 0 0 10px;
  font-family: var(--display);
  color: var(--gold-deep);
  font-size: clamp(24px, 2.2vw, 34px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .015em;
}

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

h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .95;
}

h1 { max-width: 760px; font-size: clamp(48px, 5.6vw, 86px); }
h2 { font-size: clamp(48px, 5vw, 76px); }
h1 em, h2 em { color: var(--plum); font-weight: 500; }

.hero-lead {
  max-width: 630px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

.lead-form { position: relative; }

.hero-form {
  width: min(760px, 100%);
  margin-top: 32px;
  padding: 12px;
  border: 1px solid rgba(85,64,95,.16);
  border-radius: 20px;
  background: rgba(255,253,250,.76);
  box-shadow: 0 18px 55px rgba(85,64,95,.10);
  backdrop-filter: blur(18px);
}

.field-row {
  display: grid;
  grid-template-columns: minmax(130px,.76fr) minmax(190px,1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.field {
  position: relative;
  min-width: 0;
}

.field label {
  position: absolute;
  z-index: 1;
  left: 17px;
  top: 8px;
  color: var(--plum);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 62px;
  padding: 22px 17px 6px;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  background: rgba(250,246,241,.82);
  color: var(--ink);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input::placeholder { color: #9d9099; }
.field input:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(212,175,122,.18); }
.field input[aria-invalid="true"] { border-color: #a45962; box-shadow: 0 0 0 3px rgba(164,89,98,.12); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.25;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button-primary { background: var(--plum); color: white; box-shadow: 0 12px 28px rgba(85,64,95,.22); }
.button-primary:hover, .button-dark:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(63,48,70,.25); }
.button-primary:disabled, .button-dark:disabled { opacity: .62; cursor: wait; transform: none; }
.button-dark { background: var(--plum-deep); color: white; }
.button-wide { width: 100%; }

.consent-row { padding: 10px 4px 1px; }
.check-label { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 10px; line-height: 1.45; cursor: pointer; }
.check-label input { flex: 0 0 auto; width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--plum); }
.check-label a { text-underline-offset: 2px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { min-height: 0; margin: 4px 4px 0; color: #874d56; font-size: 11px; font-weight: 600; }
.form-status:empty { display: none; }

.hero-trust {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .02em;
}

.hero-trust span { padding: 0 18px; border-left: 1px solid rgba(53,45,54,.18); }
.hero-trust span:first-child { padding-left: 0; border: 0; }
.hero-trust b { color: var(--ink); font-weight: 700; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4.2vw, 72px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue i { width: 40px; height: 1px; position: relative; background: rgba(255,255,255,.7); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-100%); animation: cue 2.1s ease-in-out infinite; }

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(212,175,122,.33);
  border-radius: 52% 48% 47% 53% / 48% 54% 46% 52%;
  pointer-events: none;
}
.orbit-one { width: 48vw; height: 48vw; right: -18vw; top: -17vw; animation: orbit 18s linear infinite; }
.orbit-two { width: 28vw; height: 28vw; right: 9vw; bottom: -18vw; animation: orbit 22s linear infinite reverse; }

.section-number {
  position: absolute;
  top: 72px;
  right: clamp(24px, 5vw, 80px);
  color: rgba(85,64,95,.12);
  font-family: var(--display);
  font-size: 104px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.section-number.light { color: rgba(255,255,255,.12); }

.recognition { background: var(--cream); overflow: hidden; }
.recognition::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -240px;
  top: 36px;
  border: 1px solid rgba(212,175,122,.3);
  border-radius: 50%;
}

.recognition-grid { display: grid; grid-template-columns: minmax(0,1.18fr) minmax(320px,.82fr); gap: clamp(60px, 9vw, 130px); align-items: start; }
.recognition-heading h2 { max-width: 720px; }
.recognition-copy { padding-top: 72px; color: var(--ink-soft); font-size: 17px; }
.recognition-copy p { margin: 0 0 24px; }
.recognition-copy .pull-quote {
  margin: 32px 0;
  padding: 26px 0 26px 28px;
  border-left: 1px solid var(--gold);
  color: var(--plum);
  font-family: var(--display);
  font-size: 29px;
  font-style: italic;
  line-height: 1.25;
}

.facts { border-block: 1px solid var(--line); background: rgba(232,220,196,.28); }
.facts-row { min-height: 170px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.fact { min-height: 86px; display: flex; align-items: center; justify-content: center; gap: 15px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: 0; }
.fact strong { color: var(--plum); font-family: var(--display); font-size: 58px; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.fact span { color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }

.journey { background: var(--white); }
.journey-head { max-width: 930px; margin-bottom: 86px; }
.journey-head > p:last-child { max-width: 600px; margin: 28px 0 0; color: var(--ink-soft); font-size: 17px; }
.journey-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: clamp(55px, 8vw, 120px); }
.journey-index { position: sticky; top: 126px; align-self: start; }
.journey-index > p { margin: 0 0 20px; color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.journey-index ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.journey-index li { border-bottom: 1px solid var(--line); }
.journey-index a { display: flex; gap: 18px; padding: 17px 4px; color: var(--warm-gray); text-decoration: none; font-family: var(--display); font-size: 21px; transition: color .25s ease, padding .25s var(--ease); }
.journey-index a span { font-family: var(--body); font-size: 9px; font-weight: 700; padding-top: 7px; }
.journey-index li.active a, .journey-index a:hover { color: var(--plum); padding-left: 10px; }
.journey-stages { counter-reset: stages; }
.stage { position: relative; min-height: 250px; padding: 0 0 64px 110px; border-bottom: 1px solid var(--line); margin-bottom: 64px; }
.stage:last-child { margin-bottom: 0; }
.stage::before { counter-increment: stages; content: "0" counter(stages); position: absolute; left: 0; top: -18px; color: var(--lavender); font-family: var(--display); font-size: 70px; font-style: italic; line-height: 1; }
.stage-kicker { color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.stage h3 { margin: 8px 0 14px; font-family: var(--display); font-size: clamp(37px, 4vw, 52px); font-weight: 500; line-height: 1.05; }
.stage p { max-width: 740px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.stage small { display: block; margin-top: 24px; color: var(--plum); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.teacher { overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, #f7eff1 100%); }
.teacher::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -220px; border: 1px solid rgba(85,64,95,.15); border-radius: 50% 45% 52% 48%; }
.teacher-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(350px,.95fr); gap: clamp(60px,8vw,120px); align-items: center; }
.teacher-visual { position: relative; margin: 0; }
.teacher-visual img { width: 100%; border-radius: 46% 46% 22px 22px / 13% 13% 22px 22px; box-shadow: var(--shadow); }
.teacher-visual::before { content: ""; position: absolute; inset: -18px 30px 18px -18px; z-index: -1; border: 1px solid var(--gold); border-radius: 46% 46% 22px 22px / 13% 13% 22px 22px; }
.teacher-visual figcaption { margin-top: 17px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.teacher-copy h2 { font-size: clamp(45px, 4.6vw, 70px); }
.teacher-copy > p:not(.eyebrow) { margin: 27px 0 0; color: var(--ink-soft); font-size: 17px; }
.teacher-notes { margin: 34px 0; border-top: 1px solid var(--line); }
.teacher-notes p { margin: 0; padding: 14px 0; display: grid; grid-template-columns: 34px 94px 1fr; gap: 9px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.teacher-notes .note-number { color: var(--gold-deep); font-size: 9px; font-weight: 700; }
.teacher-notes .note-copy { min-width: 0; color: var(--ink-soft); font-size: inherit; font-weight: 400; }
.teacher-notes b { color: var(--ink); }
.teacher-copy blockquote { margin: 36px 0 0; padding: 0 0 0 24px; border-left: 1px solid var(--gold); color: var(--plum); font-family: var(--display); font-size: 25px; font-style: italic; line-height: 1.35; }

.app-story { overflow: hidden; background: var(--plum-deep); color: white; }
.app-story::before { content: ""; position: absolute; width: 720px; height: 720px; left: -250px; top: -300px; border: 1px solid rgba(225,213,231,.18); border-radius: 50%; }
.app-intro { max-width: 950px; text-align: center; }
.app-icon { width: 72px; height: 72px; margin: 0 auto 25px; border: 1px solid rgba(255,255,255,.22); border-radius: 19px; box-shadow: 0 15px 38px rgba(20,14,23,.25); }
.app-intro .eyebrow { justify-content: center; }
.app-intro h2 em { color: var(--blush); }
.app-intro > p:last-child { max-width: 660px; margin: 28px auto 0; color: rgba(255,255,255,.68); font-size: 17px; }
.app-gallery { width: min(1380px, calc(100% - 44px)); min-height: 740px; margin: 80px auto 110px; position: relative; }
.app-shot { position: absolute; margin: 0; }
.app-shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; box-shadow: 0 30px 80px rgba(20,14,23,.34); }
.app-shot figcaption { margin-top: 14px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.shot-one { left: 3%; top: 8%; width: 48%; height: 58%; z-index: 2; }
.shot-two { left: 43%; top: 21%; width: 24%; height: 70%; z-index: 3; }
.shot-three { right: 1%; top: 3%; width: 42%; height: 52%; z-index: 1; }
.app-details { display: grid; grid-template-columns: minmax(0,.82fr) minmax(420px,1.18fr); gap: clamp(60px,9vw,130px); align-items: start; }
.mini-label { color: var(--blush); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.app-details-heading h3 { margin: 12px 0 0; font-family: var(--display); font-size: clamp(40px, 4vw, 58px); font-weight: 500; line-height: 1.05; }
.app-list { border-top: 1px solid rgba(255,255,255,.2); }
.app-list p { margin: 0; padding: 17px 5px; display: flex; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.78); font-size: 14px; }
.app-list p span { color: var(--blush); font-size: 9px; font-weight: 700; padding-top: 4px; }

.fit { background: var(--cream); }
.fit-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); gap: clamp(70px,10vw,150px); align-items: center; }
.fit-copy h2 { max-width: 720px; }
.editorial-list { margin: 45px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.editorial-list li { position: relative; padding: 17px 0 17px 34px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 16px; }
.editorial-list li::before { content: "✦"; position: absolute; left: 2px; top: 16px; color: var(--gold-deep); font-size: 11px; }
.care-note { position: relative; padding: 54px 44px 48px; border: 1px solid rgba(85,64,95,.15); border-radius: 48% 48% 24px 24px / 14% 14% 24px 24px; background: linear-gradient(155deg, rgba(225,213,231,.72), rgba(244,215,215,.48)); }
.care-symbol { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(85,64,95,.22); border-radius: 50%; color: var(--plum); }
.care-note h3 { margin: 0 0 20px; font-family: var(--display); font-size: 37px; font-weight: 500; }
.care-note p { margin: 0 0 18px; color: var(--ink-soft); font-size: 13px; }

.offer { background: var(--white); }
.offer-head { max-width: 980px; text-align: center; }
.offer-head .eyebrow { justify-content: center; }
.offer-head > p:last-child { margin: 25px auto 0; color: var(--ink-soft); }
.price-timeline { position: relative; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 75px; border-block: 1px solid var(--line); }
.price-timeline::before { content: ""; position: absolute; left: 16.5%; right: 16.5%; top: -14px; height: 1px; background: var(--gold); }
.price-step { min-height: 310px; padding: 50px 34px 36px; border-left: 1px solid var(--line); text-align: center; }
.price-step:first-child { border-left: 0; }
.price-step p { margin: 0; color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.price-step strong { display: block; margin: 14px 0 0; color: var(--plum); font-family: var(--display); font-size: 72px; font-weight: 500; line-height: 1; }
.price-step span { display: block; margin: 13px 0 20px; color: var(--ink); font-size: 12px; font-weight: 700; }
.price-step small { color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.price-step.featured { background: linear-gradient(180deg, rgba(244,215,215,.56), rgba(250,246,241,.28)); }
.price-step.featured::before { content: "Prima scelta"; display: inline-block; margin-bottom: 16px; padding: 4px 9px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-deep); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.quiet-cta { margin-top: 45px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.quiet-cta p { color: var(--ink-soft); font-size: 13px; }
.quiet-cta b { color: var(--ink); }

.faq { background: linear-gradient(180deg, var(--cream), #f6efea); }
.faq-grid { display: grid; grid-template-columns: minmax(310px,.78fr) minmax(0,1.22fr); gap: clamp(60px,9vw,130px); }
.faq-heading { align-self: start; position: sticky; top: 126px; }
.faq-heading h2 { font-size: clamp(46px,4.5vw,68px); }
.faq-heading > p:not(.eyebrow) { margin: 28px 0 20px; color: var(--ink-soft); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--plum); font-size: 12px; font-weight: 700; text-underline-offset: 4px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--ink); font-family: var(--display); font-size: 26px; line-height: 1.2; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--body); font-size: 15px; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--lavender); }
.faq-list details p { margin: -5px 48px 25px 4px; color: var(--ink-soft); font-size: 14px; }

.final-cta { position: relative; overflow: hidden; padding: clamp(100px,11vw,160px) 0; background: var(--blush); }
.final-glow { position: absolute; width: 740px; height: 740px; left: -220px; top: -350px; border: 1px solid rgba(85,64,95,.16); border-radius: 50%; }
.final-glow::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(212,175,122,.45); border-radius: 50%; }
.final-grid { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,.7fr); gap: clamp(70px,10vw,150px); align-items: center; }
.final-copy h2 { font-size: clamp(52px,5.4vw,82px); }
.final-copy > p:last-child { max-width: 590px; margin: 30px 0 0; color: var(--ink-soft); font-size: 17px; }
.final-form { padding: 34px; border: 1px solid rgba(85,64,95,.14); border-radius: 22px; background: rgba(255,253,250,.67); box-shadow: 0 22px 65px rgba(85,64,95,.12); backdrop-filter: blur(16px); }
.final-form .field { margin-bottom: 12px; }
.final-form .field input { height: 65px; background: rgba(255,255,255,.72); border-color: rgba(85,64,95,.10); }
.final-form .check-label { margin: 17px 2px 20px; }
.privacy-note { margin: 14px 0 0; color: var(--ink-soft); font-size: 9px; text-align: center; }

footer { padding: 56px 0 24px; background: var(--plum-deep); color: white; }
.footer-inner { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 48px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand > span { color: var(--gold); }
.footer-brand p { margin: 0; line-height: 1.2; }
.footer-brand b { display: block; font-family: var(--display); font-size: 20px; font-weight: 600; }
.footer-brand small { color: rgba(255,255,255,.55); font-size: 9px; }
.footer-note { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.55; }
footer nav { display: flex; gap: 18px; }
footer nav a { color: rgba(255,255,255,.64); font-size: 10px; text-underline-offset: 3px; }
.copyright { width: var(--wrap); margin: 38px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 9px; text-align: center; }

.success-modal[hidden] { display: none; }
.success-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; }
.success-backdrop { position: absolute; inset: 0; background: rgba(53,45,54,.55); backdrop-filter: blur(8px); animation: fade .3s ease both; }
.success-dialog { position: relative; z-index: 1; width: min(560px,100%); padding: 58px 48px 48px; border: 1px solid rgba(212,175,122,.55); border-radius: 46% 46% 24px 24px / 13% 13% 24px 24px; outline: none; background: var(--cream); box-shadow: 0 35px 110px rgba(30,20,34,.3); text-align: center; animation: dialog-in .45s var(--ease) both; }
.success-dialog .eyebrow { justify-content: center; }
.success-dialog h2 { font-size: 50px; }
.success-dialog > p:not(.eyebrow) { color: var(--ink-soft); }
.success-dialog > small { display: block; margin: 0 0 26px; color: var(--gold-deep); }
.success-mark { width: 55px; height: 55px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-deep); }
.modal-close { position: absolute; right: 20px; top: 20px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 20px; }

.standalone-message {
  min-height: 100svh;
  padding: 40px 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 15%, rgba(225,213,231,.85), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(244,215,215,.82), transparent 35%),
    var(--cream);
}
.standalone-message section {
  width: min(650px, 100%);
  padding: clamp(42px, 7vw, 76px);
  border: 1px solid rgba(212,175,122,.55);
  border-radius: 46% 46% 26px 26px / 12% 12% 26px 26px;
  background: rgba(255,253,250,.8);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(14px);
}
.standalone-message .eyebrow { justify-content: center; }
.standalone-message h1 { font-size: clamp(45px, 8vw, 68px); }
.standalone-message p:not(.eyebrow) { color: var(--ink-soft); }
.standalone-message small { color: var(--gold-deep); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-image { from { opacity: .2; transform: scale(1.11); } to { opacity: 1; transform: scale(1.035); } }
@keyframes cue { 0%,25% { transform: translateX(-100%); } 70%,100% { transform: translateX(100%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes fade { from { opacity: 0; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(25px) scale(.96); } }

[data-hero-reveal] > * { opacity: 0; transform: translateY(22px); animation: hero-copy .75s var(--ease) forwards; }
[data-hero-reveal] > :nth-child(1) { animation-delay: .18s; }
[data-hero-reveal] > :nth-child(2) { animation-delay: .28s; }
[data-hero-reveal] > :nth-child(3) { animation-delay: .38s; }
[data-hero-reveal] > :nth-child(4) { animation-delay: .48s; }
[data-hero-reveal] > :nth-child(5) { animation-delay: .58s; }
[data-hero-reveal] > :nth-child(6) { animation-delay: .68s; }
@keyframes hero-copy { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .hero-copy { width: 76%; }
  .hero-veil { background: linear-gradient(90deg, rgba(250,246,241,.99), rgba(250,246,241,.9) 44%, rgba(250,246,241,.22) 77%); }
  .recognition-grid, .teacher-grid { gap: 60px; }
  .app-gallery { min-height: 650px; }
  .final-grid { grid-template-columns: 1fr minmax(360px,.82fr); gap: 65px; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 760px); }
  .site-header { padding-inline: 22px; }
  .hero { min-height: 900px; }
  .hero-inner { min-height: 900px; align-items: flex-end; padding-bottom: 88px; }
  .hero-media { background-position: 72% center; }
  .hero-veil { background: linear-gradient(90deg, rgba(250,246,241,.98), rgba(250,246,241,.92) 54%, rgba(250,246,241,.2)); }
  .hero-copy { width: 85%; }
  .recognition-grid, .teacher-grid, .fit-grid, .faq-grid, .final-grid, .app-details { grid-template-columns: 1fr; }
  .recognition-copy { padding-top: 0; max-width: 650px; }
  .journey-layout { grid-template-columns: minmax(0, 1fr); }
  .journey-index, .journey-stages { min-width: 0; }
  .journey-index { position: static; }
  .journey-index ol { display: flex; overflow-x: auto; scrollbar-width: none; }
  .journey-index ol::-webkit-scrollbar { display: none; }
  .journey-index li { flex: 0 0 auto; border-right: 1px solid var(--line); }
  .journey-index a { padding-inline: 18px; }
  .teacher-visual { width: min(720px, 94%); }
  .teacher-copy { max-width: 680px; }
  .app-details { max-width: 720px; }
  .app-gallery { min-height: 610px; }
  .shot-one { left: 1%; width: 54%; }
  .shot-two { left: 39%; width: 29%; }
  .shot-three { width: 48%; }
  .care-note { max-width: 620px; }
  .faq-heading { position: static; }
  .final-form { max-width: 560px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 700px) {
  :root { --wrap: min(100% - 28px, 620px); --radius: 20px; }
  html { scroll-padding-top: 68px; }
  body { font-size: 15px; }
  .section-pad { padding-block: 92px; }
  .site-header { height: 72px; padding-inline: 14px; }
  .brand-mark { width: 31px; height: 31px; }
  .brand b { font-size: 18px; }
  .brand small { display: none; }
  .header-cta { min-height: 38px; padding: 0 14px; font-size: 10px; }
  .header-cta span { display: none; }
  .hero { min-height: 980px; }
  .hero-media { height: 47%; bottom: auto; background-position: 72% center; transform: scale(1.03); }
  .hero-veil { background: linear-gradient(0deg, var(--cream) 46%, rgba(250,246,241,.12) 78%, rgba(250,246,241,.18)); }
  .hero::after { height: 100%; background: linear-gradient(0deg, rgba(53,45,54,.12), transparent 16%); }
  .hero-inner { min-height: 980px; padding: 398px 0 70px; align-items: center; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .kicker { font-size: 23px; }
  h1 { font-size: clamp(43px, 12vw, 58px); line-height: .98; }
  h2 { font-size: clamp(42px, 11vw, 57px); line-height: .98; }
  .hero-lead { margin-top: 21px; font-size: 15px; line-height: 1.55; }
  .hero-form { margin-top: 25px; padding: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .field input { height: 58px; }
  .hero-form .button { min-height: 58px; }
  .consent-row { padding-top: 12px; }
  .hero-trust { display: grid; grid-template-columns: repeat(3,1fr); }
  .hero-trust span { padding: 0 8px; text-align: center; line-height: 1.4; }
  .hero-trust b { display: block; }
  .scroll-cue { display: none; }
  .section-number { top: 42px; right: 18px; font-size: 70px; }
  .recognition::before { width: 240px; height: 240px; }
  .recognition-grid { gap: 42px; }
  .recognition-copy { font-size: 15px; }
  .recognition-copy .pull-quote { font-size: 25px; }
  .facts-row { grid-template-columns: repeat(2,1fr); padding-block: 18px; }
  .fact { min-height: 95px; border-top: 1px solid var(--line); }
  .fact:nth-child(-n+2) { border-top: 0; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact strong { font-size: 47px; }
  .fact span { font-size: 8px; }
  .journey-head { margin-bottom: 55px; }
  .stage { padding: 0 0 50px 66px; margin-bottom: 50px; }
  .stage::before { font-size: 48px; }
  .stage h3 { font-size: 35px; }
  .stage p { font-size: 15px; }
  .teacher-grid { gap: 50px; }
  .teacher-visual { width: calc(100% - 10px); }
  .teacher-visual::before { inset: -10px 15px 10px -10px; }
  .teacher-copy > p:not(.eyebrow) { font-size: 15px; }
  .teacher-notes p { grid-template-columns: 28px 80px 1fr; font-size: 10px; }
  .app-intro { text-align: left; }
  .app-intro .eyebrow { justify-content: flex-start; }
  .app-intro > p:last-child { margin-inline: 0; font-size: 15px; }
  .app-gallery { width: calc(100% - 20px); min-height: 680px; margin: 55px auto 75px; }
  .shot-one { left: 0; top: 0; width: 79%; height: 38%; }
  .shot-two { left: 43%; top: 26%; width: 53%; height: 55%; }
  .shot-three { left: 2%; right: auto; top: 53%; width: 63%; height: 31%; }
  .app-shot figcaption { display: none; }
  .app-details { gap: 42px; }
  .app-list p { font-size: 12px; }
  .fit-grid { gap: 55px; }
  .care-note { padding: 44px 28px 34px; }
  .price-timeline { grid-template-columns: 1fr; margin-top: 50px; border-block: 0; }
  .price-timeline::before { display: none; }
  .price-step { min-height: auto; padding: 38px 25px; border: 1px solid var(--line); border-bottom: 0; }
  .price-step:last-child { border-bottom: 1px solid var(--line); }
  .price-step strong { font-size: 62px; }
  .quiet-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .faq-grid { gap: 55px; }
  .faq-list summary { font-size: 22px; }
  .faq-list details p { margin-right: 34px; }
  .final-form { padding: 24px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand, footer nav { justify-content: center; }
  .footer-note { grid-column: auto; }
  .success-dialog { padding: 52px 24px 38px; border-radius: 32px; }
  .success-dialog h2 { font-size: 40px; }
}

@media (max-width: 430px) {
  .hero { min-height: 1020px; }
  .hero-inner { min-height: 1020px; }
  .hero-trust { font-size: 8px; }
  .header-cta { padding-inline: 12px; }
  .teacher-notes p { grid-template-columns: 25px 1fr; }
  .teacher-notes p b { grid-column: 2; }
  .teacher-notes .note-copy { grid-column: 2; }
  .teacher-notes p { gap: 2px 8px; }
}

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

@media (prefers-contrast: more) {
  :root { --ink-soft: #443c42; --line: rgba(53,45,54,.35); }
  .hero-veil { background: linear-gradient(90deg, rgba(250,246,241,1), rgba(250,246,241,.97) 55%, rgba(250,246,241,.45)); }
}
