@font-face {
  font-family: "Anton";
  src: url("./fonts/Anton-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #f7f4f8;
  --muted: rgba(247, 244, 248, 0.68);
  --quiet: rgba(247, 244, 248, 0.44);
  --night: #0e0a1f;
  --night-2: #17102b;
  --dusk: #2b1b4d;
  --surface: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.12);
  --sunset: #ff6d55;
  --sunset-soft: #ff9b63;
  --pulse: #ff2e88;
  --teal: #29d9c2;
  --gold: #ffd166;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
  --page: min(1400px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 46, 136, 0.11), transparent 28rem),
    linear-gradient(180deg, #120b23 0%, var(--night) 28%, #0b0818 100%);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--night);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-nav {
  position: fixed;
  z-index: 18;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 420ms var(--ease-out), border-color 420ms var(--ease-out), backdrop-filter 420ms var(--ease-out);
}

.site-nav.is-condensed {
  border-color: var(--line);
  background: rgba(14, 10, 31, 0.76);
  backdrop-filter: blur(22px) saturate(1.25);
}

.nav-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(5, 3, 15, 0.36);
}

.brand-wordmark {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.035em;
}

.brand-wordmark span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms var(--ease-out);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-pill {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: url("./images/home-background.jpg");
  background-position: 77% 46%;
  background-size: cover;
  transform: scale(1.04);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 10, 31, 0.98) 0%, rgba(14, 10, 31, 0.91) 37%, rgba(14, 10, 31, 0.36) 70%, rgba(14, 10, 31, 0.72) 100%),
    linear-gradient(0deg, var(--night) 0%, transparent 24%, rgba(14, 10, 31, 0.25) 100%);
}

.hero-grid {
  width: var(--page);
  min-height: 100dvh;
  padding: 136px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 110px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sunset-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.display-title {
  margin: 22px 0 24px;
  font-family: var(--display);
  font-size: clamp(62px, 7.7vw, 122px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 56ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--ink);
  color: var(--night);
  box-shadow: 0 18px 50px rgba(8, 5, 22, 0.3);
}

.button-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(14, 10, 31, 0.5);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.button-arrow {
  color: var(--sunset);
  font-size: 17px;
}

.countdown-note {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.45;
}

.countdown-note strong {
  color: var(--teal);
  font-weight: 900;
}

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

.hero-orbit {
  position: absolute;
  top: 3%;
  right: 0;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  opacity: 0.38;
  filter: invert(72%) sepia(83%) saturate(489%) hue-rotate(121deg) brightness(100%);
}

.hero-orbit dotlottie-wc {
  width: 100%;
  height: 100%;
}

.device {
  position: relative;
  width: min(380px, 74vw);
  aspect-ratio: 603 / 1311;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 58px;
  background: #17111e;
  box-shadow: 0 70px 140px rgba(6, 3, 16, 0.68), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: rotate(2.2deg);
  will-change: transform;
}

.device::before {
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 50%;
  width: 128px;
  height: 36px;
  border-radius: 999px;
  content: "";
  background: #05050a;
  transform: translateX(-50%);
}

.device img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.float-label {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(25, 17, 42, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 50px rgba(6, 3, 16, 0.28);
  backdrop-filter: blur(18px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-label.one {
  top: 22%;
  left: 1%;
}

.float-label.two {
  right: 0;
  bottom: 18%;
  color: var(--teal);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sunset));
}

.feature-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.rail-track {
  min-width: max-content;
  padding: 18px 0;
  display: flex;
  gap: 44px;
  color: var(--quiet);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rail-track span::after {
  margin-left: 44px;
  content: "•";
  color: var(--sunset);
}

.section {
  padding-block: clamp(100px, 12vw, 190px);
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--sunset-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(47px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(46px, 9vw, 150px);
  align-items: end;
}

.date-module {
  padding: 30px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.date-number {
  font-family: var(--display);
  font-size: clamp(100px, 13vw, 178px);
  letter-spacing: -0.035em;
  line-height: 0.86;
}

.date-caption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #0b0818;
  box-shadow: 0 42px 100px rgba(5, 3, 14, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.film-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.film-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 10, 31, 0.64);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.5;
}

.earth-art {
  background-image: url("./images/miami-skyline-sarah-oshea.jpg");
}

.map-card-image {
  position: relative;
  z-index: 2;
  width: 72%;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(4, 2, 12, 0.5);
}

.privacy-link-wrap {
  margin-top: 30px;
}

.story-list {
  margin-top: 100px;
  display: grid;
  gap: 0;
}

.story-row {
  min-height: 760px;
  padding-block: 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.story-row:nth-child(even) .story-copy {
  order: 2;
}

.story-row:nth-child(even) .story-art {
  order: 1;
}

.story-index {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.story-copy h3 {
  margin: 16px 0 20px;
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}

.story-copy p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.detail-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 13px 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.detail-list li::before {
  content: "—";
  color: var(--sunset);
}

.story-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at 40% 32%, rgba(255, 46, 136, 0.2), transparent 34%),
    linear-gradient(145deg, #2b1b4d, #100b20 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.story-art.photo-art {
  background-position: center;
  background-size: cover;
}

.story-art.photo-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(14, 10, 31, 0.1), rgba(14, 10, 31, 0.78));
}

.story-art .device {
  z-index: 2;
  width: 300px;
  border-radius: 48px;
  transform: rotate(-2deg) translateY(28px);
}

.story-art .device::before {
  top: 18px;
  width: 104px;
  height: 29px;
}

.story-art .device img {
  border-radius: 41px;
}

.story-art dotlottie-wc {
  position: absolute;
  z-index: 1;
  right: -4%;
  bottom: -5%;
  width: 52%;
  height: 52%;
  opacity: 0.45;
}

.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.gallery {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.gallery figure {
  margin: 0;
}

.gallery figure:nth-child(2) {
  margin-top: 90px;
}

.gallery-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #191126;
  box-shadow: 0 36px 80px rgba(4, 2, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-shot img {
  width: 100%;
  height: auto;
}

.gallery figcaption {
  padding: 16px 4px 0;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(46px, 8vw, 140px);
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-point {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.trust-point strong {
  color: var(--teal);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.trust-point h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.trust-point p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.disclaimer {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 109, 85, 0.25);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 109, 85, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.disclaimer h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.disclaimer p {
  max-width: 80ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: url("./images/miami-skyline-sarah-oshea.jpg");
  background-position: 50% 65%;
  background-size: cover;
  filter: saturate(0.72) contrast(1.05);
}

.final-cta::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(14, 10, 31, 0.98), rgba(14, 10, 31, 0.55) 48%, rgba(14, 10, 31, 0.95));
}

.final-cta-inner {
  width: min(850px, calc(100vw - 40px));
  padding: 90px 0;
}

.final-cta h2 {
  margin: 18px 0 24px;
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.final-cta p {
  margin: 0 auto 28px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: #090615;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 50px;
}

.footer-note-copy {
  max-width: 44ch;
  margin-top: 18px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.65;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom.flush {
  margin-top: 0;
}

.page-not-found {
  min-height: 100dvh;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

.reveal[data-delay="2"] {
  transition-delay: 200ms;
}

.legal-body {
  background: #0d091b;
}

.legal-hero {
  padding: 164px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 46, 136, 0.13), transparent 28rem),
    linear-gradient(180deg, #17102b, #0d091b);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 18px 0 22px;
  font-size: clamp(58px, 7vw, 96px);
}

.legal-hero p {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-layout {
  padding: 78px 0 130px;
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 108px;
}

.legal-aside strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-aside p,
.legal-aside a {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

.legal-aside a:hover {
  color: var(--ink);
}

.legal-content {
  min-width: 0;
}

.legal-content h2 {
  margin: 70px 0 18px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--teal);
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-callout {
  margin: 32px 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.legal-callout p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(41, 217, 194, 0.25);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(41, 217, 194, 0.095), rgba(255, 255, 255, 0.035));
}

.contact-panel h2,
.contact-panel h3 {
  margin-top: 0;
}

.support-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-card h3 {
  margin-top: 0;
}

.support-card p {
  font-size: 14px;
}

.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 10px;
}

.faq-item p {
  margin-bottom: 0;
}

@supports (animation-timeline: scroll()) {
  .hero .device {
    animation: hero-device-scroll 1s linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 88vh;
  }

  .hero-copy {
    animation: hero-copy-scroll 1s linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 72vh;
  }

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(3) {
    animation: gallery-drift 1s linear both;
    animation-timeline: view(block);
    animation-range: entry 0% exit 100%;
  }
}

@keyframes hero-device-scroll {
  from { transform: translate3d(0, 0, 0) rotate(2.2deg) scale(1); }
  to { transform: translate3d(0, 90px, 0) rotate(-1.5deg) scale(0.91); }
}

@keyframes hero-copy-scroll {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0.2; transform: translate3d(0, -70px, 0); }
}

@keyframes gallery-drift {
  from { transform: translate3d(0, 70px, 0); }
  to { transform: translate3d(0, -40px, 0); }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .nav-links a:not(.nav-pill) {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .story-row,
  .gallery-head,
  .trust-grid,
  .footer-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 130px;
    gap: 44px;
  }

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

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

  .hero-orbit {
    right: 8%;
    width: min(70vw, 500px);
  }

  .float-label.one {
    left: 6%;
  }

  .float-label.two {
    right: 5%;
  }

  .scroll-cue {
    display: none;
  }

  .story-row {
    min-height: auto;
    padding: 80px 0;
  }

  .story-row:nth-child(even) .story-copy,
  .story-row:nth-child(even) .story-art {
    order: initial;
  }

  .story-art {
    min-height: 590px;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    margin-inline: calc((100vw - var(--page)) / -2);
    padding-inline: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery figure {
    scroll-snap-align: center;
  }

  .legal-layout {
    gap: 46px;
  }

  .legal-aside {
    position: static;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 32px);
  }

  .nav-inner {
    min-height: 68px;
  }

  .nav-pill {
    padding: 9px 12px;
    font-size: 12px !important;
  }

  .hero::before {
    background-position: 66% 26%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(14, 10, 31, 0.75) 0%, rgba(14, 10, 31, 0.94) 46%, var(--night) 100%),
      linear-gradient(90deg, rgba(14, 10, 31, 0.66), transparent);
  }

  .hero-grid {
    padding-top: 118px;
    padding-bottom: 64px;
  }

  h1,
  .display-title {
    font-size: clamp(56px, 20vw, 82px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .device {
    width: 290px;
    border-radius: 47px;
  }

  .device::before {
    top: 18px;
    width: 104px;
    height: 29px;
  }

  .device img {
    border-radius: 40px;
  }

  .float-label {
    font-size: 10px;
  }

  .float-label.one {
    top: 18%;
    left: 0;
  }

  .float-label.two {
    right: 0;
    bottom: 14%;
  }

  .section {
    padding-block: 96px;
  }

  .section-title {
    font-size: clamp(45px, 15vw, 66px);
  }

  .date-caption,
  .film-meta,
  .footer-bottom {
    flex-direction: column;
  }

  .film-wrap {
    margin-inline: -16px;
    border-radius: 22px;
  }

  .film-label {
    top: 12px;
    left: 12px;
  }

  .story-list {
    margin-top: 60px;
  }

  .story-art {
    min-height: 500px;
    border-radius: 28px;
  }

  .story-art .device {
    width: 254px;
  }

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

  .legal-hero {
    padding-top: 132px;
  }

  .legal-layout {
    padding-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-orbit,
  .story-art dotlottie-wc {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
