/* ═══════════════════════════════════════════════════════
   STAION · TEAM SITE · styles.css
   Brand: Inter, #111BD9 accent, minimal, premium
═══════════════════════════════════════════════════════ */

/* ── VARIABLES & THEMES ────────────────────────────── */
:root {
  --blue: #111BD9;
  --blue-hover: #0d16b8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 120px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med: 300ms ease;
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-input: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(17, 27, 217, 0.6);
  --text-primary: #FFFFFF;
  --text-secondary: #888888;
  --text-muted: #555555;
  --placeholder: #444444;
  --success-bg: #0d1f0d;
  --success-text: #4ade80;
}

[data-theme="light"] {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F5;
  --bg-card: #FAFAFA;
  --bg-input: #FFFFFF;
  --border: rgba(0, 0, 0, 0.1);
  --border-focus: rgba(17, 27, 217, 0.4);
  --text-primary: #0A0A0A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --placeholder: #AAAAAA;
  --success-bg: #f0fdf4;
  --success-text: #16a34a;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background var(--t-med), color var(--t-med);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input,
textarea,
select {
  font-family: var(--font);
}

/* ── CONTAINER ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.container--narrow {
  max-width: 740px;
}

.container--form {
  max-width: 820px;
}

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--sp-md);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-med), border-color var(--t-med);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color var(--t-fast);
}

.logo:hover .logo-text {
  color: var(--blue);
}

.topbar-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--text-primary);
  background: var(--border);
}

.lang-btn.active {
  color: var(--blue);
}

.lang-sep {
  color: var(--text-muted);
  font-size: 11px;
  user-select: none;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  transition: background var(--t-fast), color var(--t-fast);
}

.theme-toggle:hover {
  background: var(--border-focus);
  color: var(--blue);
}

.theme-icon {
  line-height: 1;
}

[data-theme="dark"] .theme-icon--dark {
  display: block;
}

[data-theme="dark"] .theme-icon--light {
  display: none;
}

[data-theme="light"] .theme-icon--light {
  display: block;
}

[data-theme="light"] .theme-icon--dark {
  display: none;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--sp-md);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

/* Grid bg */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  opacity: 0.4;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17, 27, 217, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* When btn-primary is inside a section (not hero), no animation needed */
.section .btn-primary,
.section--cta .btn-primary {
  opacity: 1;
  animation: none;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  border-radius: var(--r-md);
}

/* ── SECTIONS ───────────────────────────────────────── */
.section {
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border);
}

.section--alt {
  background: var(--bg-alt);
}

.section--cta {
  background: var(--blue);
  border-top: none;
  text-align: center;
}

.section--cta .btn-primary {
  background: #FFFFFF;
  color: var(--blue);
}

.section--cta .btn-primary:hover {
  background: #E5E5E5;
  box-shadow: none;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
  color: var(--text-primary);
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.body-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
  max-width: 640px;
}

/* ── STATS ──────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
  flex-wrap: wrap;
}

.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── TWO COL ────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}

.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: var(--sp-md);
  border-radius: var(--r-md);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}

.callout em {
  color: var(--blue);
  font-style: italic;
}

/* ── NO GRID ────────────────────────────────────────── */
.no-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.no-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
}

.no-x {
  color: #cc3333;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.no-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── PRINCIPLES ─────────────────────────────────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.principle-card {
  padding: var(--sp-md);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.principle-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.principle-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}

.principle-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ── STEPS ──────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-md);
}

.step {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--border);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  margin-top: 2px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── PROGRESS BAR ───────────────────────────────────── */
.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  margin: var(--sp-md) 0 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: var(--sp-md);
  font-weight: 500;
}

/* ── FORM ───────────────────────────────────────────── */
.form-intro {
  max-width: 100%;
  margin-bottom: 0;
}

.form-block {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  margin-top: var(--sp-md);
  background: var(--bg-card);
}

.form-block-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-sm);
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -2px;
  line-height: 1.5;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--border-focus);
}

input.is-valid {
  border-color: #22c55e;
}

input.is-error,
textarea.is-error {
  border-color: #ef4444;
}

.char-count {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

.field-error {
  font-size: 12px;
  color: #ef4444;
  display: none;
}

.field-error.visible {
  display: block;
}

/* ── VIDEO CARD ─────────────────────────────────────── */
.video-card {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.video-icon {
  font-size: 24px;
  color: var(--blue);
  flex-shrink: 0;
}

.video-instructions p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.video-instructions strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── SUBMIT AREA ────────────────────────────────────── */
.form-submit {
  margin-top: var(--sp-md);
  text-align: center;
}

.submit-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--sp-sm);
}

/* ── SUCCESS ────────────────────────────────────────── */
.success-msg {
  text-align: center;
  padding: var(--sp-xl) 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: var(--sp-md);
  background: var(--success-bg);
}

.success-icon {
  font-size: 48px;
  color: var(--success-text);
  margin-bottom: var(--sp-sm);
}

.success-msg h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.success-msg p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ── CTA ────────────────────────────────────────────── */
.cta-inner {
  padding: var(--sp-lg) 0;
}

.cta-text {
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.01em;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --sp-lg: 40px;
    --sp-xl: 80px;
  }

  .hero-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .stats-row {
    gap: var(--sp-md);
  }

  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .no-grid {
    grid-template-columns: 1fr;
  }

  .form-block {
    padding: var(--sp-sm);
  }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe 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(44px, 7vw, 64px);
  font-weight: 700;
  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(28px, 4vw, 32px);
  font-weight: 500;
  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: 18px;
  font-weight: 400;
  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: 18px;
  font-weight: 500;
  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: 18px;
  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: clamp(44px, 6vw, 64px);
  font-weight: 700;
  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(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.fq-p {
  font-size: 18px;
  font-weight: 400;
  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;
  }
}

/* ── LEGAL MODALS ──────────────────────────────────────── */
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-comp, 0px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  width: min(920px, 100%);
  max-height: min(82vh, 900px);
  overflow: auto;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 16px;
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-content h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-top: 10px;
}

.modal-content p,
.modal-content li {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
}

.fo-consent-banner {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
}

.fo-consent-banner.is-visible {
  display: flex;
}

.fo-consent-card {
  width: min(760px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fo-consent-card h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
}

.fo-consent-card p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
}

.fo-consent-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fo-consent-links a {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fo-consent-actions {
  display: flex;
  justify-content: flex-end;
}

.modal-content ul {
  list-style: disc;
  padding-left: 22px;
}

.modal-container:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ── CONSENT CHECKS ────────────────────────────────────── */
.fq-consent-group {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fq-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.fq-consent-item input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fq-consent-error {
  min-height: 20px;
  font-size: 13px;
  color: #ef4444;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 12px;
  }

  .modal-container {
    padding: 20px;
    max-height: 88vh;
  }

  .modal-content {
    padding-right: 0;
  }

  .modal-content h3 {
    font-size: 24px;
  }

  .modal-content p,
  .modal-content li {
    font-size: 16px;
  }

  .fo-consent-card {
    padding: 18px;
  }

  .fo-consent-card h3 {
    font-size: 24px;
  }

  .fo-consent-card p {
    font-size: 16px;
  }
}

/* ── TYPOGRAPHY SYSTEM ─────────────────────────────────── */
.text-impact {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.text-h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.text-headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-subtitle {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-cta {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.text-small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* ── BRAND GRADIENT SYSTEM ─────────────────────────────── */
.gradient-primary {
  background: linear-gradient(135deg, #111BD9 0%, #FFFFFF 100%);
}

.text-gradient {
  background-image: linear-gradient(135deg, #111BD9 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background-image: linear-gradient(135deg, #111BD9 0%, #5D67E8 58%, #FFFFFF 100%) !important;
  color: #0A0A0A !important;
  border: 1px solid rgba(17, 27, 217, 0.35);
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background-position 0.3s ease;
  background-size: 140% 140%;
  background-position: 0% 50%;
}

.btn-gradient:hover {
  filter: brightness(1.04);
  background-position: 100% 50%;
  box-shadow: 0 10px 24px rgba(17, 27, 217, 0.28);
}

.btn-gradient:active {
  filter: brightness(0.98);
}

@media (max-width: 768px) {
  .text-impact,
  .text-h1 {
    font-size: 48px;
    line-height: 1.08;
  }

  .text-headline {
    font-size: 32px;
    line-height: 1.2;
  }

  .text-subtitle {
    font-size: 28px;
    line-height: 1.25;
  }

  .text-cta {
    font-size: 17px;
  }

  .text-body {
    font-size: 16px;
  }

  .text-small {
    font-size: 13px;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.hero-meta {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.btn-gradient {
  background-image: linear-gradient(135deg, #0f3dff 0%, #2147f5 55%, #486dfc 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(72, 109, 252, 0.38);
}

.cursor-dot,
.cursor-ring {
  display: none;
}

body.has-fine-pointer .cursor-dot,
body.has-fine-pointer .cursor-ring {
  display: block;
}

a,
button,
input,
textarea,
select {
  cursor: pointer;
}

body.has-fine-pointer a,
body.has-fine-pointer button,
body.has-fine-pointer .btn-primary,
body.has-fine-pointer .btn-ghost,
body.has-fine-pointer .btn-apply-nav,
body.has-fine-pointer .theme-toggle,
body.has-fine-pointer .lang-btn,
body.has-fine-pointer .sdot,
body.has-fine-pointer .flink,
body.has-fine-pointer .flegal-link {
  cursor: none;
}

.btn-primary,
.btn-ghost,
.btn-apply-nav,
.theme-toggle,
.lang-btn,
.fo-close,
.modal-close,
.sdot {
  min-height: 44px;
}

.btn-primary,
.btn-apply-nav {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-primary {
  box-shadow: 0 12px 30px rgba(17, 27, 217, 0.24);
}

.btn-ghost {
  color: var(--text);
}

.btn-ghost:hover {
  color: var(--blue);
}

.lang-btn,
.theme-toggle,
.btn-apply-nav,
.flink,
.flegal-link,
.logo,
.sdot,
.btn-primary,
.btn-ghost,
.fo-close,
.modal-close,
.fq-input,
.fq-textarea {
  outline: none;
}

.lang-btn:focus-visible,
.theme-toggle:focus-visible,
.btn-apply-nav:focus-visible,
.flink:focus-visible,
.flegal-link:focus-visible,
.logo:focus-visible,
.sdot:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.fo-close:focus-visible,
.modal-close:focus-visible,
.fq-input:focus-visible,
.fq-textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(17, 27, 217, 0.24);
  border-color: var(--blue);
}

.slide-nav {
  right: 20px;
  gap: 8px;
}

.sdot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
}

.sdot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text-3);
  transition: transform 0.2s ease, background 0.2s ease, height 0.2s ease;
}

.sdot:hover::before,
.sdot:focus-visible::before {
  background: var(--text-2);
  transform: scale(1.15);
}

.sdot.active::before {
  width: 12px;
  height: 28px;
  background: var(--blue);
}

.footer-legal p,
.f-copy,
.f-bottom-links .flink,
.flink {
  font-size: 14px;
  line-height: 1.7;
}

.footer-legal p,
.f-copy {
  color: var(--text-2);
}

.fq-input,
.fq-textarea {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-alt);
  padding: 18px 20px;
}

.fq-input:focus,
.fq-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 27, 217, 0.16);
}

@media (max-width: 900px) {
  .slides-wrap {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-top: 88px;
  }

  .slide {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 48px 20px;
    transform: none !important;
    opacity: 1 !important;
  }

  .slide-content {
    max-width: 720px;
  }

  .slide-nav,
  .scroll-indicator {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-apply-nav {
    width: 100%;
    justify-content: center;
  }

  .topbar {
    padding: 14px 16px;
  }

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

  .lang-switcher {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cursor-dot,
  .cursor-ring,
  .hero-bg,
  .scroll-indicator {
    display: none !important;
  }
}
