/* ═══════════════════════════════════════════════════════════
   OUTFYST — DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Static palette */
  --black: #000000;
  --off-white: #F5F5F5;
  --dark-grey: #1A1A1A;
  --grey-2A: #2A2A2A;
  --grey-555: #555555;
  --grey-888: #888888;
  --silver: #C0C0C0;
  --red: #8B0000;

  /* Typography */
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --gutter: 28px;
  --nav-height: 64px;
  --max-width: 1440px;

  /* ── Dark Theme (default) ── */
  --bg-primary: #000000;
  --bg-secondary: #1A1A1A;
  --bg-surface: #0A0A0A;
  --text-primary: #F5F5F5;
  --text-secondary: #888888;
  --text-muted: #555555;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(0, 0, 0, 0.6);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-card: rgba(22, 22, 22, 0.9);
  --card-shadow: rgba(0, 0, 0, 0.5);
  --accent-glow: rgba(30, 30, 80, 0.1);
  --hero-gradient: radial-gradient(ellipse at 50% 50%, #1A1A1A 0%, #000 70%);
  --btn-hover-bg: rgba(245, 245, 245, 0.08);
  --manifesto-bg: #1A1A1A;
  --noise-opacity: 0.06;
  --scanline-color: rgba(192, 192, 192, 0.15);
  --fluid-display-mult: 0.4;
  --liquid-shimmer-color: rgba(255, 255, 255, 0.03);
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg-primary: #FAFAFA;
  --bg-secondary: #F0F0F0;
  --bg-surface: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(0, 0, 0, 0.05);
  --glass-card: rgba(255, 255, 255, 0.88);
  --card-shadow: rgba(0, 0, 0, 0.06);
  --accent-glow: rgba(100, 100, 200, 0.04);
  --hero-gradient: radial-gradient(ellipse at 50% 50%, #F2F2F2 0%, #FAFAFA 70%);
  --btn-hover-bg: rgba(0, 0, 0, 0.04);
  --manifesto-bg: #F0F0F0;
  --noise-opacity: 0.015;
  --scanline-color: rgba(0, 0, 0, 0.025);
  --fluid-display-mult: 0.6;
  --liquid-shimmer-color: rgba(0, 0, 0, 0.015);
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

textarea {
  resize: vertical;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR (desktop only)
   ═══════════════════════════════════════════════════════════ */

@media (pointer: fine) {
  body {
    cursor: none;
  }

  a, button, input, textarea, [data-cursor-hover] {
    cursor: none;
  }
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--off-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: -4px;
  margin-left: -4px;
  will-change: transform;
}

.custom-cursor.hovering {
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITY: MONOSPACE LABEL
   ═══════════════════════════════════════════════════════════ */

.mono-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.navbar__wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.navbar__wordmark:hover {
  opacity: 0.7;
}

/* ── Liquid shimmer overlay ── */
.navbar__liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.navbar__liquid::before,
.navbar__liquid::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  animation: liquidShimmer 8s ease-in-out infinite;
}

.navbar__liquid::before {
  width: 120px;
  height: 40px;
  background: var(--liquid-shimmer-color, rgba(255, 255, 255, 0.03));
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  animation-delay: 0s;
}

.navbar__liquid::after {
  width: 100px;
  height: 35px;
  background: var(--liquid-shimmer-color, rgba(255, 255, 255, 0.025));
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation-delay: -4s;
}

@keyframes liquidShimmer {
  0%, 100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px) scale(0.8);
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
    transform: translateY(-50%) translateX(40px) scale(1.1);
  }
  70% {
    opacity: 0.8;
  }
}

/* Ensure navbar children sit above liquid */
.navbar__right {
  position: relative;
  z-index: 2;
}

.navbar__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Navbar right group */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--border-medium);
  background-color: var(--btn-hover-bg);
}

/* Sun visible in dark mode, moon in light mode */
.theme-toggle__moon { display: none; }
.theme-toggle__sun { display: block; }

[data-theme="light"] .theme-toggle__moon { display: block; }
[data-theme="light"] .theme-toggle__sun { display: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) var(--gutter) 60px;
}

/* Fluid canvas */
#fluid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero:hover #fluid-canvas {
  pointer-events: auto;
}

/* SVG noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 1;
}

/* Animated scanline */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--scanline-color), transparent);
  animation: scanline 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes scanline {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Corner labels */
.hero__label-tl {
  position: absolute;
  top: calc(var(--nav-height) + 24px);
  left: var(--gutter);
  color: var(--text-muted);
  z-index: 2;
}

.hero__label-tr {
  position: absolute;
  top: calc(var(--nav-height) + 24px);
  right: var(--gutter);
  color: var(--text-secondary);
  z-index: 2;
}

/* Hero tag label */
.hero__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 148px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--text-primary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
}

.hero__headline .accent {
  color: var(--silver);
}

/* CTA button */
.hero__cta {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(12px);
}

.btn-outline {
  display: inline-block;
  padding: 16px 32px;
  border: 0.5px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}

.btn-outline:hover {
  border-color: var(--border-medium);
  background-color: var(--btn-hover-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:focus-visible {
  outline: 1px solid var(--off-white);
  outline-offset: 4px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  z-index: 2;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hero entrance animation */
.hero__headline.animate-in,
.hero__cta.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════════ */

.manifesto {
  background: var(--manifesto-bg);
  color: var(--text-primary);
  padding: 120px var(--gutter);
  transition: background-color 0.4s ease;
}

.manifesto__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.3;
  text-transform: uppercase;
  max-width: 80%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto__line.visible {
  transform: translateY(0);
}

.manifesto__line--1.visible { opacity: 1; }
.manifesto__line--2.visible { opacity: 0.5; }
.manifesto__line--3.visible { opacity: 0.25; }

@media (max-width: 640px) {
  .manifesto {
    padding: 80px var(--gutter);
  }
  .manifesto__line {
    max-width: 100%;
  }
}

/* Manifesto CTA */
.manifesto__cta {
  margin-top: 64px;
}

.manifesto__cta .btn-outline {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.manifesto__cta .btn-outline:hover {
  border-color: var(--text-primary);
  background-color: var(--btn-hover-bg);
}

.manifesto__cta .btn-outline:focus-visible {
  outline-color: var(--off-white);
}

/* ═══════════════════════════════════════════════════════════
   WHAT'S COMING (PRODUCTS)
   ═══════════════════════════════════════════════════════════ */

.products {
  background: var(--bg-primary);
  padding: 100px var(--gutter);
  transition: background-color 0.4s ease;
}

.products__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.products__eyebrow {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.products__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) and (min-width: 641px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .products {
    padding: 80px var(--gutter);
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--card-shadow), 0 0 40px var(--accent-glow);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--glass-card) 0%, var(--bg-surface) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image {
  border-color: var(--border-medium);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--text-muted);
}

.product-card__svg {
  width: 50%;
  max-width: 140px;
  opacity: 0.25;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__svg {
  opacity: 0.4;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 16px;
}

.product-card__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--silver);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN TIMER
   ═══════════════════════════════════════════════════════════ */

.countdown {
  background: var(--bg-primary);
  padding: 80px var(--gutter);
  border-top: 0.5px solid var(--border-subtle);
  border-bottom: 0.5px solid var(--border-subtle);
  transition: background-color 0.4s ease;
}

.countdown__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.countdown__label {
  color: var(--text-secondary);
  margin-bottom: 40px;
  letter-spacing: 0.3em;
}

.countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  color: var(--text-muted);
  letter-spacing: 0.3em;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--border-subtle);
  line-height: 1;
  margin-bottom: 20px;
  animation: sepPulse 1s steps(2, end) infinite;
}

@keyframes sepPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@media (max-width: 640px) {
  .countdown {
    padding: 60px var(--gutter);
  }
  .countdown__grid {
    gap: 12px;
  }
  .countdown__block {
    min-width: 60px;
  }
}

/* ═══════════════════════════════════════════════════════════
   REGISTER / FORM SECTION
   ═══════════════════════════════════════════════════════════ */

.register {
  background: var(--bg-primary);
  padding: 120px var(--gutter);
  transition: background-color 0.4s ease;
}

.register__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.register__eyebrow {
  color: var(--silver);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.register__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.register__headline .accent {
  color: var(--silver);
}

.register__body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 40px;
}

.register__divider {
  width: 60px;
  height: 0.5px;
  background: var(--text-muted);
  margin: 0 auto 48px;
}

/* Form */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group__label .optional {
  color: var(--text-muted);
}

.form-group__input,
.form-group__textarea {
  background: var(--bg-surface);
  border: 0.5px solid var(--border-subtle);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s ease;
  width: 100%;
  min-height: 44px;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--text-muted);
}

.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--text-primary);
}

.form-group__input:focus-visible,
.form-group__textarea:focus-visible {
  outline: 1px solid var(--off-white);
  outline-offset: 2px;
}

.form-group__textarea {
  min-height: 80px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  height: 56px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  margin-top: 8px;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}

.btn-submit:hover {
  background: var(--silver);
}

.btn-submit:focus-visible {
  outline: 1px solid var(--off-white);
  outline-offset: 4px;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.register__disclaimer {
  color: var(--text-muted);
  margin-top: 24px;
  text-align: center;
}

/* Form error */
.form-error {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 16px;
}

/* Success State */
.register__success {
  text-align: center;
  padding: 40px 0;
}

.register__success-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--silver);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.register__success-headline {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.register__success-body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 32px;
}

.register__success-sig {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg-primary);
  border-top: 0.5px solid var(--border-subtle);
  padding: 60px var(--gutter);
  text-align: center;
  transition: background-color 0.4s ease;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.25s ease;
}

.footer__wordmark:hover {
  opacity: 0.7;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer__social-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.footer__social-link:focus-visible {
  outline: 1px solid var(--off-white);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */

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

  .hero__headline,
  .hero__cta {
    opacity: 1;
    transform: none;
  }

  .hero__headline.animate-in,
  .hero__cta.animate-in {
    transition: none;
  }

  .manifesto__line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .manifesto__line--1 { opacity: 1; }
  .manifesto__line--2 { opacity: 0.5; }
  .manifesto__line--3 { opacity: 0.25; }

  .hero__scroll {
    animation: none;
    opacity: 0.6;
  }

  .custom-cursor {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .hero__label-tl,
  .hero__label-tr {
    font-size: 9px;
  }

  .register {
    padding: 80px var(--gutter);
  }

  .register__headline {
    font-size: clamp(36px, 8vw, 96px);
  }

  .footer {
    padding: 40px var(--gutter);
  }
}
