:root {
  --ink: #11130f;
  --ink-2: #1c2019;
  --paper: #f3efe6;
  --paper-2: #e8e1d5;
  --white: #fffdf7;
  --gold: #a87737;
  --gold-light: #d9b779;
  --sage: #8b9882;
  --muted: #66675f;
  --line: rgba(17, 19, 15, .17);
  --line-light: rgba(255, 255, 255, .17);
  --content: min(1400px, calc(100vw - 96px));
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(243, 239, 230, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled { height: 70px; border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -.05em;
}
.brand__text { font-size: 10px; line-height: 1.05; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { position: relative; text-decoration: none; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); transition: color 180ms ease, background 180ms ease; }
.nav-cta:hover { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; }

.hero {
  width: var(--content);
  min-height: 100svh;
  margin: 0 auto;
  padding: 142px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr);
  gap: clamp(55px, 7vw, 120px);
  align-items: center;
}
.eyebrow, .scene__label {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before, .scene__label::before {
  content: "";
  width: 36px;
  height: 1px;
  margin: 0 13px 3px 0;
  display: inline-block;
  background: currentColor;
}
h1, h2, h3, p { overflow-wrap: break-word; }
.hero h1, .scene h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .96;
}
.hero h1 { max-width: 850px; font-size: clamp(70px, 7.1vw, 118px); }
.hero h1 em, .scene h2 em, .outcome__quote em { color: var(--gold); font-weight: 400; }
.hero__lead { max-width: 660px; margin: 34px 0 0; color: var(--ink-2); font-size: clamp(19px, 1.6vw, 25px); line-height: 1.48; }
.hero__actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 56px;
  padding: 17px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--ink); }
.button--primary:hover { background: var(--gold); }
.button--outline { border-color: currentColor; }
.button--outline:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--gold { color: var(--ink); background: var(--gold-light); }
.button--gold:hover { background: #e4c58f; }
.button--wide { width: 100%; }
.text-link { text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(4px, 4px); }
.hero__promise { margin: 68px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.hero__showcase { position: relative; max-width: 610px; justify-self: end; }
.hero__showcase::before {
  content: "";
  position: absolute;
  inset: -22px 26px 42px -22px;
  border: 1px solid var(--line);
  z-index: -1;
}
.showcase-window { overflow: hidden; background: var(--white); border: 1px solid rgba(17, 19, 15, .24); box-shadow: 0 38px 100px rgba(26, 24, 18, .2); }
.showcase-window__bar { height: 48px; padding: 0 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .07em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; display: block; border-radius: 50%; background: rgba(17, 19, 15, .25); }
.window-live { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }
.window-live i, .status-live i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: #73976a; box-shadow: 0 0 0 4px rgba(115, 151, 106, .14); }
.showcase-site { min-height: 570px; padding: 24px 28px 32px; position: relative; overflow: hidden; color: var(--white); background: #22271f; }
.showcase-site::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(10, 12, 9, .62) 100%); }
.showcase-site__nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.showcase-site__nav strong { font-family: var(--display); font-size: 24px; font-weight: 400; letter-spacing: .08em; }
.showcase-site__nav span { color: rgba(255, 255, 255, .55); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.showcase-site__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 95px;
  right: -75px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #edc795 0 8%, #bc7c4b 36%, #50382b 73%, #1f241c 74%);
  box-shadow: -70px 35px 120px rgba(214, 161, 95, .18);
  animation: orb-drift 8s ease-in-out infinite;
}
.showcase-site__copy { position: absolute; left: 28px; right: 28px; bottom: 36px; z-index: 2; }
.showcase-site__copy small { color: var(--gold-light); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.showcase-site__copy h2 { max-width: 440px; margin: 16px 0 28px; font-family: var(--display); font-size: clamp(43px, 4vw, 63px); font-weight: 400; line-height: .93; letter-spacing: -.05em; }
.showcase-site__button { width: fit-content; padding: 12px 17px; display: block; border: 1px solid rgba(255, 255, 255, .5); border-radius: 999px; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.showcase-caption { margin-top: 22px; display: flex; justify-content: space-between; gap: 25px; align-items: baseline; }
.showcase-caption span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.showcase-caption strong { font-family: var(--display); font-size: 18px; font-weight: 400; }

.scene { padding: 140px max(48px, calc((100vw - 1400px) / 2)); }
.scene--dark { color: var(--white); background: var(--ink); }
.scene--dark .scene__label { color: rgba(255, 255, 255, .48); }
.scene h2 { font-size: clamp(56px, 6.2vw, 102px); }
.possibility { min-height: 920px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.possibility__title { max-width: 1220px; }
.belief-shift { margin-top: 110px; display: grid; grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr); gap: 45px; align-items: center; }
.belief-shift p { margin: 0; font-family: var(--display); font-size: clamp(24px, 2.4vw, 37px); line-height: 1.25; }
.belief-shift p:first-child { color: rgba(255, 255, 255, .37); }
.belief-shift p:last-child { color: var(--gold-light); }
.belief-shift p span { margin-bottom: 15px; display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.belief-shift__line { height: 1px; position: relative; background: rgba(255, 255, 255, .25); }
.belief-shift__line i { position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--gold-light); border-right: 1px solid var(--gold-light); transform: rotate(45deg); }

.outcome { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.outcome__copy > p:last-child { max-width: 520px; margin: 36px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.launch-card { min-width: 0; overflow: hidden; color: var(--white); background: var(--ink-2); border: 1px solid rgba(17, 19, 15, .15); border-radius: 26px; box-shadow: 0 30px 80px rgba(27, 24, 18, .13); }
.launch-card__top { height: 64px; padding: 0 25px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-light); color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.status-live { display: inline-flex; align-items: center; gap: 8px; color: var(--white); }
.launch-card__screen { min-height: 390px; padding: 70px 35px 40px; display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 80% 20%, rgba(189, 140, 73, .25), transparent 34%), #242920; }
.launch-card__screen small { color: var(--gold-light); font-size: 12px; }
.launch-card__screen strong { margin-top: 6px; font-family: var(--display); font-size: clamp(42px, 4.6vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.launch-card__screen p { margin: 25px 0 0; color: rgba(255, 255, 255, .55); }
.launch-card__footer { min-height: 66px; padding: 0 25px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; border-top: 1px solid var(--line-light); }
.launch-card__footer span { padding-left: 17px; position: relative; color: rgba(255, 255, 255, .62); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.launch-card__footer span::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }
.outcome__quote { grid-column: 1 / -1; margin: 150px 0 0; padding: 0; border: 0; }
.outcome__quote p { margin: 0; font-family: var(--display); font-size: clamp(58px, 7.7vw, 124px); line-height: .95; letter-spacing: -.06em; }

.horizons { background: var(--paper-2); }
.horizons__heading { max-width: 1050px; }
.worlds { margin-top: 90px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.world { min-width: 0; }
.world__visual { height: 490px; overflow: hidden; border-radius: 24px; }
.world__copy { padding: 24px 4px 0; display: grid; grid-template-columns: 44px 1fr; }
.world__copy > span { padding-top: 8px; color: var(--gold); font-size: 9px; letter-spacing: .13em; }
.world__copy h3 { margin: 0; font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -.04em; }
.world__copy p { grid-column: 2; margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.web-preview { padding: 38px; color: var(--white); background: #1f251d; }
.web-preview__bar { height: 34px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line-light); }
.web-preview__bar i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .3); }
.web-preview__body { height: calc(100% - 34px); padding: 42px 0 0; position: relative; display: flex; flex-direction: column; }
.web-preview__body span { color: var(--gold-light); font-size: 8px; letter-spacing: .16em; }
.web-preview__body strong { margin-top: auto; padding-bottom: 42px; position: relative; z-index: 2; font-family: var(--display); font-size: clamp(35px, 3.3vw, 53px); font-weight: 400; line-height: .96; letter-spacing: -.05em; }
.web-preview__body > i { position: absolute; width: 230px; height: 230px; right: -85px; top: 50px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #d7ad73, #5e4933 60%, #242a21 61%); }
.phone-preview { padding: 36px; display: grid; place-items: center; background: #c9a26d; }
.phone-preview__phone { width: 250px; height: 430px; padding: 30px 22px 24px; position: relative; display: flex; flex-direction: column; color: var(--ink); background: #faf5eb; border: 6px solid var(--ink); border-radius: 38px; box-shadow: 0 25px 45px rgba(40, 29, 19, .23); }
.phone-preview__speaker { position: absolute; top: 10px; left: 50%; width: 55px; height: 5px; border-radius: 999px; background: var(--ink); transform: translateX(-50%); }
.phone-preview__phone > small { margin-top: 18px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.phone-preview__phone > strong { margin-top: 8px; font-family: var(--display); font-size: 33px; font-weight: 400; }
.phone-preview__phone > div { margin-top: 28px; padding: 20px 0; display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.phone-preview__phone > div i { width: 44px; height: 44px; border-radius: 50%; background: #87977e; }
.phone-preview__phone > div span { font-size: 18px; line-height: 1.15; }
.phone-preview__phone > div small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.phone-preview__action { margin-top: auto; padding: 14px; display: block; border-radius: 999px; color: var(--white); background: var(--ink); font-size: 9px; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.service-preview { padding: 38px; color: var(--white); background: #243026; }
.service-preview__top { display: flex; justify-content: space-between; color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.service-preview__top i { width: 7px; height: 7px; border-radius: 50%; background: #87ad79; box-shadow: 0 0 0 5px rgba(135, 173, 121, .12); }
.service-preview > strong { margin-top: 120px; display: block; font-family: var(--display); font-size: clamp(48px, 4.5vw, 70px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.service-preview > p { max-width: 220px; margin: 10px 0 0; color: rgba(255, 255, 255, .55); font-size: 13px; }
.service-preview__chart { height: 90px; margin-top: 58px; display: flex; align-items: end; gap: 10px; }
.service-preview__chart i { flex: 1; background: rgba(217, 183, 121, .32); border-radius: 5px 5px 0 0; }
.service-preview__chart i:nth-child(1) { height: 28%; }
.service-preview__chart i:nth-child(2) { height: 47%; }
.service-preview__chart i:nth-child(3) { height: 40%; }
.service-preview__chart i:nth-child(4) { height: 73%; }
.service-preview__chart i:nth-child(5) { height: 100%; background: var(--gold-light); }

.author-scene { min-height: 820px; display: flex; flex-direction: column; justify-content: center; }
.author-scene__grid { display: grid; grid-template-columns: 1.18fr .62fr; gap: 11vw; align-items: end; }
.author-scene__grid > * { min-width: 0; }
.author-scene__grid h2 { font-size: clamp(60px, 6.8vw, 110px); }
.author-scene__note { padding: 30px 0 5px; border-top: 1px solid var(--line-light); }
.author-scene__note p { margin: 0; color: rgba(255, 255, 255, .72); font-family: var(--display); font-size: clamp(23px, 2.1vw, 32px); line-height: 1.4; }
.author-scene__note span { margin-top: 36px; display: block; color: var(--gold-light); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.formats { background: #ece7dd; }
.formats__heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: end; }
.formats__heading .scene__label { grid-column: 1 / -1; }
.formats__heading h2 { font-size: clamp(58px, 6vw, 96px); }
.formats__heading > p:last-child { max-width: 420px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.price-grid { margin-top: 82px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.price-card { min-height: 640px; padding: 30px; position: relative; display: flex; flex-direction: column; background: rgba(255, 253, 247, .72); border: 1px solid var(--line); border-radius: 24px; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(25, 22, 16, .09); }
.price-card.is-selected { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.price-card--featured { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); box-shadow: 0 24px 70px rgba(23, 24, 19, .16); }
.price-card__badge { position: absolute; top: 22px; right: 22px; padding: 7px 11px; border-radius: 999px; color: var(--ink); background: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-card__top { min-height: 42px; padding-bottom: 22px; display: grid; gap: 3px; border-bottom: 1px solid var(--line); }
.price-card--featured .price-card__top { border-color: var(--line-light); }
.price-card__top span { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.price-card__top small { color: var(--muted); font-size: 11px; }
.price-card--featured .price-card__top small { color: rgba(255, 255, 255, .48); }
.price-card h3 { margin: 40px 0 0; font-family: var(--display); font-size: clamp(35px, 3.2vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.price-card__for { min-height: 92px; margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.price-card--featured .price-card__for { color: rgba(255, 255, 255, .58); }
.price { margin: 26px 0 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price span { font-size: clamp(34px, 3vw, 44px); font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.price small { color: var(--muted); font-size: 10px; }
.price-card--featured .price small { color: rgba(255, 255, 255, .45); }
.button--plan { width: 100%; margin-top: 28px; }
.price-card--featured .button--primary { color: var(--ink); background: var(--gold-light); }
.price-card--featured .button--primary:hover { background: var(--white); }
.plan-features { margin: auto 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card--featured .plan-features { border-color: var(--line-light); }
.plan-features li { margin-top: 12px; padding-left: 20px; position: relative; color: var(--muted); font-size: 12px; }
.price-card--featured .plan-features li { color: rgba(255, 255, 255, .63); }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.credit-note { margin: 28px 0 0; text-align: center; color: var(--muted); font-size: 11px; }

.recognition { min-height: 900px; }
.recognition h2 { max-width: 1120px; }
.recognition__list { margin: 100px 0 0 auto; padding: 0; max-width: 930px; list-style: none; border-top: 1px solid var(--line-light); }
.recognition__list li { min-height: 130px; padding: 30px 0; display: grid; grid-template-columns: 70px 1fr; align-items: center; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: clamp(23px, 2.2vw, 34px); line-height: 1.3; }
.recognition__list span { color: var(--gold-light); font-family: var(--sans); font-size: 9px; letter-spacing: .13em; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; }
.faq__heading h2 { font-size: clamp(55px, 5.8vw, 92px); }
.faq__items { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 105px; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(21px, 1.8vw, 28px); line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { flex: 0 0 auto; font-family: var(--sans); font-size: 24px; font-weight: 300; transition: transform 180ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 700px; margin: -5px 0 30px; color: var(--muted); line-height: 1.7; }

.application { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; color: var(--white); background: #24281f; }
.application__intro h2 { font-size: clamp(58px, 6vw, 96px); }
.application__intro > p:last-child { max-width: 480px; margin: 32px 0 0; color: rgba(255, 255, 255, .58); font-size: 17px; line-height: 1.65; }
.application-form { display: grid; gap: 28px; }
.plan-picker { margin: 0; padding: 0; border: 0; }
.plan-picker legend { margin-bottom: 12px; color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.plan-picker__options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.plan-choice { min-height: 74px; padding: 13px; display: flex; align-items: flex-start; gap: 10px; cursor: pointer; border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px; transition: border-color 160ms ease, background 160ms ease; }
.plan-choice:hover { border-color: rgba(255, 255, 255, .55); }
.plan-choice:has(input:checked) { border-color: var(--gold-light); background: rgba(217, 183, 121, .1); }
.plan-choice input { width: 15px; height: 15px; margin: 3px 0 0; accent-color: var(--gold); }
.plan-choice > span { margin: 0 !important; display: grid !important; gap: 4px; color: var(--white) !important; text-transform: none !important; letter-spacing: 0 !important; }
.plan-choice strong { font-size: 13px; }
.plan-choice small { color: rgba(255, 255, 255, .48); font-size: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.application-form label > span { display: block; margin-bottom: 9px; color: rgba(255, 255, 255, .48); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.application-form input[type="text"], .application-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .28); border-radius: 0; outline: none; color: var(--white); background: transparent; }
.application-form input::placeholder, .application-form textarea::placeholder { color: rgba(255, 255, 255, .3); }
.application-form input[type="text"]:focus, .application-form textarea:focus { border-color: var(--gold-light); }
.consent { display: flex; align-items: center; gap: 10px; }
.consent input { width: 17px; height: 17px; margin: 0; accent-color: var(--gold); }
.consent span { margin: 0 !important; color: rgba(255, 255, 255, .63) !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 11px !important; }
.form-note { margin: -12px 0 0; color: rgba(255, 255, 255, .4); font-size: 10px; line-height: 1.5; }
.form-status { min-height: 24px; margin: -12px 0 0; color: var(--gold-light); font-size: 12px; }

.site-footer { min-height: 230px; padding: 50px max(48px, calc((100vw - 1400px) / 2)); display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: end; gap: 40px; color: var(--white); background: var(--ink); border-top: 1px solid var(--line-light); }
.site-footer p { margin: 0; color: #8b8d88; font-size: 11px; }
.brand--footer { color: var(--white); }
.text-link--light { color: var(--gold-light); }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 760ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1); }
.reveal--delay { transition-delay: 130ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@keyframes orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 12px, 0) scale(1.025); }
}

@media (max-width: 1120px) {
  :root { --content: min(100% - 56px, 1040px); }
  .site-header { padding: 0 28px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 9px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: 50px; }
  .hero h1 { font-size: clamp(63px, 7.7vw, 88px); }
  .showcase-site { min-height: 520px; }
  .scene { padding-left: 28px; padding-right: 28px; }
  .world__visual { height: 440px; }
  .price-card { padding: 25px; }
  .price-card__badge { position: static; width: fit-content; margin-bottom: 15px; }
  .site-footer { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 860px) {
  .site-header { height: 72px; }
  .menu-toggle { width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 6px; border: 0; background: transparent; }
  .menu-toggle span { width: 25px; height: 1px; display: block; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; inset: 72px 0 auto; height: calc(100dvh - 72px); padding: 48px 28px; display: none; flex-direction: column; align-items: flex-start; gap: 24px; background: var(--paper); border-top: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .main-nav a { font-family: var(--display); font-size: 33px; letter-spacing: -.03em; text-transform: none; }
  .main-nav .nav-cta { margin-top: 10px; font-family: var(--sans); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; gap: 80px; }
  .hero__showcase { width: min(620px, calc(100% - 20px)); justify-self: end; }
  .possibility { min-height: auto; }
  .belief-shift { grid-template-columns: 1fr; gap: 30px; }
  .belief-shift__line { width: 1px; height: 70px; margin-left: 5px; }
  .belief-shift__line i { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .outcome { grid-template-columns: 1fr; gap: 65px; }
  .outcome__quote { margin-top: 70px; }
  .worlds, .price-grid { grid-template-columns: 1fr; gap: 55px; }
  .world { max-width: 640px; }
  .world:nth-child(even) { margin-left: auto; }
  .world__visual { height: 520px; }
  .author-scene__grid, .formats__heading, .faq, .application { grid-template-columns: 1fr; gap: 65px; }
  .author-scene__note { max-width: 620px; margin-left: auto; }
  .formats__heading .scene__label { grid-column: auto; }
  .price-card { min-height: 580px; }
  .recognition__list { margin-top: 75px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --content: calc(100% - 36px); }
  .site-header { padding: 0 18px; }
  .hero { padding-top: 116px; padding-bottom: 80px; gap: 65px; }
  .eyebrow, .scene__label { margin-bottom: 22px; }
  .hero h1 { font-size: clamp(50px, 15vw, 64px); }
  .hero__lead { margin-top: 26px; font-size: 18px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__promise { margin-top: 48px; line-height: 1.6; }
  .hero__showcase { width: calc(100% - 8px); }
  .hero__showcase::before { inset: -12px 12px 28px -12px; }
  .showcase-window__bar { grid-template-columns: 1fr auto; }
  .showcase-window__bar > span:nth-child(2) { display: none; }
  .showcase-site { min-height: 440px; padding: 20px; }
  .showcase-site__nav span { display: none; }
  .showcase-site__orb { width: 320px; height: 320px; top: 85px; right: -95px; }
  .showcase-site__copy { left: 20px; right: 20px; bottom: 25px; }
  .showcase-site__copy h2 { font-size: 43px; }
  .showcase-caption { align-items: flex-start; flex-direction: column; gap: 7px; }
  .scene { padding: 96px 18px; }
  .scene h2 { font-size: 49px; }
  .possibility__title { font-size: 47px !important; }
  .belief-shift { margin-top: 72px; }
  .belief-shift p { font-size: 27px; }
  .outcome__copy > p:last-child { font-size: 16px; }
  .launch-card { border-radius: 18px; }
  .launch-card__top { padding: 0 17px; }
  .launch-card__screen { min-height: 300px; padding: 50px 22px 30px; }
  .launch-card__screen strong { font-size: 40px; }
  .launch-card__footer { padding: 16px 20px; grid-template-columns: 1fr; gap: 10px; }
  .outcome__quote p { font-size: 53px; }
  .worlds { margin-top: 62px; }
  .world__visual { height: 420px; border-radius: 18px; }
  .web-preview, .service-preview { padding: 28px; }
  .phone-preview { padding: 24px; }
  .phone-preview__phone { width: 225px; height: 370px; }
  .service-preview > strong { margin-top: 95px; font-size: 55px; }
  .author-scene { min-height: auto; }
  .author-scene__grid { gap: 50px; }
  .author-scene__grid h2 { font-size: 44px; overflow-wrap: anywhere; }
  .author-scene__note p { font-size: 25px; }
  .formats__heading { gap: 25px; }
  .formats__heading > p:last-child { font-size: 15px; }
  .price-grid { margin-top: 60px; gap: 18px; }
  .price-card { min-height: 570px; padding: 24px 21px; border-radius: 18px; }
  .price-card h3 { font-size: 40px; }
  .price-card__for { min-height: auto; }
  .price-card:hover { transform: none; }
  .recognition h2 { font-size: 47px; }
  .recognition__list { margin-top: 65px; }
  .recognition__list li { min-height: 145px; grid-template-columns: 42px 1fr; font-size: 24px; }
  .faq { gap: 50px; }
  .faq summary { min-height: 90px; font-size: 21px; }
  .plan-picker__options, .form-row { grid-template-columns: 1fr; }
  .application { gap: 50px; }
  .site-footer { padding: 45px 18px; grid-template-columns: 1fr; align-items: start; }
  .copyright { text-align: left; }
}

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