/* ─────────────────────────────────────────────────────────────────────────────
   THE NEXTATION — static styles
   Dark theme · #2D6FFF gradient blue accents · Inter
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #0A0A0B;
  --bg-card: #0C0C0F;
  --bg-card-2: #0D0D10;
  --bg-input: #0F0F13;
  --blue: #2D6FFF;
  --blue-light: #6B9EFF;
  --wa: #25D366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: #f5f5f5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection {
  background: rgba(45, 111, 255, 0.3);
}

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

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

/* Film-grain overlay */
.bg-grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 60;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ─── Shared helpers ───────────────────────────────────────────────────────── */

.container {
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}
.mw-5xl { max-width: 64rem; }
.mw-6xl { max-width: 72rem; }
.mw-7xl { max-width: 80rem; }
.mw-2xl { max-width: 42rem; }

.section { padding-top: 6rem; padding-bottom: 6rem; position: relative; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, var(--blue-light) 60%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.25), transparent);
}

/* Glow buttons */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2D6FFF, #1a4fd8);
  box-shadow: 0 0 0 1px rgba(45, 111, 255, 0.5), 0 0 50px -8px rgba(45, 111, 255, 0.7), 0 4px 24px -4px rgba(45, 111, 255, 0.5);
  transition: opacity 0.2s ease;
}
.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-glow:hover::after { opacity: 1; }
.btn-glow > span { position: relative; z-index: 1; }
.btn-glow:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── Scroll reveal ────────────────────────────────────────────────────────── */

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade.in-view {
  opacity: 1;
  transform: translateY(0);
}
.no-anim .fade {
  transition: none !important;
}

/* ─── NAV ──────────────────────────────────────────────────────────────────── */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
#nav.scrolled {
  transform: translateY(0);
  opacity: 1;
}
.nav-inner {
  margin: 0.75rem 1rem 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-btn:hover { color: #fff; border-color: rgba(45, 111, 255, 0.5); }
.nav-apply {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  color: #fff;
  background: rgba(45, 111, 255, 0.15);
  border: 1px solid rgba(45, 111, 255, 0.3);
  transition: background 0.2s ease;
}
.nav-apply:hover { background: rgba(45, 111, 255, 0.25); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-apply { display: inline-flex; }
}

/* ─── HERO ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 1.5rem 0;
  overflow: hidden;
  text-align: center;
}
.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(45, 111, 255, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  max-width: 100vw;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(45, 111, 255, 0.13) 0%, transparent 65%);
}
.hero > * { position: relative; z-index: 10; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(45, 111, 255, 0.3);
  background: rgba(45, 111, 255, 0.07);
  color: var(--blue-light);
}
.dot-pulse {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--blue);
  box-shadow: 0 0 8px 2px rgba(45, 111, 255, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge { margin-bottom: 2rem; }

.hero h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 64rem;
}
.hero h1 .line { display: block; }
.hero h1 .white { color: #fff; }

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 42rem;
  line-height: 1.6;
  font-weight: 300;
}
.hero-hook {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
}
.hero-cta { margin-top: 2.5rem; height: 3.5rem; padding: 0 2.5rem; font-size: 1rem; letter-spacing: 0.02em; }
.hero-tagline {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 32rem;
  font-weight: 500;
}

.hero-ticker-wrap { width: 100%; margin-top: 6rem; }
.divider-faint { height: 1px; width: 100%; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.1), transparent); }

/* On mobile, anchor the hero to the top so it's fully visible on load (no centering gap) */
@media (max-width: 767px) {
  .hero {
    justify-content: flex-start;
    min-height: 100svh;
    padding-top: 4.5rem;
  }
  .hero-ticker-wrap { margin-top: 3rem; }
}

/* Hero entrance stagger */
.hero .anim-in {
  opacity: 1;
  transform: none;
}
.hero .d1 { animation-delay: 0.1s; }
.hero .d2 { animation-delay: 0.2s; }
.hero .d3 { animation-delay: 0.35s; }
.hero .d4 { animation-delay: 0.45s; }
.hero .d5 { animation-delay: 0.55s; }
.hero .d6 { animation-delay: 0.65s; }
.hero .d7 { animation-delay: 0.75s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Ticker ───────────────────────────────────────────────────────────────── */

.ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item .tdot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--blue);
  box-shadow: 0 0 6px 2px rgba(45, 111, 255, 0.6);
  flex-shrink: 0;
}
.ticker-fade-l, .ticker-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  pointer-events: none;
  z-index: 2;
}
.ticker-fade-l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker-fade-r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STATS ────────────────────────────────────────────────────────────────── */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(45, 111, 255, 0.12);
}
.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--bg);
}
.stat-num {
  font-size: clamp(3.75rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Section heads ────────────────────────────────────────────────────────── */

.section-head { margin-bottom: 5rem; text-align: center; }
.section-head h2,
.h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.radial-soft-bottom { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(45, 111, 255, 0.05), transparent); }
.radial-soft-left { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(45, 111, 255, 0.04), transparent); }

/* ─── Glow cards ───────────────────────────────────────────────────────────── */

.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

.glow-card {
  position: relative;
  padding: 1px;
  border-radius: 1.5rem;
  height: 100%;
  background: linear-gradient(145deg, rgba(45, 111, 255, 0.12), rgba(255, 255, 255, 0.04), rgba(45, 111, 255, 0.04));
  transition: transform 0.5s var(--ease);
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(145deg, rgba(45, 111, 255, 0.35), rgba(45, 111, 255, 0.08), transparent);
}
.glow-card:hover::before { opacity: 1; }
.glow-card-inner {
  position: relative;
  border-radius: calc(1.5rem - 1px);
  background: var(--bg-card);
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.card-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(45, 111, 255, 0.3), rgba(45, 111, 255, 0.08));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  background: rgba(45, 111, 255, 0.12);
  border: 1px solid rgba(45, 111, 255, 0.2);
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.card-text {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-size: 1rem;
  flex: 1;
}
.card-rule {
  margin-top: 2rem;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(45, 111, 255, 0.4), transparent);
}

/* ─── OPPORTUNITY ──────────────────────────────────────────────────────────── */

.opp-glow {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 111, 255, 0.08), transparent 65%);
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  background: rgba(45, 111, 255, 0.08);
  color: var(--blue-light);
  border: 1px solid rgba(45, 111, 255, 0.2);
}
.opp-head { max-width: 56rem; margin: 0 auto; }
.opp-sub { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 600; color: rgba(255, 255, 255, 0.6); }

.opp-panel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1px;
  background: linear-gradient(145deg, rgba(45, 111, 255, 0.25), rgba(45, 111, 255, 0.04), rgba(255, 255, 255, 0.04));
}
.opp-panel-inner {
  border-radius: calc(2rem - 1px);
  padding: 2.5rem;
  position: relative;
  background: var(--bg-card-2);
}
.opp-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.6), transparent); }
.opp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.opp-big {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opp-50 {
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #2D6FFF 0%, rgba(45, 111, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(45, 111, 255, 0.3));
}
.opp-50-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.opp-bullets { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.opp-bullet { display: flex; align-items: flex-start; gap: 1rem; }
.opp-check {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 111, 255, 0.15);
  border: 1px solid rgba(45, 111, 255, 0.3);
}
.opp-bullet .stat { color: #fff; font-weight: 600; font-size: 1.125rem; }
.opp-bullet .lbl { color: rgba(255, 255, 255, 0.5); font-size: 1.125rem; }
.opp-bullet .note { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.3); line-height: 1.4; }

.opp-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.opp-cta { height: 3.5rem; padding: 0 3rem; font-size: 1rem; }
.opp-cohort { margin-top: 0.75rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); padding-left: 0.25rem; }
.opp-note { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); padding-left: 0.25rem; }

@media (min-width: 768px) {
  .opp-panel-inner { padding: 4rem; }
  .opp-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .opp-big { align-items: flex-start; }
}

/* ─── PRODUCTS / ROADMAP ───────────────────────────────────────────────────── */

.prod-head-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.prod-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  background: rgba(45, 111, 255, 0.08);
  border: 1px solid rgba(45, 111, 255, 0.2);
  color: var(--blue-light);
}
.prod-callout .dot-pulse { width: 0.5rem; height: 0.5rem; }
.prod-note { color: rgba(255, 255, 255, 0.4); font-size: 1rem; margin-bottom: 3rem; max-width: 42rem; }

.timeline { position: relative; }
.timeline-line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(45, 111, 255, 0.5), rgba(45, 111, 255, 0.1));
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.timeline-dot-wrap { position: relative; margin-bottom: 1.5rem; z-index: 10; }
.timeline-dot-active {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--blue);
  position: relative;
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(45, 111, 255, 0.2), 0 0 20px 4px rgba(45, 111, 255, 0.4);
}
.timeline-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(45, 111, 255, 0.3);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.timeline-dot-soon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.timeline-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-name.active { color: #fff; }
.timeline-name.soon { color: rgba(255, 255, 255, 0.3); }
.timeline-desc { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.timeline-desc.active { color: var(--blue); }
.timeline-desc.soon { color: rgba(255, 255, 255, 0.2); }

.prod-vision { margin-top: 4rem; text-align: center; font-size: 0.875rem; font-weight: 500; color: rgba(255, 255, 255, 0.3); max-width: 42rem; margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .prod-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .timeline-line { display: block; }
  .timeline-grid { grid-template-columns: repeat(5, 1fr); gap: 0; }
}

/* ─── APPLY FORM ───────────────────────────────────────────────────────────── */

.apply-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.2), transparent); }
.apply-radial { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(45, 111, 255, 0.07), transparent); }

.apply-head-wrap { text-align: center; margin-bottom: 3.5rem; }
.apply-sub { color: rgba(255, 255, 255, 0.4); font-size: 1rem; line-height: 1.6; margin-top: 1.25rem; }

.form-panel {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1px;
  background: linear-gradient(145deg, rgba(45, 111, 255, 0.2), rgba(255, 255, 255, 0.04), rgba(45, 111, 255, 0.04));
}
.form-panel-inner {
  border-radius: calc(2rem - 1px);
  padding: 2rem;
  position: relative;
  background: var(--bg-card-2);
}
.form-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.5), transparent); }

form { display: flex; flex-direction: column; gap: 1.75rem; }
.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}
.input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder { color: rgba(255, 255, 255, 0.2); }
.input:focus { border-color: rgba(45, 111, 255, 0.6); box-shadow: 0 0 0 2px rgba(45, 111, 255, 0.15); }

.row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }

/* Experience checkboxes */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }
.exp-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
}
.exp-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.exp-box {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.exp-box svg { opacity: 0; transition: opacity 0.15s ease; }
.exp-option:has(input:checked) {
  background: rgba(45, 111, 255, 0.12);
  border-color: rgba(45, 111, 255, 0.4);
  color: #fff;
}
.exp-option:has(input:checked) .exp-box { background: var(--blue); border-color: var(--blue); }
.exp-option:has(input:checked) .exp-box svg { opacity: 1; }

/* Hours select */
.select-wrap { position: relative; }
select.input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.2);
}
select.input.filled { color: #fff; }
select.input option { background: var(--bg-input); color: #fff; }
.select-chevron { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); pointer-events: none; }

/* Comfort radios */
.comfort-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.comfort-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
}
.comfort-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.comfort-dot {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.comfort-dot span { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #fff; display: inline-block; opacity: 0; transition: opacity 0.15s ease; }
.comfort-option:has(input:checked) {
  background: rgba(45, 111, 255, 0.15);
  border-color: rgba(45, 111, 255, 0.5);
  color: #fff;
}
.comfort-option:has(input:checked) .comfort-dot { background: var(--blue); border-color: var(--blue); }
.comfort-option:has(input:checked) .comfort-dot span { opacity: 1; }

/* Submit */
.submit-wrap { padding-top: 0.5rem; }
.btn-submit { width: 100%; padding: 1rem 3rem; font-size: 1rem; }
.spinner { width: 1.25rem; height: 1.25rem; animation: spin 0.8s linear infinite; }
.form-error { margin-top: 1rem; text-align: center; font-size: 0.875rem; font-weight: 500; color: rgba(248, 113, 113, 0.8); }
.review-note { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: rgba(255, 255, 255, 0.3); font-weight: 500; line-height: 1.4; }

/* Success */
.success {
  padding: 2.5rem 0;
  text-align: center;
  animation: successIn 0.6s var(--ease);
}
.success-check {
  margin: 0 auto 2rem;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 111, 255, 0.1);
  border: 1px solid rgba(45, 111, 255, 0.25);
  box-shadow: 0 0 60px -8px rgba(45, 111, 255, 0.4);
  animation: popIn 0.5s var(--ease) 0.1s both;
}
.success-body { animation: fadeUpSmall 0.5s var(--ease) 0.2s both; }
.success h3 { font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 1.25rem; }
.success-msg { color: rgba(255, 255, 255, 0.5); font-size: 1rem; line-height: 1.65; max-width: 20rem; margin: 0 auto; }
.success-sig { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.3); }
.success-extra { animation: fadeIn 0.5s ease 0.45s both; }
.success-div { margin: 2.5rem 0; height: 1px; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.15), transparent); }
.success-wa-note { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); margin-bottom: 1.25rem; }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: var(--wa);
  transition: opacity 0.2s ease;
}
.wa-link:hover { opacity: 0.8; }

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */

footer { padding: 4rem 1.5rem; position: relative; margin-top: 1rem; }
.footer-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(45, 111, 255, 0.15), transparent); }
.footer-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; }
.footer-brand .name { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; }
.footer-brand .url { color: rgba(255, 255, 255, 0.3); font-size: 0.875rem; }
.footer-links { display: flex; align-items: center; gap: 2rem; font-size: 0.875rem; font-weight: 500; }
.footer-links a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-right { display: flex; align-items: center; gap: 2rem; }
.footer-lang { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); transition: color 0.2s ease; }
.footer-lang:hover { color: #fff; }
.footer-year { color: rgba(255, 255, 255, 0.2); font-size: 0.875rem; }
.footer-tagline { margin-top: 2rem; text-align: center; font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.02em; }

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; }
  .footer-brand { align-items: flex-start; }
}

/* ─── Keyframes ────────────────────────────────────────────────────────────── */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeUpSmall {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade { opacity: 1; transform: none; }
}
