/* =========================================================
   We Take It Live — design system
   Dark premium SaaS theme, modern AI-native aesthetic
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #07070a;
  --bg-soft: #0b0b11;
  --bg-elev: #11111a;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-strong: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #f5f5f8;
  --text-mute: #a3a3ad;
  --text-faint: #8a8a98;

  /* Accents */
  --accent: #4f8cff;        /* electric blue */
  --accent-2: #8b5cf6;      /* purple */
  --accent-soft: #1c2540;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #4f8cff 0%, #8b5cf6 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(79, 140, 255, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #c8d2ff 60%, #b59cff 100%);

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1200px;
  --gutter: 24px;

  /* Shadows */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 60px rgba(79, 140, 255, 0.18);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* =========================================================
   Reset & base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 600px at 15% -10%, rgba(79, 140, 255, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(139, 92, 246, 0.10), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, rgba(79, 140, 255, 0.08), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(79, 140, 255, 0.35); color: #fff; }

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--text-mute); }
p.lead { font-size: 1.18rem; color: var(--text-mute); max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.12em;
}

.accent-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.06em;
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p { margin-top: 1em; font-size: 1.08rem; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 140, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(79, 140, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--surface-strong);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mute);
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 15px 26px; font-size: 1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(7, 7, 10, 0.6);
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(79, 140, 255, 0.4);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.brand-mark svg { width: 16px; height: 16px; color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
}
.nav-links a {
  color: var(--text-mute);
  font-weight: 450;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1150px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--gutter) 20px;
    background: rgba(7, 7, 10, 0.95);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}

.hero p.lead { font-size: 1.22rem; max-width: 560px; }

.hero .btn-row { margin-top: 32px; }

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.86rem;
  color: var(--text-faint);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--success); }

/* Hero animated visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-brand-soft);
  filter: blur(40px);
  z-index: -1;
}

.deploy-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  height: 100%;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  animation: flow-in 600ms ease forwards;
}
.flow-step:nth-child(1) { animation-delay: 200ms; }
.flow-step:nth-child(2) { animation-delay: 800ms; }
.flow-step:nth-child(3) { animation-delay: 1400ms; }
.flow-step:nth-child(4) { animation-delay: 2000ms; }

@keyframes flow-in {
  to { opacity: 1; transform: translateY(0); }
}

.flow-step .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  color: var(--accent);
}
.flow-step .icon svg { width: 18px; height: 18px; }

.flow-step .text { flex: 1; }
.flow-step .label { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.flow-step .sub { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }

.flow-step .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(52, 211, 153, 0.3);
  opacity: 0;
  animation: pop-in 400ms ease forwards;
}
.flow-step:nth-child(1) .check { animation-delay: 700ms; }
.flow-step:nth-child(2) .check { animation-delay: 1300ms; }
.flow-step:nth-child(3) .check { animation-delay: 1900ms; }
.flow-step:nth-child(4) .check { animation-delay: 2500ms; }
.flow-step .check svg { width: 12px; height: 12px; }

@keyframes pop-in {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-badges {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 11, 17, 0.85);
  border: 1px solid var(--border-strong);
  font-size: 0.76rem;
  color: var(--text);
  backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
}
.hero-badge svg { width: 12px; height: 12px; color: var(--success); }
.hero-badge:nth-child(1) { top: -8px; right: -8px; animation-delay: 0s; }
.hero-badge:nth-child(2) { top: 38%; right: -16px; animation-delay: 1.5s; }
.hero-badge:nth-child(3) { bottom: -10px; left: -10px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Animated ZIP upload icon */
.zip-icon {
  width: 18px; height: 18px;
  position: relative;
}
.zip-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: var(--gradient-brand);
  opacity: 0.3;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.card .card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.card .card-icon svg { width: 22px; height: 22px; }

.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: var(--text-mute); margin: 0; }

.card-glass {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.03);
}

.card.featured {
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.08), rgba(139, 92, 246, 0.05));
  border-color: rgba(79, 140, 255, 0.3);
}

/* Compact feature card (for big grid) */
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 200ms ease;
}
.feature:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
  transform: translateY(-2px);
}
.feature .icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature .icon svg { width: 18px; height: 18px; }
.feature h4 { font-size: 0.96rem; margin: 0; font-weight: 500; }
.feature p { font-size: 0.82rem; color: var(--text-faint); margin: 2px 0 0; }

/* =========================================================
   How it works (3 steps)
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
@media (max-width: 920px) { .steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.step-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.step-card ul { list-style: none; margin: 16px 0 0; padding: 0; }
.step-card ul li {
  font-size: 0.9rem;
  color: var(--text-mute);
  padding: 6px 0 6px 22px;
  position: relative;
}
.step-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}
.step-card ul li::after {
  content: "✓";
  position: absolute;
  left: 2px; top: 6px;
  font-size: 0.7rem;
  color: var(--accent);
}

/* =========================================================
   Comparison
   ========================================================= */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-col.bad { opacity: 0.85; }
.compare-col.good {
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.08), rgba(139, 92, 246, 0.04));
  border-color: rgba(79, 140, 255, 0.28);
}

.compare-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.15rem;
}
.compare-col h3 .badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.compare-col.bad .badge { background: rgba(248, 113, 113, 0.14); color: var(--danger); }
.compare-col.good .badge { background: rgba(52, 211, 153, 0.14); color: var(--success); }

.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-mute);
}
.compare-col li:last-child { border-bottom: 0; }
.compare-col li .marker {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-col.bad .marker { background: rgba(248, 113, 113, 0.14); color: var(--danger); }
.compare-col.good .marker { background: rgba(52, 211, 153, 0.14); color: var(--success); }
.compare-col .marker svg { width: 10px; height: 10px; }

/* =========================================================
   Stats / counters
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

.stat .num {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  font-size: 0.86rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* =========================================================
   Pricing
   ========================================================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1000px) { .pricing { grid-template-columns: 1fr; } }

.tier {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: all 240ms ease;
}
.tier:hover { border-color: var(--border-strong); }

.tier.popular {
  background: linear-gradient(165deg, rgba(79, 140, 255, 0.10), rgba(139, 92, 246, 0.06));
  border-color: rgba(79, 140, 255, 0.35);
  box-shadow: 0 12px 50px rgba(79, 140, 255, 0.15);
}
.tier.popular::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(79, 140, 255, 0.4);
}

.tier h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tier .blurb { color: var(--text-faint); font-size: 0.88rem; margin-bottom: 22px; }
.tier .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.tier .price .amount {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.tier .price .per { color: var(--text-faint); font-size: 0.9rem; }
.tier .price-note { color: var(--text-faint); font-size: 0.82rem; margin-bottom: 24px; }

.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text);
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.32);
  border-radius: 50%;
}
.tier li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 7px;
  font-size: 0.72rem;
  color: var(--success);
}
.tier li.muted { color: var(--text-faint); }
.tier li.muted::before {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}
.tier li.muted::after { display: none; }

.tier .btn { width: 100%; }

/* =========================================================
   Audience / for-who cards
   ========================================================= */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .audience { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 240ms ease;
  overflow: hidden;
}
.audience-card:hover { border-color: var(--border-strong); background: var(--surface-strong); transform: translateY(-3px); }

.audience-card .who {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.audience-card .who .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.audience-card .who .icon svg { width: 19px; height: 19px; }
.audience-card .who h3 { font-size: 1.15rem; margin: 0; }

.audience-card .pain {
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-mute);
}
.audience-card .pain strong { color: var(--text); display: block; margin-bottom: 4px; font-weight: 500; }

.audience-card .solution {
  font-size: 0.95rem;
  color: var(--text);
}

/* =========================================================
   Forms
   ========================================================= */

.form {
  display: grid;
  gap: 16px;
}

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

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.84rem;
  color: var(--text-mute);
  font-weight: 450;
}

.field input, .field select, .field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.18);
  background: var(--bg);
}
.field textarea { resize: vertical; min-height: 110px; }

.field .hint { font-size: 0.78rem; color: var(--text-faint); }

.form-status {
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 10px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(52, 211, 153, 0.10);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.form-status.error {
  display: block;
  background: rgba(248, 113, 113, 0.10);
  color: var(--danger);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  margin-top: 0;
  padding: 70px 0 32px;
  border-top: 0;
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; }
.footer li a { color: var(--text-mute); font-size: 0.92rem; }
.footer li a:hover { color: var(--text); }

.footer .footer-about p {
  color: var(--text-mute);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-faint);
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   Misc / utilities
   ========================================================= */

.glow {
  position: relative;
}
.glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-brand);
  opacity: 0.5;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.divider-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

/* =========================================================
   Security visual
   ========================================================= */

.scan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.scan-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.scan-head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.scan-head .dot.r { background: rgba(248, 113, 113, 0.6); }
.scan-head .dot.y { background: rgba(251, 191, 36, 0.6); }
.scan-head .dot.g { background: rgba(52, 211, 153, 0.6); }
.scan-head .title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-left: 10px;
}

.scan-list { padding: 12px 0; }
.scan-row {
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.scan-row:last-child { border-bottom: 0; }
.scan-row .status {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scan-row .status.pass { background: rgba(52, 211, 153, 0.16); color: var(--success); }
.scan-row .status.warn { background: rgba(251, 191, 36, 0.16); color: var(--warning); }
.scan-row .status.fail { background: rgba(248, 113, 113, 0.16); color: var(--danger); }
.scan-row .status svg { width: 10px; height: 10px; }
.scan-row .label { color: var(--text); flex: 1; }
.scan-row .meta { color: var(--text-faint); font-size: 0.8rem; }

/* =========================================================
   Email visual (spam vs inbox)
   ========================================================= */

.inbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 800px) { .inbox { grid-template-columns: 1fr; } }

.inbox-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.inbox-head {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.inbox-head .title { font-size: 0.85rem; color: var(--text-mute); font-weight: 500; }
.inbox-head .tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.inbox-col.bad .tag { background: rgba(248, 113, 113, 0.16); color: var(--danger); }
.inbox-col.good .tag { background: rgba(52, 211, 153, 0.16); color: var(--success); }

.mail {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mail:last-child { border-bottom: 0; }
.mail .from { font-size: 0.86rem; color: var(--text); font-weight: 500; }
.mail .subject { font-size: 0.84rem; color: var(--text-mute); margin-top: 2px; }
.inbox-col.bad .mail { opacity: 0.55; }

/* =========================================================
   CTA banner
   ========================================================= */

.cta-banner {
  text-align: center;
  padding: 80px 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(79, 140, 255, 0.20), transparent 60%),
    radial-gradient(600px 300px at 50% 100%, rgba(139, 92, 246, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-banner h2 .line {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-banner p {
  max-width: 580px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.cta-banner .btn-row { justify-content: center; }

/* =========================================================
   Theme system (light / dark) and i18n (en / nl)
   Added: 2026-05-19
   ========================================================= */

/* Defaults above are the dark theme. These vars get reused
   in surface chrome so theme switching can re-skin them.    */
:root {
  --nav-bg: rgba(7, 7, 10, 0.6);
  --nav-bg-open: rgba(7, 7, 10, 0.95);
  --footer-bg: rgba(0, 0, 0, 0.35);
  --overlay-dark: rgba(0, 0, 0, 0.25);
  --badge-bg: rgba(11, 11, 17, 0.85);
  --code-bg: var(--bg-soft);
  --hero-bg-1: rgba(79, 140, 255, 0.12);
  --hero-bg-2: rgba(139, 92, 246, 0.10);
  --hero-bg-3: rgba(79, 140, 255, 0.08);
  --selection-bg: rgba(79, 140, 255, 0.35);
  --selection-fg: #fff;
}

html[data-theme="light"] {
  --bg: #f7f8fc;
  --bg-soft: #eef1f8;
  --bg-elev: #ffffff;
  --surface: rgba(15, 17, 30, 0.035);
  --surface-strong: rgba(15, 17, 30, 0.06);
  --border: rgba(15, 17, 30, 0.09);
  --border-strong: rgba(15, 17, 30, 0.18);

  --text: #0d1020;
  --text-mute: #4a4f60;
  --text-faint: #777b8a;

  --accent: #3563d6;
  --accent-2: #6f3fd1;
  --accent-soft: #e3ebff;
  --success: #0f9f6e;
  --warning: #b87b00;
  --danger: #c93a3a;

  --gradient-brand: linear-gradient(135deg, #3563d6 0%, #6f3fd1 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(53, 99, 214, 0.12) 0%, rgba(111, 63, 209, 0.12) 100%);
  --gradient-text: linear-gradient(135deg, #0d1020 0%, #2f4cbf 55%, #6f3fd1 100%);

  --shadow-soft: 0 8px 30px rgba(15, 17, 30, 0.10);
  --shadow-glow: 0 0 60px rgba(53, 99, 214, 0.10);

  --nav-bg: rgba(255, 255, 255, 0.72);
  --nav-bg-open: rgba(255, 255, 255, 0.96);
  --footer-bg: rgba(15, 17, 30, 0.04);
  --overlay-dark: rgba(15, 17, 30, 0.04);
  --badge-bg: rgba(255, 255, 255, 0.92);

  --hero-bg-1: rgba(53, 99, 214, 0.10);
  --hero-bg-2: rgba(111, 63, 209, 0.08);
  --hero-bg-3: rgba(53, 99, 214, 0.05);

  --selection-bg: rgba(53, 99, 214, 0.22);
  --selection-fg: #0d1020;
}

/* Re-skin hardcoded dark chrome to use the new tokens. */
.nav            { background: var(--nav-bg); }
.nav.open .nav-links { background: var(--nav-bg-open); }
.footer         { background: var(--footer-bg); }
.scan-head,
.inbox-head     { background: var(--overlay-dark); }
.hero-badge     { background: var(--badge-bg); }
::selection     { background: var(--selection-bg); color: var(--selection-fg); }

body {
  background-image:
    radial-gradient(1100px 600px at 15% -10%, var(--hero-bg-1), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, var(--hero-bg-2), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, var(--hero-bg-3), transparent 60%);
}

/* Light-mode tweaks: the divider grid needs darker strokes
   to be visible on a light background.                       */
html[data-theme="light"] .divider-grid {
  background-image:
    linear-gradient(to right, rgba(15, 17, 30, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 17, 30, 0.08) 1px, transparent 1px);
}

/* Scan-row separator: very dim in dark, slightly stronger in light */
html[data-theme="light"] .scan-row,
html[data-theme="light"] .mail   { border-bottom-color: rgba(15, 17, 30, 0.05); }

/* Compare-col "good" / pain box / popular tier — re-tone for light */
html[data-theme="light"] .compare-col.good,
html[data-theme="light"] .card.featured,
html[data-theme="light"] .tier.popular {
  background: linear-gradient(160deg, rgba(53, 99, 214, 0.10), rgba(111, 63, 209, 0.06));
  border-color: rgba(53, 99, 214, 0.30);
}
html[data-theme="light"] .audience-card .pain {
  background: rgba(201, 58, 58, 0.05);
  border-color: rgba(201, 58, 58, 0.20);
}

/* =========================================================
   Header toggle controls (theme + language)
   ========================================================= */

/* Group theme + lang toggles inside a single rounded container so they
   read as one compact unit instead of two adjacent islands. */
.nav-controls {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-right: 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  height: 36px;
  overflow: hidden;
}

.icon-btn {
  background: transparent;
  border: 0;
  color: var(--text-mute);
  height: 100%;
  min-width: 36px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease;
  padding: 0 8px;
  cursor: pointer;
}
.icon-btn:hover { background: var(--surface-strong); color: var(--text); }
.icon-btn svg { width: 17px; height: 17px; }

/* Divider between the two toggles */
.nav-controls .icon-btn + .icon-btn {
  border-left: 1px solid var(--border-strong);
}

/* Theme toggle: show sun in dark mode (click to go light), moon in light mode. */
html[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
html:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }

/* Language toggle: shows current/other language inside the grouped pill */
.lang-toggle {
  min-width: auto;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
  gap: 5px;
}
.lang-toggle .lang-current { color: var(--text); }
.lang-toggle .lang-sep     { color: var(--text-faint); opacity: 0.6; }
.lang-toggle .lang-other   { color: var(--text-faint); }
.lang-toggle:hover .lang-other { color: var(--text); }

/* Mobile: keep controls visible, hide the menu CTAs first */
@media (max-width: 900px) {
  .nav-controls { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; }
}

/* =========================================================
   Internationalisation (i18n)
   Hide the inactive language. Default is English until JS
   sets html[lang="..."]; inline head script does this early.
   ========================================================= */
html[lang="nl"] [data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="nl"] { display: none !important; }

/* =========================================================
   Nav dropdown ("Voor …" submenu)
   Added: 2026-05-19
   ========================================================= */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text-mute);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 450;
  font-family: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"],
.nav-dropdown-trigger.active { color: var(--text); }

.nav-dropdown-trigger .chev {
  width: 14px; height: 14px;
  transition: transform 200ms ease;
}
.nav-dropdown-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -6px) scale(0.98);
  transform-origin: top center;
  width: 380px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 180ms;
  z-index: 60;
  overflow: hidden;
}

/* Soft gradient halo bleeding from the top of the menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 140px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(79, 140, 255, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
html[data-theme="light"] .nav-dropdown-menu {
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 17, 30, 0.14), 0 0 0 1px rgba(15, 17, 30, 0.02) inset;
}
html[data-theme="light"] .nav-dropdown-menu::before {
  background: radial-gradient(120% 80% at 50% 0%, rgba(53, 99, 214, 0.10), transparent 70%);
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 0s;
}

/* Small bridge so the cursor can travel from trigger → menu
   without the menu closing in the gap. */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 16px;
}

/* Eyebrow header */
.nav-dropdown-menu .nd-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 4px 12px 10px;
  position: relative;
  z-index: 1;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--text-mute);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  position: relative;
  z-index: 1;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--surface-strong);
  color: var(--text);
  outline: none;
  transform: translateX(2px);
}
.nav-dropdown-menu a:hover .nd-icon,
.nav-dropdown-menu a:focus-visible .nd-icon {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(79, 140, 255, 0.32);
}
.nav-dropdown-menu a:hover .nd-arrow,
.nav-dropdown-menu a:focus-visible .nd-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-dropdown-menu a.active {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.10), rgba(139, 92, 246, 0.06));
  color: var(--text);
}
.nav-dropdown-menu a.active .nd-icon {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}
.nav-dropdown-menu a.active::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  background: var(--gradient-brand);
  border-radius: 0 3px 3px 0;
}

.nav-dropdown-menu .nd-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 220ms ease;
}
.nav-dropdown-menu .nd-icon svg { width: 19px; height: 19px; }

.nav-dropdown-menu .nd-text { display: grid; gap: 2px; min-width: 0; flex: 1; }
.nav-dropdown-menu .nd-title {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-dropdown-menu .nd-sub {
  font-size: 0.8rem;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-dropdown-menu .nd-arrow {
  width: 18px; height: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
  color: var(--accent);
  flex-shrink: 0;
}

/* Footer slot */
.nav-dropdown-menu .nd-footer {
  margin-top: 10px;
  padding: 12px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-dropdown-menu .nd-footer-label {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.nav-dropdown-menu .nd-footer-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav-dropdown-menu .nd-footer-link:hover {
  background: var(--surface);
  color: var(--text);
  transform: translateX(2px);
}
.nav-dropdown-menu .nd-footer-link svg { width: 14px; height: 14px; }

/* Mobile: when the burger menu is open, the dropdown becomes a flat
   in-line section instead of an absolutely-positioned popup. */
@media (max-width: 900px) {
  .nav.open .nav-links { gap: 0; }

  .nav.open .nav-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }
  .nav.open .nav-dropdown::after { display: none; }
  .nav.open .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0 0 12px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }
  .nav.open .nav-dropdown-menu::before { display: none; }
  .nav.open .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }
  .nav.open .nav-dropdown-menu .nd-eyebrow { padding-left: 4px; }
  .nav.open .nav-dropdown-menu a { padding: 10px 6px; }
  .nav.open .nav-dropdown-menu .nd-footer {
    padding: 12px 4px 4px;
  }
  /* Disable the desktop hover-to-open on mobile (no hover anyway, but
     keeps state consistent). */
  .nav.open .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav.open .nav-dropdown.open:hover .nav-dropdown-menu { display: grid; }
}

/* =========================================================
   Simplified homepage (v2)
   Added: 2026-05-19
   ========================================================= */

/* ---- Centered hero ---- */
.hero-simple {
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-simple::before,
.hero-simple::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-simple::before {
  inset: -10% -10% 40% -10%;
  background:
    radial-gradient(700px 360px at 30% 20%, rgba(79, 140, 255, 0.18), transparent 70%),
    radial-gradient(700px 360px at 70% 20%, rgba(139, 92, 246, 0.15), transparent 70%);
  filter: blur(20px);
}
html[data-theme="light"] .hero-simple::before {
  background:
    radial-gradient(700px 360px at 30% 20%, rgba(53, 99, 214, 0.12), transparent 70%),
    radial-gradient(700px 360px at 70% 20%, rgba(111, 63, 209, 0.10), transparent 70%);
}

.hero-simple .hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-simple h1 {
  font-size: clamp(2.8rem, 7.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 22px;
}
.hero-simple h1 .accent-line {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-simple h1 .plain-line { color: var(--text); }

.hero-simple .lead {
  font-size: 1.18rem;
  color: var(--text-mute);
  max-width: 560px;
  margin: 0 auto;
}

.hero-simple .btn-row {
  justify-content: center;
  margin-top: 36px;
}

.hero-simple .eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 11px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  backdrop-filter: blur(8px);
}
.hero-simple .eyebrow-live .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
}
.hero-simple .eyebrow-live .pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--success);
  opacity: 0.6;
  animation: ztl-pulse 2.2s ease-out infinite;
}

@keyframes ztl-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2);   opacity: 0;   }
}

/* ---- ZIP → live flow visual ---- */
.ztl-flow {
  margin: 64px auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr auto 1.25fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 880px) {
  .ztl-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .ztl-flow .ztl-link { display: none; }
}

.ztl-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  animation: ztl-card-in 600ms ease forwards;
}
.ztl-flow > .ztl-card:nth-of-type(1) { animation-delay: 100ms; }
.ztl-flow > .ztl-card:nth-of-type(2) { animation-delay: 600ms; }
.ztl-flow > .ztl-card:nth-of-type(3) { animation-delay: 1500ms; }

@keyframes ztl-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.ztl-card .ztl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ztl-card .ztl-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ztl-card .ztl-icon svg { width: 18px; height: 18px; }
.ztl-card .ztl-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.ztl-card .ztl-title {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ztl-card.ztl-zip {
  background: var(--surface);
  border-style: dashed;
}
.ztl-card.ztl-zip .ztl-zip-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.ztl-card.ztl-zip .ztl-zip-body .file-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--gradient-brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ztl-card.ztl-zip .ztl-zip-body .file-icon svg { width: 13px; height: 13px; }
.ztl-card.ztl-zip .ztl-zip-body .file-info { flex: 1; min-width: 0; }
.ztl-card.ztl-zip .ztl-zip-body .file-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ztl-card.ztl-zip .ztl-zip-body .file-size {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.ztl-card.ztl-process {
  background:
    linear-gradient(160deg, rgba(79, 140, 255, 0.08), rgba(139, 92, 246, 0.04));
  border-color: rgba(79, 140, 255, 0.28);
}
html[data-theme="light"] .ztl-card.ztl-process {
  background: linear-gradient(160deg, rgba(53, 99, 214, 0.10), rgba(111, 63, 209, 0.05));
  border-color: rgba(53, 99, 214, 0.30);
}

.ztl-checks {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.ztl-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--text);
  opacity: 0;
  transform: translateX(-4px);
  animation: ztl-check-in 400ms ease forwards;
}
.ztl-flow .ztl-check:nth-child(1) { animation-delay: 900ms;  }
.ztl-flow .ztl-check:nth-child(2) { animation-delay: 1200ms; }
.ztl-flow .ztl-check:nth-child(3) { animation-delay: 1500ms; }

@keyframes ztl-check-in {
  to { opacity: 1; transform: translateX(0); }
}

.ztl-check .check-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.16);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.32);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  animation: ztl-mark-in 300ms ease forwards;
}
.ztl-flow .ztl-check:nth-child(1) .check-mark { animation-delay: 1100ms; }
.ztl-flow .ztl-check:nth-child(2) .check-mark { animation-delay: 1400ms; }
.ztl-flow .ztl-check:nth-child(3) .check-mark { animation-delay: 1700ms; }
@keyframes ztl-mark-in {
  to { opacity: 1; transform: scale(1); }
}
.ztl-check .check-mark svg { width: 10px; height: 10px; }
.ztl-check .check-label { flex: 1; }

.ztl-card.ztl-live {
  background:
    radial-gradient(280px 140px at 30% 0%, rgba(52, 211, 153, 0.18), transparent 70%),
    var(--surface);
  border-color: rgba(52, 211, 153, 0.32);
}
.ztl-card.ztl-live .ztl-icon {
  background: rgba(52, 211, 153, 0.18);
  border-color: rgba(52, 211, 153, 0.32);
  color: var(--success);
}
.ztl-card.ztl-live .ztl-url {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.ztl-card.ztl-live .ztl-url .lock {
  color: var(--success);
  display: inline-flex;
}
.ztl-card.ztl-live .ztl-url .lock svg { width: 14px; height: 14px; }
.ztl-card.ztl-live .ztl-url .url-text {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ztl-card.ztl-live .ztl-url .live-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 12px var(--success);
}
.ztl-card.ztl-live .ztl-url .live-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--success);
  opacity: 0.5;
  animation: ztl-pulse 2s ease-out infinite;
}

/* ---- Connector links ---- */
.ztl-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  min-width: 60px;
}
.ztl-link svg {
  width: 100%;
  height: 24px;
  overflow: visible;
}
.ztl-link .path {
  stroke: var(--border-strong);
  stroke-width: 2;
  stroke-dasharray: 4 6;
  fill: none;
}
.ztl-link .pulse-dot-svg {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
  animation: ztl-pulse-along 2.8s linear infinite;
  offset-path: path('M 0 12 L 60 12');
}
@keyframes ztl-pulse-along {
  from { offset-distance: 0%;   opacity: 0;   }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { offset-distance: 100%; opacity: 0;   }
}

/* ---- "How it works" simplified ---- */
.steps-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  counter-reset: ztl-step;
}
@media (max-width: 900px) { .steps-simple { grid-template-columns: 1fr; } }

.steps-simple .step-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.steps-simple .step-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.steps-simple .step-tile::before {
  counter-increment: ztl-step;
  content: counter(ztl-step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.steps-simple .step-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.steps-simple .step-tile p {
  font-size: 0.98rem;
  color: var(--text-mute);
  margin: 0;
}
.steps-simple .step-tile .step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(79, 140, 255, 0.28);
}
.steps-simple .step-tile .step-icon svg { width: 22px; height: 22px; }

/* =========================================================
   "What we handle" tiles (v2 homepage section 2)
   ========================================================= */
.included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
@media (max-width: 920px) { .included { grid-template-columns: 1fr; } }

.included-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}
.included-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.included-tile::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border-top: 1px solid transparent;
  background: linear-gradient(180deg, rgba(79,140,255,0.25), transparent 30%) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
}
.included-tile:hover::after { opacity: 1; }

.included-tile .pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(79, 140, 255, 0.32);
}
.included-tile .pillar-icon svg { width: 24px; height: 24px; }

.included-tile h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.included-tile p {
  font-size: 0.96rem;
  color: var(--text-mute);
  margin: 0 0 22px;
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 450;
}
.chip::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Make the ztl-card heads less narrative now that "Step" labels are gone */
.ztl-card.no-step .ztl-head { margin-bottom: 18px; }
.ztl-card.no-step .ztl-title { font-size: 1.04rem; }

/* =========================================================
   Hero v3 — aurora background + cycling headline
   ========================================================= */

/* The hero-simple::before glow is replaced by the richer aurora layer */
.hero-simple::before { display: none; }

.hero-simple .aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}
.hero-simple .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.hero-simple .aurora-blob.b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.65) 0%, transparent 70%);
  top: -180px;
  left: 6%;
  animation: ztl-aurora-1 18s ease-in-out infinite alternate;
}
.hero-simple .aurora-blob.b2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.55) 0%, transparent 70%);
  top: -140px;
  right: 2%;
  animation: ztl-aurora-2 22s ease-in-out infinite alternate;
}
.hero-simple .aurora-blob.b3 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.32) 0%, transparent 70%);
  bottom: -120px;
  left: 38%;
  animation: ztl-aurora-3 26s ease-in-out infinite alternate;
}

html[data-theme="light"] .hero-simple .aurora-blob {
  opacity: 0.45;
  mix-blend-mode: normal;
}
html[data-theme="light"] .hero-simple .aurora-blob.b1 {
  background: radial-gradient(circle, rgba(53, 99, 214, 0.32) 0%, transparent 70%);
}
html[data-theme="light"] .hero-simple .aurora-blob.b2 {
  background: radial-gradient(circle, rgba(111, 63, 209, 0.28) 0%, transparent 70%);
}
html[data-theme="light"] .hero-simple .aurora-blob.b3 {
  background: radial-gradient(circle, rgba(15, 159, 110, 0.18) 0%, transparent 70%);
}

@keyframes ztl-aurora-1 {
  0%   { transform: translate(0, 0)       scale(1);   }
  50%  { transform: translate(40px, 80px) scale(1.1); }
  100% { transform: translate(90px, 40px) scale(1.2); }
}
@keyframes ztl-aurora-2 {
  0%   { transform: translate(0, 0)          scale(1);    }
  50%  { transform: translate(-60px, 40px)   scale(1.08); }
  100% { transform: translate(-110px, 90px)  scale(1.15); }
}
@keyframes ztl-aurora-3 {
  0%   { transform: translate(0, 0)        scale(1);    }
  50%  { transform: translate(50px, -30px) scale(1.06); }
  100% { transform: translate(110px, -60px) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-simple .aurora-blob { animation: none; }
}

/* ---- Cycling headline ---- */
.cycle-line {
  display: block;
  position: relative;
  min-height: 1.04em;
}
.cycle-text {
  display: inline-block;
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.cycle-text.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

/* Tiny blinking caret after the cycling word — feels alive */
.cycle-line::after {
  content: "";
  display: inline-block;
  width: 0.07em;
  height: 0.85em;
  margin-left: 0.06em;
  vertical-align: -0.06em;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: ztl-caret 1.1s steps(2, end) infinite;
  transform: translateY(0.1em);
}
@keyframes ztl-caret {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cycle-line::after { animation: none; opacity: 1; }
}

/* =========================================================
   Deployment console (homepage hero centerpiece)
   The visual narrative: upload → checks → live
   ========================================================= */

.deploy-console {
  margin: 64px auto 0;
  max-width: 720px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  position: relative;
}
html[data-theme="light"] .deploy-console {
  background: #ffffff;
  box-shadow:
    0 16px 44px rgba(15, 17, 30, 0.16),
    0 0 0 1px rgba(15, 17, 30, 0.02) inset;
}

.deploy-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(79, 140, 255, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.deploy-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--overlay-dark);
}
.deploy-head .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
}
.deploy-head .dot.r { background: rgba(248, 113, 113, 0.7); }
.deploy-head .dot.y { background: rgba(251, 191, 36, 0.7); }
.deploy-head .dot.g { background: rgba(52, 211, 153, 0.7); }
.deploy-head .title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.deploy-body {
  position: relative;
  z-index: 1;
  padding: 22px 24px 24px;
  display: grid;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}
@media (max-width: 560px) {
  .deploy-body { padding: 16px 14px; font-size: 0.82rem; }
}

.deploy-line {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(6px);
  animation: deploy-line-in 480ms ease forwards;
}
@keyframes deploy-line-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Upload row ---- */
.deploy-line.upload-line { animation-delay: 200ms; }
.upload-line .file-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.upload-line .file-pill .zip-glyph {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.upload-line .file-pill .zip-glyph svg { width: 11px; height: 11px; }
.upload-line .file-pill .name {
  font-size: 0.82rem;
  color: var(--text);
}
.upload-line .file-pill .size {
  font-size: 0.74rem;
  color: var(--text-faint);
  margin-left: 4px;
}

.upload-line .progress {
  flex: 1;
  height: 8px;
  background: var(--surface);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.upload-line .progress::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--gradient-brand);
  border-radius: inherit;
  animation: deploy-progress 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 500ms;
  box-shadow: 0 0 12px rgba(79, 140, 255, 0.45);
}
@keyframes deploy-progress {
  to { width: 100%; }
}
.upload-line .pct {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
  min-width: 38px;
  text-align: right;
}
.upload-line .pct::after {
  content: "0%";
  animation: deploy-pct 2.4s steps(20) forwards;
  animation-delay: 500ms;
}
@keyframes deploy-pct {
  0%   { content: "0%";   }
  20%  { content: "23%";  }
  40%  { content: "48%";  }
  60%  { content: "67%";  }
  80%  { content: "89%";  }
  100% { content: "100%"; }
}
/* fallback if content animation not supported — pct just stays */

/* ---- Check rows ---- */
.deploy-line.check-line .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  opacity: 0;
  transform: scale(0.5);
  animation: deploy-check-pop 360ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.deploy-line.check-line .check svg { width: 12px; height: 12px; }
@keyframes deploy-check-pop {
  to { opacity: 1; transform: scale(1); }
}

.deploy-line.check-line .label {
  flex: 1;
  color: var(--text);
}
.deploy-line.check-line .meta {
  color: var(--text-faint);
  font-size: 0.78rem;
}

/* Sequence timings (line slide-in + check pop) */
.deploy-line.check-1 { animation-delay: 3000ms; }
.deploy-line.check-1 .check { animation-delay: 3200ms; }
.deploy-line.check-2 { animation-delay: 3650ms; }
.deploy-line.check-2 .check { animation-delay: 3850ms; }
.deploy-line.check-3 { animation-delay: 4300ms; }
.deploy-line.check-3 .check { animation-delay: 4500ms; }
.deploy-line.check-4 { animation-delay: 4950ms; }
.deploy-line.check-4 .check { animation-delay: 5150ms; }
.deploy-line.check-5 { animation-delay: 5600ms; }
.deploy-line.check-5 .check { animation-delay: 5800ms; }

/* ---- Final LIVE row ---- */
.deploy-line.live-line {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background:
    radial-gradient(220px 60px at 0% 50%, rgba(52, 211, 153, 0.18), transparent 70%),
    linear-gradient(135deg, rgba(52, 211, 153, 0.10), rgba(79, 140, 255, 0.04));
  border: 1px solid rgba(52, 211, 153, 0.34);
  animation-delay: 6500ms;
  animation-duration: 700ms;
}
.live-line .live-pulse {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 16px var(--success);
}
.live-line .live-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--success);
  opacity: 0.55;
  animation: ztl-pulse 1.8s ease-out infinite;
  animation-delay: 6700ms;
}
.live-line .live-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--success);
  text-transform: uppercase;
}
.live-line .lock {
  color: var(--text-faint);
  display: inline-flex;
}
.live-line .lock svg { width: 14px; height: 14px; }
.live-line .url {
  flex: 1;
  font-size: 0.96rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.live-line .visit {
  color: var(--text-faint);
  display: inline-flex;
  transition: color 160ms ease, transform 160ms ease;
}
.live-line .visit:hover { color: var(--text); transform: translateX(2px); }
.live-line .visit svg { width: 14px; height: 14px; }

/* Respect reduced motion: skip the choreography. */
@media (prefers-reduced-motion: reduce) {
  .deploy-line,
  .deploy-line.check-line .check,
  .upload-line .progress::after,
  .live-line .live-pulse::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
  }
}

/* =========================================================
   Full-bleed CTA banner
   The cta-banner sits inside <section class="section section-cta">
   - spans edge-to-edge (no .container wrapper, square corners)
   - has its own dark palette in BOTH themes (a final dark outro panel)
   - sits flush against the footer (no gap, no separating line)
   ========================================================= */
.section-cta {
  padding: 0;
  margin: 0;
}
/* Local palette: force the dark theme variables INSIDE section-cta so
   text, buttons and gradients stay readable on the dark panel even in light mode. */
.section-cta {
  --bg: #07070a;
  --bg-soft: #0b0b11;
  --bg-elev: #11111a;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f8;
  --text-mute: #a3a3ad;
  --text-faint: #8a8a98;
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #c8d2ff 60%, #b59cff 100%);
}

.section-cta .cta-banner {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: clamp(80px, 11vw, 140px) clamp(24px, 6vw, 80px);
  color: var(--text);
  background:
    radial-gradient(900px 380px at 50% 0%, rgba(79, 140, 255, 0.28), transparent 65%),
    radial-gradient(800px 380px at 50% 100%, rgba(139, 92, 246, 0.22), transparent 65%),
    linear-gradient(180deg, #0a0b14 0%, #06070d 100%);
}
/* Inner text width — keep the headline readable on huge screens */
.section-cta .cta-banner h2,
.section-cta .cta-banner p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta .cta-banner p { color: var(--text-mute); }

/* Footer flush against the CTA: no top border, no top margin */
.section-cta + .footer {
  margin-top: 0;
  border-top: 0;
  background: linear-gradient(180deg, #06070d 0%, var(--footer-bg) 60%);
}

/* =========================================================
   Deployment console v2 — looping, state-driven
   The CSS auto-play (animation-delay choreography) above is now disabled
   by stronger selectors. State is driven from JS: is-visible, is-loading, is-done.
   ========================================================= */

/* Disable the previous one-shot animation entirely */
.deploy-console .deploy-line {
  animation: none !important;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.deploy-console .deploy-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Upload progress: zero until is-loading, then fills smoothly */
.deploy-console .upload-line .progress::after {
  animation: none !important;
  width: 0%;
  transition: width 2200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.deploy-console .upload-line.is-loading .progress::after,
.deploy-console .upload-line.is-done .progress::after {
  width: 100%;
}

/* Percentage label — animate from 0 → 100 via a custom property */
.deploy-console .upload-line .pct::after {
  animation: none !important;
  content: "0%";
}
.deploy-console .upload-line.is-loading .pct::after { content: "uploading…"; }
.deploy-console .upload-line.is-done .pct::after { content: "100%"; }

/* Check icon — spinner when loading, green check when done */
.deploy-console .check-line .check {
  animation: none !important;
  opacity: 1;
  transform: scale(1);
  /* Neutral when pending */
  background: var(--surface);
  color: var(--text-faint);
  border-color: var(--border);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.deploy-console .check-line .check svg {
  opacity: 0;
  transition: opacity 180ms ease;
}

/* Loading: blue ring spinner */
.deploy-console .deploy-line.is-loading .check {
  background: rgba(79, 140, 255, 0.16);
  color: var(--accent);
  border-color: rgba(79, 140, 255, 0.4);
}
.deploy-console .deploy-line.is-loading .check::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-right-color: currentColor;
  border-radius: 50%;
  animation: ztl-spin 0.75s linear infinite;
}
@keyframes ztl-spin {
  to { transform: rotate(360deg); }
}

/* Done: green check */
.deploy-console .deploy-line.is-done .check {
  background: rgba(52, 211, 153, 0.16);
  color: var(--success);
  border-color: rgba(52, 211, 153, 0.4);
}
.deploy-console .deploy-line.is-done .check::before { display: none; }
.deploy-console .deploy-line.is-done .check svg { opacity: 1; }

/* LIVE row pulse only when is-done */
.deploy-console .live-line .live-pulse::after {
  animation: none !important;
  opacity: 0;
}
.deploy-console .live-line.is-done .live-pulse::after {
  opacity: 0.55;
  animation: ztl-pulse 1.8s ease-out infinite;
}

/* Reduced motion: show everything as done */
@media (prefers-reduced-motion: reduce) {
  .deploy-console .deploy-line {
    opacity: 1 !important;
    transform: none !important;
  }
  .deploy-console .check-line .check {
    background: rgba(52, 211, 153, 0.16);
    color: var(--success);
    border-color: rgba(52, 211, 153, 0.4);
  }
  .deploy-console .check-line .check svg { opacity: 1; }
  .deploy-console .upload-line .progress::after { width: 100%; }
  .deploy-console .upload-line .pct::after { content: "100%"; }
  .deploy-console .deploy-line.is-loading .check::before { display: none; }
}

/* =========================================================
   About page — richer hero stats + principle cards
   ========================================================= */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 800px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.about-stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.about-stat:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.about-stat .num {
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.about-stat .label {
  font-size: 0.84rem;
  color: var(--text-mute);
  line-height: 1.4;
}

/* Principle cards on About */
.principle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.principle:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.principle .principle-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(79, 140, 255, 0.32);
}
.principle .principle-icon svg { width: 22px; height: 22px; }
.principle h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.principle p {
  font-size: 0.96rem;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.6;
}

/* About hero - add eyebrow-live styling reuse */
.hero-about .eyebrow-live { margin-bottom: 16px; }

/* Pull quote / manifesto block in About */
.manifesto {
  margin: 56px 0;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(400px 200px at 0% 0%, rgba(79, 140, 255, 0.10), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
  font-size: 1.16rem;
  color: var(--text);
  line-height: 1.55;
  font-weight: 450;
}
.manifesto::before {
  content: "“";
  display: block;
  font-size: 3rem;
  line-height: 0.7;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

/* =========================================================
   Nav hover (v4) — only the underline, no pill background
   ========================================================= */

.nav-links > a {
  position: relative;
  padding: 6px 2px;
  transition: color 200ms ease;
}

/* Gradient underline animates from center outward on hover/active */
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: left 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              right 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 200ms ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(79, 140, 255, 0.4);
}
.nav-links > a:hover { color: var(--text); }
.nav-links > a:hover::after,
.nav-links > a.active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

/* Dropdown trigger uses the same underline treatment for consistency */
.nav-dropdown-trigger {
  position: relative;
  padding: 6px 2px;
}
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 999px;
  transition: left 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              right 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
              opacity 200ms ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(79, 140, 255, 0.4);
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.open .nav-dropdown-trigger::after,
.nav-dropdown-trigger.active::after,
.nav-dropdown-trigger[aria-expanded="true"]::after {
  left: 0;
  right: 0;
  opacity: 1;
}

/* ---------------------------------------------------------
   Magnetic spotlight that follows the hovered dropdown item.
   The menu itself is already position:absolute (set earlier), which
   establishes a positioning context for the spotlight — so we do NOT
   override position here.
   --------------------------------------------------------- */
.nd-spotlight {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 0;
  border-radius: 12px;
  background:
    radial-gradient(140% 80% at 50% 50%, rgba(79, 140, 255, 0.20), transparent 70%),
    linear-gradient(135deg, rgba(79, 140, 255, 0.12), rgba(139, 92, 246, 0.10));
  border: 1px solid rgba(79, 140, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    top 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    height 320ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 220ms ease;
  z-index: 0;
  box-shadow: 0 8px 24px rgba(79, 140, 255, 0.15);
}
html[data-theme="light"] .nd-spotlight {
  background:
    radial-gradient(140% 80% at 50% 50%, rgba(53, 99, 214, 0.18), transparent 70%),
    linear-gradient(135deg, rgba(53, 99, 214, 0.10), rgba(111, 63, 209, 0.08));
  border-color: rgba(53, 99, 214, 0.25);
  box-shadow: 0 8px 24px rgba(53, 99, 214, 0.12);
}

/* Dropdown items: the spotlight handles the visual highlight, so the
   item itself stays put (no shift, no extra background). */
.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: transparent !important;
  transform: none;
}

/* Active item: kept tinted so the user knows which page they're on */
.nav-dropdown-menu a.active {
  background:
    linear-gradient(135deg, rgba(79, 140, 255, 0.10), rgba(139, 92, 246, 0.05)) !important;
}

/* Eyebrow + footer must sit above the spotlight */
.nav-dropdown-menu .nd-eyebrow,
.nav-dropdown-menu .nd-footer { position: relative; z-index: 2; }

/* Mobile: spotlight disabled (mobile dropdown is flat in hamburger) */
@media (max-width: 900px) {
  .nav-dropdown-menu .nd-spotlight { display: none; }
  .nav-links > a::after { display: none; }
  .nav-dropdown-trigger::after { display: none; }
}

/* =========================================================
   Two-track split (Websites / Software) on homepage
   ========================================================= */
.tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 980px) { .tracks { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }

.track-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 36px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(79, 140, 255, 0.10), transparent 70%),
    var(--surface);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 140, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.track-card.software {
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(139, 92, 246, 0.12), transparent 70%),
    var(--surface);
}
.track-card .track-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(79, 140, 255, 0.32);
}
.track-card.software .track-icon {
  background: linear-gradient(135deg, #8b5cf6, #4f8cff);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.32);
}
.track-card.security {
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(34, 197, 94, 0.10), transparent 70%),
    var(--surface);
}
.track-card.security .track-icon {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.30);
}
.track-card .track-icon svg { width: 26px; height: 26px; }
.track-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.track-card .track-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.track-card p {
  font-size: 1rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0 0 22px;
}
@media (min-width: 981px) {
  .track-card p { min-height: 6.4em; }
}
.track-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  align-content: start;
  flex: 1;
}
.track-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text);
}
.track-card li .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.16);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.32);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.track-card li .tick svg { width: 10px; height: 10px; }
.track-card .track-price {
  font-size: 0.9rem;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.track-card .track-price strong {
  color: var(--text);
  font-size: 1.05rem;
}
.track-card .btn { width: 100%; }

/* Clickable pill options (contact form) */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.pill:hover { border-color: rgba(79, 140, 255, 0.5); }
.pill-group .pill.is-active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 140, 255, 0.30);
}

/* Contact hero: top-align so the H1 sits next to the form title */
.hero-contact .hero-grid { align-items: start; }

/* Custos shield badge (footer) */
.footer-custos { display: flex; flex-direction: column; align-items: center; gap: 14px; text-decoration: none; color: inherit; cursor: pointer; }
.footer-custos:hover .custos-label { color: var(--accent); }
.powered { color: var(--text-faint); }
.powered a { color: var(--text-mute); text-decoration: none; }
.powered a:hover { color: var(--accent); }
.custos-shield {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.5));
  transform-style: preserve-3d;
}
.custos-shield path { fill: none; stroke: #2dd4bf; }
.custos-shield .cs-outer { stroke-width: 3; }
.custos-shield .cs-mid { stroke-width: 1.4; opacity: 0.5; }
.custos-shield .cs-inner { stroke-width: 1.4; opacity: 0.3; }
.custos-shield .cs-check { stroke-width: 3.6; stroke-linecap: round; stroke-linejoin: round; }
.custos-label { font-weight: 700; letter-spacing: 0.24em; font-size: 0.82rem; color: var(--text); }
@keyframes custos-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .custos-shield { animation: none; }
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(420px 220px at 0% 0%, rgba(79, 140, 255, 0.08), transparent 70%),
    var(--surface);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; }
.testimonial .t-name { font-weight: 600; color: var(--text); }
.testimonial .t-role { font-size: 0.88rem; color: var(--text-faint); }

/* Footer deploy animation (last block in the footer) */
.footer-deploy {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding: 40px 0 4px;
}
.footer-deploy .deploy-console { max-width: 560px; margin: 0 auto; }

/* Global tick badge (used in tier lists on track pages) */
.tick {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.16);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tick svg { width: 10px; height: 10px; }
/* Tier lists that use .tick should lay out as flex rows */
.tier ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* When a tier <li> uses an explicit .tick, suppress the old ::before/::after dots */
.tier ul li:has(.tick)::before,
.tier ul li:has(.tick)::after { display: none; }
.tier ul li:has(.tick) { padding-left: 0; }

/* Partner track card + 4-up tracks (pricing page) */
.track-card.partner {
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(245, 158, 11, 0.10), transparent 70%),
    var(--surface);
}
.track-card.partner .track-icon {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.30);
}
.tracks.tracks-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .tracks.tracks-4 { grid-template-columns: repeat(2, 1fr); max-width: none; } }
@media (max-width: 600px) { .tracks.tracks-4 { grid-template-columns: 1fr; } }
/* compact mini-list (security common patterns) */
.mini-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.mini-list li { color: var(--text-mute); line-height: 1.55; }
.mini-list strong { color: var(--text); }

.card.pattern .card-icon { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.30); }

/* Backed-by wordmarks + testimonial logos */
.wordmark { display: inline-block; font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--text); text-decoration: none; margin-bottom: 12px; }
.wordmark.eneqto { font-weight: 600; font-size: 1.2rem; letter-spacing: 0.22em; text-transform: uppercase; }
.wordmark:hover { color: var(--accent); }
.trusted { color: var(--text-faint); font-size: 0.9rem; margin-top: 14px; }
.testimonial .t-logo { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--text); margin-bottom: 2px; }

/* Scan findings (richer than plain cards) */
.finding { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: var(--surface); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.finding:hover { transform: translateY(-4px); border-color: rgba(239,68,68,0.4); box-shadow: 0 18px 44px rgba(0,0,0,0.32); }
.finding .finding-icon { width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.30); }
.finding .finding-icon svg { width: 22px; height: 22px; }
.finding .sev { align-self: flex-start; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: #f87171; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.30); padding: 3px 10px; border-radius: 999px; }
.finding h3 { font-size: 1.12rem; margin: 0; }
.finding p { margin: 0; color: var(--text-mute); line-height: 1.55; }
.finding.finding-high .finding-icon, .finding.finding-high .sev { color: #fbbf24; background: rgba(251,191,36,0.12); border-color: rgba(251,191,36,0.30); }

.field label .req { color: #f87171; margin-left: 2px; font-weight: 600; }
