/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Colors */
  --bg: #09090c;
  --surface: #111116;
  --surface-2: #18181f;
  --border: #252530;
  --border-soft: #1e1e28;

  --text: #f0f0f5;
  --text-muted: #7a7a90;
  --text-faint: #3d3d50;

  --gold: #FFC850;
  --gold-dim: #c49820;
  --gold-glow: rgba(255, 200, 80, 0.12);
  --gold-glow-strong: rgba(255, 200, 80, 0.22);

  --purple: #9b59ff;
  --purple-dim: #6b39cf;

  /* Type scale */
  --xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --3xl: clamp(2.5rem, 0.5rem + 5vw, 5.5rem);
  --hero: clamp(3.5rem, 0rem + 8vw, 9rem);

  /* Spacing */
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s24: 6rem;

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 72px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--base);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
p { max-width: 64ch; }

::selection { background: var(--gold-glow-strong); color: var(--text); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 0 clamp(var(--s6), 4vw, var(--s12));
  background: rgba(9, 9, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-size: var(--lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.8; }
.nav__logo em { color: var(--gold); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav__links a {
  font-size: var(--sm);
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  padding: var(--s2) var(--s5) !important;
  background: var(--gold-glow) !important;
  border: 1px solid rgba(255, 200, 80, 0.25) !important;
  border-radius: var(--r-full) !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-glow-strong) !important;
  border-color: rgba(255, 200, 80, 0.4) !important;
  color: var(--gold) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}
.nav__burger span {
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  display: block;
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 190;
  background: rgba(9,9,12,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s8);
}
.mobile-overlay__links a {
  font-family: var(--font-display);
  font-size: var(--2xl);
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-overlay__links a:hover { color: var(--gold); }

/* ============================================================
   FRAMES (full-viewport sections)
   ============================================================ */
.frames { }

.frame {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Background images */
.frame__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.frame__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.frame__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,9,12,0.92) 0%,
    rgba(9,9,12,0.75) 50%,
    rgba(9,9,12,0.88) 100%
  );
}
.frame__bg-overlay--purple {
  background: linear-gradient(
    135deg,
    rgba(9,9,12,0.95) 0%,
    rgba(20,10,40,0.80) 50%,
    rgba(9,9,12,0.92) 100%
  );
}
.frame__bg-overlay--dark {
  background: rgba(9,9,12,0.82);
}

/* Content wrapper */
.frame__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(var(--s16), 10vh, var(--s24)) clamp(var(--s6), 5vw, var(--s12));
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}
.orb--gold {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,200,80,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.orb--white {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  bottom: 10%;
  left: -50px;
}
.orb--cta {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,200,80,0.06) 0%, transparent 60%);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay1 { transition-delay: 0.1s; }
.reveal--delay2 { transition-delay: 0.22s; }
.reveal--delay3 { transition-delay: 0.34s; }
.reveal--delay4 { transition-delay: 0.48s; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--s4);
  display: block;
}
.section-eyebrow--light {
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--2xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s6);
  color: var(--text);
}
.section-title--center { text-align: center; }
.section-desc {
  font-size: var(--base);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}
.gradient-gold {
  background: linear-gradient(90deg, var(--gold), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--sm);
  font-weight: 600;
  border-radius: var(--r-full);
  padding: var(--s3) var(--s6);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: #09090c;
}
.btn--gold:hover {
  background: #ffd060;
  box-shadow: 0 6px 24px rgba(255,200,80,0.3);
  color: #09090c;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,200,80,0.3);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn--large {
  padding: var(--s4) var(--s8);
  font-size: var(--base);
  font-weight: 700;
  border-radius: var(--r-lg);
}

/* ============================================================
   FRAME 1: HERO
   ============================================================ */
.frame--hero {
  min-height: 100svh;
}
.hero-content {
  padding-top: calc(68px + clamp(var(--s16), 10vh, var(--s24)));
  padding-bottom: clamp(var(--s16), 8vh, var(--s24));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--xs);
  color: var(--gold);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--s6);
  padding: var(--s2) var(--s4);
  border: 1px solid rgba(255,200,80,0.2);
  border-radius: var(--r-full);
  background: var(--gold-glow);
  width: fit-content;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--hero);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: var(--s6);
  display: flex;
  flex-direction: column;
}
.hero-title .line {
  display: block;
  color: var(--text);
}

.hero-desc {
  font-size: clamp(var(--base), 1.2vw, var(--lg));
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--s8);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s12);
}
.scroll-hint__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: shimmer-line 2s ease-in-out infinite;
}
@keyframes shimmer-line {
  0%, 100% { opacity: 0.4; width: 40px; }
  50% { opacity: 1; width: 70px; }
}
.scroll-hint span {
  font-family: var(--font-mono);
  font-size: var(--xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Ticker */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  background: rgba(9,9,12,0.6);
  backdrop-filter: blur(10px);
  padding: var(--s3) 0;
}
.ticker__track {
  display: flex;
  gap: var(--s8);
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-mono);
  font-size: var(--xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ticker__track .sep {
  color: var(--gold);
  font-size: 8px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   FRAME 2: SERVICES
   ============================================================ */
.frame--services {
  min-height: 100svh;
}
.services-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(var(--s8), 6vw, var(--s16));
  align-items: start;
}
@media (max-width: 900px) {
  .services-content { grid-template-columns: 1fr; }
}
.services-left {
  position: sticky;
  top: calc(68px + var(--s8));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(255,200,80,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  font-family: var(--font-mono);
  font-size: var(--xs);
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: var(--s4);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--s4);
  transition: background var(--transition);
}
.service-card:hover .service-card__icon {
  background: rgba(255,200,80,0.2);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--lg);
  font-weight: 600;
  margin-bottom: var(--s2);
  color: var(--text);
}
.service-card p {
  font-size: var(--sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FRAME 3: RESULTS
   ============================================================ */
.frame--results {
  min-height: 100svh;
}
.results-content {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-block: var(--s12) var(--s12);
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.stat-card.counted::after { transform: scaleX(1); }
.stat-card:hover { border-color: rgba(255,200,80,0.2); transform: translateY(-2px); }

.stat-card__num {
  font-family: var(--font-display);
  font-size: var(--3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
}
.stat-card__unit {
  font-family: var(--font-display);
  font-size: var(--xl);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}
.stat-card__label {
  font-size: var(--sm);
  color: var(--text-muted);
  margin-top: var(--s3);
  line-height: 1.5;
}

.proof-row {
  margin-top: var(--s8);
}
.proof-row__label {
  font-size: var(--xs);
  color: var(--text-faint);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s5);
}
.proof-row__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
}
.platform-pill {
  padding: var(--s2) var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--sm);
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  transition: border-color var(--transition), color var(--transition);
}
.platform-pill:hover {
  border-color: rgba(255,200,80,0.3);
  color: var(--gold);
}

/* ============================================================
   FRAME 4: PROCESS
   ============================================================ */
.frame--process {
  min-height: 100svh;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}
.process-sticky-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 100svh;
  position: relative;
}
@media (max-width: 900px) {
  .process-sticky-wrapper { grid-template-columns: 1fr; }
  .process-sticky { position: static !important; }
}

.process-sticky {
  position: sticky;
  top: 68px;
  height: calc(100svh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--s8), 6vw, var(--s12)) clamp(var(--s6), 4vw, var(--s10));
  border-right: 1px solid var(--border-soft);
}
@media (max-width: 900px) {
  .process-sticky {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding: var(--s12) var(--s6) var(--s8);
    height: auto;
  }
}

.process-dots {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s8);
}
@media (max-width: 900px) { .process-dots { display: none; } }
.process-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.process-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.process-steps {
  padding: clamp(var(--s8), 6vw, var(--s12)) clamp(var(--s6), 4vw, var(--s10));
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  justify-content: center;
}
@media (max-width: 900px) {
  .process-steps { gap: var(--s4); }
}

.process-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.4s;
}
.process-step__header {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
@media (max-width: 640px) {
  .process-step { padding: var(--s5) var(--s5); }
  .process-step__icon { width: 40px; height: 40px; }
  .process-step h3 { font-size: var(--base); }
}

.process-step.active-step {
  border-color: rgba(255,200,80,0.35);
  background: rgba(255,200,80,0.03);
  transform: translateX(6px);
}
@media (max-width: 900px) {
  .process-step.active-step { transform: none; }
}

.process-step__num {
  font-family: var(--font-mono);
  font-size: var(--xs);
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.process-step__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--lg);
  font-weight: 600;
  margin-bottom: var(--s2);
  color: var(--text);
}
.process-step p {
  font-size: var(--sm);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 100%;
}

/* ============================================================
   FRAME 5: CTA
   ============================================================ */
.frame--cta {
  min-height: 100svh;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
}
.cta-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: var(--3xl);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--s6);
}
.cta-desc {
  font-size: var(--lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--s10);
  line-height: 1.75;
}

/* CTA Form */
.cta-form {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) clamp(var(--s6), 4vw, var(--s10));
  margin-bottom: var(--s8);
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
@media (max-width: 600px) {
  .cta-form__row { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s4); }
.form-field:last-of-type { margin-bottom: var(--s6); }
.form-field label {
  font-size: var(--sm);
  font-weight: 500;
  color: var(--text-muted);
}
.form-field input,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  font-size: var(--base);
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255,200,80,0.4);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* Formspree feedback banners */
.fs-success {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s6);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--r-lg);
  color: #34d399;
  font-size: var(--sm);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-bottom: var(--s6);
}
.fs-error {
  padding: var(--s4) var(--s6);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--r-lg);
  color: #f87171;
  font-size: var(--sm);
  margin-bottom: var(--s6);
}
.fs-field-error {
  display: block;
  font-size: var(--xs);
  color: #f87171;
  margin-top: var(--s1);
  font-family: var(--font-mono);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(239, 68, 68, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.cta-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.cta-alt span {
  font-size: var(--xs);
  color: var(--text-faint);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta-socials {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  justify-content: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--sm);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: rgba(255,200,80,0.3);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: var(--s8) clamp(var(--s6), 5vw, var(--s12));
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer__text {
  font-size: var(--xs);
  color: var(--text-faint);
  max-width: 100%;
}
.footer__links {
  display: flex;
  gap: var(--s6);
}
.footer__links a {
  font-size: var(--xs);
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }