/* no-italic override */
em, i { font-style: normal; }

/* ============================================
   dentson — Corporate Design tokens
   Fonts: Outfit (display/logo), Inter (body)
   ============================================ */

/* Outfit — self-hosted (no Google Fonts request) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/Outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/Outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/Outfit-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/Outfit-300.woff2') format('woff2');
}

/* Inter — still loaded from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Primary palette */
  --royal-blue: #2b3e6d;
  --ultra-violet: #7712d8;
  --steel-pink: #AE66F2;

  /* Secondary (signal) */
  --signal-yellow: #cfb46b;
  --signal-green: #42ab6f;
  --signal-red: #bc4231;

  /* Greys */
  --grey-dark: #2b3e6d;
  --grey-25: #cfcfcf;
  --grey-10: #f5f4f4;
  --white: #ffffff;

  /* Text hierarchy — 4 tiers, all derived from --grey-dark (Royal Blue) */
  --text-100: var(--grey-dark);
  --text-87:  color-mix(in srgb, var(--grey-dark) 87%, transparent);
  --text-65:  color-mix(in srgb, var(--grey-dark) 65%, transparent);
  --text-50:  color-mix(in srgb, var(--grey-dark) 50%, transparent);

  /* Legacy alias: --grey-75 now resolves to the Info-Text tier (65%) */
  --grey-75:  var(--text-65);

  /* Gradient (from guide) */
  --brand-gradient: linear-gradient(135deg, #3C096C 0%, #7712D8 50%, #AE66F2 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(60, 9, 108, 0.08) 0%, rgba(119, 18, 216, 0.06) 100%);

  /* Type */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-line1 { color: #fffffff5; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #3C096C;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-100);
}
h5, h6 { color: var(--text-100); }

/* ============================================
   TEXT HIERARCHY — 4 tiers
   100% Headlines · 87% Subheadlines · 65% Info-Text · 50% Ausgegraut
   Note: .eyebrow keeps its brand-violet accent and is NOT part of this scale.
   ============================================ */

/* 87% — Subheadlines / Lead-Paragraphen direkt unter einer Headline */
.hero-sub,
.hero-sub-v2,
.supporters-lead,
.workflow-sub,
.team-header > p,
.team-role {
  color: var(--text-87);
}

/* 50% — Ausgegraut / Captions / Meta-Labels / Footer-Copy */
.footer-inner small,
.cav-caption,
.glass-stat-label,
.stat-label,
.card-metric-label,
.card-anim-label,
.card-anim-sub,
.jobs-overview-label,
.job-card-meta span,
.job-card-meta b {
  color: var(--text-50);
}

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

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ultra-violet);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-primary {
  background: #7712D8;
  color: var(--white);
}
.btn-primary:hover {
  background: #3C096C;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(119, 18, 216, 0.5);
}
.btn-ghost {
  color: var(--grey-dark);
  border: 1px solid var(--grey-25);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--grey-dark);
}
.btn-ghost-light {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.9);
  color: var(--grey-dark);
  border-color: transparent;
  transform: translateY(-1px);
}

/* Placeholder zones (for future icons / videos) */
.placeholder {
  background:
    repeating-linear-gradient(45deg,
      transparent 0 10px,
      rgba(119, 18, 216, 0.04) 10px 11px);
  border: 1px dashed rgba(119, 18, 216, 0.25);
  border-radius: var(--r-md);
  color: var(--grey-75);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  min-height: 60px;
}

.placeholder-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  min-height: 0;
  padding: 0;
  font-size: 9px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  transform: translateY(0);
  opacity: 1;
  transition: transform .9s cubic-bezier(0.4, 0, 0.2, 1), opacity .7s ease-in-out;
}
.nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.nav > * { pointer-events: auto; }
.nav.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--grey-dark);
}
.logo b { font-weight: 500; font-family: var(--font-display); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-dark);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ultra-violet); }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-dark);
  padding: 10px 12px;
  transition: color .2s var(--ease);
}
.nav-link:hover {
  color: var(--ultra-violet);
}

.nav-tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-dark);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .2s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.nav-tab:hover {
  background: var(--brand-gradient);
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(119, 18, 216, 0.5);
  transform: translateY(-1px);
}
.nav-tab-cta {
  border-color: rgba(63,63,63,0.15);
}
.nav.nav-on-dark .logo,
.nav.nav-on-dark .nav-links a,
.nav.nav-on-dark .nav-link {
  color: #fff;
}
.nav.nav-on-dark .nav-links a:hover,
.nav.nav-on-dark .nav-link:hover {
  color: rgba(255,255,255,0.65);
}
.nav.nav-on-dark .nav-tab-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.nav.nav-on-dark .burger span {
  background: #fff;
}

.nav-cta {
  background: var(--grey-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background .3s var(--ease);
}
.nav-cta:hover { background: var(--ultra-violet) !important; color: white !important; }

/* Hero showcase + glass stats */
/* Product showcase (below hero) */
.product-showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: radial-gradient(ellipse 140% 140% at 50% 50%, #2e1a5e 0%, #1c1040 60%, #160e38 100%);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.showcase-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.showcase-blob--1 {
  width: 90%;
  height: 100%;
  background: #7712D8;
  top: -25%;
  left: -20%;
  opacity: 0.70;
  animation: blob1 14s ease-in-out infinite alternate;
}
.showcase-blob--2 {
  width: 85%;
  height: 95%;
  background: #AE66F2;
  bottom: -25%;
  right: -15%;
  opacity: 0.55;
  animation: blob2 11s ease-in-out infinite alternate;
}
.showcase-blob--3 {
  width: 65%;
  height: 75%;
  background: #3C096C;
  top: 15%;
  left: 20%;
  opacity: 0.80;
  animation: blob3 17s ease-in-out infinite alternate;
}
.showcase-blob--4 {
  width: 60%;
  height: 70%;
  background: #7712D8;
  top: -15%;
  right: -10%;
  opacity: 0.60;
  animation: blob4 13s ease-in-out infinite alternate;
}
@keyframes blob1 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(12%, 18%) scale(1.08); }
  100% { transform: translate(-6%, 28%) scale(0.94); }
}
@keyframes blob2 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(-18%, -12%) scale(1.06); }
  100% { transform: translate(8%, -22%) scale(1.12); }
}
@keyframes blob3 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(22%, 14%) scale(0.88); }
  100% { transform: translate(-12%, -18%) scale(1.16); }
}
@keyframes blob4 {
  0%   { transform: translate(0%, 0%) scale(1); }
  50%  { transform: translate(-10%, 20%) scale(1.1); }
  100% { transform: translate(15%, -10%) scale(0.92); }
}
.showcase-grid--split { position: relative; z-index: 1; }
.showcase-bottom {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  padding: 0 6vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}
.showcase-cta {
  background: #fff;
  color: #1a1040;
  pointer-events: all;
  flex-shrink: 0;
  margin-right: 4vw;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.showcase-cta:hover {
  background: var(--ultra-violet);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(119,18,216,0.5);
}
.showcase-desc {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
  pointer-events: none;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.showcase-grid--solo {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}
.showcase-grid--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 6vw;
  box-sizing: border-box;
}
.showcase-copy {
  color: #fff;
}
.showcase-headline {
  font-size: clamp(3.8rem, 6vw, 7.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  text-align: left;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.showcase-headline > span {
  display: block;
}
.hero-strike {
  position: relative;
}
.hero-strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 68%;
  height: 0.06em;
  background: currentColor;
  opacity: 0.85;
}
.showcase-headline .hero-rotator-word,
.showcase-headline .hero-rotator-slot::after {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #fff;
}
.showcase-product--split {
  height: 90vh;
}
.showcase-product {
  height: 70vh;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.showcase-product--solo {
  height: 90vh;
}
.showcase-product::before {
  display: none;
}
.showcase-product-placeholder {
  position: relative;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-75);
}
.card-anim-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.split-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.split-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  filter: brightness(1.22);
}
/* legacy single-video fallback */
.split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 6px;
  display: block;
}
.showcase-product-img {
  position: relative;
  z-index: 1;
  max-width: 85%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(63, 32, 110, 0.18));
}
.showcase-model-viewer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  background-color: transparent;
  --poster-color: transparent;
  --progress-bar-color: var(--ultra-violet);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M14 3a2 2 0 0 1 2 2v7.5a1.5 1.5 0 0 1 3 0V14a1.5 1.5 0 0 1 3 0v1a1.5 1.5 0 0 1 3 0v5c0 3.314-2.686 6-6 6h-3a6 6 0 0 1-6-6V5a2 2 0 0 1 2-2z' fill='%23111' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 10 2, grab;
}
.showcase-model-viewer:active {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M7 13.5A1.5 1.5 0 0 1 8.5 12h.25A1.5 1.5 0 0 1 10 10.5h.25A1.5 1.5 0 0 1 11.75 9H12a2 2 0 0 1 2-2 2 2 0 0 1 2 2h.25a1.5 1.5 0 0 1 1.5 1.5v.5a1.5 1.5 0 0 1 1.5 1.5v.5a1.5 1.5 0 0 1 1.5 1.5V18a6 6 0 0 1-6 6h-2a6 6 0 0 1-6-6v-4.5z' fill='%23111' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E") 10 10, grabbing;
}
.showcase-card-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  background: #ffffff;
}
.showcase-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  filter: brightness(1.25) saturate(0.6) contrast(0.95);
}
.showcase-card-wrap > .showcase-card.glass {
  position: relative;
  z-index: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}
.showcase-card.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 20px 60px -20px rgba(63,32,110,0.25),
    0 2px 8px -2px rgba(63,32,110,0.12);
}
.glass-stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--grey-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.glass-stat-value .unit {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--grey-75);
  margin-left: 2px;
}
.glass-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-dark);
  opacity: 0.8;
  line-height: 1.4;
}
.glass-stat-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.glass-stat-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--grey-dark);
  font-variant-numeric: tabular-nums;
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.glass-stat-unit {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--grey-dark);
  margin-top: 4px;
}
.glass-stat-hero .glass-stat-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-75);
  margin-top: 12px;
  transition: opacity 0.4s ease;
}
.glass-stat-hero.is-counting .glass-stat-num {
  opacity: 0.75;
  filter: blur(0.6px);
}
.glass-stat-hero.is-counting .glass-stat-label {
  opacity: 0.45;
}
@media (max-width: 860px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card.glass {
    padding: 24px;
  }
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--grey-dark);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--grey-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: var(--grey-10);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-75);
  margin-bottom: 32px;
}
.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 4px rgba(66, 171, 111, 0.2);
}

.hero h1 {
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1;
  margin-bottom: 40px;
  max-width: 18ch;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero-line1 {
  display: block;
  white-space: nowrap;
}
.hero-rotator {
  display: inline-flex;
  align-items: flex-start;
  height: 1.4em;
  overflow: hidden;
  position: relative;
  outline: none;
}
.hero-rotator-slot {
  display: flex;
  flex-direction: column;
  animation: heroRotate 7.5s infinite cubic-bezier(0.7, 0, 0.3, 1);
}
.hero-rotator:hover .hero-rotator-slot,
.hero-rotator:focus .hero-rotator-slot,
.hero-rotator:focus-within .hero-rotator-slot {
  animation-play-state: paused;
}
.hero-rotator-word {
  display: block;
  height: 1.4em;
  line-height: 1.4;
  background: linear-gradient(135deg, #4a7fe8 0%, #5fa0ef 25%, #b49aff 75%, #a888ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 700;
}
@keyframes heroRotate {
  0%, 28% { transform: translateY(0); }
  33%, 61% { transform: translateY(-1.4em); }
  66%, 94% { transform: translateY(-2.8em); }
  100% { transform: translateY(-4.2em); }
}
.hero-rotator-slot::after {
  content: "einfacher.";
  display: block;
  height: 1.4em;
  line-height: 1.4;
  background: linear-gradient(135deg, #4a7fe8 0%, #5fa0ef 25%, #b49aff 75%, #a888ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 700;
}
:root[lang="en"] .hero-rotator-slot::after {
  content: "simpler.";
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.roadmap-kicker {
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 520px;
  color: var(--grey-75);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero v2 — background animation */
.hero-v2 {
  padding: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 0 !important;
}
.hero-v2 .hero-content {
  margin-top: auto;
  padding-bottom: 64px;
}
.hero-v2 .hero-sub-v2 {
  margin-top: -8px;
  margin-bottom: 28px;
  max-width: 560px;
  color: var(--text-65);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}
.hero-v2 .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4fc 0%, #ede4f7 60%, #f7f4fc 100%);
}
.hero-bg-loop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
@keyframes bgDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-4%, -3%) scale(1.1); }
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(119, 18, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 18, 216, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, black 0%, transparent 80%);
}
.hero-product-float {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 8s var(--ease) infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-14px) rotate(1deg); }
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* Product mouthpiece visual */
.mouthpiece-wrap {
  position: relative;
  width: min(62vw, 720px);
  aspect-ratio: 600/420;
  pointer-events: none;
}
.mouthpiece {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mp-led circle:nth-child(2) {
  transform-origin: 300px 310px;
  animation: ledPulse 2.4s ease-in-out infinite;
}
@keyframes ledPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.mouthpiece-wrap.animated .mp-rings circle:nth-child(1) { animation: ringExpand 3s ease-out infinite; }
.mouthpiece-wrap.animated .mp-rings circle:nth-child(2) { animation: ringExpand 3s ease-out .7s infinite; }
.mouthpiece-wrap.animated .mp-rings circle:nth-child(3) { animation: ringExpand 3s ease-out 1.4s infinite; }
@keyframes ringExpand {
  0% { transform: scale(0.5); transform-origin: 300px 200px; opacity: 0.6; }
  100% { transform: scale(1.3); transform-origin: 300px 200px; opacity: 0; }
}

.mp-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.mp-bubbles span {
  position: absolute;
  bottom: -20px;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, rgba(255,255,255,0.4) 60%, transparent 100%);
  border: 1px solid rgba(119,18,216,0.25);
  border-radius: 50%;
  animation: bubbleRise var(--d) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-90vh) scale(1.1); opacity: 0; }
}

/* Cavitation animation */
.cavitation {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cav-svg { width: 80%; max-width: 420px; }
.cav-waves path:nth-child(1) { animation: waveFade 2.2s ease-out infinite; }
.cav-waves path:nth-child(2) { animation: waveFade 2.2s ease-out .4s infinite; }
.cav-waves path:nth-child(3) { animation: waveFade 2.2s ease-out .1s infinite; }
.cav-waves path:nth-child(4) { animation: waveFade 2.2s ease-out .6s infinite; }
@keyframes waveFade {
  0%, 100% { opacity: 0; transform: translateX(-8px); }
  50% { opacity: 0.8; transform: translateX(0); }
}
.cav-bubbles circle {
  transform-origin: center;
  transform-box: fill-box;
  animation: bubblePop 3s ease-in-out infinite;
}
@keyframes bubblePop {
  0% { transform: scale(0); opacity: 0; }
  40% { transform: scale(1.3); opacity: 1; }
  70% { transform: scale(1); opacity: 0.9; }
  85% { transform: scale(1.6); opacity: 0.3; }
  100% { transform: scale(0.2); opacity: 0; }
}
.cav-caption {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-75);
}

/* Workflow hero image within split */
.workflow-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Workflow section — 4-step process (roadmap-style) */
.workflow {
  padding: 160px 0;
  background: var(--white);
  position: relative;
}
.workflow-header {
  text-align: center;
  margin-bottom: 100px;
  padding: 0 24px;
}
.workflow-header h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.workflow-header h2 em {
  font-style: normal;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.workflow-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-25);
  z-index: 0;
}
.workflow-step {
  position: relative;
  text-align: center;
  padding-top: 80px;
  display: block;
}
.workflow-step .workflow-n {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ultra-violet);
  border: 2px solid var(--ultra-violet);
  color: transparent;
  font-size: 0;
  z-index: 2;
}
.workflow-step .workflow-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ultra-violet);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.workflow-step .workflow-icon svg { width: 24px; height: 24px; }
.workflow-step:hover .workflow-icon {
  transform: translateY(-3px);
}
.workflow-step h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--grey-dark);
}
.workflow-step p {
  font-size: 14px;
  color: var(--grey-75);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .workflow { padding: 100px 0; }
  .workflow-grid { grid-template-columns: 1fr; gap: 48px; }
  .workflow-grid::before { display: none; }
  .workflow-step { padding-top: 60px; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 100px;
}
.hero-product-badge {
  position: static;
  margin-top: 48px;
}

/* Product mockup (legacy, still used elsewhere if needed) */
.product-stage {
  margin-top: 100px;
  position: relative;
  height: 640px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #faf9fc 0%, #f0ecf6 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-stage::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 18, 216, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  top: -200px;
}

.product-placeholder {
  position: relative;
  z-index: 2;
  width: 72%;
  max-width: 720px;
  aspect-ratio: 16/9;
  font-size: 13px;
}

.product-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--grey-dark);
}
.product-badge-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

/* Hero stats strip */
.hero-stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding-left: 48px;
  padding-right: 48px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--grey-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-value .unit {
  font-size: 0.5em;
  color: var(--grey-75);
  font-weight: 400;
}
.stat-label {
  font-size: 13px;
  color: var(--grey-75);
  max-width: 24ch;
  line-height: 1.4;
}

/* ============================================
   STACK CARDS (Benefits)
   ============================================ */
.stack-section {
  position: relative;
  background: var(--white);
}
.stack-intro {
  padding: 100px 0 60px;
  text-align: left;
}
.stack-intro-label {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.stack-intro h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 24ch;
  margin: 24px auto 0;
}
.stack-intro h2 em {
  font-style: normal;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stack-wrapper {
  position: relative;
  padding: 0 32px;
}
.stack-card {
  position: sticky;
  top: 80px;
  height: 78vh;
  min-height: 600px;
  margin: 0 auto 40px;
  max-width: 1320px;
  border-radius: 32px;
  background: var(--grey-10);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(43, 62, 109, 0.15);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), opacity .35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 50% 30%;
  will-change: transform, opacity;
}
.stack-card[data-index="0"] { background: linear-gradient(135deg, #ffffff 0%, #fafafc 55%, #f2eef8 100%); top: 80px; }
.stack-card[data-index="1"] { background: linear-gradient(135deg, #ffffff 0%, #f3effa 45%, #e9eefc 100%); top: 80px; }
.stack-card[data-index="2"] { background: linear-gradient(135deg, #1a1a26 0%, #2a1f3d 55%, #3a2655 100%); color: var(--white); top: 80px; }
.stack-card[data-index="2"] h3 { color: var(--white); }
.stack-card[data-index="2"] .card-index { color: rgba(255,255,255,0.5); }
.stack-card[data-index="2"] .card-desc { color: rgba(255,255,255,0.7); }

.card-left .card-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--grey-75);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.card-left h3 {
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 32px;
}
.card-left h3 em {
  font-style: normal;
  font-weight: 400;
  color: inherit;
}
.card-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--grey-75);
  max-width: 42ch;
  font-weight: 300;
}
.card-metric {
  margin-top: 32px;
  display: inline-flex;
  flex-direction: column;
  padding: 20px 28px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--r-md);
}
.card-metric-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--grey-dark);
}
.card-metric-label {
  font-size: 12px;
  color: var(--grey-75);
  margin-top: 4px;
}
.stack-card[data-index="2"] .card-metric {
  background: rgba(255,255,255,0.08);
}
.stack-card[data-index="2"] .card-metric-value { color: var(--white); }
.stack-card[data-index="2"] .card-metric-label { color: rgba(255,255,255,0.6); }

.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  cursor: col-resize;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: col-resize;
}
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}
.ba-knob {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  color: #333;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.38);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
  pointer-events: none;
}
.ba-label--l { left: 14px; }
.ba-label--r { right: 14px; }

.card-right {
  position: relative;
  height: 100%;
  min-height: 360px;
}
.card-video-placeholder {
  height: 100%;
  min-height: 400px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.5);
  border: 1px dashed rgba(119, 18, 216, 0.25);
}
.card-anim {
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(204, 51, 204, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(119, 18, 216, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 50%, rgba(92, 120, 220, 0.16) 0%, transparent 60%),
    rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(119,18,216,0.12) 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(204,51,204,0.12) 3px, transparent 4px),
    radial-gradient(circle at 40% 80%, rgba(119,18,216,0.10) 2px, transparent 3px),
    radial-gradient(circle at 85% 25%, rgba(204,51,204,0.12) 2px, transparent 3px);
  background-size: 200px 200px;
  animation: dotDrift 12s linear infinite;
}
@keyframes dotDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}
.card-anim-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: ui-monospace, monospace;
  color: var(--grey-75);
  padding: 24px 32px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  border: 1px dashed rgba(119, 18, 216, 0.2);
}

/* Bubble animation */
.card-mouthpiece {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 680px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(119, 18, 216, 0.28));
  pointer-events: none;
}
.card-phone-mockup {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  max-width: 560px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.stack-card[data-index="1"] .bubbles { display: none; }
.stack-card[data-index="2"] .bubbles { display: none; }
.stack-card[data-index="1"] .card-anim {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(174, 102, 242, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(119, 18, 216, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 50%, rgba(60, 9, 108, 0.10) 0%, transparent 60%),
    #ede5fa;
}
.stack-card[data-index="1"] .card-anim::before { opacity: 0.55; }
.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  bottom: -40px;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.25) 45%, rgba(204,180,240,0.15) 70%, transparent 100%);
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.6),
    0 0 16px rgba(180, 150, 230, 0.25);
  opacity: 0;
  animation: bubbleRise var(--dur) var(--delay) linear infinite;
}
@keyframes bubbleRise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: var(--opacity); }
  85%  { opacity: var(--opacity); }
  100% { transform: translate(var(--drift), -110%) scale(1); opacity: 0; }
}
.stack-card[data-index="2"] .bubble {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85), rgba(219, 112, 208, 0.3) 45%, rgba(119, 18, 216, 0.2) 70%, transparent 100%);
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.4),
    0 0 20px rgba(204, 51, 204, 0.35);
}
.card-anim-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ultra-violet);
  margin-bottom: 4px;
  font-weight: 500;
}
.card-anim-sub {
  font-size: 10px;
  opacity: 0.7;
}
.stack-card[data-index="2"] .card-anim {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(204, 51, 204, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(119, 18, 216, 0.4) 0%, transparent 60%),
    rgba(0,0,0,0.2);
}
.stack-card[data-index="2"] .card-anim-placeholder {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}
.stack-card[data-index="2"] .card-anim-label { color: var(--steel-pink); }
.stack-card[data-index="2"] .card-video-placeholder {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================
   SPLIT SECTION
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: center;
  gap: 24px;
  padding: 0 96px;
  max-width: 1440px;
  margin: 0 auto;
}
.split-text {
  padding: 140px 24px 140px 0;
}
.split-text h2 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 24px 0 32px;
}
.split-text h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ultra-violet);
}
.split-text p {
  font-size: 18px;
  color: var(--grey-75);
  max-width: 45ch;
  font-weight: 300;
  line-height: 1.6;
}
.split-media {
  height: 100%;
  min-height: 80vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 24px 24px;
}
.split-media-inner {
  width: 100%;
  height: 80%;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split.reverse .split-text { order: 2; padding: 140px 0 140px 24px; }
.split.reverse .split-media { order: 1; padding: 24px 24px 24px 0; background: linear-gradient(180deg, #fbf1f9 0%, #f5e0f0 100%);}

.tech-split-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 96px;
  box-sizing: border-box;
}
.tech-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.tech-split-text {
  padding: 80px 24px 80px 0;
}
.tech-split-headline {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 24px 0 32px;
  color: var(--grey-dark);
}
.tech-split-headline em {
  font-style: normal;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tech-split-text p {
  font-size: 18px;
  color: var(--grey-75);
  max-width: 45ch;
  font-weight: 300;
  line-height: 1.6;
}
.tech-split-media {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 24px 24px;
}
.tech-split-media .split-media-inner {
  width: 100%;
  height: 100%;
}
.tech-split-media .split-video-wrap {
  height: 100%;
}
.tech-split-cta {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
}
.tech-split-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-75);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.tech-split-btn:hover {
  color: var(--grey-dark);
  border-color: rgba(0,0,0,0.28);
}
.pulse-arrow {
  display: flex;
  align-items: center;
  animation: pulseDown 1.6s ease-in-out infinite;
}
@keyframes pulseDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(5px); opacity: 0.4; }
}

/* ============================================
   WORKFLOW
   ============================================ */
.workflow {
  padding: 320px 0 220px;
  background: var(--white);
}
.workflow-header {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.workflow-header h2 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.workflow-header h2 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ultra-violet);
}
.workflow-sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-25);
  margin-top: 14px;
  font-weight: 300;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.workflow-step {
  padding: 32px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(135deg, #7fb0ff 0%, #9cc0ff 25%, #d0b8ff 75%, #c8a8ff 100%);
  color: var(--white);
  position: relative;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.workflow-step:hover { transform: translateY(-4px); }
.workflow-step h4 { color: var(--white); }
.workflow-step p { color: rgba(255,255,255,0.8); }
.workflow-step .workflow-n { color: rgba(255,255,255,0.55); }
.workflow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.workflow-icon svg { width: 28px; height: 28px; }
.workflow-step:hover .workflow-icon { transform: scale(1.08) rotate(-4deg); background: rgba(255,255,255,0.25); color: var(--white); }

.card-head { display: none; }
.card-icon-bare {
  width: auto;
  height: auto;
  background: none !important;
  padding: 0;
  border-radius: 0;
  color: var(--ultra-violet);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.card-icon-bare svg { width: 32px; height: 32px; }
.stack-card[data-index="2"] .card-icon-bare { color: var(--steel-pink); }

.card-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-65);
  font-weight: 400;
}
.card-features .feat-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ultra-violet);
}
.stack-card[data-index="2"] .card-features li { color: rgba(255,255,255,0.65); }
.stack-card[data-index="2"] .card-features .feat-check { color: rgba(255,255,255,0.8); }

.card-head { display: none; }
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ultra-violet);
  transition: transform .4s var(--ease);
}
.card-icon svg { width: 26px; height: 26px; }
.stack-card:hover .card-icon { transform: rotate(-6deg) scale(1.06); }
.workflow-n {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.workflow-step h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--white);
}
.workflow-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ============================================
   JOBS — swiper
   ============================================ */
.jobs {
  padding: 420px 0 220px;
  background: var(--white);
}
.jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.jobs-header h3 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.jobs-header h3 em {
  font-style: normal;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jobs-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.jobs-overview {
  background: transparent;
  border-radius: var(--r-lg);
  padding: 28px 0;
  position: sticky;
  top: 100px;
}
.jobs-overview-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-75);
  margin-bottom: 20px;
}
.jobs-overview ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jobs-overview li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--grey-75);
}
.jobs-overview li:hover { background: rgba(255,255,255,0.5); color: var(--grey-dark); }
.jobs-overview li.on {
  background: #7712D8;
  color: var(--white);
}
.jobs-overview li.on .ov-arrow { color: var(--white); }
.ov-n { font-size: 12px; opacity: 0.6; }
.ov-title { font-size: 15px; letter-spacing: -0.01em; }
.ov-arrow { font-size: 14px; color: var(--grey-25); transition: color .25s; }

.jobs-swiper {
  overflow: hidden;
  position: relative;
}
.jobs-track {
  display: flex;
  gap: 20px;
  transition: transform .6s var(--ease);
  touch-action: pan-y;
}
.job-card {
  flex: 0 0 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f6f8 40%, #eef0f4 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
  opacity: 0.5;
  transition: opacity .5s var(--ease);
}
.job-card.on { opacity: 1; }
.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--grey-75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.job-card-tag {
  padding: 6px 12px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-pill);
  color: var(--ultra-violet);
  font-weight: 500;
}
.job-card h4 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--grey-dark);
  max-width: 14ch;
}
.job-card p {
  font-size: 17px;
  color: var(--grey-75);
  max-width: 45ch;
  line-height: 1.55;
  font-weight: 300;
}
.job-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: auto;
}
.job-card-meta div { display: flex; flex-direction: column; gap: 4px; }
.job-card-meta span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-75);
}
.job-card-meta b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--grey-dark);
  letter-spacing: -0.01em;
}
.job-card .btn { align-self: flex-start; margin-top: 4px; }

.jobs-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  justify-content: flex-end;
}
.jobs-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--grey-25);
  background: var(--white);
  font-size: 18px;
  color: var(--grey-dark);
  transition: all .2s var(--ease);
}
.jobs-nav button:hover {
  border-color: var(--grey-dark);
  background: var(--grey-dark);
  color: var(--white);
}
.jobs-dots {
  display: flex;
  gap: 8px;
}
.jobs-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-25);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.jobs-dots span.on { background: #7712D8; transform: scale(1.3); }

/* ============================================
   ROADMAP
   ============================================ */
.roadmap {
  padding: 160px 0;
  background: var(--grey-10);
}
.roadmap-header {
  text-align: center;
  margin-bottom: 100px;
}
.roadmap-header h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 20px;
}
.roadmap-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-25);
}
.roadmap-line-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--brand-gradient);
}
.roadmap-step {
  position: relative;
  text-align: center;
  padding-top: 80px;
}
.roadmap-dot {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-25);
  z-index: 2;
}
.roadmap-step.done .roadmap-dot {
  background: var(--ultra-violet);
  border-color: var(--ultra-violet);
}
.roadmap-step.current .roadmap-dot {
  background: var(--steel-pink);
  border-color: var(--steel-pink);
  box-shadow: 0 0 0 6px rgba(204, 51, 204, 0.2);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(204, 51, 204, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(204, 51, 204, 0.0); }
}
.roadmap-step h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.roadmap-step .when {
  font-size: 13px;
  color: var(--grey-75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.roadmap-step p {
  font-size: 14px;
  color: var(--grey-75);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 240px 0 180px;
}
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}
.team-header h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.team-header h2 em {
  font-style: normal;
  font-weight: 400;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.team-header p {
  max-width: 42ch;
  color: var(--grey-75);
  font-size: 17px;
  font-weight: 300;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  position: relative;
  padding: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #ffffff 0%, #f7f6fa 100%);
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.team-card::before,
.team-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: 1;
  animation: blob-drift 3.4s ease-in-out infinite;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(var(--bx, 20%), var(--by, 20%)); }
}
.team-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(155deg, #3C096C 0%, #5a0ea8 50%, #7712D8 100%);
}
.team-card:hover::before,
.team-card:hover::after {
  opacity: 1;
}

/* Card 1 */
.team-card:nth-child(1)::before {
  --bx: -25%; --by: 30%;
  width: 80%; height: 65%;
  background: rgba(174, 102, 242, 0.80);
  top: -20%; left: 25%;
  animation-duration: 3.3s;
}
.team-card:nth-child(1)::after {
  --bx: 20%; --by: -25%;
  width: 65%; height: 80%;
  background: rgba(60, 9, 108, 0.90);
  bottom: -15%; left: -10%;
  animation-duration: 4.2s;
  animation-delay: -1.1s;
}

/* Card 2 */
.team-card:nth-child(2)::before {
  --bx: -20%; --by: 35%;
  width: 75%; height: 60%;
  background: rgba(119, 18, 216, 0.85);
  top: -25%; right: -15%;
  animation-duration: 3.0s;
  animation-delay: -0.5s;
}
.team-card:nth-child(2)::after {
  --bx: 30%; --by: -30%;
  width: 55%; height: 75%;
  background: rgba(174, 102, 242, 0.75);
  bottom: 10%; left: -20%;
  animation-duration: 3.9s;
}

/* Card 3 */
.team-card:nth-child(3)::before {
  --bx: 30%; --by: 30%;
  width: 90%; height: 55%;
  background: rgba(60, 9, 108, 0.90);
  top: -20%; left: -20%;
  animation-duration: 3.6s;
  animation-delay: -0.8s;
}
.team-card:nth-child(3)::after {
  --bx: -25%; --by: -25%;
  width: 55%; height: 85%;
  background: rgba(174, 102, 242, 0.70);
  bottom: -20%; right: -15%;
  animation-duration: 3.0s;
}

/* Card 4 */
.team-card:nth-child(4)::before {
  --bx: -30%; --by: 20%;
  width: 70%; height: 70%;
  background: rgba(119, 18, 216, 0.80);
  top: 5%; right: -20%;
  animation-duration: 3.5s;
  animation-delay: -1.5s;
}
.team-card:nth-child(4)::after {
  --bx: 15%; --by: -35%;
  width: 65%; height: 65%;
  background: rgba(60, 9, 108, 0.95);
  bottom: -20%; left: 10%;
  animation-duration: 4.0s;
  animation-delay: -0.3s;
}

.team-card:hover .team-name { color: rgba(255,255,255,0.95); }
.team-card:hover .team-role { color: rgba(255,255,255,0.65); }
.team-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-75);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-photo .initials {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(119, 18, 216, 0.4);
  letter-spacing: -0.02em;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.team-info {
  position: relative;
  z-index: 2;
  padding: 20px 4px 0;
  background: none;
}
.team-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--grey-dark);
  letter-spacing: -0.01em;
}
.team-linkedin {
  display: flex;
  align-items: center;
  color: var(--grey-75);
  transition: color .2s ease;
  flex-shrink: 0;
}
.team-linkedin:hover { color: #0a66c2; }
.team-role {
  font-size: 13px;
  color: var(--grey-75);
  line-height: 1.4;
}

/* Jobs */
.jobs {
  padding: 80px 0 160px;
}
.jobs-header {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.jobs-header h3 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.jobs-header h3 em {
  font-style: normal;
  font-weight: 300;
  color: var(--ultra-violet);
}
.jobs-list {
  border-top: 1px solid var(--grey-10);
}
.job-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--grey-10);
  cursor: pointer;
  transition: padding .4s var(--ease);
}
.job-row:hover { padding-left: 24px; }
.job-row:hover .job-arrow { transform: translateX(6px); color: var(--ultra-violet); }
.job-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--grey-25);
  width: 40px;
}
.job-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--grey-dark);
  letter-spacing: -0.01em;
}
.job-tag {
  font-size: 12px;
  color: var(--grey-75);
  padding: 6px 12px;
  background: var(--grey-10);
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.job-arrow {
  font-size: 20px;
  color: var(--grey-25);
  transition: transform .3s var(--ease), color .3s var(--ease);
}

/* ============================================
   SUPPORTERS
   ============================================ */
.supporters {
  padding: 220px 0;
  text-align: left;
  background: radial-gradient(ellipse 140% 140% at 50% 50%, #2e1a5e 0%, #1c1040 60%, #160e38 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.supporters .eyebrow { color: rgba(255,255,255,0.7); }
.supporters .eyebrow::before { background: rgba(255,255,255,0.7); }

.supporters .showcase-blob--1 { background: #7712D8; opacity: 0.70; }
.supporters .showcase-blob--2 { background: #AE66F2; opacity: 0.55; }
.supporters .showcase-blob--3 { background: #3C096C; opacity: 0.80; }
.supporters .showcase-blob--4 { background: #7712D8; opacity: 0.60; }

.supporters::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #3C096C);
  pointer-events: none;
  z-index: 2;
}
.supporters-eyebrow {
  margin-bottom: 24px;
}
.supporters h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 64px;
  max-width: 22ch;
  color: rgba(255,255,255,0.7);
}
.supporters h3 em {
  font-style: normal;
  color: #fff;
}
.supporters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.supporter-slot {
  aspect-ratio: 3/1.5;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.6);
  border: 1px dashed var(--grey-25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-75);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   WORDMARK / FOOTER
   ============================================ */
.wordmark {
  padding: 200px 0 160px;
  overflow: hidden;
  line-height: 0.82;
  position: relative;
  isolation: isolate;
  background: #3C096C;
}
.wordmark-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  filter: brightness(1.3) saturate(0.55) contrast(0.95);
}
.wordmark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #3C096C 0%,
    #3C096C 30%,
    rgba(60, 9, 108, 0) 75%
  );
  pointer-events: none;
}
.wordmark .inner {
  position: relative;
  z-index: 2;
}
.wordmark .inner {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(120px, 28vw, 520px);
  color: #ffffff;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 100%);
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.wordmark .inner b {
  font-weight: 500;
  color: #ffffff;
}

.footer {
  background: transparent;
  border-top: none;
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -80px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  padding: 0 40px 48px;
}
.footer-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.footer-links a { color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: rgba(255,255,255,1); }
.footer small {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   TWEAK PANEL
   ============================================ */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-md);
  padding: 20px;
  width: 260px;
  font-family: var(--font-body);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
  display: none;
}
.tweaks.show { display: block; }
.tweaks h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--grey-dark);
  letter-spacing: 0;
}
.tweak-row {
  margin-bottom: 14px;
}
.tweak-row label {
  display: block;
  font-size: 11px;
  color: var(--grey-75);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-chip {
  flex: 1;
  padding: 6px 10px;
  font-size: 12px;
  border: 1px solid var(--grey-25);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--grey-dark);
  cursor: pointer;
  transition: all .2s var(--ease);
  text-align: center;
}
.tweak-chip.on {
  background: var(--grey-dark);
  color: white;
  border-color: var(--grey-dark);
}

/* Accent swatches */
.tweak-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease);
}
.tweak-swatch.on { border-color: var(--grey-dark); transform: scale(1.1); }

/* ============================================
   TWEAK VARIANTS
   ============================================ */
body[data-accent="royal"] {
  --ultra-violet: #2b3e6d;
  --steel-pink: #4560a0;
  --brand-gradient: linear-gradient(135deg, #2b3e6d 0%, #4560a0 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(43, 62, 109, 0.08) 0%, rgba(69, 96, 160, 0.06) 100%);
}
body[data-accent="mono"] {
  --ultra-violet: #3f3f3f;
  --steel-pink: #706e6e;
  --brand-gradient: linear-gradient(135deg, #3f3f3f 0%, #706e6e 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(63, 63, 63, 0.08) 0%, rgba(112, 110, 110, 0.06) 100%);
}

/* Editorial hero variant: left-aligned big, splits right */
body[data-hero="editorial"] .hero h1 {
  font-size: clamp(72px, 11vw, 180px);
  max-width: none;
  letter-spacing: -0.045em;
}
body[data-hero="editorial"] .hero-kicker { margin-bottom: 48px; }
body[data-hero="editorial"] .product-stage {
  background: linear-gradient(180deg, #fbfaff 0%, #f4f0fa 100%);
}

body[data-density="compact"] .hero { padding: 140px 0 40px; }
body[data-density="compact"] .stack-intro { padding: 80px 0 40px; }
body[data-density="compact"] .roadmap { padding: 100px 0; }
body[data-density="compact"] .team { padding: 100px 0 60px; }
body[data-density="compact"] .supporters { padding: 80px 0; }
body[data-density="compact"] .stack-card { min-height: 520px; height: 70vh; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: block; }

  .hero { padding: 140px 0 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .product-stage { height: 440px; margin-top: 60px; }

  .stack-card {
    grid-template-columns: 1fr;
    padding: 32px 32px 56px;
    height: auto;
    min-height: 60vh;
    gap: 24px;
  }
  .card-right { min-height: 220px; }
  .card-video-placeholder { min-height: 220px; }
  .ba-slider { min-height: 240px; }

  .split { grid-template-columns: 1fr; }
  .split-text { padding: 80px 24px; }
  .split.reverse .split-text { order: 1; padding: 80px 24px; }
  .split.reverse .split-media { order: 2; }
  .split-media { min-height: 50vh; }

  .roadmap { padding: 100px 0; }
  .roadmap-track { grid-template-columns: 1fr; gap: 48px; }
  .roadmap-line { display: none; }
  .roadmap-step { padding-top: 60px; }

  .team { padding: 100px 0 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-header { flex-direction: column; align-items: flex-start; }

  .jobs { padding: 40px 0 100px; }
  .job-row {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 24px 8px;
  }
  .job-tag { display: none; }

  .jobs { padding: 60px 0 100px; }
  .jobs-layout { grid-template-columns: 1fr; gap: 20px; }
  .jobs-overview { display: none; }
  .job-card { padding: 32px; min-height: 380px; }
  .jobs-header { flex-direction: column; align-items: flex-start; }

  .workflow { padding: 80px 0; }
  .workflow-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .workflow-step { padding: 24px; }

  .hero-v2 { min-height: 90vh; }
  .hero-content { padding: 140px 24px 60px; }
  .hero-stats { padding: 32px 24px; gap: 24px; grid-template-columns: repeat(2, 1fr); }

  .supporters-grid { grid-template-columns: repeat(3, 1fr); }
  .supporters { padding: 80px 0; }

  .wordmark { padding: 60px 0 160px; }
  .footer { margin-top: -130px; }
  .footer-inner { flex-direction: column; text-align: center; padding: 24px 24px 40px; justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* Tech split — reduce side padding at medium widths (grid stays 2-col until 700px) */
  .tech-split-section { padding: 0 24px; }

  .tweaks { width: 220px; bottom: 16px; right: 16px; padding: 16px; }
}

@media (max-width: 700px) {
  /* Hero product showcase — collapse to single column */
  .product-showcase { height: auto; flex-direction: column; align-items: stretch; }
  .showcase-grid--split { grid-template-columns: 1fr; padding: 0 24px; }
  .showcase-copy { padding-top: 90px; }
  .showcase-product--split { height: 50vh; }
  .showcase-model-viewer { min-height: unset; height: 100%; }
  .showcase-bottom { position: relative; bottom: auto; left: auto; right: auto; padding: 24px 24px 56px; justify-content: center; }

  /* Tech split — collapse to single column */
  .tech-split-grid { grid-template-columns: 1fr; }
  .tech-split-text { padding: 40px 0 20px; }
  /* aspect-ratio 8/9 = inverse of (16/9 ÷ 2), so the 200%-wide video covers exactly without vertical clipping */
  .tech-split-media { height: auto; padding: 0 0 20px; }
  .tech-split-media .split-media-inner { width: 100%; aspect-ratio: 8/9; height: auto; position: relative; }
  .tech-split-media .split-video-wrap { position: absolute; inset: 0; height: 100%; overflow: hidden; }
  .tech-split-cta { position: relative; bottom: auto; left: auto; transform: none; margin-top: 16px; margin-bottom: 48px; display: flex; justify-content: center; }
}

@media (max-width: 540px) {
  .workflow-grid { grid-template-columns: 1fr; gap: 12px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); }
  .team-name { font-size: 15px; }
}

@media (max-width: 480px) {
  .wordmark .inner {
    font-size: clamp(96px, 26vw, 520px);
    -webkit-mask-image: none;
    mask-image: none;
    padding-bottom: 0;
  }
}

/* Supporters split */
.supporters-split {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  position: relative;
  z-index: 3;
}
.supporters-left h3 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 24px;
  color: #fff;
}
.supporters-lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 46ch;
  font-weight: 300;
}
.supporters-cta {
  margin-top: 36px;
  background: #fff;
  color: #1a1040;
}
.supporters-cta:hover {
  background: var(--ultra-violet);
  color: #fff;
}
.supporters-right .supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .supporters-split { flex-direction: column; align-items: stretch; gap: 24px; }
  /* display:contents lets us reorder individual children without touching HTML */
  .supporters-left { display: contents; }
  .supporters-right { display: contents; }
  .supporters-eyebrow { order: 1; }
  .supporters-left > h3 { order: 2; margin-top: 0; }
  .supporters-lead { order: 3; margin-top: 0; max-width: none; }
  .supporters-stage { order: 4; }
  .supporters-cta { order: 5; margin-top: 0; align-self: center; }
}

/* Supporters stage + marquee */
.supporters-left,
.supporters-right {
  flex: 1;
  min-width: 0;
}
.supporters-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d1024;
}
.supporters-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.supporters-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 132px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.supporters-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  height: 100%;
  width: max-content;
  animation: supporterSlide 32s linear infinite;
}
.supporter-logo {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  white-space: nowrap;
}
@keyframes supporterSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Supporter logos in marquee */
.supporter-logo {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  color: var(--grey-dark);
  padding: 6px 12px;
  height: 100px;
  width: 130px;
  flex: 0 0 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.supporter-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
  image-rendering: auto;
}
.supporter-logo img.logo-bmwk { max-height: 80px; }
.supporter-logo img.logo-exist { max-height: 66px; }
.supporter-logo img.logo-eu { max-height: 80px; }

/* ============================================
   Language switcher (bottom-left, persistent)
   ============================================ */
.lang-switcher {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(43, 62, 109, 0.08);
  box-shadow: 0 4px 18px rgba(43, 62, 109, 0.08);
  opacity: 0.55;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.lang-switcher:hover { opacity: 1; }
.lang-switcher:focus-within { opacity: 1; }

.lang-btn {
  width: 28px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(43, 62, 109, 0.12);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms var(--ease), border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.on {
  border-color: var(--ultra-violet);
  box-shadow: 0 0 0 2px rgba(119, 18, 216, 0.18);
}
.lang-btn:not(.on) { opacity: 0.7; }
.lang-btn:focus-visible {
  outline: 2px solid var(--ultra-violet);
  outline-offset: 2px;
}
.lang-flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .lang-switcher {
    left: 12px;
    bottom: 12px;
    padding: 4px;
    gap: 4px;
  }
  .lang-btn { width: 24px; height: 17px; }
}



/* ───────────────────────────────────────────────────────────
   Job Detail Page  (job.html)
   ─────────────────────────────────────────────────────────── */

/* Page shell */
.jd-page {
  min-height: 100vh;
  background: var(--white);
  font-family: var(--font-body);
}

/* ── Main layout ─────────────────────────────────────── */
.jd-main {
  padding: 180px 48px 120px;
}

.jd-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 64px;
  align-items: start;
}

/* ── Left: job content ──────────────────────────────── */
.jd-content {
  min-width: 0;
}

/* Meta row */
.jd-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.jd-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-87);
}

.jd-type {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-65);
}
.jd-type::before {
  content: '·';
  margin-right: 8px;
  color: var(--grey-25);
}

/* Title */
.jd-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--grey-dark);
  margin: 0 0 24px;
}

/* Intro */
.jd-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-87);
  margin-bottom: 52px;
  font-weight: 400;
}
.jd-intro a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sections */
.jd-section {
  margin-bottom: 40px;
}

.jd-section h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--grey-dark);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(43, 62, 109, 0.1);
}

.jd-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jd-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-87);
  font-weight: 400;
}

.jd-section ul li::before {
  content: '•';
  color: var(--royal-blue);
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 0px;
  line-height: 1.65;
  opacity: 0.55;
}

/* Real Talk */
.jd-real-talk {
  background: linear-gradient(160deg, #ffffff 0%, #f3f5ff 100%);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.jd-real-talk-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--grey-dark);
  margin-bottom: 14px;
}

.jd-real-talk p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-87);
  margin: 0;
  font-weight: 400;
}

/* Apply CTA */
.jd-apply {
  padding-top: 40px;
}

.jd-disclaimer {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-65);
  margin-bottom: 16px;
}

.jd-apply-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-87);
  margin-bottom: 28px;
  font-weight: 400;
}

.jd-apply .btn {
  margin-bottom: 20px;
}

.jd-privacy-note {
  font-size: 12px;
  color: var(--text-50);
  margin: 0;
}
.jd-privacy-note a {
  color: var(--text-65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Right: Weitere Jobs sidebar ────────────────────── */
.jd-sidebar {
  position: sticky;
  top: 88px; /* below sticky nav */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jd-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-50);
  margin: 0 0 4px;
  padding: 0 4px;
}

.jd-tab-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: rgba(43, 62, 109, 0.09);
  padding: 2px 7px;
  border-radius: 5px;
  display: inline-block;
}

.jd-sidebar-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  text-align: left;
  background: linear-gradient(160deg, #ffffff 0%, #f3f5ff 100%);
  border-radius: var(--r-md);
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.jd-sidebar-card:hover {
  border-color: rgba(43, 62, 109, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(43, 62, 109, 0.08);
}

.jd-sidebar-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-dark);
  line-height: 1.3;
}

.jd-sidebar-card-location {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--text-65);
}

.jd-sidebar-card-arrow {
  font-size: 12px;
  color: var(--royal-blue);
  margin-top: 4px;
  font-weight: 500;
}

.jd-sidebar-initiative {
  display: block;
  text-align: center;
  margin-top: 8px;
  padding: 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(43, 62, 109, 0.2);
  font-size: 13px;
  color: var(--text-65);
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.jd-sidebar-initiative:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .jd-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .jd-sidebar {
    position: static;
    order: 1; /* below main content */
    flex-direction: column;
    gap: 8px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(43, 62, 109, 0.1);
  }
  .jd-sidebar-card {
    width: 100%;
  }
  .jd-sidebar-initiative {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .jd-main {
    padding: 120px 20px 80px;
  }
  .jd-real-talk {
    padding: 20px;
  }
}


/* ───────────────────────────────────────────────────────────
   Legal Pages  (/legal/impressum|datenschutz|agb/)
   ─────────────────────────────────────────────────────────── */

.legal-page {
  min-height: 100vh;
  background: var(--white);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 180px 48px 100px;
}

/* Outer wrapper matches jd-layout container — left-aligns content */
.legal-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Keep text at a comfortable reading width, left-aligned */
.legal-title,
.legal-section {
  max-width: 740px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--grey-dark);
  margin: 0 0 56px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--grey-dark);
  margin: 0 0 14px;
}

.legal-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-87);
  font-weight: 400;
  margin: 0 0 10px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-87);
}

.legal-list li::before {
  content: '•';
  color: var(--royal-blue);
  flex-shrink: 0;
  opacity: 0.5;
}


.legal-todo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 5px;
  padding: 1px 8px 2px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .legal-main {
    padding: 120px 20px 80px;
  }
  .legal-title,
  .legal-section {
    max-width: 100%;
  }
}

/* ───────────────────────────────────────────────────────────
   Mini Footer  (subpages — no wordmark / video)
   ─────────────────────────────────────────────────────────── */

.mini-footer {
  background: var(--white);
  border-top: 1px solid rgba(43, 62, 109, 0.08);
  padding: 24px 48px;
}

.mini-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-footer small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-65);
}

.mini-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mini-footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-87);
  text-decoration: none;
  transition: color 0.15s;
}

.mini-footer-links a:hover {
  color: var(--grey-dark);
}

@media (max-width: 640px) {
  .mini-footer {
    padding: 20px;
  }
  .mini-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ───────────────────────────────────────────────────────────
   Waitlist Page  (/waitlist/)
   ─────────────────────────────────────────────────────────── */

.wl-page {
  min-height: 100vh;
  background: var(--white);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
}

/* ── Two-column layout ───────────────────────────────────── */
.wl-main {
  flex: 1;
  position: relative;
  min-height: calc(100vh - 64px - 57px);
  display: flex;
  align-items: stretch;
}

/* ── Left: product visual — absolutely placed, never clipped ── */
.wl-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.wl-product-img {
  width: 115%;
  height: auto;
  object-fit: contain;
  user-select: none;
  display: block;
  transform: translate(-5%, -2%);
  transform-origin: top left;
  filter: drop-shadow(0 32px 64px rgba(43, 62, 109, 0.10));
}

/* ── Right: form — floats on the right half ── */
.wl-form-wrap {
  margin-left: auto;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px 80px 32px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.wl-form {
  width: 100%;
  max-width: 480px;
}

.wl-eyebrow {
  font-size: 15px;
  color: var(--text-50);
  margin: 0 0 8px;
  font-weight: 400;
}

.wl-wordmark {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--grey-dark);
  line-height: 1;
  margin-bottom: 40px;
}
.wl-dent {
  font-family: var(--font-display);
  font-weight: 300;
}
.wl-son {
  font-family: var(--font-display);
  font-weight: 500;
}

/* Fields */
.wl-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.wl-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(43, 62, 109, 0.15);
  border-radius: var(--r-sm);
  background: var(--grey-10);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-dark);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  box-sizing: border-box;
}
.wl-input::placeholder { color: var(--text-50); }
.wl-input:focus {
  border-color: var(--royal-blue);
  background: var(--white);
}
.wl-input:disabled { opacity: 0.6; }

/* Consent checkbox */
.wl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.wl-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--royal-blue);
  cursor: pointer;
}
.wl-consent span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-65);
}
.wl-consent a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Error */
.wl-error {
  font-size: 13px;
  color: #c0392b;
  margin: -8px 0 16px;
  background: #fff0f0;
  border-radius: 8px;
  padding: 8px 12px;
}

/* Submit button */
.wl-submit {
  width: 100%;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  padding: 14px 24px;
}

/* Loading spinner */
.wl-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: wl-spin 0.7s linear infinite;
}
@keyframes wl-spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.wl-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}
.wl-success-icon {
  color: var(--ultra-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.wl-success h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--grey-dark);
  margin: 0 0 8px;
}
.wl-success p {
  font-size: 16px;
  color: var(--text-65);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .wl-main {
    flex-direction: column;
    min-height: unset;
  }

  /* Image: full width, flush left, not clipped */
  .wl-visual {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .wl-product-img {
    width: 100%;
    transform: none;
    filter: drop-shadow(0 16px 32px rgba(43, 62, 109, 0.12));
  }

  /* Form: full width below the image */
  .wl-form-wrap {
    width: 100%;
    padding: 40px 24px 60px;
    justify-content: flex-start;
  }
  .wl-wordmark {
    font-size: clamp(44px, 12vw, 72px);
  }
}
