:root {
  --brick: #0B0B0C;
  --brick-2: #131315;
  --brick-3: #1B1B1E;
  --brick-4: #26262A;
  --line: #333338;
  --line-soft: #232327;
  --chalk: #F4F1EC;
  --chalk-2: #B9B4AC;
  --chalk-3: #8A857D;
  --track: #FE4D0B;
  --track-ink: #0B0B0C;
  --rope: #FF1A00;
  --track-dim: #C23A08;
  --bill: 'Anton', Impact, 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  --text: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --max: 78rem;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-height: 68px;
  --tour-travel: 13320px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--brick);
  color: var(--chalk);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:where(h1, h2, h3) { text-wrap: balance; font-weight: 400; }
p { text-wrap: pretty; }
[hidden] { display: none !important; }
::selection { background: var(--track); color: var(--track-ink); }
:focus-visible { outline: 3px solid var(--track); outline-offset: 5px; }
#main { outline: none; }
.wrap { width: min(100% - (var(--gut) * 2), var(--max)); margin-inline: auto; }
.wrap-wide { width: min(100% - (var(--gut) * 2), 96rem); margin-inline: auto; }
.skip {
  position: fixed; left: -9999px; top: .5rem; z-index: 200;
  padding: .9rem 1.4rem; background: var(--track); color: var(--track-ink); font-weight: 700;
}
.skip:focus { left: .5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--text); font-weight: 800; font-size: .9375rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 1.1rem 1.9rem;
  border: 2px solid transparent; border-radius: 0; cursor: pointer;
  position: relative; isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: scaleX(1); transform-origin: left; transition: transform .45s var(--ease);
}
.btn--go { color: var(--track-ink); border-color: var(--track); }
.btn--go::before { background: var(--track); }
.btn--go:hover { color: var(--track); }
.btn--go:hover::before { transform: scaleX(0); transform-origin: right; }
.btn--sm { padding: .7rem 1rem; font-size: .72rem; }
.text-link { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; }
.text-link:hover { color: var(--track); text-decoration-color: var(--track); }

/* Shared site header, with a matte ground and a text menu control. */
.hdr { position: fixed; inset: 0 0 auto; z-index: 100; background: var(--brick); border-bottom: 1px solid var(--line-soft); }
.hdr__in { display: flex; align-items: center; gap: 1.5rem; height: var(--header-height); }
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo img { width: 44px; height: 44px; flex-shrink: 0; }
.logo__txt { font-family: var(--bill); font-size: 1.35rem; text-transform: uppercase; line-height: 1; letter-spacing: -.01em; }
.logo__txt em { font-style: normal; color: var(--track); margin-left: .18em; }
.logo:hover .logo__txt { color: var(--chalk); }
.nav { display: none; margin-left: auto; align-items: center; gap: .25rem; }
.nav a { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .6rem .7rem; color: var(--chalk-2); position: relative; transition: color .25s; }
.nav a::after { content: ''; position: absolute; left: .7rem; right: .7rem; bottom: .35rem; height: 2px; background: var(--track); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover, .nav a[aria-current] { color: var(--chalk); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.hdr__cta { display: none; margin-left: .5rem; }
.hdr .btn--sm { padding: .7rem 1.1rem; }
.burger { margin-left: auto; min-width: 64px; height: 46px; padding: .5rem; background: none; border: 1px solid var(--line); cursor: pointer; font-size: .8125rem; }
.burger:hover, .burger[aria-expanded="true"] { border-color: var(--track); color: var(--track); }
.drawer { position: fixed; inset: var(--header-height) 0 0; z-index: 99; background: var(--brick); padding: var(--gut) var(--gut) 3rem; overflow-y: auto; display: grid; align-content: start; gap: .1rem; visibility: hidden; clip-path: inset(0 0 100% 0); transition: clip-path .55s var(--ease), visibility .55s; }
.drawer[data-open] { clip-path: inset(0); visibility: visible; }
.drawer a { font-family: var(--bill); text-transform: uppercase; font-size: clamp(1.6rem, 7vw, 2.4rem); padding: .45rem 0; border-bottom: 1px solid var(--line-soft); line-height: 1; display: flex; justify-content: space-between; align-items: baseline; }
.drawer a:hover { color: var(--track); }
.drawer .btn { margin-top: 1.5rem; }

/* The static layout also works without JavaScript. */
.tour { position: relative; }
.tour__stage { position: relative; }
.tour__media { position: relative; height: 100vh; height: 100dvh; background: var(--brick); }
.tour__poster, .tour__poster img, .tour__canvas, .tour__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tour__canvas, .tour__video { display: none; }
.tour__scenes { width: min(100% - (var(--gut) * 2), var(--max)); margin-inline: auto; }
.scene { max-width: 34rem; padding-block: 2rem; }
.scene h1, .scene h2 { font-family: var(--bill); font-weight: 400; letter-spacing: -.015em; line-height: 1.13; }
.scene h1 { font-size: clamp(2rem, 3.9vw, 3.5rem); }
.scene h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.scene p { margin-top: .85rem; font-size: clamp(.9375rem, 1.2vw, 1.0625rem); line-height: 1.55; }
.scene .scene__eyebrow { margin: 0 0 .8rem; font-size: .75rem; letter-spacing: .12em; font-weight: 600; color: var(--chalk-2); }
.tour__shade, .tour__cue, .tour__rail { display: none; }
.tour__close { background: rgba(11, 11, 12, .92); border-top: 1px solid var(--line); }
.close__in { padding-block: clamp(1.25rem, 3vh, 2rem); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .9rem 2rem; align-items: center; }
.close__offer { max-width: 52rem; }
.close__offer h2 { font-family: var(--bill); font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.15; }
.close__terms { margin-top: .65rem; font-size: .9375rem; line-height: 1.55; }
.price-phrase { white-space: nowrap; }
.close__actions { display: flex; flex-direction: column; align-items: center; gap: .65rem; font-size: .875rem; }
.tour__cta { font-family: var(--bill); font-size: 1.25rem; font-weight: 400; letter-spacing: .01em; text-transform: none; padding: .8rem 1.6rem; }
.close__induction { grid-column: 1 / -1; font-size: .8125rem; color: var(--chalk-2); }
.video-alternative { padding-top: 1.25rem; font-size: .8125rem; color: var(--chalk-2); }

/* Reserve the entire runway before the deferred script starts. */
html[data-tour-motion="scrub"] .tour { height: calc(var(--tour-travel) + 150vh); height: calc(var(--tour-travel) + 150dvh); }
html[data-tour-motion="scrub"] .tour__stage { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; isolation: isolate; }
html[data-tour-motion="scrub"] .tour__media { position: absolute; inset: 0; height: 100%; }
html[data-tour-motion="scrub"] .tour__canvas { display: block; opacity: 0; }
html[data-tour-motion="scrub"] .tour[data-ready] .tour__canvas { opacity: 1; }
.tour[data-mode="video"] .tour__canvas { display: none; }
.tour[data-mode="video"] .tour__video { display: block; opacity: 0; }
.tour[data-mode="video"][data-ready] .tour__video { opacity: 1; }
html[data-tour-motion="scrub"] .tour__shade { display: block; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(11,11,12,.9), rgba(11,11,12,.58) 22%, transparent 58%); }
html[data-tour-motion="scrub"] .tour__scenes { position: absolute; inset: 0; width: auto; margin: 0; pointer-events: none; }
html[data-tour-motion="scrub"] .scene { position: absolute; left: max(var(--gut), calc((100vw - 96rem) / 2)); bottom: 5.5rem; padding: 0; width: min(34rem, calc(100% - var(--gut) * 2 - 2rem)); opacity: 0; transform: translateY(12px); }
html[data-tour-motion="scrub"] .scene[data-scene="arrive"] { opacity: 1; transform: translateY(0); }
html[data-tour-motion="scrub"] .scene .scene__eyebrow { color: var(--chalk); }
html[data-tour-motion="scrub"] .tour__cue { position: absolute; display: flex; align-items: center; gap: 1rem; left: max(var(--gut), calc((100vw - 96rem) / 2)); bottom: 1.5rem; font-size: .75rem; letter-spacing: .05em; pointer-events: none; }
.tour__cue span { display: block; width: 1px; height: 2.25rem; background: var(--track); }
.tour__loading { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; background: rgba(11, 11, 12, .48); pointer-events: none; }
.tour__loading-word { font-family: var(--bill); font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: .03em; line-height: 1; }
.tour__loading-line { width: min(12rem, 50vw); height: 2px; background: var(--line); }
.tour__loading-line span { display: block; width: 100%; height: 100%; background: var(--track); transform: scaleX(var(--loaded, 0)); transform-origin: left; transition: transform .15s linear; }
.tour__loading-percent { font-size: .8125rem; font-variant-numeric: tabular-nums; }
html[data-tour-motion="scrub"] .tour__rail { position: absolute; right: .8rem; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; z-index: 5; }
.tour__rail button { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border: 0; padding: 0; background: transparent; cursor: pointer; }
.tour__rail button::before { content: ''; width: 12px; height: 2px; background: var(--chalk-2); transition: width .2s, background .2s; }
.tour__rail button[aria-current]::before { background: var(--track); width: 24px; }
.tour__rail button span { position: absolute; right: 100%; top: 50%; transform: translateY(-50%); padding: .25rem .65rem; background: var(--brick); color: var(--chalk); font-size: .75rem; white-space: nowrap; opacity: 0; pointer-events: none; }
@media (hover: hover) and (min-width: 821px) {
  .tour__rail button:hover span, .tour__rail button:focus-visible span { opacity: 1; }
  .tour__rail button:hover::before { background: var(--track); }
}
html[data-tour-motion="scrub"] .tour__close { position: absolute; inset: auto 0 0; z-index: 6; transform: translateY(100%); opacity: 0; visibility: hidden; transition: transform .6s var(--ease), opacity .4s, visibility .6s; }
html[data-tour-motion="scrub"] .tour[data-complete] .tour__close { transform: translateY(0); opacity: 1; visibility: visible; }

.plans { padding-block: 2.5rem 3rem; }
.plans__strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.plan { padding: 1.8rem 1.5rem; border-right: 1px solid var(--line); }
.plan:first-child { padding-left: 0; }
.plan:last-child { border-right: 0; }
.plan h2 { font-family: var(--bill); font-size: 1.25rem; line-height: 1.2; }
.plan .plan__price { font-family: var(--bill); font-size: clamp(2rem, 3vw, 2.65rem); line-height: 1.2; color: var(--chalk); margin-block: .6rem .85rem; }
.plan p { font-size: .875rem; color: var(--chalk-2); max-width: 24ch; }
.plan:hover h2, .plan:hover .plan__price { color: var(--track); }
.plans__note { margin-top: 1.1rem; color: var(--chalk-2); font-size: .8125rem; }
.proof { border-block: 1px solid var(--line); overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--line) var(--brick); }
.proof__tape { display: flex; align-items: center; justify-content: center; width: max-content; min-width: 100%; list-style: none; padding: 1.2rem var(--gut); gap: 1.5rem; font-size: .6875rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.proof__tape li { display: flex; align-items: center; gap: 1.5rem; }
.proof__tape li + li::before { content: ''; height: 4px; width: 4px; border-radius: 50%; background: var(--track); flex-shrink: 0; }
.faqs { padding-block: 3rem 1.5rem; max-width: 52rem; }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary { padding-block: 1.3rem; font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 600; cursor: pointer; list-style: none; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary:hover, .faqs details[open] summary { color: var(--track); }
.faqs details p { padding: 0 0 1.4rem; font-size: .9375rem; color: var(--chalk-2); max-width: 44rem; }
.final-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem 2rem; padding-block: 1.5rem 3rem; max-width: 52rem; }
.final-cta__offer { display: flex; flex-direction: column; gap: .65rem; align-items: flex-start; }
.final-cta__offer p { font-size: .8125rem; color: var(--chalk-2); }
.final-cta > a { font-size: .9375rem; }

/* Shared site footer. */
.ftr { border-top: 1px solid var(--line); background: var(--brick-2); padding: 3rem 0 2.5rem; }
.ftr__grid { display: grid; gap: 2.5rem; }
.ftr .logo img { width: 52px; height: 52px; }
.ftr h3 { font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--chalk-3); margin-bottom: 1.1rem; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.ftr li a { font-size: .875rem; color: var(--chalk-2); transition: color .2s; }
.ftr li a:hover { color: var(--track); }
.ftr__addr { font-style: normal; color: var(--chalk-2); font-size: .9375rem; line-height: 1.7; }
.ftr__addr a:hover { color: var(--track); }
.ftr__hours { margin-top: 1rem; font-size: .8125rem; color: var(--chalk-3); }
.ftr__base { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8125rem; color: var(--chalk-3); }
.ftr__base a:hover { color: var(--chalk); }
.social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.social a { width: 40px; height: 40px; border: 1px solid var(--line); display: grid; place-items: center; transition: all .25s; }
.social a:hover { background: var(--track); border-color: var(--track); color: var(--track-ink); }
.social svg { width: 18px; height: 18px; }

html[data-tour-motion="static"] .tour__media, html[data-tour-motion="reduced"] .tour__media { padding-top: var(--header-height); }
html[data-tour-motion="static"] .tour__poster, html[data-tour-motion="reduced"] .tour__poster { top: var(--header-height); height: calc(100% - var(--header-height)); }
html[data-tour-motion="static"] .tour__video, html[data-tour-motion="reduced"] .tour__video { display: block; top: var(--header-height); height: calc(100% - var(--header-height)); object-fit: contain; }
html[data-tour-motion="static"] .tour__scenes, html[data-tour-motion="reduced"] .tour__scenes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3rem; }
html[data-tour-motion="static"] .scene, html[data-tour-motion="reduced"] .scene { opacity: 1 !important; transform: none !important; border-bottom: 1px solid var(--line); }

@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { :root { --header-height: 76px; } }
@media (min-width: 1060px) { .nav { display: flex; } .hdr__cta { display: inline-flex; } .burger, .drawer { display: none; } }
@media (min-width: 1100px) { .ftr__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; } }
@media (max-width: 820px) {
  :root { --tour-travel: 8880px; }
  .close__in { grid-template-columns: 1fr; gap: .8rem; padding-block: 1.2rem calc(3rem + env(safe-area-inset-bottom)); }
  .close__actions { flex-direction: row; justify-content: flex-start; gap: 1.2rem; flex-wrap: wrap; }
  .close__terms { font-size: .875rem; }
  .close__induction { font-size: .75rem; }
  html[data-tour-motion="scrub"] .scene { bottom: 5rem; width: calc(100% - var(--gut) * 2); }
  html[data-tour-motion="scrub"] .scene h1 { font-size: clamp(1.9rem, 6.8vw, 2.6rem); }
  html[data-tour-motion="scrub"] .tour__rail { right: auto; top: auto; bottom: env(safe-area-inset-bottom, 0px); left: 50%; transform: translateX(-50%); flex-direction: row; }
  html[data-tour-motion="scrub"] .tour[data-complete] .tour__rail { z-index: 7; }
  .tour__rail button { width: min(44px, calc(100vw / 12)); }
  .tour__rail button::before { width: 20px; }
  .tour__rail button[aria-current]::before { width: 28px; }
  .tour__rail button span { display: none; }
  html[data-tour-motion="scrub"] .tour__cue { bottom: 3.25rem; }
  .tour__cue span { height: 1.5rem; }
  .plans__strip { grid-template-columns: 1fr; }
  .plan, .plan:first-child { padding: 1.3rem 0; border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: .4rem 1rem; align-items: baseline; }
  .plan:last-child { border-bottom: 0; }
  .plan .plan__price { margin: 0; font-size: 2rem; }
  .plan p:last-child { grid-column: 1 / -1; max-width: none; }
  .plans { padding-block: 2rem; }
  html[data-tour-motion="static"] .tour__scenes, html[data-tour-motion="reduced"] .tour__scenes { grid-template-columns: 1fr; }
}
@media (max-height: 600px) and (orientation: landscape) {
  html[data-tour-motion="scrub"] .scene { bottom: 3rem; max-width: 34rem; }
  html[data-tour-motion="scrub"] .scene h1 { font-size: 1.5rem; }
  html[data-tour-motion="scrub"] .scene h2 { font-size: 1.65rem; }
  .scene p { font-size: .8125rem; margin-top: .4rem; }
  .scene .scene__eyebrow { margin-bottom: .35rem; }
  .close__in { padding-block: .7rem; gap: .45rem 1.5rem; grid-template-columns: 1fr auto; }
  .close__offer h2 { font-size: 1.65rem; }
  .close__terms { font-size: .8125rem; margin-top: .35rem; }
  .close__actions { flex-direction: column; gap: .3rem; }
  .close__induction { font-size: .7rem; }
}
@media (max-width: 820px) and (max-height: 700px) and (orientation: portrait) {
  html[data-tour-motion="scrub"] .scene h1 { font-size: 1.65rem; }
  html[data-tour-motion="scrub"] .scene { bottom: 4.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
