/* ═══════════════════════════════════════════════════════════════════
   THE SIXTH WAVE — Pre-launch site
   Fresh, streamlined stylesheet. Every value derives from the brand spec.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── FONTS (self-hosted) ──────────────────────────────────────────
   Place font files in /assets/fonts/. Adjust filenames if yours differ.
   ─────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Michroma';
  src: url('../fonts/Michroma-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ─── TOKENS ───────────────────────────────────────────────────────── */
:root {
  --deep-night:  #06121E;
  --ocean-ink:   #0B1B2B;
  --ocean-2:     #0E2235;
  --cosmic-rose: #EC4899;
  --violet:      #7E22CE;
  --deep-violet: #4C1D95;
  --plum:        #3B0764;
  --gold:        #B8862A;

  --grad: linear-gradient(115deg, #3B0764 0%, #7E22CE 50%, #EC4899 100%);

  --ink-100: #FFFFFF;
  --ink-80:  rgba(255,255,255,0.80);
  --ink-65:  rgba(255,255,255,0.65);
  --ink-50:  rgba(255,255,255,0.50);
  --ink-38:  rgba(255,255,255,0.38);
  --ink-22:  rgba(255,255,255,0.22);
  --ink-12:  rgba(255,255,255,0.12);
  --ink-07:  rgba(255,255,255,0.07);

  --display: 'Michroma', sans-serif;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 660px;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--deep-night);
  color: var(--ink-100);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: rgba(236,72,153,0.30); color: #fff; }

/* ─── AMBIENT BACKGROUND ───────────────────────────────────────────── */
/* Living aurora + grain. Sits behind everything, on the body. */
#aurora {
  position: fixed;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  filter: blur(60px) saturate(125%);
  opacity: 0.55;
}
#aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.aur-1 {
  width: 46vmax; height: 46vmax;
  left: 4%; top: 2%;
  background: radial-gradient(circle at 50% 50%, #7E22CE 0%, rgba(126,34,206,0) 68%);
  animation: drift-1 26s var(--ease-soft) infinite alternate;
}
.aur-2 {
  width: 42vmax; height: 42vmax;
  right: -2%; top: 18%;
  background: radial-gradient(circle at 50% 50%, #EC4899 0%, rgba(236,72,153,0) 66%);
  animation: drift-2 32s var(--ease-soft) infinite alternate;
}
.aur-3 {
  width: 50vmax; height: 50vmax;
  left: 20%; bottom: -18%;
  background: radial-gradient(circle at 50% 50%, #3B0764 0%, rgba(59,7,100,0) 70%);
  animation: drift-3 38s var(--ease-soft) infinite alternate;
}
@keyframes drift-1 {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(8vw,6vh,0) scale(1.15); }
}
@keyframes drift-2 {
  from { transform: translate3d(0,0,0) scale(1.1); }
  to   { transform: translate3d(-7vw,8vh,0) scale(0.95); }
}
@keyframes drift-3 {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(5vw,-7vh,0) scale(1.2); }
}

/* Fine grain overlay — kills the flat-CSS look */
#grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
#hero {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) 24px env(safe-area-inset-bottom);
  opacity: 0;
  animation: hero-in 1.1s var(--ease) 0.15s forwards;
}
@keyframes hero-in { to { opacity: 1; } }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

/* — Mark — */
.mark-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: clamp(28px, 5vh, 44px);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: rise 1s var(--ease) 0.3s forwards;
}
.mark-wrap::before {
  /* soft glow halo */
  content: '';
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle, rgba(236,72,153,0.30) 0%, rgba(126,34,206,0.12) 45%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
}
.mark-wrap img {
  width: clamp(104px, 22vw, 150px);
  height: clamp(104px, 22vw, 150px);
  display: block;
}
.mark-wrap::after {
  content: '';
  position: absolute;
  top: -20%; left: -75%;
  width: 55%; height: 140%;
  background: linear-gradient(108deg,
    transparent 20%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.06) 60%,
    transparent 78%);
  transform: skewX(-7deg);
  animation: shimmer 2.1s var(--ease) 1.25s 1 forwards;
  pointer-events: none;
}
@keyframes shimmer { from { left: -75%; } to { left: 150%; } }

/* — Wordmark — */
.hero-wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 3.8vw, 27px);
  letter-spacing: 0.30em;
  line-height: 1;
  color: var(--ink-100);
  text-indent: 0.30em;            /* optical centering for tracked caps */
  margin-bottom: clamp(14px, 2.4vh, 20px);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.5s forwards;
}

/* — Tagline — */
.hero-tagline {
  font-size: clamp(12px, 1.7vw, 14px);
  font-weight: 300;
  letter-spacing: 0.10em;
  color: var(--ink-50);
  margin-bottom: clamp(26px, 4.6vh, 40px);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.62s forwards;
}

/* — Divider — */
.hero-divider {
  width: 1px;
  height: clamp(28px, 5vh, 44px);
  background: linear-gradient(180deg, transparent, rgba(236,72,153,0.55), transparent);
  margin-bottom: clamp(26px, 4.6vh, 40px);
  opacity: 0;
  animation: grow-v 1s var(--ease) 0.74s forwards;
  transform-origin: top;
}
@keyframes grow-v { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

/* — Descriptor — */
.hero-descriptor {
  font-size: clamp(18px, 3.4vw, 27px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.32;
  color: var(--ink-100);
  margin-bottom: clamp(16px, 2.8vh, 22px);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.86s forwards;
}
.hero-descriptor .accent {
  background: linear-gradient(100deg, #C084FC, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* — Coming — */
.hero-coming {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-65);
  padding: 7px 16px;
  border: 1px solid var(--ink-12);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  margin-bottom: clamp(20px, 3.5vh, 30px);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.98s forwards;
}
.hero-coming .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cosmic-rose);
  box-shadow: 0 0 0 0 rgba(236,72,153,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,72,153,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}

/* — Standalone CTA — */
.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(13px, 1.8vw, 15px);
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--grad);
  padding: 14px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-bottom: clamp(22px, 3.8vh, 32px);
  transition: filter 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 8px 30px -10px rgba(236,72,153,0.58);
  opacity: 0;
  animation: rise 0.9s var(--ease) 1.06s forwards;
}
.hero-cta:hover {
  filter: brightness(1.09);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(236,72,153,0.75);
}
.hero-cta:active { transform: translateY(0); }

/* — Nav — */
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 1.18s forwards;
}
.hero-nav-btn {
  position: relative;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--ink-12);
  color: var(--ink-65);
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 17px;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  overflow: hidden;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
}
.hero-nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}
.hero-nav-btn:hover {
  color: #fff;
  border-color: rgba(236,72,153,0.40);
  transform: translateY(-2px);
}
.hero-nav-btn:active { transform: translateY(0); }
.hero-nav-btn.is-primary {
  color: #fff;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 6px 26px -10px rgba(236,72,153,0.6);
}
.hero-nav-btn.is-primary::before { opacity: 1; }
.hero-nav-btn.is-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -12px rgba(236,72,153,0.75); }

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

/* ═══════════════════════════════════════════════════════════════════
   OVERLAYS
   ═══════════════════════════════════════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: rgba(6,18,30,0.72);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}
.overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* — Header — */
.ov-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 34px);
  padding-top: calc(16px + env(safe-area-inset-top));
  border-bottom: 1px solid var(--ink-07);
  flex-shrink: 0;
}
.ov-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--ink-12);
  color: var(--ink-65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px 8px 13px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.ov-back svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.ov-back:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}
.ov-back:hover svg { transform: translateX(-3px); }

.ov-section-name {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-38);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ov-brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ov-brand-mini img { width: 20px; height: 20px; }

/* — Body — */
.ov-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(34px, 6vh, 68px) clamp(20px, 5vw, 48px) clamp(28px, 4vh, 48px);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-12) transparent;
}
.ov-body::-webkit-scrollbar { width: 7px; }
.ov-body::-webkit-scrollbar-thumb { background: var(--ink-12); border-radius: 10px; }

/* — Slides — */
.ov-slide { display: none; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.ov-slide.active { display: block; }

/* staggered reveal — each direct child animates in sequence */
.ov-slide.active > * {
  opacity: 0;
  animation: reveal 0.7s var(--ease) forwards;
}
.ov-slide.active > *:nth-child(1) { animation-delay: 0.05s; }
.ov-slide.active > *:nth-child(2) { animation-delay: 0.13s; }
.ov-slide.active > *:nth-child(3) { animation-delay: 0.21s; }
.ov-slide.active > *:nth-child(4) { animation-delay: 0.29s; }
.ov-slide.active > *:nth-child(5) { animation-delay: 0.37s; }
.ov-slide.active > *:nth-child(6) { animation-delay: 0.45s; }
.ov-slide.active > *:nth-child(7) { animation-delay: 0.53s; }
@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* — Slide typography — */
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--cosmic-rose);
  margin-bottom: 18px;
}
.slide-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--cosmic-rose);
  opacity: 0.6;
}
.slide-title {
  font-size: clamp(25px, 4.4vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink-100);
  margin-bottom: 30px;
  text-wrap: balance;
}
.slide-body p {
  font-size: clamp(14px, 1.95vw, 17px);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-80);
  margin-bottom: 20px;
}
.slide-body p:last-child { margin-bottom: 0; }

/* lead paragraph — slightly larger, sets the voice */
.slide-body .lead {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--ink-100);
  font-weight: 400;
  line-height: 1.7;
}

.slide-statement {
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink-100);
  margin: 30px 0;
  padding-left: 22px;
  border-left: 2px solid transparent;
  border-image: var(--grad) 1;
}

.slide-pullquote {
  margin: 34px 0;
  font-size: clamp(17px, 2.6vw, 22px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-100);
  text-align: center;
  position: relative;
  padding: 8px 0;
}
.slide-pullquote::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--grad);
  margin: 0 auto 22px;
  border-radius: 2px;
}

/* — Benefits — */
.benefits-list { list-style: none; }
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-07);
}
.benefit-item:first-child { padding-top: 6px; }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  border: 1px solid var(--ink-12);
  color: var(--cosmic-rose);
  margin-top: 2px;
}
.benefit-icon.is-gold {
  color: var(--gold);
  border-color: rgba(184,134,42,0.4);
  background: rgba(184,134,42,0.08);
}
.benefit-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-100);
  margin-bottom: 5px;
}
.benefit-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-65);
}

/* — In-slide CTA — */
.btn-wave {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--grad);
  padding: 14px 30px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 32px;
  transition: filter 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 10px 30px -12px rgba(236,72,153,0.6);
}
.btn-wave svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-wave:hover { color: #fff; filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 16px 42px -14px rgba(236,72,153,0.75); }
.btn-wave:hover svg { transform: translateX(4px); }

/* — Footer / slide nav — */
.ov-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px clamp(18px, 4vw, 34px);
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-07);
  flex-shrink: 0;
}
.ov-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--ink-12);
  color: var(--ink-65);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, opacity 0.25s, transform 0.25s var(--ease);
}
.ov-nav-btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.ov-nav-btn:hover:not(:disabled) { color: #fff; border-color: rgba(255,255,255,0.30); }
.ov-nav-btn.next-btn:hover:not(:disabled) svg { transform: translateX(3px); }
.ov-nav-btn.prev-btn:hover:not(:disabled) svg { transform: translateX(-3px); }
.ov-nav-btn:disabled { opacity: 0.2; cursor: default; }

/* progress dots */
.ov-dots { display: flex; align-items: center; gap: 8px; }
.ov-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-22);
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease), transform 0.2s;
  padding: 0; border: none;
}
.ov-dot:hover { transform: scale(1.25); }
.ov-dot.active {
  width: 22px;
  border-radius: 100px;
  background: var(--grad);
}

/* ═══════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════ */
.form-wrap { width: 100%; max-width: 560px; margin: 0 auto; }
.form-intro {
  font-size: clamp(14px, 1.9vw, 16px);
  color: var(--ink-65);
  line-height: 1.78;
  margin-bottom: 32px;
}
.f-group { margin-bottom: 15px; }
.f-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 8px;
}
.f-group label .opt {
  font-weight: 400;
  color: var(--ink-22);
  text-transform: none;
  letter-spacing: 0;
}
.f-control {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--ink-12);
  border-radius: 9px;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.f-control:focus {
  border-color: rgba(236,72,153,0.55);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.10);
}
.f-control::placeholder { color: var(--ink-22); }
.f-control.is-err { border-color: rgba(236,72,153,0.7); }
select.f-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
select.f-control option { background: var(--ocean-ink); color: #fff; }
textarea.f-control { resize: vertical; min-height: 92px; line-height: 1.6; }
.f-error {
  font-size: 11.5px;
  color: var(--cosmic-rose);
  margin-top: 6px;
  display: none;
}
.f-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.hp-field { position: absolute; left: -9999px; visibility: hidden; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--grad);
  padding: 15px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 24px;
  transition: filter 0.25s, box-shadow 0.25s, transform 0.2s var(--ease);
  box-shadow: 0 10px 30px -12px rgba(236,72,153,0.6);
}
.btn-submit:hover { filter: brightness(1.08); box-shadow: 0 16px 42px -14px rgba(236,72,153,0.75); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.55; cursor: default; filter: none; box-shadow: none; transform: none; }

.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success.is-visible { display: block; animation: reveal 0.6s var(--ease); }
.form-success .success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(236,72,153,0.10);
  border: 1px solid rgba(236,72,153,0.35);
  color: var(--cosmic-rose);
  font-size: 24px;
}
.form-success h3 { font-size: clamp(21px, 3.4vw, 27px); font-weight: 600; color: #fff; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--ink-65); line-height: 1.7; max-width: 380px; margin: 0 auto; }

.gen-error {
  font-size: 13px;
  color: var(--cosmic-rose);
  margin-top: 12px;
  display: none;
  text-align: center;
}
.gen-error a { text-decoration: underline; }

/* ─── SOCIAL ICONS (form overlays) ─────────────────────────────────── */
.ov-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 16px 24px 8px;
  flex-shrink: 0;
}
.ov-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-12);
  color: var(--ink-50);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.ov-social a svg { width: 17px; height: 17px; }
.ov-social a:hover {
  color: #fff;
  border-color: rgba(236,72,153,0.45);
  background: rgba(236,72,153,0.06);
  transform: translateY(-2px);
}
.ov-legal {
  text-align: center;
  font-size: 10.5px;
  color: var(--ink-22);
  padding: 8px 24px calc(18px + env(safe-area-inset-bottom));
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .f-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .f-grid-2 .f-group { margin-bottom: 15px; }
  .ov-section-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .mark-wrap::after { display: none; }
  #aurora span { animation: none; }
  .ov-slide.active > * { opacity: 1; }
  #hero, .mark-wrap, .hero-wordmark, .hero-tagline, .hero-divider,
  .hero-descriptor, .hero-coming, .hero-nav { opacity: 1; transform: none; }
}
