@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-ThinOblique.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-LightOblique.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Oblique.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-MediumOblique.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-BoldOblique.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FK Roman Standard";
  src: url("./assets/fonts/fk-roman-standard/FKRomanStandard-BlackOblique.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --intro-black: #030303;
  --intro-white: #ffffff;
  --highlight-coral: #FF7452;
  --intro-line: rgba(255, 255, 255, 0.24);
  --intro-muted: rgba(255, 255, 255, 0.58);
  --intro-ease: cubic-bezier(0.72, 0, 0.12, 1);
  --intro-ui: Inter, Arial, sans-serif;
}

html,
body.timeline-prototype {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--intro-black);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-consent {
  position: fixed;
  z-index: 10000;
  inset: auto auto 16px 16px;
  width: min(310px, calc(100vw - 32px));
  color: var(--intro-white);
  font-family: var(--intro-ui);
  letter-spacing: 0;
}

.cookie-consent__surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-consent__copy {
  display: grid;
}

.cookie-consent__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.cookie-consent__policy-link {
  color: var(--intro-white);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent__policy-link:hover {
  color: var(--highlight-coral);
}

.cookie-consent__panel {
  display: grid;
  gap: 8px;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
}

.cookie-consent__option strong,
.cookie-consent__option small {
  display: block;
}

.cookie-consent__option strong {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.cookie-consent__option small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.25;
}

.cookie-consent__option input {
  width: 18px;
  height: 18px;
  accent-color: var(--highlight-coral);
}

.cookie-consent__option.is-locked {
  opacity: 0.72;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
}

.cookie-consent__actions button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: transparent;
  color: var(--intro-white);
  font: 700 10px/1 var(--intro-ui);
  letter-spacing: 0;
  cursor: pointer;
}

.cookie-consent__actions button {
  min-height: 30px;
  padding: 0 5px;
}

.cookie-consent__actions [data-cookie-accept],
.cookie-consent__actions [data-cookie-reject] {
  border-color: rgba(255, 255, 255, 0.34);
}

.cookie-consent__actions button:hover {
  border-color: var(--highlight-coral);
  color: var(--highlight-coral);
}

body.timeline-prototype.is-transitioning {
  overflow: hidden;
}

.timeline-shell {
  position: relative;
  min-height: 100vh;
  color: var(--intro-white);
  background: var(--intro-black);
  isolation: isolate;
  --glass-progress: 0;
  --glass-reveal: 0;
  --glass-unify: 0;
  --glass-bright: 0;
  --edge-progress: 0;
}

.timeline-shell[data-scene="glass-entry"] {
  --glass-progress: 1;
  --glass-reveal: 1;
}

.timeline-shell[data-scene="glass-unify"] {
  --glass-progress: 1;
  --glass-reveal: 1;
  --glass-unify: 1;
}

.timeline-shell[data-scene="glass-clear"] {
  --glass-progress: 0.38;
  --glass-reveal: 1;
  --glass-unify: 1;
  --glass-bright: 1;
}

.timeline-track {
  display: flex;
  width: 200vw;
  min-height: 100vh;
  transform: translate3d(0, 0, 0);
  transition: transform 980ms var(--intro-ease);
  will-change: transform;
}

.timeline-shell.is-direct-future .timeline-track {
  transition: none;
}

.timeline-shell.is-future-prepared .timeline-track {
  transform: translate3d(-100vw, 0, 0);
  transition: none;
}

.timeline-shell[data-scene="future"] .timeline-track {
  transform: translate3d(-100vw, 0, 0);
}

.timeline-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.timeline-panel--past {
  background: var(--intro-white);
}

.past-composite {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--intro-white);
  cursor: default;
}

.past-static-site {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--intro-white);
  color: #3c3e40;
  font-family: Inter, Arial, sans-serif;
  --past-grid-padding: clamp(16px, 1vw, 24px);
  --past-grid-gap: clamp(16px, 1.5vw, 24px);
  --past-grid-column: calc((100vw - (var(--past-grid-padding) * 2) - (var(--past-grid-gap) * 11)) / 12);
  --past-copy-left: calc(var(--past-grid-padding) + ((var(--past-grid-column) + var(--past-grid-gap)) * 2));
  --past-copy-width: calc((var(--past-grid-column) * 10) + (var(--past-grid-gap) * 9));
  --past-copy-bottom: clamp(14px, 1.55vh, 24px);
}

.past-static-brand {
  position: absolute;
  top: 20px;
  left: 24px;
  margin: 0;
  color: #030303;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  visibility: hidden;
}

.past-global-brand {
  position: fixed;
  z-index: 20000;
  top: clamp(18px, 2.6vh, 22px);
  left: clamp(20px, 2.9vw, 40px);
  margin: 0;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: 1;
  mix-blend-mode: difference;
  cursor: pointer;
  pointer-events: auto;
}

.bridge-stage {
  position: fixed;
  inset: 0;
  z-index: 19000;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition: opacity 760ms ease, visibility 760ms ease;
  --bridge-wipe-left: 100vw;
  --bridge-wipe-top: 100vh;
  --bridge-copy-left: 600px;
  --bridge-copy-top: 320px;
  --bridge-copy-width: 541px;
  --bridge-copy-font-size: 24px;
  --bridge-copy-line-height: 24px;
  --bridge-copy-gap: 10px;
}

.timeline-shell[data-scene^="bridge"] .bridge-stage {
  opacity: 1;
  visibility: visible;
}

.timeline-shell[data-scene^="bridge"] .bridge-stage.is-bridge-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bridge-stage.is-bridge-hold {
  opacity: 1;
  visibility: visible;
}

.tomorrow-stage {
  position: fixed;
  inset: 0;
  z-index: 19500;
  overflow: hidden;
  color: #0f0e0e;
  background: transparent;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 720ms;
  --tomorrow-panel-width: 60vw;
  --tomorrow-content-offset: clamp(46px, 5.42vw, 74px);
  --tomorrow-content-left: var(--tomorrow-content-offset);
  --tomorrow-content-width: min(541px, calc(var(--tomorrow-panel-width) - var(--tomorrow-content-left) - var(--future-edge-x)));
  --tomorrow-form-width: min(640px, calc(var(--tomorrow-panel-width) - var(--tomorrow-content-left) - var(--future-edge-x)));
  --tomorrow-intro-top: clamp(280px, 44.8vh, 344px);
  --tomorrow-copy-top: clamp(250px, 41.66vh, 320px);
  --tomorrow-form-top: clamp(210px, 38.67vh, 297px);
}

.timeline-shell.is-tomorrow-active .tomorrow-stage {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.tomorrow-stage__left,
.tomorrow-stage__right {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.tomorrow-stage__left {
  display: none;
  left: 0;
  z-index: 2;
  width: 0;
  color: #fff;
  background: #0f0e0e;
}

.tomorrow-stage__right {
  left: auto;
  right: 0;
  z-index: 1;
  width: var(--tomorrow-panel-width);
  background: #e1e1cd;
  transform: translateX(100%);
  transition: transform 760ms cubic-bezier(0.72, 0, 0.12, 1);
  will-change: transform;
}

.timeline-shell.is-tomorrow-entered .tomorrow-stage__right {
  transform: translateX(0);
}

.timeline-shell.is-tomorrow-returning .tomorrow-stage__right {
  transform: translateX(100%);
  transition-duration: 620ms;
  transition-timing-function: ease-in-out;
}

.tomorrow-stage__brand {
  position: absolute;
  left: 24px;
  top: 20px;
  margin: 0;
  color: #fff;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: normal;
}

.tomorrow-stage__mark {
  position: absolute;
  left: clamp(24px, 2.93vw, 40px);
  top: 50%;
  width: clamp(42px, 3.8vw, 52px);
  height: calc(clamp(42px, 3.8vw, 52px) * 0.933);
  object-fit: contain;
  object-position: center top;
  clip-path: inset(0 0 9% 0);
  transform: translateY(-51.5%);
}

.tomorrow-stage__yesterday {
  position: absolute;
  left: clamp(24px, 2.93vw, 40px);
  bottom: clamp(22px, 4.1vh, 32px);
  margin: 0;
  color: #8d8d8d;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.tomorrow-stage__intro {
  position: absolute;
  left: var(--tomorrow-content-offset);
  top: var(--tomorrow-intro-top);
  width: var(--tomorrow-content-width);
}

.tomorrow-stage__intro {
  color: #0f0e0e;
  transition: opacity 260ms ease;
}

.tomorrow-stage__copy {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
}

.tomorrow-stage__copy p {
  margin: 0;
  color: inherit;
  letter-spacing: -0.48px;
}

.tomorrow-stage__copy p:first-child {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.tomorrow-stage__copy strong {
  font-weight: 700;
}

.tomorrow-stage__copy p:nth-child(2) {
  margin-top: 10px;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
}

.tomorrow-stage__return {
  position: absolute;
  left: 0;
  top: min(calc(100vh - var(--tomorrow-intro-top) - 52px), clamp(220px, 37.24vh, 286px));
  margin: 0;
  color: #0f0e0e;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.32px;
}

.tomorrow-stage__return button {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.tomorrow-stage__contact,
.tomorrow-stage__today {
  position: absolute;
  right: clamp(20px, 2.9vw, 40px);
  top: clamp(21px, 3.84vh, 29.5px);
  margin: 0;
  padding: 0;
  border: 0;
  color: #0f0e0e;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.tomorrow-stage__today {
  opacity: 0;
  pointer-events: none;
}

.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__contact {
  opacity: 0;
  pointer-events: none;
}

.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__today {
  opacity: 1;
  pointer-events: auto;
}

.tomorrow-contact-form,
.tomorrow-thanks {
  position: absolute;
  left: var(--tomorrow-content-offset);
  z-index: 2;
  color: #0f0e0e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.tomorrow-contact-form {
  top: var(--tomorrow-form-top);
  width: var(--tomorrow-form-width);
}

.tomorrow-thanks {
  top: var(--tomorrow-copy-top);
  width: var(--tomorrow-content-width);
}

.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-contact-form,
.tomorrow-stage[data-tomorrow-mode="thanks"] .tomorrow-thanks {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__intro,
.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__copy,
.tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__return,
.tomorrow-stage[data-tomorrow-mode="thanks"] .tomorrow-stage__intro,
.tomorrow-stage[data-tomorrow-mode="thanks"] .tomorrow-stage__copy,
.tomorrow-stage[data-tomorrow-mode="thanks"] .tomorrow-stage__return {
  opacity: 0;
  pointer-events: none;
}

.tomorrow-contact-form__kicker {
  margin: 0 0 20px;
  color: rgba(15, 14, 14, 0.5);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}

.tomorrow-form {
  display: grid;
  gap: 20px;
}

.tomorrow-form__verification {
  display: grid;
  gap: 8px;
}

.tomorrow-form__line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.tomorrow-form__line span,
.tomorrow-form label,
.tomorrow-form__block {
  color: #0f0e0e;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.tomorrow-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.tomorrow-form__block {
  display: grid;
  gap: 4px;
  width: 100%;
  white-space: normal;
}

.tomorrow-form input {
  height: 39px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #272626;
  border-radius: 8px;
  color: #0f0e0e;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  outline: 0;
}

.tomorrow-form__line:first-child input {
  width: 320px;
}

.tomorrow-form__line label input {
  width: 240px;
}

.tomorrow-form__line--name label input {
  width: 320px;
}

.tomorrow-form__line:nth-child(2) > input,
.tomorrow-form__line:nth-child(2) label input {
  width: 240px;
}

.tomorrow-form__block input {
  width: 100%;
}

.tomorrow-form input::placeholder {
  color: rgba(15, 14, 14, 0.5);
}

.tomorrow-form__legal {
  margin: -2px 0 0;
  color: rgba(15, 14, 14, 0.5);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: normal;
}

.tomorrow-form a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.tomorrow-form__turnstile {
  width: 100%;
  min-height: 65px;
}

.tomorrow-form__turnstile > div,
.tomorrow-form__turnstile iframe {
  max-width: 100%;
}

.tomorrow-form__error {
  margin: 0;
  color: #b42318;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.tomorrow-form button[type="submit"] {
  justify-self: start;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  color: #0f0e0e;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.tomorrow-thanks p {
  margin: 0;
  color: #0f0e0e;
  font-family: "FK Roman Standard", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.32px;
}

.tomorrow-thanks__title {
  margin-bottom: 10px !important;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px !important;
}

.tomorrow-thanks__copy p:not(.tomorrow-thanks__title),
.tomorrow-thanks__next {
  font-size: 16px;
  line-height: 1.1;
}

.tomorrow-thanks__next {
  position: absolute;
  left: 0;
  top: min(calc(100vh - var(--tomorrow-copy-top) - 148px), clamp(190px, 31.25vh, 240px));
}

.tomorrow-thanks button {
  position: absolute;
  left: 0;
  top: min(calc(100vh - var(--tomorrow-copy-top) - 90px), clamp(230px, 38.8vh, 298px));
  margin: 0;
  padding: 0;
  border: 0;
  color: #0f0e0e;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.32px;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

body.is-tomorrow-complete .past-global-brand {
  opacity: 1;
  pointer-events: auto;
}

.yesterday-stage {
  position: fixed;
  inset: 0;
  z-index: 19550;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  --yesterday-peek-width: clamp(42px, 4.7vw, 48px);
  --yesterday-panel-width: clamp(132px, 16.1vw, 165px);
  --yesterday-ui-x: clamp(20px, 2.9vw, 40px);
  --yesterday-orange: var(--highlight-coral);
}

.timeline-shell.is-yesterday-preview .yesterday-stage,
.timeline-shell.is-yesterday-full .yesterday-stage {
  visibility: visible;
  opacity: 1;
}

.timeline-shell.is-yesterday-preview .yesterday-stage {
  pointer-events: none;
}

.timeline-shell.is-yesterday-full .yesterday-stage {
  pointer-events: auto;
}

.yesterday-stage__preview {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--yesterday-peek-width);
  overflow: hidden;
  background: #ffffff;
  color: #030303;
  opacity: 0;
  pointer-events: auto;
  transition: width 960ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 220ms linear;
}

.timeline-shell.is-yesterday-preview .yesterday-stage__preview {
  opacity: 1;
}

.timeline-shell.is-yesterday-preview-open .yesterday-stage__preview {
  width: var(--yesterday-panel-width);
}

.yesterday-stage__preview-mark {
  position: absolute;
  left: clamp(20px, 2.9vw, 40px);
  top: 50%;
  width: clamp(42px, 3.8vw, 52px);
  height: calc(clamp(42px, 3.8vw, 52px) * 0.933);
  filter: brightness(0);
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.timeline-shell.is-yesterday-preview-open .yesterday-stage__preview-mark {
  opacity: 0;
}

.yesterday-stage__preview-copy,
.yesterday-stage__return {
  margin: 0;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.28px;
}

.yesterday-stage__preview-copy {
  position: absolute;
  left: var(--yesterday-ui-x);
  top: 50%;
  width: 96px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
  transition-delay: 120ms;
}

.timeline-shell.is-yesterday-preview-open .yesterday-stage__preview-copy {
  opacity: 1;
}

.yesterday-stage__preview-copy strong,
.yesterday-stage__return strong {
  display: block;
  font-weight: 700;
}

.yesterday-stage__preview-action {
  position: absolute;
  left: var(--yesterday-ui-x);
  top: auto;
  bottom: clamp(22px, 4.9vh, 40px);
  margin: 0;
  padding: 0;
  border: 0;
  color: #030303;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.28px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease;
  transition-delay: 160ms;
}

.timeline-shell.is-yesterday-preview-open .yesterday-stage__preview-action {
  opacity: 1;
}

.yesterday-stage__full {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition:
    clip-path 820ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 120ms linear;
}

.timeline-shell.is-yesterday-full .yesterday-stage__full {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.timeline-shell.is-yesterday-returning .yesterday-stage__full {
  opacity: 1;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition-duration: 860ms;
  transition-timing-function: cubic-bezier(0.72, 0, 0.12, 1);
}

.timeline-shell.is-yesterday-full .yesterday-stage__preview {
  opacity: 0;
  pointer-events: none;
}

.yesterday-stage__site {
  position: absolute;
  left: 0;
  top: 0;
  right: var(--yesterday-peek-width);
  bottom: 0;
  overflow: hidden;
  background: #ffffff;
  transition: right 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.timeline-shell.is-yesterday-rail-open .yesterday-stage__site,
.yesterday-stage__full:has(.yesterday-stage__rail:hover) .yesterday-stage__site {
  right: var(--yesterday-panel-width);
}

.yesterday-stage__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.yesterday-stage__rail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--yesterday-peek-width);
  overflow: hidden;
  background: #0f0e0e;
  color: #ffffff;
  cursor: pointer;
  transition: width 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.timeline-shell.is-yesterday-rail-open .yesterday-stage__rail,
.yesterday-stage__rail:hover {
  width: var(--yesterday-panel-width);
}

.yesterday-stage__rail-compact {
  position: absolute;
  left: 14px;
  top: clamp(14px, 2.45vh, 20px);
  margin: 0;
  color: #ffffff;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.28px;
  opacity: 1;
  transition: opacity 180ms ease;
}

.timeline-shell.is-yesterday-rail-open .yesterday-stage__rail-compact,
.yesterday-stage__rail:hover .yesterday-stage__rail-compact {
  opacity: 0;
}

.yesterday-stage__return {
  position: absolute;
  left: clamp(36px, 4.3vw, 44px);
  top: 50%;
  width: 90px;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.yesterday-stage__return strong {
  color: var(--yesterday-orange);
}

.timeline-shell.is-yesterday-rail-open .yesterday-stage__return,
.yesterday-stage__rail:hover .yesterday-stage__return {
  opacity: 1;
}

body.is-yesterday-full .past-global-brand {
  opacity: 0;
  pointer-events: none;
}

.bridge-frame {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: #030303;
  background: #ffffff;
}

.bridge-columns {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  transition: opacity 760ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(215, 215, 215, 0.42) 73%, rgba(255, 255, 255, 0.62) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(238, 238, 238, 0.46) 0,
      rgba(255, 255, 255, 0.08) 42px,
      rgba(232, 232, 232, 0.36) 85.375px
    );
}

.timeline-shell[data-scene^="bridge"] .past-webgl-glass {
  opacity: 0.64;
  transition: opacity 180ms linear;
}

.bridge-brand {
  position: absolute;
  left: 24px;
  top: 20px;
  margin: 0;
  color: #030303;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.36px;
  white-space: nowrap;
  visibility: hidden;
}

body.is-bridge-active .past-global-brand {
  font-family: "FK Roman Standard", Georgia, serif;
  font-weight: 400;
}

body.is-future-brand .past-global-brand {
  font-family: "FK Roman Standard", Georgia, serif;
  font-weight: 400;
}

.bridge-brand--white {
  color: #ffffff;
}

.bridge-copy {
  position: absolute;
  left: var(--bridge-copy-left);
  top: var(--bridge-copy-top);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--bridge-copy-gap);
  width: var(--bridge-copy-width);
  color: #030303;
  font-family: "Instrument Sans", Inter, Arial, sans-serif;
  font-size: var(--bridge-copy-font-size);
  font-weight: 400;
  line-height: var(--bridge-copy-line-height);
  letter-spacing: -0.48px;
  word-break: break-word;
}

.bridge-copy--white {
  color: #ffffff;
  transition: opacity 160ms linear;
}

.bridge-stage.is-bridge-wipe-clean .bridge-copy--white {
  opacity: 0;
}

.bridge-line {
  min-height: var(--bridge-copy-line-height);
  line-height: var(--bridge-copy-line-height);
  white-space: nowrap;
}

.bridge-line--sans {
  line-height: 1;
}

.bridge-line--serif {
  font-family: "FK Roman Standard", "Times New Roman", Georgia, serif;
  font-weight: 300;
  line-height: normal;
}

.bridge-emphasis {
  font-weight: 600;
}

.bridge-caret {
  display: none;
  width: 2px;
  height: 24px;
  margin-left: 2px;
  background: currentColor;
  vertical-align: -4px;
  animation: bridgeCaretFade 980ms ease-in-out infinite;
}

.bridge-caret.is-active {
  display: inline-block;
}

.bridge-wipe {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw - var(--bridge-wipe-left));
  height: 100vh;
  overflow: hidden;
  background: #0f0e0e;
  color: #ffffff;
  transform: translateX(var(--bridge-wipe-left));
  will-change: width, transform;
}

.bridge-wipe > * {
  transform: translateX(calc(var(--bridge-wipe-left) * -1));
  will-change: transform;
}

.bridge-mark {
  position: absolute;
  left: clamp(20px, 2.9vw, 40px);
  top: 50%;
  width: clamp(42px, 3.8vw, 52px);
  height: calc(clamp(42px, 3.8vw, 52px) * 0.933);
  display: block;
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: translateX(calc(var(--bridge-wipe-left) * -1)) translateY(-50%);
}

.bridge-step {
  position: absolute;
  left: var(--bridge-copy-left);
  top: min(calc(100vh - 118px), calc(var(--bridge-copy-top) + clamp(176px, 30vh, 280px)));
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--highlight-coral);
  background: transparent;
  font-family: "Instrument Sans", Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.32px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.bridge-stage.is-step-visible {
  pointer-events: auto;
}

.bridge-stage.is-step-visible .bridge-step {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 760px) {
  .bridge-columns {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(215, 215, 215, 0.42) 73%, rgba(255, 255, 255, 0.62) 100%),
      repeating-linear-gradient(
        180deg,
        rgba(238, 238, 238, 0.46) 0,
        rgba(255, 255, 255, 0.08) 42px,
        rgba(232, 232, 232, 0.36) 85px
      );
  }

  .bridge-copy {
    gap: var(--bridge-copy-gap);
    font-size: var(--bridge-copy-font-size);
    line-height: var(--bridge-copy-line-height);
    letter-spacing: -0.4px;
  }

  .bridge-line {
    min-height: var(--bridge-copy-line-height);
    line-height: var(--bridge-copy-line-height);
  }

  .bridge-wipe {
    width: 100vw;
    height: calc(100vh - var(--bridge-wipe-top));
    transform: translateY(var(--bridge-wipe-top));
    will-change: height, transform;
  }

  .bridge-wipe > * {
    transform: translateY(calc(var(--bridge-wipe-top) * -1));
  }

  .bridge-mark {
    left: 12px;
    top: var(--bridge-copy-top);
    width: 42.8889px;
    height: 40px;
    transform: translateY(calc(var(--bridge-wipe-top) * -1));
  }

  .bridge-step {
    top: min(calc(100vh - 82px), calc(var(--bridge-copy-top) + 240px));
  }
}

@keyframes bridgeCaretFade {
  0%,
  100% {
    opacity: 0;
  }

  45%,
  65% {
    opacity: 1;
  }
}

.past-static-title {
  position: absolute;
  bottom: var(--past-copy-bottom);
  left: var(--past-copy-left);
  width: var(--past-copy-width);
  margin: 0;
  color: #3c3e40;
  font-size: var(--font-size--fluid-medium, 3.75vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04vw;
}

.past-static-title strong {
  font-weight: 800;
}

.past-static-title [data-experience-days] {
  white-space: nowrap;
}

.past-composite > .shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--glass-column-left, 100vw);
  width: var(--glass-column-width, 0px);
  min-width: 0;
  height: 100%;
  overflow: hidden;
  opacity: var(--glass-column-opacity, 0);
  z-index: 9999;
  pointer-events: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateZ(0);
  will-change: left, width, opacity;
}

.past-webgl-glass {
  position: absolute;
  inset: 0;
  z-index: 9998;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 80ms linear;
}

.past-webgl-glass.is-liquid-ready {
  opacity: 1;
}

.past-composite > .shape::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(246, 246, 246, 0.36) 0%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(238, 238, 238, 0.28) 100%
    );
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.72),
    inset -1px 0 rgba(0, 0, 0, 0.045);
}

.past-composite.is-webgl-glass-active > .shape::before {
  opacity: 0;
}

.timeline-shell[data-scene="glass-unify"] .past-composite > .shape,
.timeline-shell[data-scene="glass-clear"] .past-composite > .shape {
  left: var(--glass-final-left, var(--glass-column-left, 0px));
  width: var(--glass-final-width, var(--glass-column-width, 85px));
  opacity: 1;
}

@media (max-width: 760px) {
  .past-composite > .shape {
    top: var(--glass-column-top, 100vh);
    bottom: auto;
    left: 0;
    width: 100%;
    height: var(--glass-column-height, 0px);
    will-change: top, height, opacity;
  }

  .past-composite > .shape::before {
    background:
      linear-gradient(
        180deg,
        rgba(246, 246, 246, 0.36) 0%,
        rgba(255, 255, 255, 0.08) 42%,
        rgba(238, 238, 238, 0.28) 100%
      );
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.72),
      inset 0 -1px rgba(0, 0, 0, 0.045);
  }

  .timeline-shell[data-scene="glass-unify"] .past-composite > .shape,
  .timeline-shell[data-scene="glass-clear"] .past-composite > .shape {
    top: var(--glass-final-top, var(--glass-column-top, 0px));
    width: 100%;
    height: var(--glass-final-height, var(--glass-column-height, 85px));
  }

  .past-static-brand {
    top: 18px;
    left: 18px;
  }

  .past-global-brand {
    top: 18px;
    left: 18px;
  }

  .past-static-title {
    bottom: clamp(16px, 3vh, 28px);
    left: clamp(18px, 4vw, 24px);
    width: calc(100vw - (clamp(18px, 4vw, 24px) * 2));
    font-size: var(--font-size--xl, 2.25rem);
    line-height: 1;
  }
}

@media (max-width: 991px) and (min-width: 761px) {
  .past-static-title {
    bottom: clamp(16px, 3vh, 32px);
    left: var(--past-grid-padding);
    width: min(calc(100vw - (var(--past-grid-padding) * 2)), 30ch);
    font-size: var(--font-size--2xl, 2.5rem);
    letter-spacing: 0;
  }
}

@media (max-width: 479px) {
  .past-static-title {
    bottom: clamp(18px, 4vh, 34px);
    font-size: var(--font-size--large, 1.5rem);
  }
}

.future-edge-signal {
  display: none;
}

.future-edge-signal span {
  position: absolute;
  right: -40px;
  display: block;
  width: var(--edge-size);
  height: var(--edge-size);
  border-radius: 50%;
  background: #030303;
  opacity: calc(var(--edge-progress) * var(--edge-alpha));
  filter: blur(var(--edge-blur));
  transform: scale(calc(0.66 + (var(--edge-progress) * 0.2)));
  transform-origin: 72% 50%;
  animation: futureEdgeOrbPulse var(--edge-speed) cubic-bezier(0.68, 0, 0.22, 1) infinite;
}

.future-edge-signal span:nth-child(1) {
  --edge-size: 86px;
  --edge-alpha: 0.74;
  --edge-blur: 1px;
  --edge-speed: 1280ms;
  top: -32px;
  right: -44px;
}

.future-edge-signal span:nth-child(2) {
  --edge-size: 132px;
  --edge-alpha: 0.82;
  --edge-blur: 0px;
  --edge-speed: 1390ms;
  top: 46px;
  right: -70px;
  animation-delay: -190ms;
}

.future-edge-signal span:nth-child(3) {
  --edge-size: 108px;
  --edge-alpha: 0.72;
  --edge-blur: 2px;
  --edge-speed: 1210ms;
  top: 154px;
  right: -58px;
  animation-delay: -410ms;
}

.future-edge-signal span:nth-child(4) {
  --edge-size: 154px;
  --edge-alpha: 0.88;
  --edge-blur: 1px;
  --edge-speed: 1460ms;
  top: 245px;
  right: -82px;
  animation-delay: -120ms;
}

.future-edge-signal span:nth-child(5) {
  --edge-size: 96px;
  --edge-alpha: 0.66;
  --edge-blur: 2px;
  --edge-speed: 1330ms;
  top: 368px;
  right: -48px;
  animation-delay: -520ms;
}

.future-edge-signal span:nth-child(6) {
  --edge-size: 138px;
  --edge-alpha: 0.82;
  --edge-blur: 1px;
  --edge-speed: 1260ms;
  top: 438px;
  right: -72px;
  animation-delay: -290ms;
}

.future-edge-signal span:nth-child(7) {
  --edge-size: 118px;
  --edge-alpha: 0.72;
  --edge-blur: 2px;
  --edge-speed: 1510ms;
  top: 548px;
  right: -62px;
  animation-delay: -90ms;
}

.future-edge-signal span:nth-child(8) {
  --edge-size: 92px;
  --edge-alpha: 0.68;
  --edge-blur: 1px;
  --edge-speed: 1180ms;
  top: 646px;
  right: -48px;
  animation-delay: -360ms;
}

.future-edge-signal span:nth-child(9) {
  --edge-size: 128px;
  --edge-alpha: 0.76;
  --edge-blur: 2px;
  --edge-speed: 1420ms;
  top: 704px;
  right: -72px;
  animation-delay: -240ms;
}

.future-edge-signal span:nth-child(10) {
  --edge-size: 74px;
  --edge-alpha: 0.58;
  --edge-blur: 3px;
  --edge-speed: 1640ms;
  top: 318px;
  right: -36px;
  animation-delay: -760ms;
}

.intro-stage {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: transparent;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.timeline-shell[data-scene="wipe"] .intro-stage,
.timeline-shell[data-scene="statement"] .intro-stage,
.timeline-shell[data-scene="question"] .intro-stage {
  opacity: 1;
  visibility: visible;
}

.intro-stage__wash {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0);
  transition: background 780ms var(--intro-ease);
}

.timeline-shell[data-scene="statement"] .intro-stage__wash,
.timeline-shell[data-scene="question"] .intro-stage__wash {
  background: rgba(3, 3, 3, 0.84);
}

.intro-stage__stripes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  transform: translate3d(102%, 0, 0);
  transition: transform 1020ms var(--intro-ease);
  will-change: transform;
}

.timeline-shell[data-scene="wipe"] .intro-stage__stripes,
.timeline-shell[data-scene="statement"] .intro-stage__stripes,
.timeline-shell[data-scene="question"] .intro-stage__stripes {
  transform: translate3d(0, 0, 0);
}

.intro-stage__stripes span {
  display: block;
  min-height: 100vh;
  background: rgba(3, 3, 3, 0.88);
  transform: translate3d(0, 0, 0);
}

.intro-stage__stripes span:nth-child(2n) {
  background: rgba(3, 3, 3, 0.7);
}

.intro-stage__stripes span:nth-child(3n) {
  background: rgba(3, 3, 3, 0.94);
}

.intro-stage__past-copy,
.intro-stage__question {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  color: var(--intro-white);
  font-family: var(--intro-ui);
  letter-spacing: 0;
  text-align: center;
  transform: translate(-50%, -44%);
  opacity: 0;
  transition: opacity 420ms ease, transform 620ms var(--intro-ease);
}

.intro-stage__past-copy {
  width: min(760px, calc(100vw - 32px));
  font-size: clamp(42px, 7.2vw, 104px);
  font-weight: 760;
  line-height: 0.92;
}

.timeline-shell[data-scene="statement"] .intro-stage__past-copy {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.intro-stage__question {
  display: grid;
  place-items: center;
  gap: clamp(30px, 6vw, 72px);
  width: min(720px, calc(100vw - 32px));
}

.intro-stage__question span {
  display: block;
  font-size: clamp(54px, 10vw, 150px);
  font-weight: 760;
  line-height: 0.9;
}

.timeline-shell[data-scene="question"] .intro-stage__question {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.intro-stage__plus {
  position: relative;
  width: clamp(66px, 8vw, 106px);
  aspect-ratio: 1;
  border: 1px solid var(--intro-line);
  border-radius: 50%;
  background: transparent;
  color: var(--intro-white);
}

.intro-stage__plus::before,
.intro-stage__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38%;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.intro-stage__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.future-footer button,
.future-footer a,
.future-temporal-nav button,
.future-temporal-nav a {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--intro-ui);
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.future-footer button:hover,
.future-footer a:hover,
.future-temporal-nav button:hover,
.future-temporal-nav a:hover {
  transform: translateY(-1px);
}

.future-site {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--intro-white);
  background: var(--intro-black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --future-scale: 1;
}

.future-topbar {
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 64px;
}

.future-brand,
.future-temporal-nav a,
.future-temporal-nav button,
.future-footer a,
.future-footer button {
  color: var(--intro-white);
}

.future-brand {
  position: absolute;
  left: 24px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: normal;
  text-decoration: none;
}

.future-brand,
.future-temporal-nav,
.future-today,
.future-footer,
.future-control {
  opacity: 0;
  transition: opacity 680ms ease;
}

.timeline-shell[data-narrative="complete"] .future-brand,
.timeline-shell[data-narrative="complete"] .future-temporal-nav,
.timeline-shell[data-narrative="complete"] .future-today,
.timeline-shell[data-narrative="complete"] .future-footer,
.timeline-shell[data-narrative="complete"] .future-control {
  opacity: 1;
}

.future-temporal-nav {
  position: absolute;
  right: 40px;
  top: 23px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--intro-muted);
  font-size: 13px;
}

.future-temporal-nav button,
.future-temporal-nav a {
  min-height: 17px;
  padding: 0;
  color: #8d8d8d;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
  opacity: 1;
}

.future-hero {
  position: absolute;
  inset: 0;
}

.timeline-shell.is-future-live .future-hero {
  transform: translateY(var(--future-canvas-y-fix, 0px));
}

.timeline-shell.is-future-live .future-topbar,
.timeline-shell.is-future-live .future-footer {
  transform: translateY(var(--future-canvas-y-fix, 0px));
}

.timeline-shell.is-future-live .future-site[data-future-mode="contact"] .future-hero,
.timeline-shell.is-future-live .future-site[data-future-mode="thanks"] .future-hero,
.timeline-shell.is-future-live .future-site[data-future-mode="contact"] .future-topbar,
.timeline-shell.is-future-live .future-site[data-future-mode="thanks"] .future-topbar,
.timeline-shell.is-future-live .future-site[data-future-mode="contact"] .future-footer,
.timeline-shell.is-future-live .future-site[data-future-mode="thanks"] .future-footer {
  transform: none;
}

.future-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.future-today {
  position: absolute;
  left: 570px;
  top: 30px;
  margin: 0;
  color: var(--intro-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: normal;
}

.future-mark {
  position: absolute;
  left: 40px;
  top: 360px;
  width: 51.47px;
  height: 48px;
}

.future-control {
  position: absolute;
  display: block;
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.future-control--pause {
  left: 475px;
  top: 376px;
  width: 16px;
  height: 16px;
}

.future-control--volume {
  left: 507px;
  top: 374px;
  width: 20px;
  height: 20px;
}

.future-control--volume {
  display: none !important;
  pointer-events: none !important;
}

.future-control img {
  display: block;
  width: 100%;
  height: 100%;
}

.future-statement {
  position: absolute;
  left: 570px;
  top: 370px;
  width: 650px;
  color: var(--intro-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.48px;
  white-space: normal;
  opacity: 0;
  --history-progress: 0;
  transition: opacity 260ms ease;
}

.timeline-shell[data-narrative="typing"] .future-statement,
.timeline-shell[data-narrative="complete"] .future-statement {
  opacity: 1;
}

.future-statement span {
  display: inline;
}

.future-statement__text {
  position: relative;
  z-index: 2;
  display: inline;
  white-space: pre-line;
  transition: opacity 260ms ease;
}

.future-statement__ghost {
  display: none !important;
}

.future-statement.is-reviewing .future-statement__text {
  opacity: 1;
}

.future-statement.is-history-changing .future-statement__text {
  animation: historyTextSwap 320ms ease;
}

.future-caret {
  position: absolute;
  left: var(--caret-x, 0px);
  top: var(--caret-y, 0px);
  z-index: 3;
  display: block !important;
  width: 1px;
  height: 1.1em;
  margin-left: 3px;
  background: currentColor;
  animation: caretBlink 1180ms ease-in-out infinite;
  opacity: 0;
  transition:
    left 16ms linear,
    top 16ms linear,
    opacity 180ms ease;
}

.timeline-shell[data-narrative="typing"] .future-caret,
.timeline-shell[data-narrative="complete"] .future-caret {
  opacity: 1;
}

.future-footer {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 2.7778vw, 40px);
  right: clamp(24px, 2.7778vw, 40px);
  bottom: clamp(72px, 17vw, 153px);
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 3vw, 48px);
  pointer-events: none;
}

.future-footer button,
.future-footer a {
  min-height: 17px;
  padding: 0;
  color: #8d8d8d;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
  pointer-events: auto;
}

.future-footer button {
  justify-self: start;
}

.future-footer a {
  justify-self: end;
  color: var(--intro-white);
}

.future-timeline {
  position: relative;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.future-timeline::before,
.future-timeline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.future-timeline::before {
  height: 20px;
  background: repeating-linear-gradient(90deg, transparent 0 5px, #3a3a3a 5px 6px);
}

.future-timeline::after {
  height: 24px;
  background:
    repeating-linear-gradient(90deg, transparent 0 179px, #5d5d5d 179px 180px, transparent 180px 185px, #5d5d5d 185px 186px),
    repeating-linear-gradient(90deg, transparent 0 71px, var(--highlight-coral) 71px 72px, transparent 72px 77px, var(--highlight-coral) 77px 78px);
}

.future-timeline span {
  display: none;
}

@media (min-width: 761px) {
  .future-canvas {
    inset: auto;
    left: 50%;
    top: 50%;
    width: 1440px;
    height: 900px;
    transform: translate(-50%, -50%) scale(var(--future-scale));
    transform-origin: center center;
  }
}

@keyframes caretBlink {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes historyTextSwap {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes historyMemoryIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes futureEdgeOrbPulse {
  0%,
  100% {
    transform: scale(calc(0.66 + (var(--edge-progress) * 0.2)));
  }

  12% {
    transform: scale(calc(0.77 + (var(--edge-progress) * 0.32)));
  }

  22% {
    transform: scale(calc(0.7 + (var(--edge-progress) * 0.22)));
  }

  42% {
    transform: scale(calc(0.82 + (var(--edge-progress) * 0.38)));
  }

  64% {
    transform: scale(calc(0.68 + (var(--edge-progress) * 0.24)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track,
  .intro-stage,
  .intro-stage__wash,
  .intro-stage__stripes,
  .intro-stage__past-copy,
  .intro-stage__question,
  .future-caret,
  .future-statement__ghost,
  .future-statement__text,
  .future-edge-signal span {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 760px) {
  .future-topbar {
    min-height: 66px;
  }

  .future-today {
    left: 24px;
    top: 118px;
  }

  .future-mark {
    left: 24px;
    top: 64px;
    width: 46px;
    height: 43px;
  }

  .future-control--pause {
    left: 24px;
    top: 132px;
  }

  .future-control--volume {
    left: 56px;
    top: 130px;
  }

  .future-statement {
    left: 96px;
    top: 128px;
    width: calc(100vw - 120px);
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: -0.38px;
  }

  .future-statement__ghost {
    width: calc(100vw - 120px);
    bottom: calc(100% + 14px);
  }

  .future-brand {
    left: 24px;
    top: 24px;
  }

  .future-temporal-nav {
    right: 24px;
    top: 27px;
  }

  .future-footer a {
    justify-self: end;
  }

  .future-footer {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    left: 24px;
    right: 24px;
    bottom: 48px;
  }

  .future-timeline {
    width: min(132px, 34vw);
    gap: 5px;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .intro-stage__stripes {
    grid-template-columns: repeat(10, 1fr);
  }

  .intro-stage__stripes span:nth-child(n + 11) {
    display: none;
  }

  .intro-stage__past-copy {
    font-size: clamp(40px, 14vw, 64px);
  }
}

/* Figma 2026 discourse stage. Kept after legacy rules so it can override the first prototype safely. */
.timeline-shell[data-scene="future"] .future-brand,
.timeline-shell.is-future-live .future-brand,
.timeline-shell[data-scene="future"] .future-restart,
.timeline-shell.is-future-live .future-restart,
.timeline-shell[data-scene="future"] .future-contact-link,
.timeline-shell.is-future-live .future-contact-link,
.timeline-shell[data-scene="future"] .future-footer,
.timeline-shell.is-future-live .future-footer,
.timeline-shell[data-scene="future"] .future-control,
.timeline-shell.is-future-live .future-control {
  opacity: 1;
}

.future-topbar,
.future-canvas,
.future-footer {
  position: absolute;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: 1366px;
  height: 768px;
  transform: translate(-50%, -50%) scale(var(--future-scale));
  transform-origin: center center;
}

.future-topbar {
  z-index: 9;
  pointer-events: none;
}

.future-canvas {
  z-index: 3;
}

.future-footer {
  z-index: 8;
  display: block;
  pointer-events: none;
}

.future-brand,
.future-restart,
.future-form-back,
.future-contact-link,
.future-footer button,
.future-footer a,
.future-footer__today {
  position: absolute;
  margin: 0;
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  letter-spacing: 0;
  pointer-events: auto;
}

.future-restart,
.future-form-back,
.future-contact-link {
  opacity: 0;
  transition: opacity 680ms ease;
}

.future-brand {
  left: 24px;
  top: 20px;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
}

.future-restart {
  left: 600px;
  top: 22px;
  color: #8d8d8d;
}

.future-form-back {
  left: 600px;
  top: 22px;
  color: #fff;
  pointer-events: none;
}

.future-contact-link {
  left: 1265px;
  top: 22px;
  color: #fff;
}

.future-mark {
  left: 40px;
  top: 352px;
  width: 51.47px;
  height: 48px;
}

.future-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #272626;
  border-radius: 8px;
  background: transparent;
}

.future-control--pause {
  left: 410px;
  top: 336px;
}

.future-control--volume {
  left: 442px;
  top: 336px;
}

.future-control img {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.future-control[aria-pressed="true"] {
  border-color: var(--highlight-coral);
}

.future-control--pause[aria-pressed="true"] {
  border-color: #272626;
}

.future-control--pause img,
.future-control--volume img {
  display: none;
}

.future-control--pause::before,
.future-control--pause::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.future-control--pause::before {
  margin-right: 3px;
}

.future-control--pause.is-paused::before {
  width: 0;
  height: 0;
  margin-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  background: transparent;
}

.future-control--pause.is-paused::after {
  display: none;
}

.future-control--volume::before {
  content: "";
  width: 14px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) 0 4px / 5px 4px no-repeat,
    linear-gradient(135deg, transparent 0 43%, currentColor 44% 56%, transparent 57%) 4px 1px / 8px 10px no-repeat;
}

.future-control--volume.is-muted::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transform: rotate(-42deg);
}

.future-statement {
  left: 600px;
  top: 320px;
  width: 541px;
  color: #fff;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: var(--future-copy-leading);
  letter-spacing: -0.48px;
  white-space: normal;
}

.future-statement__text {
  position: relative;
  z-index: 3;
  display: block;
  white-space: normal;
  transition: opacity 180ms ease, transform 180ms ease;
}

.future-statement.is-text-switching .future-statement__text {
  opacity: 0;
  transform: translateY(3px);
}

.future-statement__text p {
  margin: 0 0 var(--future-paragraph-gap);
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.future-statement__text p:last-child {
  margin-bottom: 0;
}

.future-line--sans {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: var(--future-copy-leading);
}

.future-statement__text .future-line--sans,
.future-statement__text .future-line--sans * {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: var(--future-copy-leading);
}

.future-line--sans strong {
  font-weight: 650;
}

.future-strong {
  font-weight: 500;
}

.future-accent {
  color: var(--highlight-coral);
  font-weight: 500;
}

.future-inline-link {
  position: relative;
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--highlight-coral);
  background: transparent;
  font: inherit;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.future-inline-human-ai sup,
.future-inline-link sup,
.future-timeline-preview sup {
  font-size: 0.58em;
  line-height: 0;
  vertical-align: super;
}

.future-inline-link > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-radius: 999px;
  background: currentColor;
  vertical-align: 0.1em;
}

.future-caret {
  position: static;
  display: inline-block !important;
  width: 2px;
  height: 1.1em;
  margin-left: 4px;
  background: currentColor;
  animation: caretBlink 1180ms ease-in-out infinite;
  opacity: 1;
  vertical-align: -0.14em;
  transition: opacity 180ms ease;
}

.future-statement__text .future-caret {
  display: inline-block !important;
  opacity: 1;
}

.timeline-shell[data-narrative="typing"] .future-statement__text .future-caret {
  animation: none;
  opacity: 1;
}

.timeline-shell[data-narrative="complete"] .future-statement__text .future-caret {
  animation: caretBlink 1180ms ease-in-out infinite;
}

.future-history {
  position: absolute;
  left: 0;
  top: -197px;
  z-index: 1;
  width: 541px;
  color: #fff;
  pointer-events: auto;
}

.future-history__item {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: var(--future-copy-leading);
  letter-spacing: -0.48px;
  opacity: 0.035;
  filter: blur(1.2px);
  cursor: pointer;
  transition: opacity 180ms ease, filter 180ms ease;
}

.future-history__item:nth-last-child(1) {
  opacity: 0.075;
}

.future-history__item:hover {
  opacity: 0.28;
  filter: blur(0.35px);
}

.future-statement__ghost {
  display: none !important;
}

.future-footer button {
  left: 40px;
  top: 727px;
  color: #8d8d8d;
}

.future-footer .future-footer__today {
  left: 600px;
  top: 727px;
  color: #fff;
  font-weight: 650;
}

.future-footer > a {
  left: 1274px;
  top: 727px;
  color: #8d8d8d;
}

.future-timeline {
  position: absolute;
  left: 1302px;
  top: 165px;
  width: 24px;
  height: 438px;
  pointer-events: auto;
  cursor: pointer;
}

.future-timeline::before {
  left: 15px;
  top: 0;
  right: auto;
  bottom: auto;
  width: 11px;
  height: 438px;
  background: transparent;
}

.future-timeline::after {
  left: 0;
  top: var(--future-progress-dot-y, 0);
  right: auto;
  bottom: auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  transition: top 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.future-timeline span {
  position: absolute;
  top: var(--tick-y, 0%);
  right: 0;
  display: block;
  width: var(--tick-width, 7px);
  height: 1px;
  background: #3a3a3a;
  opacity: 0.72;
  pointer-events: none;
  transform: translateY(-0.5px);
  transition: background 260ms ease, opacity 260ms ease, width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.future-timeline span.is-interactive {
  background: rgba(255, 116, 82, 0.46);
  opacity: 0.82;
}

.future-timeline span.is-passed {
  width: var(--tick-passed-width, var(--tick-width, 7px));
  background: rgba(255, 255, 255, 0.88);
  opacity: calc(0.58 + (var(--tick-fill, 0) * 0.34));
}

.future-timeline span.is-passed.is-interactive {
  background: rgba(255, 116, 82, calc(0.48 + (var(--tick-fill, 0) * 0.38)));
}

.future-timeline span.is-active {
  width: var(--tick-active-width, 11px);
  background: #fff;
  opacity: 1;
}

.future-timeline span.is-active.is-interactive {
  background: var(--highlight-coral);
}

.future-site[data-future-mode="contact"] .future-statement,
.future-site[data-future-mode="contact"] .future-control,
.future-site[data-future-mode="thanks"] .future-statement,
.future-site[data-future-mode="thanks"] .future-control {
  opacity: 0;
  pointer-events: none;
}

.future-site[data-future-mode="contact"] .future-restart,
.future-site[data-future-mode="contact"] .future-contact-link,
.future-site[data-future-mode="contact"] .future-footer button,
.future-site[data-future-mode="contact"] .future-footer > a,
.future-site[data-future-mode="contact"] .future-footer__today,
.future-site[data-future-mode="thanks"] .future-restart,
.future-site[data-future-mode="thanks"] .future-contact-link,
.future-site[data-future-mode="thanks"] .future-footer button,
.future-site[data-future-mode="thanks"] .future-footer > a,
.future-site[data-future-mode="thanks"] .future-footer__today {
  opacity: 0;
  pointer-events: none;
}

.future-site[data-future-mode="contact"] .future-form-back,
.future-site[data-future-mode="thanks"] .future-form-back {
  opacity: 1;
  pointer-events: auto;
}

.future-site[data-future-mode="contact"] .future-contact-form,
.future-site[data-future-mode="thanks"] .future-thanks {
  opacity: 1;
  pointer-events: auto;
}

.future-site[data-future-mode="contact"] .future-legal-footer {
  opacity: 1;
  pointer-events: auto;
}

.future-contact-form,
.future-thanks {
  position: absolute;
  left: 600px;
  top: 264px;
  z-index: 5;
  width: 640px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.future-contact-form {
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  width: var(--future-form-width);
  max-width: var(--future-form-width);
}

.future-form-kicker,
.future-form__legal {
  margin: 0;
  color: #8d8d8d;
  font-size: 14px;
  line-height: normal;
}

.future-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.future-form__verification {
  display: grid;
  gap: 8px;
}

.future-form__line {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 38px;
}

.future-form__line label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.future-form__line span {
  white-space: nowrap;
}

.future-form label,
.future-form__line span,
.future-form__block {
  color: #fff;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.future-form__line + .future-form__line {
  margin-top: -16px;
}

.future-form input {
  box-sizing: border-box;
  height: 38px;
  margin-left: 0;
  padding: 7px 8px;
  border: 1px solid #272626;
  border-radius: 6px;
  color: #fff;
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.future-form input::placeholder {
  color: #8d8d8d;
  opacity: 1;
}

.future-form__line > input {
  width: 240px;
}

.future-form label input {
  width: 240px;
}

.future-form__line:first-child label input {
  width: 320px;
}

.future-form__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.future-form .future-form__block input {
  width: 100%;
  margin-left: 0;
}

.future-form__legal a {
  color: inherit;
}

.future-form__turnstile {
  width: 100%;
  min-height: 65px;
}

.future-form__turnstile > div,
.future-form__turnstile iframe {
  max-width: 100%;
}

.future-form__error {
  margin: 0;
  color: #ff8c77;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.future-form__legal + button {
  margin-top: 6px;
}

.future-form button,
.future-thanks button,
.future-statement__cta {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--highlight-coral);
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.32px;
  cursor: pointer;
}

.future-form button[disabled],
.tomorrow-form button[disabled] {
  opacity: 0.48;
  pointer-events: none;
}

.future-legal-footer {
  position: absolute;
  z-index: 8;
  left: var(--future-edge-x);
  bottom: clamp(16px, 2.6vh, 26px);
  margin: 0;
  color: #393939;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.future-legal-footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.future-legal-footer a:hover {
  color: var(--highlight-coral);
}

.future-statement__cta {
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 24px;
  letter-spacing: -0.48px;
}

.future-thanks {
  top: 320px;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}

.future-thanks__title {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.48px;
}

.future-thanks__next {
  margin-top: 140px;
}

@media (max-width: 760px) {
  .future-topbar,
  .future-canvas,
  .future-footer {
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    transform: none;
  }

  .future-brand {
    left: 20px;
    top: 18px;
    font-size: 15px;
  }

  .future-restart {
    left: 20px;
    top: 64px;
  }

  .future-contact-link {
    left: auto;
    right: 20px;
    top: 64px;
  }

  .future-mark {
    left: 22px;
    top: 50%;
    width: 42px;
    height: auto;
    transform: translateY(-50%);
  }

  .future-control--pause {
    left: 92px;
    top: calc(50% - 16px);
  }

  .future-control--volume {
    left: 124px;
    top: calc(50% - 16px);
  }

  .future-statement,
  .future-contact-form,
  .future-thanks {
    left: 176px;
    top: calc(50% - 54px);
    width: calc(100vw - 200px);
    font-size: 20px;
  }

  .future-history {
    width: 100%;
  }

  .future-footer button {
    left: 20px;
    top: auto;
    bottom: 22px;
  }

  .future-footer .future-footer__today {
    left: 50%;
    top: auto;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .future-footer > a {
    left: auto;
    right: 20px;
    top: auto;
    bottom: 22px;
  }

  .future-timeline {
    display: none;
  }
}

/* Viewport-anchored future HUD. This intentionally overrides the fixed Figma frame above. */
.future-site {
  --future-edge-x: clamp(20px, 2.9vw, 40px);
  --future-edge-y: clamp(18px, 2.6vh, 22px);
  --future-bottom-y: clamp(22px, 4.9vh, 40px);
  --future-mark-size: clamp(42px, 3.8vw, 52px);
  --future-control-left: clamp(92px, 30vw, 410px);
  --future-statement-left: clamp(176px, 43.9vw, calc(100vw - 617px));
  --future-statement-right: clamp(76px, 13vw, 360px);
  --future-statement-top: clamp(238px, calc(50vh - 60px), calc(100vh - 220px));
  --future-statement-width: min(541px, calc(100vw - var(--future-statement-left) - var(--future-statement-right)));
  --future-form-width: min(640px, calc(100vw - var(--future-statement-left) - var(--future-edge-x)));
  --future-contact-kicker-offset: clamp(42px, 6.2vh, 48px);
  --future-timeline-right: clamp(18px, 2.9vw, 40px);
  --future-timeline-height: clamp(300px, 57vh, 438px);
  --future-copy-leading: 1.1;
  --future-paragraph-gap: 10px;
}

.future-topbar,
.future-canvas,
.future-footer {
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100vh;
  transform: none;
}

.future-brand {
  left: var(--future-edge-x);
  top: var(--future-edge-y);
  visibility: hidden;
}

.future-restart {
  left: var(--future-statement-left);
  top: var(--future-edge-y);
  transform: none;
}

.future-form-back {
  left: var(--future-statement-left);
  top: var(--future-edge-y);
  transform: none;
}

.future-contact-link {
  left: auto;
  right: var(--future-edge-x);
  top: var(--future-edge-y);
}

.future-site a:not(.future-brand) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.future-site a:not(.future-brand):hover,
.future-site a:not(.future-brand):focus-visible {
  text-decoration-thickness: 1.5px;
}

.future-mark {
  left: var(--future-edge-x);
  top: 50%;
  width: var(--future-mark-size);
  height: calc(var(--future-mark-size) * 0.933);
  object-fit: contain;
  object-position: center;
  clip-path: none;
  transform: translateY(-50%);
}

.future-control--pause {
  left: var(--future-control-left);
  top: calc(50% - 16px);
}

.future-control--volume {
  left: calc(var(--future-control-left) + 32px);
  top: calc(50% - 16px);
}

.future-control--full-text {
  left: calc(var(--future-control-left) - 32px);
  top: calc(50% - 16px);
  background: rgba(18, 18, 18, 0.72);
}

.future-control--full-text > span[aria-hidden="true"] {
  position: relative;
  display: block;
  width: 14px;
  height: 11px;
}

.future-control--full-text > span[aria-hidden="true"]::before,
.future-control--full-text > span[aria-hidden="true"]::after,
.future-control--full-text > span[aria-hidden="true"] {
  border-top: 1px solid currentColor;
}

.future-control--full-text > span[aria-hidden="true"]::before,
.future-control--full-text > span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
}

.future-control--full-text > span[aria-hidden="true"]::before {
  top: 4px;
}

.future-control--full-text > span[aria-hidden="true"]::after {
  top: 9px;
}

.future-statement,
.future-contact-form,
.future-thanks {
  left: var(--future-statement-left);
  top: var(--future-statement-top);
  width: var(--future-statement-width);
  max-width: var(--future-statement-width);
}

.future-contact-form {
  top: calc(var(--future-statement-top) - var(--future-contact-kicker-offset));
  width: var(--future-form-width);
  max-width: var(--future-form-width);
}

.future-discover {
  position: absolute;
  left: var(--future-statement-left);
  top: min(calc(100vh - 118px), calc(var(--future-statement-top) + clamp(176px, 30vh, 280px)));
  z-index: 6;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--highlight-coral);
  background: transparent;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.32px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.timeline-shell.is-bridge-step-visible .future-discover {
  opacity: 1;
  pointer-events: auto;
  animation: futureDiscoverPulse 1720ms ease-in-out infinite;
}

@keyframes futureDiscoverPulse {
  0%,
  100% {
    opacity: 0.58;
  }

  48% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-shell.is-bridge-step-visible .future-discover {
    animation: none;
    opacity: 1;
  }
}

.timeline-shell.is-future-copy-active .future-brand {
  opacity: 1;
}

.timeline-shell.is-future-copy-active .future-restart,
.timeline-shell.is-future-copy-active .future-contact-link,
.timeline-shell.is-future-copy-active .future-footer,
.timeline-shell.is-future-copy-active .future-control {
  opacity: 0;
  pointer-events: none;
}

.future-transcript {
  --future-transcript-y-nudge: 0px;
  position: absolute;
  left: var(--future-statement-left);
  top: 0;
  z-index: 5;
  width: var(--future-statement-width);
  max-width: var(--future-statement-width);
  height: 100vh;
  box-sizing: border-box;
  padding: var(--future-statement-top) 0 calc(100vh - var(--future-statement-top) - 96px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-top: var(--future-statement-top);
  color: #fff;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  line-height: var(--future-copy-leading);
  letter-spacing: -0.48px;
  opacity: 0;
  pointer-events: none;
  scrollbar-width: none;
  transform: none;
  transition: opacity 320ms ease;
}

.future-transcript::-webkit-scrollbar {
  display: none;
}

.future-transcript__item {
  margin: 0;
  opacity: 0.13;
  transform: translateY(var(--future-transcript-y-nudge));
  transition: opacity 220ms ease, transform 220ms ease;
}

.future-transcript__item + .future-transcript__item {
  margin-top: clamp(28px, 5.7vh, 54px);
}

.future-transcript__item p {
  margin: 0;
}

.future-transcript__item.is-active {
  opacity: 1;
  transform: translateY(var(--future-transcript-y-nudge));
}

.timeline-shell.is-full-text-mode .future-statement,
.timeline-shell.is-full-text-mode .future-history,
.timeline-shell.is-full-text-mode .future-caret {
  opacity: 0;
  pointer-events: none;
}

.timeline-shell.is-full-text-mode .future-transcript {
  opacity: 1;
  pointer-events: auto;
}

.timeline-shell.is-full-text-mode .future-control--pause,
.timeline-shell.is-full-text-mode .future-control--volume {
  opacity: 0.68;
  pointer-events: auto;
}

.timeline-shell.is-full-text-mode .future-control--full-text {
  border-color: var(--highlight-coral);
  opacity: 1;
}

.timeline-shell.is-full-text-mode .future-timeline {
  pointer-events: auto;
  cursor: ns-resize;
}

.timeline-shell.is-full-text-mode .future-timeline::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.future-site[data-future-mode="contact"] .future-transcript,
.future-site[data-future-mode="thanks"] .future-transcript,
.future-site[data-future-mode="contact"] .future-timeline,
.future-site[data-future-mode="thanks"] .future-timeline,
.future-site[data-future-mode="contact"] .future-timeline-preview,
.future-site[data-future-mode="thanks"] .future-timeline-preview {
  opacity: 0;
  pointer-events: none;
}

.future-history {
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.future-history__stack {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.65vh, 18px);
  width: 100%;
  pointer-events: none;
}

.future-history__stack--past {
  bottom: calc(100% + clamp(34px, 5.5vh, 62px));
  justify-content: flex-end;
}

.future-history__stack--future {
  top: calc(100% + clamp(30px, 5vh, 58px));
}

.future-history__stack--past .future-history__item:nth-last-child(1),
.future-history__stack--future .future-history__item:nth-child(1) {
  opacity: 0.072;
  filter: blur(1px);
}

.future-history__item {
  margin: 0;
  opacity: 0.04;
  filter: blur(1.65px);
  animation: futureHistoryEnter 260ms ease both;
  pointer-events: auto;
}

.future-history__item--future {
  opacity: 0.032;
}

.future-history__stack--future .future-history__item:nth-child(n + 2) {
  opacity: 0.024;
  filter: blur(1.85px);
}

.future-history__item:hover {
  opacity: 0.3;
  filter: blur(0.35px);
}

.future-history__item p {
  margin: 0;
}

.future-history__item p + p {
  margin-top: var(--future-paragraph-gap);
}

.future-footer button {
  left: var(--future-edge-x);
  top: auto;
  bottom: var(--future-bottom-y);
}

.future-footer .future-footer__today {
  left: var(--future-statement-left);
  top: auto;
  bottom: var(--future-bottom-y);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  transform: none;
}

.future-footer > a {
  left: auto;
  right: var(--future-edge-x);
  top: auto;
  bottom: var(--future-bottom-y);
}

.future-timeline {
  display: block;
  left: auto;
  right: var(--future-timeline-right);
  top: calc((100vh - var(--future-timeline-height)) / 2);
  width: 24px;
  height: var(--future-timeline-height);
  pointer-events: auto;
  cursor: pointer;
}

.future-timeline::before {
  height: 100%;
}

.future-timeline-preview {
  position: absolute;
  right: calc(var(--future-timeline-right) + 34px);
  top: calc((100vh - var(--future-timeline-height)) / 2 + var(--timeline-preview-y, 0px));
  z-index: 12;
  max-width: min(260px, calc(100vw - var(--future-statement-left) - 120px));
  padding: 6px 10px;
  border: 1px solid #272626;
  border-radius: 18px;
  color: #fff;
  background: rgba(15, 14, 14, 0.72);
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.future-timeline-preview.is-visible {
  opacity: 1;
}

.future-interaction-card {
  position: absolute;
  z-index: 7;
  left: var(--human-card-left, calc(100vw - 282px));
  top: var(--human-card-top, calc(var(--future-statement-top) - 116px));
  width: 200px;
  padding: 6px;
  border: 1px solid #272626;
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(30px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.future-interaction-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.future-interaction-card__label {
  position: absolute;
  right: 0;
  top: -28px;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid #272626;
  border-radius: 20px;
  color: var(--highlight-coral);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.28px;
}

.future-interaction-card__media {
  display: grid;
  place-items: center;
  height: 80px;
  border-radius: 4px;
  color: #f2f2f2;
  background: #08080b;
  font-family: "FK Roman Standard", Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.future-interaction-card p:not(.future-interaction-card__label),
.future-interaction-card a {
  display: block;
  margin: 8px 4px 0;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.28px;
}

.future-interaction-card a {
  color: var(--highlight-coral);
  text-decoration: none;
}

.future-logo-orbit {
  position: absolute;
  z-index: 2;
  left: clamp(168px, 17vw, 254px);
  top: 50%;
  width: 168px;
  height: min(100vh, 958px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 420ms ease;
}

.timeline-shell.is-logo-orbit-active .future-logo-orbit {
  opacity: 1;
}

.future-logo-orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 128px;
  height: 85px;
  color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, rgba(130, 39, 54, 0.48), rgba(28, 18, 25, 0.68));
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  opacity: 0.4;
  animation: logoOrbitDrift 4600ms ease-in-out infinite alternate;
}

.future-logo-orbit span:nth-child(1) { transform: translate(-50%, -485px) rotate(-36deg); }
.future-logo-orbit span:nth-child(2) { transform: translate(-92%, -345px) rotate(-54deg); }
.future-logo-orbit span:nth-child(3) { transform: translate(-122%, -182px) rotate(-72deg); }
.future-logo-orbit span:nth-child(4) { transform: translate(-136%, -50%) rotate(-90deg); opacity: 0.75; }
.future-logo-orbit span:nth-child(5) { transform: translate(-122%, 98px) rotate(-108deg); }
.future-logo-orbit span:nth-child(6) { transform: translate(-92%, 260px) rotate(-126deg); }
.future-logo-orbit span:nth-child(7) { transform: translate(-50%, 395px) rotate(-144deg); }

.future-footer > a[data-go-tomorrow]::after {
  content: "Que seremos mañana";
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 112px;
  color: var(--highlight-coral);
  font-weight: 650;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.future-footer > a[data-go-tomorrow]:hover::after,
.future-footer > a[data-go-tomorrow]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoOrbitDrift {
  from {
    filter: brightness(0.72);
  }

  to {
    filter: brightness(1);
  }
}

@media (max-width: 760px) {
  .future-site {
    --future-edge-x: 20px;
    --future-edge-y: 20px;
    --future-bottom-y: 38px;
    --future-mark-size: 42.8889px;
    --future-control-left: clamp(104px, 30.25vw, 136px);
    --future-control-top: clamp(520px, 70vh, calc(100vh - 160px));
    --future-statement-left: clamp(104px, 30.25vw, 136px);
    --future-statement-right: 12px;
    --future-statement-top: clamp(238px, 35vh, 300px);
    --future-statement-width: min(260px, calc(100vw - var(--future-statement-left) - var(--future-statement-right)));
    --future-form-width: calc(100vw - 24px);
    --future-contact-form-top: clamp(156px, calc(var(--future-statement-top) - 101px), 179px);
    --future-contact-mark-top: clamp(64px, calc(var(--future-statement-top) - 200px), 80px);
    --future-contact-kicker-offset: 0px;
    --future-timeline-left: 20px;
    --future-timeline-top: calc(100vh - 151px);
    --future-timeline-width: calc(100vw - 40px);
    --future-timeline-height: 36.5px;
  }

  .future-brand {
    left: 20px;
    top: 20px;
    font-size: 18px;
    line-height: 20px;
  }

  .past-global-brand {
    left: 20px;
    top: 20px;
    font-size: 20px;
    line-height: 22px;
  }

  .future-restart {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .future-contact-link {
    right: 20px;
    top: 20px;
    font-size: 18px;
    line-height: 20px;
  }

  .future-statement,
  .future-contact-form,
  .future-thanks,
  .future-transcript,
  .future-history__item {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.1;
  }

  .future-mark {
    left: 12px;
    top: var(--future-statement-top);
    width: var(--future-mark-size);
    height: 40px;
    transform: none;
  }

  .future-control {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }

  .future-control--full-text {
    left: var(--future-control-left);
    top: var(--future-control-top);
  }

  .future-control--pause {
    left: calc(var(--future-control-left) + 47px);
    top: var(--future-control-top);
  }

  .future-transcript {
    left: var(--future-statement-left);
    width: var(--future-statement-width);
    max-width: var(--future-statement-width);
    height: 100vh;
    padding: var(--future-statement-top) 0 calc(100vh - var(--future-statement-top) - 140px);
  }

  .future-timeline {
    left: var(--future-timeline-left);
    right: auto;
    top: var(--future-timeline-top);
    width: var(--future-timeline-width);
    height: var(--future-timeline-height);
  }

  .future-timeline::before {
    left: 0;
    top: 28px;
    width: 100%;
    height: 18px;
  }

  .future-timeline::after {
    left: var(--future-progress-dot-x, 0px);
    top: 0;
    width: 12px;
    height: 12px;
    transform: none;
    transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .future-timeline span {
    left: var(--tick-x, 0%);
    right: auto;
    top: 28px;
    width: 1px;
    height: var(--tick-width, 7px);
    transform: translateX(-0.5px);
  }

  .future-timeline span.is-passed {
    width: 1px;
    height: var(--tick-passed-width, var(--tick-width, 7px));
  }

  .future-timeline span.is-active {
    width: 1px;
    height: var(--tick-active-width, 11px);
  }

  .timeline-shell.is-full-text-mode .future-timeline {
    cursor: ew-resize;
  }

  .future-timeline-preview {
    right: auto;
    left: clamp(16px, calc(var(--future-timeline-left) + var(--timeline-preview-x, 0px) - 118px), calc(100vw - 252px));
    top: calc(var(--future-timeline-top) - 46px);
    max-width: 236px;
    transform: none;
  }

  .future-footer button {
    left: 20px;
    bottom: 38px;
    font-size: 18px;
    line-height: 20px;
  }

  .future-footer .future-footer__today {
    left: var(--future-statement-left);
    bottom: 38px;
    font-size: 18px;
    line-height: 20px;
  }

  .future-footer > a {
    right: 20px;
    bottom: 38px;
    font-size: 18px;
    line-height: 20px;
  }

  .future-contact-form,
  .future-thanks {
    left: 12px;
    top: var(--future-contact-form-top);
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .future-site[data-future-mode="contact"] .future-mark,
  .future-site[data-future-mode="thanks"] .future-mark {
    top: var(--future-contact-mark-top);
  }

  .future-site[data-future-mode="contact"] .future-form-back,
  .future-site[data-future-mode="thanks"] .future-form-back {
    left: auto;
    right: 12px;
    top: 20px;
    font-size: 20px;
    line-height: 22px;
  }

  .future-form-kicker,
  .future-form__legal {
    font-size: 18px;
    line-height: 20px;
  }

  .future-form {
    gap: 20px;
    margin-top: 24px;
  }

  .future-form__line {
    height: 38px;
    gap: 0;
  }

  .future-form__line label {
    display: grid;
    align-items: center;
    gap: 8px;
    width: 100%;
    white-space: nowrap;
  }

  .future-form__line--name label {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .future-form__line--company label {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .future-form__line--role label {
    grid-template-columns: 111px minmax(0, 1fr);
  }

  .future-form__line + .future-form__line {
    margin-top: -16px;
  }

  .future-form label,
  .future-form__line span,
  .future-form__block {
    font-size: 20px;
    line-height: 22px;
  }

  .future-form input {
    height: 38px;
    font-size: 18px;
  }

  .future-form label input {
    width: 100%;
    min-width: 0;
  }

  .future-form__line--role + .future-form__block {
    margin-top: 0;
  }

  .future-form__block {
    gap: 8px;
  }

  .future-site[data-future-mode="contact"] .future-control,
  .future-site[data-future-mode="contact"] .future-restart,
  .future-site[data-future-mode="contact"] .future-contact-link,
  .future-site[data-future-mode="contact"] .future-timeline,
  .future-site[data-future-mode="contact"] .future-timeline-preview,
  .future-site[data-future-mode="contact"] .future-footer,
  .future-site[data-future-mode="thanks"] .future-control,
  .future-site[data-future-mode="thanks"] .future-restart,
  .future-site[data-future-mode="thanks"] .future-contact-link,
  .future-site[data-future-mode="thanks"] .future-timeline,
  .future-site[data-future-mode="thanks"] .future-timeline-preview,
  .future-site[data-future-mode="thanks"] .future-footer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .tomorrow-stage {
    --tomorrow-panel-width: 100vw;
    --tomorrow-content-offset: clamp(18px, 5vw, 28px);
    --tomorrow-content-left: var(--tomorrow-content-offset);
    --tomorrow-content-width: calc(var(--tomorrow-panel-width) - var(--tomorrow-content-left) - 20px);
    --tomorrow-form-width: var(--tomorrow-content-width);
    --tomorrow-intro-top: calc(50vh - 78px);
    --tomorrow-copy-top: calc(50vh - 72px);
    --tomorrow-form-top: clamp(156px, 22.375vh, 179px);
  }

  .tomorrow-stage[data-tomorrow-mode="contact"],
  .tomorrow-stage[data-tomorrow-mode="thanks"] {
    --tomorrow-panel-width: 100vw;
    --tomorrow-content-offset: 12px;
    --tomorrow-content-left: 12px;
    --tomorrow-content-width: calc(100vw - 24px);
    --tomorrow-form-width: calc(100vw - 24px);
  }

  .tomorrow-stage[data-tomorrow-mode="contact"] .tomorrow-stage__right,
  .tomorrow-stage[data-tomorrow-mode="thanks"] .tomorrow-stage__right {
    width: 100vw;
  }

  .tomorrow-stage__brand {
    left: 16px;
    top: 18px;
    font-size: 15px;
  }

  .tomorrow-stage__mark {
    left: 16px;
    width: 42px;
    height: 39px;
  }

  .tomorrow-stage__yesterday {
    left: 16px;
    bottom: 22px;
    font-size: 13px;
  }

  .tomorrow-stage__contact,
  .tomorrow-stage__today {
    right: 20px;
    top: 20px;
    font-size: 13px;
  }

  .tomorrow-stage__copy p:first-child,
  .tomorrow-stage__copy p:nth-child(2) {
    font-size: clamp(18px, 5.4vw, 22px);
    letter-spacing: -0.4px;
  }

  .tomorrow-stage__return {
    top: min(calc(100vh - var(--tomorrow-intro-top) - 52px), 220px);
    font-size: 14px;
  }

  .tomorrow-contact-form__kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .tomorrow-form {
    gap: 13px;
  }

  .tomorrow-form__line {
    display: block;
    height: 34px;
    gap: 0;
  }

  .tomorrow-form__line span,
  .tomorrow-form label,
  .tomorrow-form__block {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .tomorrow-form label {
    display: grid;
    align-items: center;
    gap: 8px;
    width: 100%;
    white-space: nowrap;
  }

  .tomorrow-form__line--name label {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .tomorrow-form__line--company label {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .tomorrow-form__line--role label {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .tomorrow-form input {
    height: 34px;
    border-radius: 7px;
    font-size: 14px;
  }

  .tomorrow-form__line:first-child input,
  .tomorrow-form__line:nth-child(2) > input,
  .tomorrow-form__line:nth-child(2) label input,
  .tomorrow-form__line label input {
    width: 100%;
    min-width: 0;
  }

  .tomorrow-form__legal {
    font-size: 11px;
  }

  .tomorrow-thanks__title {
    font-size: 20px;
  }

  .tomorrow-thanks__copy p:not(.tomorrow-thanks__title),
  .tomorrow-thanks__next {
    font-size: 14px;
  }

  .tomorrow-thanks__next {
    top: min(calc(100vh - var(--tomorrow-copy-top) - 128px), 200px);
  }

  .tomorrow-thanks button {
    top: min(calc(100vh - var(--tomorrow-copy-top) - 76px), 250px);
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .future-site {
    --future-edge-x: 20px;
    --future-mark-size: 42.8889px;
    --future-control-left: clamp(104px, 30.25vw, 136px);
    --future-statement-left: clamp(104px, 30.25vw, 136px);
    --future-statement-right: 12px;
    --future-statement-top: clamp(238px, 35vh, 300px);
    --future-form-width: calc(100vw - 24px);
    --future-contact-form-top: clamp(156px, calc(var(--future-statement-top) - 101px), 179px);
    --future-contact-mark-top: clamp(64px, calc(var(--future-statement-top) - 200px), 80px);
    --future-bottom-y: 38px;
  }

  .future-restart,
  .future-form-back {
    font-size: 20px;
    line-height: 22px;
  }

  .future-contact-link,
  .future-footer button,
  .future-footer a,
  .future-footer__today {
    font-size: 18px;
    line-height: 20px;
  }

  .future-control {
    width: 48px;
    height: 48px;
  }

  .future-control--volume {
    left: calc(var(--future-control-left) + 47px);
  }

  .future-control--full-text {
    left: var(--future-control-left);
  }
}

@keyframes futureHistoryEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}
