/* ============================================================
   SopiSafe Landing — Dark Luxe Fintech
   Fonts:    Syne (display) · Outfit (body) · JetBrains Mono
   Palette:  violet · emerald · rose on #080b12 surfaces
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #080b12;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input { font-family: inherit; }

/* ── Design tokens ── */
:root {
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --emerald:    #34d399;
  --emerald-2:  #10b981;
  --rose:       #fb7185;
  --amber:      #fbbf24;

  --dark-950: #05070c;
  --dark-900: #080b12;
  --dark-850: #0b1020;
  --dark-800: #0e1320;
  --dark-700: #161d2e;
  --dark-600: #1e2538;

  --light-100: #f6f7fb;
  --light-50:  #fafbff;
  --light-0:   #ffffff;

  --text-dark-headline:  #0b1220;
  --text-dark-body:      #475569;
  --text-dark-tertiary:  #64748b;

  --text-light-headline: #f1f5f9;
  --text-light-body:     #8896ab;
  --text-light-tertiary: #4a5568;

  --border-dark:  rgba(255, 255, 255, 0.06);
  --border-dark2: rgba(255, 255, 255, 0.10);
  --border-light: #e5e8f0;
  --border-light2: #eef0f6;

  --nav-height: 60px;
  --max-width:  1160px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  22px;

  --shadow-violet: 0 8px 24px rgba(139, 92, 246, 0.35), 0 2px 4px rgba(139, 92, 246, 0.15);
  --shadow-violet-lg: 0 16px 48px rgba(139, 92, 246, 0.45), 0 4px 12px rgba(139, 92, 246, 0.25);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 2px 4px rgba(15, 23, 42, 0.08), 0 20px 40px rgba(15, 23, 42, 0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Utilities ── */
.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.875em; letter-spacing: -0.01em; }
.text-danger  { color: var(--rose); }
.text-success { color: var(--emerald); }

:focus-visible {
  outline: 2px solid var(--violet-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Shared section layout ── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 112px 28px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-label--dark { color: var(--violet-400); }

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.625rem, 0.9rem + 2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-dark-headline);
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 760px;
}

.section-headline--light { color: var(--text-light-headline); }

.section-body {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  color: var(--text-dark-body);
  line-height: 1.65;
  max-width: 580px;
}

/* ── Button (primary) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-700) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.2s;
  box-shadow: var(--shadow-violet);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 45%);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-violet-lg);
  filter: brightness(1.06);
}

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

/* ============================================================
   NAVIGATION (floating pill)
   ============================================================ */

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1160px;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(11, 16, 32, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(8, 11, 18, 0.86);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(139, 92, 246, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav-inner {
  height: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}

.nav-logo:hover { transform: translateX(-1px); }

.nav-logo-icon {
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.45));
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8875rem;
  font-weight: 500;
  color: var(--text-light-body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  flex-shrink: 0;
  padding: 9px 18px;
  font-size: 0.8625rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(139, 92, 246, 0.4);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
  margin-left: 4px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(139, 92, 246, 0.55);
  filter: brightness(1.08);
}

/* Language selector */
.lang-selector { position: relative; flex-shrink: 0; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark2);
  border-radius: 8px;
  color: var(--text-light-body);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(167, 139, 250, 0.25);
}

.lang-toggle svg { transition: transform 0.2s; }
.lang-selector.open .lang-toggle svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(14, 19, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark2);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  z-index: 100;
}

.lang-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--text-light-body);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-option.active {
  color: var(--violet-300);
  background: rgba(139, 92, 246, 0.1);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark2);
  cursor: pointer;
  padding: 4px;
  border-radius: 10px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark-900);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Dot grid overlay — sits above orbs for mesh effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 40%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Top-edge vignette to blend nav bar */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(5, 7, 12, 0.7), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-orb--violet {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.38) 0%, transparent 65%);
  filter: blur(110px);
  top: -160px;
  left: -160px;
  animation: orbDrift 22s ease-in-out infinite alternate;
}

.hero-orb--emerald {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.22) 0%, transparent 65%);
  filter: blur(110px);
  bottom: -140px;
  right: -120px;
  animation: orbDrift 26s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, 40px) scale(1.06); }
  100% { transform: translate(-30px, 80px) scale(0.96); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 28px 96px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 24px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2d9fe;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-400);
  box-shadow: 0 0 12px var(--violet-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 0.8rem + 3.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-light-headline);
  line-height: 1.06;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-headline .accent {
  background: linear-gradient(135deg, var(--violet-300) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  white-space: nowrap;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1875rem);
  color: var(--text-light-body);
  line-height: 1.62;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-light-body);
}

.hero-trust svg { flex-shrink: 0; }

/* Gradient fade from hero to light section */
.hero-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--light-100) 90%);
  z-index: 3;
  pointer-events: none;
}

/* ============================================================
   SECTION SURFACES
   ============================================================ */

.section-light { background: var(--light-100); }
.section-white { background: var(--light-0); }

.section-dark {
  position: relative;
  background: var(--dark-900);
  overflow: hidden;
  isolation: isolate;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.section-dark .section-inner { position: relative; z-index: 1; }

.section-darkest { background: var(--dark-850); }

.transition-to-dark {
  height: 120px;
  background: linear-gradient(to bottom, var(--light-100), var(--dark-900));
}

/* ============================================================
   PAIN CARDS
   ============================================================ */

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pain-card {
  background: var(--light-0);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(251, 113, 133, 0.28);
}

.pain-card:hover::before { opacity: 0.7; }

.pain-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(251, 113, 133, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pain-icon svg { width: 22px; height: 22px; }

.pain-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark-headline);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.pain-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark-body);
  line-height: 1.6;
}

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-line {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 27px;
  width: 56px;
  height: 0;
  border-top: 2px dashed rgba(139, 92, 246, 0.25);
  pointer-events: none;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow:
    0 8px 24px rgba(139, 92, 246, 0.4),
    0 0 0 6px rgba(139, 92, 246, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark-headline);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark-body);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.feature-card {
  background: var(--light-0);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-400), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.28);
}

.feature-card:hover::before { opacity: 0.7; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(139, 92, 246, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark-headline);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.feature-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark-body);
  line-height: 1.6;
}

/* ============================================================
   MOCKUP FRAMES
   ============================================================ */

.mockup-frame {
  background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-850) 100%);
  border: 1px solid var(--border-dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -20px rgba(8, 11, 18, 0.4),
    0 20px 40px -10px rgba(8, 11, 18, 0.25);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.mockup-frame--glow {
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -20px rgba(8, 11, 18, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 0 80px rgba(139, 92, 246, 0.18);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border-dark);
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-body { padding: 22px; }

.mockup-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-light-headline);
  letter-spacing: -0.01em;
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(52, 211, 153, 0.12);
  color: var(--emerald);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.mockup-badge--danger {
  background: rgba(251, 113, 133, 0.12);
  color: var(--rose);
  border-color: rgba(251, 113, 133, 0.22);
}

.mockup-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light-body);
}

.mockup-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-light-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-dark2);
}

.mockup-table td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  vertical-align: middle;
}

.mockup-table tr:last-child td { border-bottom: none; }

.mockup-table tbody tr { transition: background 0.2s; }
.mockup-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

.mockup-table td:first-child {
  color: var(--text-light-headline);
  font-weight: 500;
}

.mockup-conf {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light-tertiary);
  border: 1px solid var(--border-dark);
}

.mockup-conf.high {
  background: rgba(52, 211, 153, 0.12);
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.22);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.mockup-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.mockup-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark2);
}

.mockup-stat-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  color: var(--text-light-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mockup-stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-light-headline);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ============================================================
   TRUST BADGE
   ============================================================ */

.trust-badge {
  position: relative;
}

.trust-badge .section-inner {
  padding: 72px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark2);
  border-radius: 100px;
  margin-bottom: 18px;
  transition: background 0.2s, border-color 0.2s;
}

.trust-badge-inner:hover {
  background: rgba(52, 211, 153, 0.05);
  border-color: rgba(52, 211, 153, 0.22);
}

.trust-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.trust-check svg { width: 16px; height: 16px; }

.trust-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light-headline);
  letter-spacing: -0.005em;
}

.trust-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light-body);
  line-height: 1.6;
  max-width: 480px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq .section-inner { max-width: 860px; }

.faq-container {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
}

.faq-item:last-child { border-bottom: none; }

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--violet-500);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}

.faq-item.open::before { transform: scaleY(1); }
.faq-item.open { background: rgba(139, 92, 246, 0.04); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light-headline);
  transition: color 0.2s;
  user-select: none;
  text-align: left;
  gap: 18px;
}

.faq-question:hover { color: #fff; }

.faq-question::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238896ab' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
  padding: 0 26px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9125rem;
  color: var(--text-light-body);
  line-height: 1.72;
}

/* ============================================================
   WAITLIST
   ============================================================ */

.waitlist {
  position: relative;
  background: var(--dark-850);
  overflow: hidden;
  isolation: isolate;
}

.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, #000 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, #000 80%);
  pointer-events: none;
  z-index: 0;
}

.waitlist-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 580px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.32) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.waitlist .section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 112px 28px;
}

.waitlist-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 0.9rem + 2.3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light-headline);
  line-height: 1.1;
  margin: 0 auto 18px;
  max-width: 680px;
}

.waitlist-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  color: var(--text-light-body);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 44px;
}

.waitlist-form {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 22px;
  padding: 36px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  position: relative;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.waitlist-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light-headline);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.waitlist-input::placeholder {
  color: var(--text-light-tertiary);
  font-weight: 400;
}

.waitlist-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-input:focus {
  border-color: var(--violet-400);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.waitlist-btn {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-700) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
  box-shadow:
    0 6px 28px rgba(139, 92, 246, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.waitlist-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 45%);
  pointer-events: none;
}

.waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 44px rgba(139, 92, 246, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  filter: brightness(1.06);
}

.waitlist-btn:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.waitlist-btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.waitlist-error {
  display: none;
  padding: 12px 14px;
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.28);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--rose);
  margin-bottom: 12px;
  text-align: left;
}

.waitlist-error:not([hidden]) { display: block; }

.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.22);
  border-radius: 18px;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-success:not([hidden]) { display: flex; }

.waitlist-success-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--emerald);
  font-weight: 600;
}

.waitlist-disclaimer {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-light-tertiary);
  line-height: 1.5;
  margin-top: 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--border-dark);
  position: relative;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light-headline);
  letter-spacing: -0.01em;
}

.footer-copy {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-light-tertiary);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light-body);
  transition: color 0.2s;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease-out);
}

.footer-link:hover { color: #fff; }
.footer-link:hover::after { width: 100%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

.pain-cards .reveal:nth-child(1),
.feature-grid .reveal:nth-child(1),
.steps .reveal:nth-child(1) { transition-delay: 0ms; }

.pain-cards .reveal:nth-child(2),
.feature-grid .reveal:nth-child(2),
.steps .reveal:nth-child(3) { transition-delay: 90ms; }

.pain-cards .reveal:nth-child(3),
.feature-grid .reveal:nth-child(3),
.steps .reveal:nth-child(5) { transition-delay: 180ms; }

.feature-grid .reveal:nth-child(4) { transition-delay: 270ms; }
.feature-grid .reveal:nth-child(5) { transition-delay: 360ms; }
.feature-grid .reveal:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-orb { animation: none; }
  .hero-eyebrow::before { animation: none; }
}

/* ============================================================
   RESPONSIVE — ≤1024px (tablet)
   ============================================================ */

@media (max-width: 1024px) {
  .section-inner { padding: 88px 24px; }

  .hero-content { padding: 120px 24px 80px; }

  .pain-cards { grid-template-columns: repeat(2, 1fr); }
  .pain-cards .pain-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .step { padding: 0 12px; }

  .mockup-stats { grid-template-columns: repeat(2, 1fr); }

  .trust-badge .section-inner { padding: 64px 24px; }
}

/* ============================================================
   RESPONSIVE — ≤768px (mobile)
   ============================================================ */

@media (max-width: 768px) {
  /* Nav */
  .nav {
    top: 12px;
    width: calc(100% - 20px);
    height: 56px;
    border-radius: 16px;
  }
  .nav-inner { padding: 0 14px; gap: 12px; }
  .nav-logo-text { font-size: 1.0625rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(12px + 56px + 8px);
    left: 10px;
    right: 10px;
    background: rgba(8, 11, 18, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    z-index: 999;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65);
  }

  .nav-links.open { display: flex; }

  .nav-link {
    font-size: 1rem;
    padding: 14px 18px;
    width: 100%;
    border-radius: 10px;
  }

  .lang-selector { order: 2; margin-top: 6px; }
  .lang-toggle { width: 100%; justify-content: space-between; padding: 14px 18px; font-size: 0.8125rem; }
  .lang-dropdown { position: static; width: 100%; margin-top: 6px; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; background: rgba(255,255,255,0.03); }
  .lang-dropdown:not(.open) { display: none; }
  .lang-option { padding: 12px 16px; }

  .nav-cta {
    order: 3;
    margin: 8px 0 0;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-size: 0.9375rem;
    justify-content: center;
  }

  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 112px 20px 72px; }
  .hero-eyebrow { font-size: 0.66rem; padding: 5px 12px; margin-bottom: 18px; }
  .hero-sub { margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto 40px; }
  .hero-cta .btn-primary { width: 100%; }
  .hero-orb--violet { width: 380px; height: 380px; top: -80px; left: -120px; filter: blur(80px); }
  .hero-orb--emerald { width: 340px; height: 340px; filter: blur(80px); }

  /* Section */
  .section-inner { padding: 72px 20px; }

  /* Pain cards */
  .pain-cards { grid-template-columns: 1fr; margin-top: 44px; }
  .pain-cards .pain-card:nth-child(3) { max-width: 100%; }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
  }

  .step {
    width: 100%;
    max-width: 360px;
    padding: 0;
  }

  .step-line { display: none; }

  /* Features */
  .feature-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }

  /* Mockups */
  .mockup-body { padding: 16px; }
  .mockup-table { font-size: 0.75rem; }
  .mockup-table th, .mockup-table td { padding: 8px 6px; }
  .mockup-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mockup-frame { margin-top: 44px; border-radius: 14px; }

  /* Trust badge */
  .trust-badge-inner { flex-direction: column; padding: 16px 20px; border-radius: 18px; gap: 10px; text-align: center; }
  .trust-desc { font-size: 0.875rem; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 0.9125rem; gap: 14px; }
  .faq-answer p { padding: 0 20px 18px; font-size: 0.875rem; }

  /* Waitlist */
  .waitlist .section-inner { padding: 80px 20px; }
  .waitlist-form { padding: 24px 20px; border-radius: 18px; }
  .waitlist-fields { grid-template-columns: 1fr; }
  .waitlist-glow { width: 500px; height: 400px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 32px 20px; }
  .footer-right { gap: 20px; row-gap: 10px; }
}

/* ============================================================
   RESPONSIVE — ≤480px (small mobile)
   ============================================================ */

@media (max-width: 480px) {
  .section-inner { padding: 64px 18px; }

  .hero-content { padding: 104px 18px 64px; }
  .hero-headline .accent { white-space: normal; }

  .section-headline { font-size: 1.625rem; }
  .waitlist-headline { font-size: 1.625rem; }

  .pain-card, .feature-card { padding: 22px 20px; }

  .mockup-stats { grid-template-columns: 1fr; }

  .hero-orb--violet { width: 300px; height: 300px; }
  .hero-orb--emerald { width: 260px; height: 260px; }

  .footer-right { gap: 16px; }
}

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: rgba(139, 92, 246, 0.35);
  color: #fff;
}
