/* ================================================================
   OpenOcean — teaser site
   "The living chart" — ink-teal sea / warm-paper editorial
   ================================================================ */

/* ---------- Fonts (self-hosted brand stack) ---------- */
@font-face {
  font-family: "Cormorant";
  src: url("/fonts/Cormorant-VF.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("/fonts/Cormorant-Italic-VF.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-v9-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-v9-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-v9-latin-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-v20-latin-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-v20-latin-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* ink — the deep sea */
  --ink: #071519;
  --ink-2: #0b2026;
  --ink-3: #10303a;
  /* paper — the chart table */
  --paper: #f2efed;
  --paper-2: #ebe6e1;
  --paper-edge: #ddd5cd;
  /* text */
  --text-ink: #231c18;
  --text-soft: #6b5d52;
  --text-faint: #8a7b6e;
  --text-sea: #d8e6e6;
  --text-sea-soft: #8fb0b3;
  /* brand */
  --orange: #f15b27;
  --orange-deep: #d14a1c;
  --teal: #0eb0b7;
  --teal-bright: #2fd3d9;
  --gold: #f59e0b;

  --serif: "Cormorant", "Times New Roman", serif;
  --sans: "Figtree", -apple-system, "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", monospace;

  --gutter: clamp(20px, 5vw, 72px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.7, 0, 0.2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body[data-loading] { overflow: hidden; }

::selection { background: var(--orange); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* On fine pointers the custom cursor takes over */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button,
  body.has-cursor summary, body.has-cursor input { cursor: none; }
}

/* ================= PRELOADER ================= */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: grid; place-items: center;
}
.preloader__inner {
  width: min(320px, 70vw);
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.preloader__logo { width: 72px; height: auto; opacity: 0; }
.preloader__line {
  width: 100%; height: 1px; background: rgba(216, 230, 230, 0.16);
  position: relative; overflow: hidden;
}
.preloader__bar {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0); transform-origin: left;
}
.preloader__row {
  width: 100%; display: flex; justify-content: space-between;
  color: var(--text-sea-soft);
}
.preloader__pct { color: var(--teal-bright); }

/* ================= CURSOR ================= */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; inset: 0; z-index: 90; pointer-events: none;
    opacity: 0; transition: opacity 0.3s;
  }
  .cursor--seen { opacity: 1; }
  .cursor__dot, .cursor__ring {
    position: fixed; top: 0; left: 0; border-radius: 50%;
    will-change: transform;
  }
  .cursor__dot {
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: var(--orange);
  }
  .cursor__ring {
    width: 34px; height: 34px; margin: -17px 0 0 -17px;
    border: 1px solid rgba(241, 91, 39, 0.55);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                margin 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s;
  }
  .cursor--active .cursor__ring {
    width: 52px; height: 52px; margin: -26px 0 0 -26px;
    border-color: rgba(14, 176, 183, 0.9);
    background: rgba(14, 176, 183, 0.08);
  }
  .cursor--press .cursor__ring {
    width: 24px; height: 24px; margin: -12px 0 0 -12px;
  }
}

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  mix-blend-mode: normal;
  transition: background-color 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav--scrolled {
  padding: 10px var(--gutter);
  background: rgba(7, 21, 25, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav__brand img { width: 42px; height: auto; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-sea);
}
.nav__wordmark em { font-style: italic; font-weight: 500; color: var(--teal-bright); }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__utc { color: var(--text-sea-soft); font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .nav__utc { display: none; }
  .nav__wordmark { font-size: 20px; }
}

/* paper sections need a dark nav treatment flip */
.nav--on-paper .nav__wordmark { color: var(--text-ink); }
.nav--on-paper .nav__wordmark em { color: var(--orange-deep); }
.nav--on-paper .nav__utc { color: var(--text-faint); }
.nav--on-paper.nav--scrolled { background: rgba(242, 239, 237, 0.78); }
.nav--on-paper .btn--ghost {
  color: var(--text-ink);
  border-color: rgba(35, 28, 24, 0.3);
}
.nav--on-paper .btn--ghost:hover { border-color: var(--orange-deep); color: var(--orange-deep); }

/* ================= BUTTONS ================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: color 0.35s var(--ease-out), border-color 0.35s, background-color 0.35s,
              transform 0.2s var(--ease-out), box-shadow 0.35s;
  overflow: hidden;
  white-space: nowrap;
}
.btn__label { position: relative; z-index: 1; }
.btn__arrow { width: 14px; height: 14px; position: relative; z-index: 1;
  transition: transform 0.35s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--solid {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(241, 91, 39, 0.55);
}
.btn--solid::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--orange-deep);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-snap);
  border-radius: inherit;
}
.btn--solid:hover::before { transform: translateY(0); }
.btn--solid:active { transform: scale(0.97); }

.btn--ghost {
  color: var(--text-sea);
  border-color: rgba(216, 230, 230, 0.35);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.btn__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--gutter) 140px;
  background: var(--ink);
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero__grain {
  position: absolute; inset: -50%;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-6%,4%); }
  40% { transform: translate(4%,-7%); } 60% { transform: translate(-3%,-3%); }
  80% { transform: translate(5%,6%); }
}

.hero__probe {
  position: absolute; z-index: 5;
  display: flex; flex-direction: column; gap: 2px;
  color: rgba(143, 176, 179, 0.85);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  opacity: 0;
  transform: translate(18px, 18px);
}
.hero__probe span { white-space: nowrap; }

.hero__content {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.hero__overline {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-sea-soft);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.hero__overline-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(241, 91, 39, 0.9);
  animation: pulse 2.2s ease-in-out infinite;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 9.2vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--text-sea);
  margin-bottom: clamp(22px, 3.4vh, 40px);
}
.hero__title em {
  font-style: italic; font-weight: 400;
  color: var(--teal-bright);
}
.hero__title-line {
  display: block; overflow: hidden;
}
.hero__title-line .word {
  display: inline-block;
  transform: translateY(115%) rotate(2.5deg);
  transform-origin: 0 100%;
}
.hero__sub {
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--text-sea-soft);
  margin-bottom: clamp(28px, 4vh, 44px);
}
.hero__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__footnote { color: rgba(143, 176, 179, 0.6); }

.hero__countdown {
  position: absolute; z-index: 2;
  right: var(--gutter); bottom: 46px;
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px;
  border: 1px solid rgba(216, 230, 230, 0.14);
  border-radius: 14px;
  background: rgba(7, 21, 25, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__count-unit { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hero__count-num {
  font-size: 22px; letter-spacing: 0.04em;
  color: var(--text-sea);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__count-lbl { font-size: 9px; color: var(--text-sea-soft); }
.hero__count-sep {
  width: 1px; height: 26px;
  background: rgba(216, 230, 230, 0.14);
}

.hero__scrollcue {
  position: absolute; z-index: 2;
  left: var(--gutter); bottom: 46px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-sea-soft);
}
.hero__scrollcue-line {
  width: 56px; height: 1px;
  background: rgba(143, 176, 179, 0.4);
  position: relative; overflow: hidden;
}
.hero__scrollcue-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--teal-bright);
  animation: scrollcue 2.4s var(--ease-snap) infinite;
}
@keyframes scrollcue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 760px) {
  .hero { padding-bottom: 190px; }
  .hero__countdown {
    right: auto; left: var(--gutter); bottom: 100px;
    padding: 11px 16px; gap: 12px;
  }
  .hero__count-num { font-size: 17px; }
  .hero__scrollcue { bottom: 46px; }
  .hero__probe { display: none; }
}

/* ================= MARQUEE ================= */
.marquee {
  position: relative; z-index: 3;
  background: var(--orange);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
  transform: rotate(-1.1deg) scale(1.02);
  transform-origin: center;
  box-shadow: 0 18px 50px -20px rgba(241, 91, 39, 0.6);
}
.marquee__track {
  display: flex; width: max-content;
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee__seq {
  font-size: 12px; letter-spacing: 0.22em;
  white-space: nowrap;
}
.marquee__seq i {
  font-style: normal; color: rgba(255, 255, 255, 0.55);
  margin: 0 14px; font-size: 8px; vertical-align: middle;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================= SECTIONS (paper) ================= */
.section {
  position: relative;
  background: var(--paper);
  color: var(--text-ink);
  padding: clamp(90px, 13vh, 170px) var(--gutter);
}
.section__inner { max-width: 1180px; margin: 0 auto; position: relative; }
.section__inner--narrow { max-width: 780px; }

.kicker {
  color: var(--orange-deep);
  margin-bottom: clamp(18px, 2.6vh, 30px);
}
.kicker--light { color: var(--teal-bright); }

[data-reveal] { will-change: transform, opacity; }

/* ================= MANIFESTO ================= */
.manifesto {
  margin-top: -2px;
  background:
    radial-gradient(1100px 500px at 85% 0%, rgba(14, 176, 183, 0.07), transparent 65%),
    var(--paper);
  overflow: hidden;
}
.manifesto__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.manifesto__title em { font-style: italic; font-weight: 400; color: var(--teal); }
.manifesto__body {
  max-width: 640px;
  margin-left: auto;
  display: flex; flex-direction: column; gap: 26px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
  color: var(--text-soft);
}
.manifesto__vow { color: var(--text-ink); }
.manifesto__vow em {
  font-family: var(--serif); font-size: 1.25em; font-weight: 600;
  color: var(--orange-deep);
}
.manifesto__ring {
  position: absolute;
  width: clamp(280px, 36vw, 520px); aspect-ratio: 1;
  border-radius: 50%;
  border: clamp(34px, 4.4vw, 64px) solid rgba(241, 91, 39, 0.07);
  left: -8%; bottom: -18%;
  pointer-events: none;
}

/* ================= PILLARS ================= */
.pillars { background: var(--paper-2); }
.pillars__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  margin-bottom: clamp(44px, 7vh, 80px);
}
.pillars__title em { font-style: italic; font-weight: 400; color: var(--teal); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 36px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.45s;
  transform-style: preserve-3d;
}
.card:hover {
  box-shadow: 0 30px 60px -28px rgba(35, 28, 24, 0.28);
  border-color: transparent;
}
.card__num {
  position: absolute; top: 22px; right: 24px;
  color: var(--text-faint); opacity: 0.7;
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform 0.45s var(--ease-out);
}
.card:hover .card__icon { transform: translateY(-4px) rotate(-4deg) scale(1.06); }
.card__icon svg { width: 28px; height: 28px; }
.card__icon--teal   { background: rgba(14, 176, 183, 0.12); color: #0a8d93; }
.card__icon--sea    { background: rgba(3, 105, 161, 0.1);  color: #0369a1; }
.card__icon--orange { background: rgba(241, 91, 39, 0.12); color: var(--orange-deep); }
.card__icon--gold   { background: rgba(245, 158, 11, 0.14); color: #b45309; }
.card__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.card__tease { color: var(--text-soft); font-size: 15px; line-height: 1.6; }
.card__wave {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease-snap);
}
.card:hover .card__wave { transform: scaleX(1); }

/* ================= FAQ ================= */
.faq { background: var(--paper); }
.faq__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.02;
  margin-bottom: clamp(38px, 6vh, 64px);
}
.faq__title em { font-style: italic; font-weight: 400; color: var(--teal); }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--paper-edge); }
.faq__item:first-child { border-top: 1px solid var(--paper-edge); }
.faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 4px;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 27px);
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange-deep); padding-left: 12px; }
.faq__plus {
  position: relative; flex: 0 0 auto;
  width: 30px; height: 30px;
  border: 1px solid var(--paper-edge); border-radius: 50%;
  transition: transform 0.45s var(--ease-snap), background-color 0.3s, border-color 0.3s;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 12px; height: 1.5px; }
.faq__plus::after { width: 1.5px; height: 12px; transition: transform 0.35s var(--ease-snap); }
.faq__item[open] .faq__plus { transform: rotate(135deg); background: rgba(14,176,183,0.1); border-color: var(--teal); color: var(--teal); }
.faq__a { overflow: hidden; }
.faq__a p {
  padding: 0 4px 26px;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 16px; line-height: 1.7;
}

/* ================= CTA ================= */
.cta {
  position: relative;
  background:
    radial-gradient(900px 480px at 50% 115%, rgba(14, 176, 183, 0.16), transparent 70%),
    linear-gradient(var(--ink-2), var(--ink));
  color: var(--text-sea);
  padding: clamp(100px, 15vh, 190px) var(--gutter);
  overflow: hidden;
  text-align: center;
}
.cta__contours {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: repeating-radial-gradient(
    circle at 50% 130%,
    transparent 0px, transparent 56px,
    rgba(14, 176, 183, 0.12) 57px, transparent 58px
  );
  mask-image: linear-gradient(transparent, black 35%);
  -webkit-mask-image: linear-gradient(transparent, black 35%);
  animation: contourBreathe 11s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes contourBreathe {
  from { transform: scale(1); opacity: 0.4; }
  to   { transform: scale(1.06); opacity: 0.62; }
}
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta__logo {
  width: clamp(64px, 7vw, 92px); height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 14px 40px rgba(14, 176, 183, 0.35));
}
.cta__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(52px, 8.4vw, 110px);
  line-height: 0.98;
  margin-bottom: 20px;
  color: var(--text-sea);
}
.cta__title em { font-style: italic; font-weight: 400; color: var(--teal-bright); }
.cta__sub { color: var(--text-sea-soft); max-width: 420px; margin-bottom: 44px; }

.waitlist {
  display: flex; gap: 12px;
  width: min(560px, 100%);
}
.waitlist__input {
  flex: 1; min-width: 0;
  font-family: var(--sans); font-size: 15px;
  color: var(--text-sea);
  background: rgba(216, 230, 230, 0.06);
  border: 1px solid rgba(216, 230, 230, 0.22);
  border-radius: 999px;
  padding: 14px 24px;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.waitlist__input::placeholder { color: rgba(143, 176, 179, 0.55); }
.waitlist__input:focus {
  outline: none;
  border-color: var(--teal-bright);
  background: rgba(216, 230, 230, 0.1);
  box-shadow: 0 0 0 4px rgba(14, 176, 183, 0.15);
}
.waitlist__input.is-invalid {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(241, 91, 39, 0.15);
  animation: shake 0.4s var(--ease-snap);
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-7px); } 50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}
.waitlist__btn { flex: 0 0 auto; }
.waitlist__note {
  margin-top: 20px;
  color: rgba(143, 176, 179, 0.6);
  font-size: 10px;
}
@media (max-width: 560px) {
  .waitlist { flex-direction: column; }
  .waitlist__btn { justify-content: center; }
}

/* ================= FOOTER ================= */
.footer {
  background: var(--ink);
  color: var(--text-sea-soft);
  border-top: 1px solid rgba(216, 230, 230, 0.08);
  padding: 40px var(--gutter);
}
.footer__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: italic;
  font-size: 17px;
}
.footer__links { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.footer__links a {
  text-decoration: none; position: relative;
}
.footer__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--teal-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-snap);
}
.footer__links a:hover { color: var(--teal-bright); }
.footer__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__sep { opacity: 0.4; }
.footer__copy { font-size: 10px; opacity: 0.55; }

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  .hero__title-line .word { transform: none; }
}
