/* ===== Font Face ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('assets/fonts/Inter-latin.3100e775e8.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  /* ---- Light surfaces ---- */
  --bg: #FAFAF9;
  --bg-alt: #F0EFED;
  --bg-warm: #F5F0EB;
  --bg-warm-2: #EDE6DE;
  --surface: #FFFFFF;
  --surface-warm: #FBF8F5;

  /* ---- Dark surfaces ---- */
  --bg-dark: #060A12;
  --bg-dark-2: #0C1220;
  --bg-dark-warm: #0F1218;
  --surface-dark: rgba(255, 255, 255, 0.035);
  --surface-dark-border: rgba(255, 255, 255, 0.06);

  /* ---- Text ---- */
  --text: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #A1A1A6;
  --text-on-dark: #E8E8ED;
  --text-on-dark-muted: rgba(255, 255, 255, 0.55);

  /* ---- Accent ---- */
  --accent: #14B8A6;
  --accent-hover: #0D9488;
  --accent-subtle: rgba(20, 184, 166, 0.06);
  --accent-glow: rgba(20, 184, 166, 0.15);
  --accent-warm: #F59E0B;
  --accent-indigo: #818CF8;
  --green: #10B981;

  /* ---- Borders ---- */
  --border: rgba(0,0,0,0.06);
  --border-accent: rgba(13, 148, 136, 0.2);

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(20, 184, 166, 0.15);
  --shadow-glow-sm: 0 0 20px rgba(20, 184, 166, 0.10);

  /* ---- Radius ---- */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* ---- Font ---- */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;

  /* ---- Layout ---- */
  --max-w: 1080px;
  --section-gap: 10rem;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Noise texture overlay for authenticity */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 20, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s, border-color 0.4s;
}

.nav.nav-scrolled {
  background: rgba(250, 250, 249, 0.88);
  border-bottom-color: var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand svg { display: block; }

/* Default (dark bg): light C + light text */
.nav-c-stroke { stroke: var(--text-on-dark); transition: stroke 0.4s; }
.nav-text-cast { fill: var(--text-on-dark); transition: fill 0.4s; }

/* Scrolled (light bg): dark C + dark text */
.nav.nav-scrolled .nav-c-stroke { stroke: var(--text); }
.nav.nav-scrolled .nav-text-cast { fill: var(--text); }

.nav-brand span { color: var(--accent); }

.nav-cta {
  padding: 0.5rem 1.35rem;
  background: linear-gradient(135deg, #10B981 0%, var(--accent) 40%, #0D9488 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, background 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(20, 184, 166, 0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 8px rgba(20, 184, 166, 0.2), inset 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

/* Dot-grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom gradient fade to light */
.hero-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.5rem;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 860px;
  color: var(--text-on-dark);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .thin {
  font-weight: 300;
  background: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 30%, var(--accent-indigo) 60%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-on-dark-muted);
  max-width: 480px;
  margin: 1.5rem auto 0;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== Inline Form ===== */
.hero-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 480px;
  width: 100%;
}

/* -- Pill container: email + button as one unit -- */
.hero-form-pill {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}

.hero-form-pill:focus-within {
  border-color: rgba(20, 184, 166, 0.50);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.12),
    0 0 0 4px rgba(20, 184, 166, 0.10),
    0 0 40px rgba(20, 184, 166, 0.12);
}

/* -- Input inside pill -- */
.hero-form-pill input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 1.25rem;
  background: transparent;
  border: none;
  border-radius: 13px;
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.hero-form-pill input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.hero-form-pill input[type="email"]:focus {
  outline: none;
}

/* -- Button inside pill -- */
.hero-form-pill .btn {
  height: 54px;
  padding: 0 2rem;
  border-radius: 13px;
  font-size: 0.95rem;
  flex-shrink: 0;
  width: auto;
}

/* -- Primary CTA button -- */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(20, 184, 166, 0.35), 0 0 0 0 rgba(20, 184, 166, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.10); }
  50% { box-shadow: 0 4px 16px rgba(20, 184, 166, 0.35), 0 0 0 8px rgba(20, 184, 166, 0), inset 0 1px 0 rgba(255, 255, 255, 0.10); }
}

.btn {
  height: 56px;
  padding: 0 2rem;
  background: linear-gradient(135deg, #10B981 0%, var(--accent) 40%, #0D9488 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow:
    0 4px 16px rgba(20, 184, 166, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  animation: btn-pulse 3s ease-in-out infinite;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    background 0.3s ease;
}

/* Shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.20) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 75%
  );
  transition: left 0.6s ease;
}

/* Top-edge highlight */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  animation: none;
  box-shadow:
    0 8px 32px rgba(20, 184, 166, 0.5),
    0 0 80px rgba(20, 184, 166, 0.20),
    0 0 0 3px rgba(20, 184, 166, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #34D399 0%, var(--accent) 40%, #0D9488 100%);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(1px) scale(0.97);
  animation: none;
  box-shadow:
    0 1px 4px rgba(20, 184, 166, 0.15),
    inset 0 3px 8px rgba(0, 0, 0, 0.25);
  transition-duration: 0.1s;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* -- Button content layout -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-arrow {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.hero-meta {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
}

.hero-meta-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 2.5rem;
}

.form-success.show { display: block; }

.form-success .checkmark {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.form-success h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-on-dark); }
.form-success p { color: var(--text-on-dark-muted); font-size: 0.95rem; margin-top: 0.3rem; }

/* ===== Product Showcase ===== */
.showcase {
  padding: 0 1.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -4rem;
  position: relative;
  z-index: 3;
}

.showcase-frame {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 100px rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

/* Scan line animation on showcase */
.showcase-frame::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 200%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 48%,
    rgba(13, 148, 136, 0.03) 49%,
    rgba(13, 148, 136, 0.06) 50%,
    rgba(13, 148, 136, 0.03) 51%,
    transparent 52%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
  animation: scan-line 6s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { transform: translateY(0%); }
  50% { transform: translateY(50%); }
}

.showcase-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.showcase-dot.r { background: #FF5F57; }
.showcase-dot.y { background: #FFBD2E; }
.showcase-dot.g { background: #28C840; }

.showcase-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.showcase-body {
  padding: 2rem 2.5rem 2.5rem;
}

.showcase-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.showcase-search svg { width: 16px; height: 16px; color: var(--text-tertiary); flex-shrink: 0; }
.showcase-search span { font-size: 0.85rem; color: var(--text-tertiary); }

.showcase-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.showcase-search input::placeholder {
  color: var(--text-tertiary);
}

.showcase-pills {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .showcase-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .showcase-pills::-webkit-scrollbar {
    display: none;
  }
  .showcase-pill {
    flex-shrink: 0;
  }
}

.showcase-pill {
  padding: 0.35rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.showcase-pill.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.showcase-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.showcase-card.showcase-card-selected {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-glow-sm);
  transform: translateY(-2px);
}

.showcase-card.showcase-card-selected:hover {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg), var(--shadow-glow-sm);
  transform: translateY(-4px);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
}

.showcase-card-img {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8E4E0 0%, #D4CFC8 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card-img svg { width: 44px; height: 44px; color: rgba(0,0,0,0.12); }

.showcase-grid-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-tertiary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.showcase-card-info { padding: 0.6rem 0.7rem; }
.showcase-card-name { font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
.showcase-card-detail { font-size: 0.62rem; color: var(--text-tertiary); margin-top: 0.1rem; }

.verified-check {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== Section Shared ===== */
.section {
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section + .section { margin-top: var(--section-gap); }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* ===== Comparison Table ===== */
.compare-table {
  margin-top: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-header {
  display: grid;
  grid-template-columns: 7rem 1fr 1fr;
  padding: 0.75rem 1.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.compare-cat-label { /* empty spacer */ }

.compare-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-col-label.old-label { color: var(--text-tertiary); }
.compare-col-label.new-label { color: var(--accent); }

.compare-row {
  display: grid;
  grid-template-columns: 7rem 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: baseline;
  transition: background 0.2s;
}

.compare-row:last-child { border-bottom: none; }

.compare-row:hover { background: var(--surface-warm); }

.compare-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}

.compare-old {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.compare-old s {
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.4);
  color: var(--text-tertiary);
}

.compare-old em {
  font-style: normal;
  font-size: 0.78rem;
  opacity: 0.7;
  margin-left: 0.25rem;
}

.compare-new {
  font-size: 0.9rem;
  color: var(--text);
}

.compare-new strong {
  color: var(--accent);
  font-weight: 700;
}

.compare-new em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

/* ===== Stats ===== */
.stats {
  margin-top: var(--section-gap);
  padding: 6rem 1.5rem;
  background: var(--bg-warm);
  position: relative;
}

/* Fade-in from light — gentle warm transition */
.stats-fade-top {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg), var(--bg-warm));
  pointer-events: none;
}

/* Fade-out — continue the warm journey */
.stats-fade-bottom {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-warm), var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* Subtle cross-hatch on warm stats */
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-indigo), transparent);
  border-radius: 1px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-val {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0D9488 0%, var(--accent) 30%, var(--accent-indigo) 65%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(20, 184, 166, 0.15));
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.stat-src {
  font-size: 0.62rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  font-style: italic;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  position: relative;
}

.step-card {
  padding: 2.5rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-indigo), var(--accent-warm));
  opacity: 0;
  transition: opacity 0.4s;
}

.step-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.15);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-indigo) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.25), 0 0 48px rgba(129, 140, 248, 0.1);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-indigo), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-4px);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

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

.benefit-icon.i1 { background: rgba(20,184,166,0.10); color: var(--accent); }
.benefit-icon.i2 { background: rgba(129,140,248,0.10); color: var(--accent-indigo); }
.benefit-icon.i3 { background: rgba(16,185,129,0.10); color: #059669; }
.benefit-icon.i4 { background: rgba(245,158,11,0.10); color: var(--accent-warm); }

.benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.benefit-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.55; }
.benefit-card .hl { color: var(--accent); font-weight: 700; }

/* ===== Compliance ===== */
.compliance-strip {
  margin-top: var(--section-gap);
  padding: 5rem 1.5rem;
  background: var(--bg-dark);
  color: var(--bg);
  position: relative;
}

/* Warm-to-dark gradient transition above compliance */
.compliance-fade-top {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg), var(--bg-dark-warm));
  pointer-events: none;
  z-index: 1;
}

/* Dot grid */
.compliance-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.compliance-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compliance-inner .section-eyebrow { color: rgba(255,255,255,0.5); }
.compliance-inner .section-heading { color: #fff; }
.compliance-inner .section-desc { color: rgba(255,255,255,0.6); }

.compliance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.compliance-card {
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.compliance-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(20, 184, 166, 0.30);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.12), 0 0 60px rgba(129, 140, 248, 0.05);
}

.compliance-card svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(16,185,129,0.3));
}

.compliance-card h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.compliance-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

.compliance-footnote {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ===== Bottom CTA ===== */
.bottom-cta {
  padding: 8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark-warm);
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 40%, rgba(20,184,166,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(129,140,248,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 35% 35% at 70% 60%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Dot grid */
.bottom-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.bottom-cta > * { position: relative; z-index: 1; }

.bottom-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-on-dark);
}

.bottom-cta .bottom-sub {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-form {
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-form-pill {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}

.bottom-form-pill:focus-within {
  border-color: rgba(20, 184, 166, 0.50);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.12),
    0 0 0 4px rgba(20, 184, 166, 0.10),
    0 0 40px rgba(20, 184, 166, 0.12);
}

.bottom-form-pill input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 54px;
  padding: 0 1.25rem;
  background: transparent;
  border: none;
  border-radius: 13px;
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
}

.bottom-form-pill input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.bottom-form-pill input[type="email"]:focus {
  outline: none;
}

.bottom-form-pill .btn {
  height: 54px;
  padding: 0 2rem;
  border-radius: 13px;
  font-size: 0.95rem;
  flex-shrink: 0;
  width: auto;
}

/* ===== Footer — see enhanced footer below ===== */

/* ===== Social Proof Strip ===== */
.social-proof {
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.social-proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.social-proof-roles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-proof-role {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.social-proof-role:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-sm);
}

.social-proof-role svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Hero Ambient Gradient Mesh ===== */
.hero-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-glow::before,
.hero-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: glow-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-glow::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(20,184,166,0.35) 0%, rgba(129,140,248,0.12) 40%, transparent 70%);
  top: -20%;
  right: -12%;
}

.hero-glow::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(129,140,248,0.18) 0%, rgba(94,234,212,0.08) 50%, transparent 70%);
  bottom: -5%;
  left: -12%;
  animation-delay: -9s;
}

.hero-glow-center {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 50%);
  border-radius: 50%;
  pointer-events: none;
}

/* Third glow — warm accent */
.hero-glow-warm {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.10) 0%, rgba(129,140,248,0.05) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-drift 22s ease-in-out infinite alternate-reverse;
  will-change: transform;
}

@keyframes glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
  100% { transform: translate(20px, -10px) scale(1.05); }
}

.hero > *:not(.hero-glow):not(.hero-transition) { position: relative; z-index: 1; }

/* ===== Pulsing Status Dot ===== */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.hero-pill-dot { animation: pulse-dot 2.5s ease-in-out infinite; }

/* ===== Showcase Card Portraits ===== */
.showcase-card:nth-child(1) .showcase-card-img {
  background: linear-gradient(145deg, #D4C4B0 0%, #BCA992 50%, #A38E74 100%);
}
.showcase-card:nth-child(2) .showcase-card-img {
  background: linear-gradient(145deg, #C4B8A8 0%, #A89B8A 50%, #8D7F6E 100%);
}
.showcase-card:nth-child(3) .showcase-card-img {
  background: linear-gradient(145deg, #E0CFC0 0%, #C9B5A0 50%, #B09880 100%);
}
.showcase-card:nth-child(4) .showcase-card-img {
  background: linear-gradient(145deg, #C8BDB0 0%, #AFA296 50%, #96877A 100%);
}
.showcase-card:nth-child(5) .showcase-card-img {
  background: linear-gradient(145deg, #D9C8B8 0%, #C2AD98 50%, #A99378 100%);
}
.showcase-card:nth-child(6) .showcase-card-img {
  background: linear-gradient(145deg, #CBBFB2 0%, #B0A494 50%, #988A7C 100%);
}
.showcase-card:nth-child(7) .showcase-card-img {
  background: linear-gradient(145deg, #DDD0C2 0%, #C8B8A5 50%, #B09E88 100%);
}
.showcase-card:nth-child(8) .showcase-card-img {
  background: linear-gradient(145deg, #C0B5A6 0%, #A69A8C 50%, #8E8070 100%);
}



/* ===== Responsive ===== */
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-header,
  .compare-row { grid-template-columns: 5.5rem 1fr 1fr; }
  .compare-header { padding: 0.6rem 1rem; }
  .compare-row { padding: 0.85rem 1rem; }
}

@media (max-width: 768px) {
  :root { --section-gap: 6rem; }
  .reveal { transform: translateY(20px); }

  /* Reduce hero glow cost on tablets/phones */
  .hero-glow::before,
  .hero-glow::after { filter: blur(60px); animation: none; }
  .hero-glow-warm { filter: blur(50px); animation: none; }

  .hero-form {
    max-width: 100%;
    gap: 0.7rem;
  }
  .hero-form-pill,
  .bottom-form-pill {
    padding: 5px;
    border-radius: 16px;
  }
  .hero-form-pill input[type="email"],
  .bottom-form-pill input[type="email"] {
    height: 48px;
    font-size: 0.92rem;
    padding: 0 0.9rem;
  }
  .hero-form-pill .btn,
  .bottom-form-pill .btn {
    height: 48px;
    padding: 0 1.1rem;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .compliance-cards { grid-template-columns: 1fr; }
  .nav { padding: 0 1rem; }
  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.74rem;
  }

  .trust-badges { gap: 1rem; }
  .trust-divider { display: none; }
  .trust-badge { font-size: 0.7rem; }

  .compare-header { display: none; }
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
  }
  .compare-cat {
    font-size: 0.65rem;
    margin-bottom: 0.1rem;
  }
  .compare-old { font-size: 0.82rem; }
  .compare-new { font-size: 0.82rem; }

  .footer-links { flex-direction: column; gap: 0.5rem; }
  .footer-dot { display: none; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .consent-inner { flex-direction: column; text-align: center; }
  .consent-actions { width: 100%; flex-direction: column; }
  .consent-accept,
  .consent-essential { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .showcase-body { padding: 1.25rem; }
  .social-proof-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    max-width: 320px;
    margin: 0 auto;
  }
  .social-proof-role {
    justify-content: center;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 0.7rem;
    padding: 0.5rem 0.5rem;
  }
  .social-proof-role:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 0.25rem);
  }
  .reveal { transform: translateY(16px); }

  /* Fine-tune spacing on small phones */
  .hero-form-pill input[type="email"],
  .bottom-form-pill input[type="email"] {
    height: 44px;
    font-size: 0.88rem;
    padding: 0 0.75rem;
  }
  .hero-form-pill .btn,
  .bottom-form-pill .btn {
    height: 44px;
    padding: 0 0.9rem;
    font-size: 0.8rem;
  }
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: 0.01ms !important; }
  .hero-glow::before,
  .hero-glow::after,
  .hero-glow-warm { animation: none !important; }
  .hero-pill-dot { animation: none !important; }
  .hero h1 .thin { animation: none !important; }
  .hero-accent-line { animation: none !important; }
  .particle { animation: none !important; }
}

/* ===== Section Decorative Backgrounds ===== */

/* Floating teal orb decoration behind light sections */
.section:nth-of-type(1) { position: relative; }
.section:nth-of-type(1)::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.04) 0%, rgba(20, 184, 166, 0.02) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.section:nth-of-type(3)::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -180px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, rgba(129, 140, 248, 0.02) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* Gradient line separator between light sections */
.section + .section::after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--section-gap) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.30), rgba(129, 140, 248, 0.15), transparent);
}



/* ===== Stats ambient glow ===== */
.stats-inner > div {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: var(--surface-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stats-inner > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stats-inner > div::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, rgba(129, 140, 248, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ===== Hero Particles ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 12s ease-in-out infinite;
}

.p1 {
  background: var(--accent);
  top: 20%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 14s;
}

.p2 {
  background: var(--accent-indigo);
  top: 60%;
  right: 20%;
  width: 3px;
  height: 3px;
  animation-delay: -3s;
  animation-duration: 16s;
}

.p3 {
  background: var(--accent-warm);
  top: 35%;
  right: 30%;
  width: 5px;
  height: 5px;
  animation-delay: -6s;
  animation-duration: 18s;
}

.p4 {
  background: #5EEAD4;
  bottom: 30%;
  left: 25%;
  width: 3px;
  height: 3px;
  animation-delay: -2s;
  animation-duration: 20s;
}

.p5 {
  background: var(--accent-indigo);
  top: 45%;
  left: 60%;
  width: 4px;
  height: 4px;
  animation-delay: -8s;
  animation-duration: 15s;
}

@keyframes float-particle {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
    transform: translate(30px, -40px) scale(1.2);
  }
  90% {
    opacity: 0.5;
  }
}

/* ===== Hero Accent Line ===== */
.hero-accent-line {
  width: 80px;
  height: 3px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-indigo), var(--accent-warm));
  border-radius: 2px;
  position: relative;
  z-index: 1;
  background-size: 200% 100%;
  animation: line-shimmer 4s ease-in-out infinite;
}

@keyframes line-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== Trust Badges ===== */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ===== Enhanced Footer ===== */
footer {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: var(--bg-dark-warm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: 0.4rem;
}

.footer-brand span { color: var(--accent); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.3s;
}

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

.footer-dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--accent); }

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--accent); }

/* ===== Cookie Consent Banner ===== */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-dark-warm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-banner.consent-visible {
  transform: translateY(0);
}

.consent-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.consent-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  flex: 1;
}

.consent-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-link:hover {
  color: var(--accent-hover);
}

.consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.consent-accept {
  height: auto;
  padding: 0.55rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font);
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.02em;
  animation: none;
}

.consent-essential {
  padding: 0.55rem 1.35rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.consent-essential:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ===== Showcase Card Hover Glow ===== */
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-card:hover::after {
  opacity: 1;
}

/* Disable sticky hover effects on touch devices */
@media (hover: none) {
  .showcase-card:hover {
    transform: none;
    box-shadow: none;
  }
  .showcase-card.showcase-card-selected:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow-glow-sm);
  }
  .showcase-card:hover::after {
    opacity: 0;
  }
  .showcase-card:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
  }
}

/* ===== Social Proof Role Pill Enhancement ===== */
.social-proof-role {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ===== Showcase Filter Animations ===== */
.showcase-card {
  transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s ease;
}

.showcase-card.showcase-card-hidden {
  display: none;
}

.showcase-card.showcase-card-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: card-appear 0.35s ease-out;
}

@keyframes card-appear {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.showcase-pill {
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.showcase-pill:hover:not(.active) {
  border-color: var(--border-accent);
  transform: translateY(-1px);
}

/* Empty state */
.showcase-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-tertiary);
  gap: 0.75rem;
}

.showcase-empty svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}

.showcase-empty p {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== Legal Pages ===== */
.legal-page {
  background: var(--bg);
}

/* Remove noise overlay on legal pages for cleaner reading */
.legal-page::before {
  display: none;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.legal-breadcrumb a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-breadcrumb a:hover {
  color: var(--accent);
}

.legal-breadcrumb .breadcrumb-sep {
  color: var(--text-tertiary);
  font-size: 0.7rem;
}

.legal-breadcrumb .breadcrumb-current {
  color: var(--text-secondary);
  font-weight: 500;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.legal-date {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-top: 0.35rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-content li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: var(--accent-hover);
}

.legal-content code {
  font-size: 0.84rem;
  background: var(--bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.legal-content strong {
  font-weight: 600;
}

/* Legal tables */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-table td {
  color: var(--text);
}

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

.legal-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

/* Impressum table: wider first column */
.impressum-table td:first-child {
  width: 180px;
  white-space: nowrap;
}

/* Responsive legal tables */
@media (max-width: 600px) {
  .legal-content {
    padding: 4.5rem 1rem 3rem;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.15rem;
  }

  .legal-table {
    font-size: 0.82rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.5rem 0.6rem;
  }

  .impressum-table td:first-child {
    width: auto;
    white-space: normal;
  }
}
