/* Catch landing — tokens from Brand Book */
:root {
  --cream: #f5f3ef;
  --ink: #1c1c1c;
  --deep: #14171b;
  /* deepTeal2 — Home / Welcome / landing hero canvas */
  --deep-teal: #121c1a;
  --deeper: #0f1114;
  --teal: #3d7a6e;
  --sage: #6ba89a;
  --mist: #cfe2db;
  --muted: #6e6e6e;
  --faint: #a39c8e;
  --line: #e8e4dc;
  --panel: #e4ede9;
  --warm: #fbefe6;
  --warm-line: #f0dfce;
  --warm-ink: #5a4a3a;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--mist);
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--sage);
}

img {
  max-width: 100%;
  height: auto;
}

.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;
}

/* ── Mark ── */
.mark {
  display: block;
  flex-shrink: 0;
}

/* ── Site header (shared, mobile-first) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

/* Landing: sticky over hero (negative margin), glass after scroll — Home dock feel */
.site-header--hero {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    backdrop-filter 280ms var(--ease);
}

.site-header--hero.is-scrolled {
  background: rgba(18, 28, 26, 0.72);
  border-bottom-color: rgba(207, 226, 219, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex-shrink: 0;
  min-height: 44px;
}

.site-logo:hover {
  color: var(--teal);
}

.site-header--hero .site-logo {
  color: var(--cream);
}

.site-header--hero .site-logo:hover {
  color: var(--mist);
}

.site-logo__word {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}

.site-nav a {
  font-size: 14.5px;
  color: var(--muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--teal);
}

.site-header--hero .site-nav a {
  color: rgba(245, 243, 239, 0.72);
}

.site-header--hero .site-nav a:hover {
  color: var(--cream);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-get {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  background: var(--deep);
  color: var(--cream);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-get:hover {
  background: var(--teal);
  color: var(--cream);
}

.site-header--hero .btn-get {
  background: rgba(245, 243, 239, 0.1);
  border-color: rgba(245, 243, 239, 0.22);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.site-header--hero .btn-get:hover {
  background: rgba(245, 243, 239, 0.18);
  color: var(--cream);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.site-header--hero .nav-toggle {
  border-color: rgba(245, 243, 239, 0.22);
  color: var(--cream);
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(61, 122, 110, 0.12);
}

@media (min-width: 860px) {
  .site-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(245, 243, 239, 0.98);
  padding: 8px 16px 16px;
}

.site-header--hero .nav-drawer {
  background: rgba(18, 28, 26, 0.96);
  border-top-color: rgba(207, 226, 219, 0.14);
}

.site-header.is-open .nav-drawer {
  display: block;
}

.nav-drawer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  font-size: 16px;
  color: var(--ink);
  border-radius: 10px;
}

.nav-drawer a:hover {
  background: var(--panel);
  color: var(--teal);
}

.site-header--hero .nav-drawer a {
  color: rgba(245, 243, 239, 0.85);
}

.site-header--hero .nav-drawer a:hover {
  background: rgba(245, 243, 239, 0.08);
  color: var(--cream);
}

@media (min-width: 860px) {
  .nav-drawer {
    display: none !important;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--deep-teal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Pull under sticky transparent header so hero fills the first viewport */
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
  scroll-margin-top: 0;
}

.hero__fog {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.hero__fog--a {
  left: -25%;
  top: -30%;
  width: 75%;
  height: 85%;
  background: var(--teal);
  opacity: 0.14;
  animation: fogDriftA 22s ease-in-out infinite;
}

.hero__fog--b {
  right: -25%;
  bottom: -30%;
  width: 75%;
  height: 85%;
  background: var(--sage);
  opacity: 0.12;
  animation: fogDriftB 26s ease-in-out infinite;
}

.hero__spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mist);
  pointer-events: none;
  animation: sparkTwinkle 4s ease-in-out infinite;
}

/* One quiet streak — CSS only; skipped under prefers-reduced-motion */
.hero__meteor {
  position: absolute;
  top: 18%;
  left: -8%;
  width: 72px;
  height: 1.5px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(207, 226, 219, 0.05) 20%,
    rgba(207, 226, 219, 0.55) 70%,
    rgba(245, 243, 239, 0.9) 100%
  );
  opacity: 0;
  transform: rotate(-28deg);
  animation: meteorStreak 14s var(--ease) 3.2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__meteor {
    display: none;
  }
}

.hero__core {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 80px;
}

.hero__orb-wrap {
  position: relative;
  width: clamp(150px, 32vw, 210px);
  height: clamp(150px, 32vw, 210px);
  margin-bottom: 44px;
  animation: heroUp 900ms var(--ease) 120ms both;
}

.hero__halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 168, 154, 0.35), transparent 70%);
  animation: haloBreathe 16s ease-in-out infinite;
}

.hero__orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #cfe2db 0%, #6ba89a 45%, #3d7a6e 85%);
  box-shadow: 0 20px 70px rgba(107, 168, 154, 0.35);
  animation: orbBreathe 16s ease-in-out infinite;
}

.hero__orb-mark {
  position: absolute;
  inset: 18%;
  width: 64%;
  height: 64%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 8.5vw, 88px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--cream);
  animation: heroUp 900ms var(--ease) 240ms both;
}

.hero__tagline {
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 300;
  color: var(--mist);
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.4;
  animation: heroUp 900ms var(--ease) 360ms both;
}

.hero__sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(245, 243, 239, 0.62);
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.6;
  animation: heroUp 900ms var(--ease) 420ms both;
}

.hero__note {
  font-size: 15px;
  color: rgba(245, 243, 239, 0.55);
  margin-top: 22px;
  animation: heroUp 900ms var(--ease) 460ms both;
}

.store-row {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroUp 900ms var(--ease) 560ms both;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
  padding: 13px 22px;
  min-height: 52px;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}

.store-badge--light {
  background: var(--cream);
  color: var(--deep);
}

.store-badge--light:hover {
  background: #fff;
  color: var(--deep);
}

.store-badge--ghost {
  background: rgba(245, 243, 239, 0.08);
  border: 1px solid rgba(245, 243, 239, 0.28);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.store-badge--ghost:hover {
  background: rgba(245, 243, 239, 0.16);
  color: var(--cream);
}

.store-badge__meta {
  text-align: left;
  line-height: 1.15;
}

.store-badge__meta small {
  display: block;
  font-size: 10.5px;
  color: #6e6e6e;
}

.store-badge--ghost .store-badge__meta small {
  color: rgba(245, 243, 239, 0.6);
}

.store-badge__meta strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.store-soon {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 243, 239, 0.45);
  margin-top: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245, 243, 239, 0.5);
  animation: scrollHint 2.4s ease-in-out infinite;
}

/* ── Sections ── */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 140px) 24px;
}

.section--wide {
  max-width: 980px;
}

.section--center {
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--mist {
  color: var(--mist);
}

.display {
  font-size: clamp(28px, 4.8vw, 44px);
  font-weight: 250;
  letter-spacing: -0.015em;
  line-height: 1.28;
  margin: 16px 0 0;
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 20px auto 0;
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
}

.text-link:hover {
  color: var(--sage);
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moment {
  display: flex;
  gap: clamp(18px, 4vw, 30px);
}

.moment__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  flex-shrink: 0;
}

.moment__n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}

.moment__n--accent {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--mist);
}

.moment__line {
  width: 1.5px;
  flex: 1;
  min-height: 34px;
  background: linear-gradient(var(--line), var(--mist));
}

.moment__body {
  padding-bottom: 38px;
  padding-top: 6px;
}

.moment__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.moment__title strong {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.moment__title span {
  font-size: 13px;
  color: var(--faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moment__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 7px 0 0;
  max-width: 480px;
}

.callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px 22px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.caught-word {
  font-size: clamp(56px, 11vw, 110px);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  max-width: 440px;
  margin: 34px auto 0;
  box-shadow: 0 12px 40px rgba(20, 23, 27, 0.06);
}

.glass-card__quote {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
}

.glass-card__meta {
  font-size: 13px;
  color: var(--faint);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.privacy-panel {
  background: var(--deep);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.privacy-panel__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.privacy-panel__glow--a {
  left: -20%;
  top: -30%;
  width: 60%;
  height: 80%;
  background: var(--teal);
  opacity: 0.12;
}

.privacy-panel__glow--b {
  right: -20%;
  bottom: -30%;
  width: 60%;
  height: 80%;
  background: var(--sage);
  opacity: 0.1;
}

.privacy-panel__inner {
  position: relative;
}

.pill-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(207, 226, 219, 0.12);
  border: 1px solid rgba(207, 226, 219, 0.28);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: 0.03em;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.privacy-card {
  background: rgba(245, 243, 239, 0.05);
  border: 1px solid rgba(245, 243, 239, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.privacy-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--mist);
}

.privacy-card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.65);
}

.privacy-links {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.privacy-links a {
  color: var(--sage);
  font-size: 15px;
}

.privacy-links a:hover {
  color: var(--mist);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
}

.value-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--teal);
}

.value-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.cta-band {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  left: 20%;
  top: -40%;
  width: 60%;
  height: 100%;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.1;
  filter: blur(70px);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(90px, 13vw, 140px) 24px;
  text-align: center;
}

.cta-band h2 {
  margin: 26px 0 0;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 250;
  color: var(--cream);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.cta-band p {
  margin: 16px 0 0;
  font-size: 17px;
  color: rgba(245, 243, 239, 0.6);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--cream);
  color: var(--deep);
  border-radius: 100px;
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 36px;
}

.btn-primary:hover {
  background: #fff;
  color: var(--deep);
  transform: translateY(-2px);
}

/* ── Legal / approach pages ── */
.page-hero-mini {
  position: relative;
  background: var(--deep);
  overflow: hidden;
}

.page-hero-mini__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 10vw, 100px) 24px clamp(64px, 10vw, 100px);
  text-align: center;
}

.page-hero-mini h1 {
  margin: 20px 0 0;
  font-size: clamp(34px, 6.2vw, 58px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream);
}

.page-hero-mini .lede {
  color: rgba(245, 243, 239, 0.72);
  max-width: 560px;
}

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 110px;
}

.legal__label {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 250;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

.legal__date {
  font-size: 14px;
  color: var(--faint);
  margin-top: 12px;
}

.legal__summary {
  background: var(--panel);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.65;
}

.legal__warn {
  background: var(--warm);
  border: 1px solid var(--warm-line);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 36px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--warm-ink);
}

.legal h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 44px 0 0;
  letter-spacing: -0.01em;
}

.legal p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 14px 0 0;
}

.legal__foot {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 24px;
  font-size: 14px;
  color: #8a8a8a;
  line-height: 1.7;
}

.step {
  display: flex;
  gap: 18px;
}

.step__n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  flex-shrink: 0;
}

.step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36px;
  flex-shrink: 0;
}

.step__line {
  width: 1.5px;
  flex: 1;
  min-height: 20px;
  background: var(--line);
}

.step__body {
  padding-bottom: 26px;
  padding-top: 6px;
}

.step__body strong {
  font-size: 16.5px;
  font-weight: 400;
}

.step__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 5px 0 0;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 120px) 24px 0;
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 18px 0 0;
}

.prose p:first-of-type {
  margin-top: 24px;
}

.card-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(32px, 6vw, 60px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.soft-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 22px;
}

.soft-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--teal);
}

.soft-card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 12px 0 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--deeper);
  padding: 40px 24px 36px;
}

.site-footer__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 28px 48px;
  align-items: start;
}

@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 280px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(245, 243, 239, 0.75);
  margin-bottom: 2px;
}

.site-footer__logo span {
  font-size: 17px;
  font-weight: 300;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 243, 239, 0.35);
  line-height: 1.4;
}

.site-footer__cols {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  flex-wrap: wrap;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.site-footer__col h2 {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 243, 239, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__col a {
  color: rgba(245, 243, 239, 0.6);
  font-size: 13.5px;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  min-height: 0;
}

.site-footer__col a:hover {
  color: var(--mist);
}

.site-footer__bottom {
  max-width: 980px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 243, 239, 0.08);
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 12.5px;
  color: rgba(245, 243, 239, 0.3);
  line-height: 1.55;
  /* Fill footer width — wrap only when the viewport forces it */
  max-width: none;
  white-space: normal;
  overflow: visible;
}

/* ── Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Keyframes ── */
@keyframes orbBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@keyframes haloBreathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes fogDriftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6%, 4%) scale(1.08);
  }
}

@keyframes fogDriftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, -6%) scale(1.1);
  }
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollHint {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.9;
  }
}

@keyframes sparkTwinkle {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes meteorStreak {
  0%,
  88% {
    opacity: 0;
    transform: rotate(-28deg) translate3d(0, 0, 0);
  }
  90% {
    opacity: 0.65;
  }
  96% {
    opacity: 0.45;
    transform: rotate(-28deg) translate3d(72vw, 38vh, 0);
  }
  100% {
    opacity: 0;
    transform: rotate(-28deg) translate3d(78vw, 42vh, 0);
  }
}
