/* ═══════════════════════════════════════════════════════════
   STAION · TEAM SITE · styles.css v2
   DM Serif Display + DM Sans · Fullscreen slides · Typeform
═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
  --blue:        #111BD9;
  --blue-h:      #0d16b5;
  --blue-glow:   rgba(17,27,217,0.25);
  --red-x:       #E53E3E;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] {
  --bg:          #0A0A0A;
  --bg-alt:      #111111;
  --bg-card:     #141414;
  --bg-card-h:   #1a1a1a;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(17,27,217,0.5);
  --text:        #FFFFFF;
  --text-2:      #999999;
  --text-3:      #555555;
  --ph:          #3a3a3a;
  --input-bg:    #0e0e0e;
  --success-c:   #4ade80;
}

[data-theme="light"] {
  --bg:          #FAFAFA;
  --bg-alt:      #F0F0F0;
  --bg-card:     #FFFFFF;
  --bg-card-h:   #F5F5F5;
  --border:      rgba(0,0,0,0.09);
  --border-h:    rgba(17,27,217,0.3);
  --text:        #0A0A0A;
  --text-2:      #666666;
  --text-3:      #AAAAAA;
  --ph:          #BBBBBB;
  --input-bg:    #FFFFFF;
  --success-c:   #16a34a;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow: hidden; /* slides handle scroll */
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* custom cursor */
}
a { color: inherit; text-decoration: none; }
button { cursor: none; font-family: var(--font-body); border: none; background: none; }
input, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(17,27,217,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s;
  will-change: transform;
}
body.cursor-hover .cursor-dot { width: 10px; height: 10px; background: var(--blue); }
body.cursor-hover .cursor-ring { width: 48px; height: 48px; border-color: var(--blue); }
body.cursor-click .cursor-dot { width: 4px; height: 4px; }
body.cursor-click .cursor-ring { width: 24px; height: 24px; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.3s;
}
.topbar.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.7; }
.logo-dot { color: var(--blue); }

.topbar-right { display: flex; align-items: center; gap: 20px; }

.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  cursor: none;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--blue); }
.lang-sep { color: var(--text-3); font-size: 11px; user-select: none; }

.theme-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--border);
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
  cursor: none;
}
.theme-toggle:hover { background: var(--blue); color: #fff; }
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }

.btn-apply-nav {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 6px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  cursor: none;
}
.btn-apply-nav:hover { border-color: var(--blue); color: var(--blue); }

/* ── SLIDE NAV DOTS ─────────────────────────────────────── */
.slide-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sdot {
  width: 6px; height: 6px;
  background: var(--text-3);
  border-radius: 50%;
  cursor: none;
  transition: background 0.2s, transform 0.2s, width 0.2s;
  border: none;
}
.sdot:hover { background: var(--text-2); transform: scale(1.3); }
.sdot.active { background: var(--blue); width: 6px; height: 20px; border-radius: 3px; }

/* ── SLIDES CONTAINER ───────────────────────────────────── */
.slides-wrap {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 40px;
  transition: transform 0.85s var(--ease-out), opacity 0.85s var(--ease-out);
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}
.slide.is-active {
  transform: translateY(0);
  opacity: 1;
}
.slide.is-above {
  transform: translateY(-100%);
  opacity: 0;
}

.slide-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-h1 em { color: var(--blue); font-style: italic; }
.hero-h1 .blue { color: var(--blue); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.slide-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.slide-h2 em { color: var(--blue); font-style: italic; }

.slide-p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 520px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  background: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--blue-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 0;
  cursor: none;
  border: none;
  background: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text); }

.hero-btns { display: flex; align-items: center; gap: 24px; }

/* ── HERO SLIDE ─────────────────────────────────────────── */
.s-hero { background: var(--bg); }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hb-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}
.hb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hb-orb-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -100px; left: -100px;
}
.hb-orb-2 {
  width: 400px; height: 400px;
  background: var(--blue);
  bottom: -80px; right: 10%;
  opacity: 0.08;
}
.hb-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  height: 1px;
  opacity: 0.15;
}
.hb-line-1 { width: 60%; top: 35%; left: 20%; }
.hb-line-2 { width: 40%; top: 65%; left: 35%; opacity: 0.08; }

.s-hero .slide-content { position: relative; z-index: 1; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* Hero text animation */
.animate-up { opacity: 0; transform: translateY(30px); }
.s-hero.is-active .animate-up {
  animation: slideUp 0.7s var(--ease-out) forwards;
}
.d1 { animation-delay: 0.1s !important; }
.d2 { animation-delay: 0.2s !important; }
.d3 { animation-delay: 0.3s !important; }
.d4 { animation-delay: 0.4s !important; }
.d5 { animation-delay: 0.5s !important; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SPLIT LAYOUT ───────────────────────────────────────── */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 820px) { .split-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ── ABOUT SLIDE ────────────────────────────────────────── */
.s-about { background: var(--bg-alt); }

.stat-stack { display: flex; flex-direction: column; gap: 0; }
.stat-block { padding: 24px 0; }
.stat-rule { height: 1px; background: var(--border); }
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-suf { font-size: 32px; color: var(--blue); }
.stat-lbl { font-size: 13px; color: var(--text-3); margin-top: 6px; font-weight: 500; }

/* ── SEEK SLIDE ─────────────────────────────────────────── */
.s-seek { background: var(--bg); }

.seek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
}
.seek-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}
.seek-item:hover { background: var(--bg-alt); color: var(--text); }
.arr { color: var(--blue); flex-shrink: 0; font-size: 14px; margin-top: 1px; }

.slide-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--text-2);
  border-left: 2px solid var(--blue);
  padding-left: 20px;
  line-height: 1.5;
}
.slide-quote em { color: var(--blue); }

/* ── NO SLIDE ───────────────────────────────────────────── */
.s-no { background: var(--bg-alt); }

.no-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.no-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s, transform 0.15s;
}
.no-card:hover { border-color: var(--red-x); transform: translateY(-1px); }
.no-x { color: var(--red-x); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.no-card p { font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ── PRINCIPLES SLIDE ───────────────────────────────────── */
.s-principles { background: var(--bg); }

.p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 900px) { .p-grid { grid-template-columns: repeat(2, 1fr); } }

.p-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-card:hover { border-color: var(--blue); transform: translateY(-2px); background: var(--bg-card-h); }
.p-n { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); }
.p-t { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ── PROCESS SLIDE ──────────────────────────────────────── */
.s-process { background: var(--bg-alt); }

.proc-list { display: flex; flex-direction: column; gap: 0; }
.proc-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.proc-item:last-child { border-bottom: none; }
.proc-n {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--border);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
}
.proc-t { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.proc-d { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ── FOOTER SLIDE ───────────────────────────────────────── */
.s-footer { background: var(--bg); align-items: flex-start; overflow-y: auto; }
.footer-content { width: 100%; max-width: 1100px; padding: 20px 0; }

.footer { width: 100%; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.f-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
}
.f-tagline {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 300px;
}

.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

.fcol { display: flex; flex-direction: column; gap: 10px; }
.fcol-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.flink {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
  cursor: none;
}
.flink:hover { color: var(--blue); }

.footer-legal {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.65;
}
.flegal-link {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: none;
}
.flegal-link:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.f-copy { font-size: 12px; color: var(--text-3); }
.f-bottom-links { display: flex; gap: 20px; }
.f-bottom-links .flink { font-size: 12px; }

/* ── FORM OVERLAY ───────────────────────────────────────── */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.form-overlay.is-open {
  transform: translateY(0);
}
.fo-inner { width: 100%; height: 100%; display: flex; flex-direction: column; }

/* Form bar */
.fo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.fo-bar-left { display: flex; align-items: center; gap: 20px; }
.fo-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}
.fo-prog-wrap {
  width: 180px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.fo-prog-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 99px;
  transition: width 0.4s var(--ease-out);
}
.fo-prog-label { font-size: 12px; color: var(--text-3); font-weight: 500; }
.fo-bar-right { display: flex; align-items: center; gap: 20px; }

.fo-timer {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.fo-timer.warning { color: #f59e0b; }
.fo-timer.urgent  { color: #ef4444; animation: timerPulse 1s ease-in-out infinite; }
@keyframes timerPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.fo-close {
  font-size: 16px;
  color: var(--text-3);
  cursor: none;
  padding: 6px;
  border-radius: 4px;
  transition: color 0.15s;
}
.fo-close:hover { color: var(--text); }

/* Form questions */
.fo-questions {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.fq {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  transform: translateY(60px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.fq.is-active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.fq.is-above {
  transform: translateY(-60px);
  opacity: 0;
  pointer-events: none;
}

.fq-body {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fq-body-center { align-items: center; text-align: center; }

/* Intro question */
.fq-intro .fq-body { max-width: 640px; }
.fq-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.fq-h {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.fq-p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}
.fq-rules-list { display: flex; flex-direction: column; gap: 10px; }
.fq-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.fq-rule span:first-child { font-size: 16px; flex-shrink: 0; }
.fo-start { margin-top: 8px; padding: 16px 32px; font-size: 15px; }

/* Question elements */
.fq-num-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}
.fq-last-badge { color: var(--blue); }

.fq-hint {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
  margin-top: -6px;
}
.fq-err {
  font-size: 13px;
  color: #ef4444;
  min-height: 20px;
  display: block;
}

.fq-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 12px 0;
  font-size: 22px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.3;
}
.fq-input:focus { border-color: var(--blue); }
.fq-input::placeholder { color: var(--ph); }
.fq-input-2 { margin-top: 12px; }

.fq-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 12px 0;
  font-size: 17px;
  color: var(--text);
  outline: none;
  resize: none;
  min-height: 120px;
  line-height: 1.65;
  transition: border-color 0.2s;
}
.fq-textarea:focus { border-color: var(--blue); }
.fq-textarea::placeholder { color: var(--ph); }

.fq-cc-row { font-size: 11px; color: var(--text-3); text-align: right; }
.fq-cc { font-weight: 600; }

.fq-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fq-next { padding: 12px 24px; font-size: 14px; }
.fq-submit-btn { padding: 16px 36px; font-size: 15px; }
.fq-enter-hint { font-size: 12px; color: var(--text-3); }

/* Video question */
.fq-video-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.fq-video-icon { font-size: 24px; color: var(--blue); flex-shrink: 0; }
.fq-video-box p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.fq-video-box strong { color: var(--text); }

/* Success */
.fq-success .fq-body { gap: 20px; }
.success-check {
  font-size: 56px;
  color: var(--success-c);
  animation: popIn 0.5s var(--ease-spring);
}
@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Sending */
.fo-sending {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}
.fo-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.fo-sending p { font-size: 15px; color: var(--text-2); }

/* ── SLIDE ENTER ANIMATIONS ─────────────────────────────── */
.slide .eyebrow,
.slide .slide-h2,
.slide .slide-p,
.slide .seek-grid,
.slide .no-grid,
.slide .p-grid,
.slide .stat-stack,
.slide .proc-list,
.slide .split-r,
.slide .slide-quote,
.slide .btn-primary {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.slide.is-active .eyebrow        { opacity: 1; transform: none; transition-delay: 0.05s; }
.slide.is-active .slide-h2       { opacity: 1; transform: none; transition-delay: 0.12s; }
.slide.is-active .slide-p        { opacity: 1; transform: none; transition-delay: 0.18s; }
.slide.is-active .seek-grid      { opacity: 1; transform: none; transition-delay: 0.20s; }
.slide.is-active .no-grid        { opacity: 1; transform: none; transition-delay: 0.20s; }
.slide.is-active .p-grid         { opacity: 1; transform: none; transition-delay: 0.20s; }
.slide.is-active .stat-stack     { opacity: 1; transform: none; transition-delay: 0.22s; }
.slide.is-active .proc-list      { opacity: 1; transform: none; transition-delay: 0.22s; }
.slide.is-active .split-r        { opacity: 1; transform: none; transition-delay: 0.28s; }
.slide.is-active .slide-quote    { opacity: 1; transform: none; transition-delay: 0.35s; }
.slide.is-active .btn-primary    { opacity: 1; transform: none; transition-delay: 0.28s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .topbar { padding: 16px 20px; }
  .slide  { padding: 80px 24px 32px; }
  .seek-grid { grid-template-columns: 1fr; }
  .no-grid   { grid-template-columns: 1fr; }
  .p-grid    { grid-template-columns: 1fr 1fr; }
  .fo-bar    { padding: 14px 20px; }
  .fo-prog-wrap { width: 100px; }
  .fq        { padding: 40px 20px; }
  .fq-input  { font-size: 18px; }
  .fq-textarea { font-size: 15px; }
  .slide-nav { right: 12px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .p-grid { grid-template-columns: 1fr; }
  .lang-switcher { display: none; }
}
