/* ============================================================
   jobtastic — Design System
   Deep dark navy + bone white, electric blue → violet → magenta gradients on near-black navy,
   gold reserved for the DRX award.
   ============================================================ */

/* self-hosted variable fonts — no Google CDN, no FOUT */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("assets/fonts/inter-tight-var.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0b0a12;
  --navy-2: #14131e;
  --navy-3: #222131;
  --bone: #f4f1ea;
  --bone-dim: rgba(244, 241, 234, 0.62);
  --blue: #f73478;
  --purple: #7a2bea;
  --gold: #e8b84b;
  --line: rgba(244, 241, 234, 0.1);
  --display: "Inter Tight", "Inter", sans-serif;
  --body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: var(--navy); }

h1, h2, h3, .kinetic-word, .footer-title {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
/* only the kinetic manifesto stays loud */
.kinetic-word { font-weight: 900; text-transform: uppercase; }

em { font-style: normal; }

/* signature gradient text: logo palette — orange -> pink -> violet */
.grad-text,
.hero-title em,
.section-title em,
.footer-glow,
.stat-num,
.kinetic-word.accent-blue,
.kinetic-word.accent-purple {
  background: linear-gradient(95deg, #fc7132 0%, #f73478 48%, #7a2bea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 10, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand-logo { height: 30px; display: block; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  letter-spacing: 0.02em;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(100deg, #fc7132 0%, #f73478 50%, #7a2bea 108%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(247, 52, 120, 0.4), 0 0 60px rgba(122, 43, 234, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 40px rgba(247, 52, 120, 0.55), 0 0 90px rgba(252, 113, 50, 0.3);
}
.btn-ghost {
  color: var(--bone);
  border: 1px solid rgba(244, 241, 234, 0.3);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-nav { padding: 11px 22px; font-size: 13px; }

/* ---------- Hero ---------- */
/* just a short pinned stretch: one scroll of scrub, then the page moves on */
.hero { height: 150vh; position: relative; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* dark scrim behind the headline so it lifts off the busy dashboard animation */
.hero-scrim {
  position: absolute;
  z-index: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 92vw);
  height: min(760px, 82vh);
  pointer-events: none;
  background: radial-gradient(ellipse 58% 52% at 50% 50%, rgba(6, 5, 12, 0.92) 0%, rgba(6, 5, 12, 0.8) 38%, rgba(6, 5, 12, 0.45) 62%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  margin-bottom: 3vh;
  background: rgba(11, 10, 18, 0.4);
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
.hero-title {
  font-size: clamp(42px, 7.6vw, 128px);
  max-width: 16ch;
  margin: 0 auto 2.5vh;
  color: var(--bone);
  /* soft black halo lifts the white words off the animation */
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.85), 0 0 90px rgba(0, 0, 0, 0.5);
}
/* gradient word keeps its colour but no glow — a black text-shadow would bleed
   through its transparent fill, so it simply carries none */
.hero-title em {
  text-shadow: none;
  filter: none;
}
.hero-subtitle {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2.9vw, 46px);
  color: #fff;
  filter: drop-shadow(0 0 26px rgba(122, 43, 234, 0.45));
  margin-bottom: 3vh;
}
.hero-manifesto {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--bone-dim);
  max-width: 34ch;
  margin: 0 auto 4vh;
  min-height: 1.6em;
}
.type-caret {
  display: inline-block;
  width: 2px; height: 1.1em;
  background: var(--blue);
  vertical-align: text-bottom;
  margin-left: 3px;
  animation: caret 0.9s step-end infinite;
}
@keyframes caret { 50% { opacity: 0; } }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span {
  width: 1px; height: 44px;
  background: linear-gradient(var(--blue), transparent);
  animation: hint 1.8s ease infinite;
}
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { opacity: 0; } }

/* ---------- Kinetic manifesto ---------- */
.kinetic { height: 520vh; position: relative; background: var(--navy); }
.kinetic-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kinetic-label {
  position: absolute;
  top: 12vh;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple);
}
.kinetic-stage { position: relative; width: 100%; text-align: center; }
.kinetic-word {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(3.2);
  width: 100%;
  padding: 0 4vw;
  font-size: clamp(44px, 9.5vw, 160px);
  color: var(--bone);
  opacity: 0;
  filter: blur(14px);
  transition: transform 0.45s cubic-bezier(0.16, 1.2, 0.3, 1), opacity 0.3s ease, filter 0.35s ease;
  pointer-events: none;
}
.kinetic-word.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}
/* accent words rely on the gradient fill alone — the blur animation owns `filter` */
.kinetic-progress {
  position: absolute;
  bottom: 10vh;
  display: flex;
  gap: 12px;
}
.kinetic-progress span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.18);
  transition: background 0.3s, box-shadow 0.3s;
}
.kinetic-progress span.is-on {
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

/* ---------- Social proof / marquee ---------- */
.proof {
  padding: 16vh 0 14vh;
  border-top: 1px solid var(--line);
  background: var(--navy-2);
  text-align: center;
  overflow: hidden;
}
.proof-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-bottom: 8vh;
}
.award-img {
  width: clamp(110px, 13vw, 170px);
  filter: drop-shadow(0 0 34px rgba(232, 184, 75, 0.35));
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: clamp(14px, 1.7vw, 19px);
  color: var(--gold);
  border: 1px solid rgba(232, 184, 75, 0.45);
  background: linear-gradient(120deg, rgba(232, 184, 75, 0.12), rgba(232, 184, 75, 0.04));
  border-radius: 999px;
  padding: 14px 30px;
  box-shadow: 0 0 40px rgba(232, 184, 75, 0.14), inset 0 0 24px rgba(232, 184, 75, 0.06);
}
.award-star { font-size: 1.2em; }
.proof-badges {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.04);
  border-radius: 999px;
  padding: 12px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.google-badge:hover {
  border-color: rgba(247, 52, 120, 0.5);
  box-shadow: 0 0 30px rgba(247, 52, 120, 0.15);
  transform: translateY(-2px);
}
.gb-logo { width: 30px; height: 30px; flex: 0 0 auto; }
.gb-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.gb-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.gb-rating { font-size: 17px; font-weight: 800; color: var(--bone); }
.gb-stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; text-shadow: 0 0 12px rgba(232, 184, 75, 0.5); }
.proof-sub {
  color: var(--bone-dim);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 5vh;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 16px; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding-right: 16px;
  animation: marquee 40s linear infinite;
}
.marquee-track.marquee-rev { animation-direction: reverse; animation-duration: 46s; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* coloured aurora shimmer behind the logo rows — gives the frosted glass life */
.marquee-wrap { position: relative; }
.marquee-wrap::before {
  content: "";
  position: absolute;
  inset: -30px 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 120% at 14% 50%, rgba(252, 113, 50, 0.30), transparent 70%),
    radial-gradient(40% 130% at 50% 50%, rgba(247, 52, 120, 0.26), transparent 72%),
    radial-gradient(42% 130% at 86% 50%, rgba(122, 43, 234, 0.34), transparent 72%);
  filter: blur(24px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-wrap .marquee { position: relative; z-index: 1; }

/* frosted-glass (Milchglas) chips — light, milky, translucent, logos stay legible */
.client-logo {
  flex: 0 0 auto;
  height: clamp(80px, 8vw, 96px);
  width: clamp(180px, 20vw, 220px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(248, 246, 240, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.client-logo:hover {
  transform: translateY(-3px);
  background: rgba(252, 251, 248, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.client-logo img {
  max-height: 48px;
  max-width: 82%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Sections shared ---------- */
.section-head {
  max-width: 1100px;
  margin: 0 auto 8vh;
  padding: 0 clamp(20px, 4vw, 56px);
}
.section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(38px, 6.4vw, 92px);
  color: var(--bone);
}
.section-title em { filter: drop-shadow(0 0 26px rgba(122, 43, 234, 0.35)); }
.section-sub {
  margin-top: 26px;
  max-width: 640px;
  color: var(--bone-dim);
  font-size: clamp(16px, 1.6vw, 19px);
}

/* ---------- Bento grid ---------- */
.blueprint {
  padding: 16vh 0;
  background: var(--navy);
  border-top: 1px solid var(--line);
}
.bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.bento-card {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  min-height: 380px;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(160deg, var(--navy-3), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.3), rgba(122, 43, 234, 0.14) 45%, rgba(176, 107, 255, 0.24)) border-box;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  will-change: transform;
}
.bento-wide { grid-column: span 3; }
.bento-card:hover, .bento-card.is-active {
  background:
    linear-gradient(160deg, var(--navy-3), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.75), rgba(122, 43, 234, 0.55) 45%, rgba(176, 107, 255, 0.65)) border-box;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(247, 52, 120, 0.1);
}
/* mouse spotlight — a soft light that follows the cursor across the card */
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 50%), rgba(122, 43, 234, 0.16), transparent 45%);
}
.bento-card:hover::after { opacity: 1; }
.bento-body {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(transparent, rgba(11, 10, 18, 0.88) 34%);
  width: 100%;
}
.bento-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--purple);
  letter-spacing: 0.2em;
}
.bento-body h3 {
  font-size: clamp(21px, 2.2vw, 29px);
  margin: 12px 0 12px;
}
.bento-body p { color: var(--bone-dim); font-size: 15px; max-width: 520px; }
.bento-body strong { color: var(--bone); }
.bento-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 15px;
}
.tag-blue { color: var(--blue); border: 1px solid rgba(247, 52, 120, 0.4); background: rgba(247, 52, 120, 0.07); }
.tag-purple { color: #c89bfa; border: 1px solid rgba(122, 43, 234, 0.45); background: rgba(122, 43, 234, 0.08); }

/* Hover reveal layer (Clip 2 substitute scenes) */
.bento-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover .bento-reveal,
.bento-card.is-active .bento-reveal,
.bento-card:focus-visible .bento-reveal {
  opacity: 1;
  transform: scale(1);
}

/* Scene: Social Ads — targeting rings + glowing nodes */
.scene-ads { background: radial-gradient(circle at 65% 35%, rgba(122, 43, 234, 0.25), transparent 60%); }
.ads-ring {
  position: absolute;
  border: 1px solid rgba(247, 52, 120, 0.4);
  border-radius: 50%;
  left: 65%; top: 35%;
  transform: translate(-50%, -50%);
  animation: ringGrow 3s ease-out infinite;
}
.ads-ring.r1 { width: 90px; height: 90px; }
.ads-ring.r2 { width: 90px; height: 90px; animation-delay: 1s; }
.ads-ring.r3 { width: 90px; height: 90px; animation-delay: 2s; }
@keyframes ringGrow {
  from { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
  to { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}
.ads-node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  animation: nodeFloat 4s ease-in-out infinite;
}
.ads-node.n1 { left: 20%; top: 30%; }
.ads-node.n2 { left: 40%; top: 15%; animation-delay: 0.6s; background: var(--purple); box-shadow: 0 0 14px var(--purple); }
.ads-node.n3 { left: 75%; top: 60%; animation-delay: 1.2s; }
.ads-node.n4 { left: 55%; top: 45%; animation-delay: 1.8s; background: var(--purple); box-shadow: 0 0 14px var(--purple); }
.ads-node.n5 { left: 30%; top: 65%; animation-delay: 2.4s; }
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(-16px); opacity: 0.5; }
}

/* Scene: Express application — phone form filling itself */
.scene-express { background: radial-gradient(circle at 50% 30%, rgba(247, 52, 120, 0.14), transparent 65%); }
.express-phone {
  position: absolute;
  left: 50%; top: 14%;
  transform: translateX(-50%);
  width: 42%;
  min-width: 120px;
  padding: 18px 14px 40px;
  border: 1px solid rgba(244, 241, 234, 0.25);
  border-radius: 18px;
  background: rgba(20, 19, 30, 0.8);
}
.ex-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(244, 241, 234, 0.16);
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.ex-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  animation: fillBar 3.2s ease infinite;
}
.ex-bar.b2::after { animation-delay: 0.5s; }
.ex-bar.b3::after { animation-delay: 1s; }
@keyframes fillBar {
  0% { transform: scaleX(0); }
  40%, 85% { transform: scaleX(1); }
  100% { transform: scaleX(1); opacity: 0; }
}
.ex-check {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
  font-weight: 800;
  text-shadow: 0 0 12px var(--blue);
  animation: pulse 3.2s ease infinite;
}
.express-timer {
  position: absolute;
  right: 12%; top: 20%;
  font-family: var(--display);
  font-size: 26px;
  color: var(--blue);
  text-shadow: 0 0 18px rgba(247, 52, 120, 0.6);
}

/* Scene: WhatsApp chat bubbles — muted authentic WhatsApp green */
.scene-whatsapp {
  background: radial-gradient(circle at 40% 30%, rgba(37, 211, 102, 0.09), transparent 60%);
  padding: 26px 18px;
}
.wa-bubble {
  position: relative;
  max-width: 78%;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  opacity: 0;
  animation: bubblePop 4.8s ease infinite;
}
.wa-bubble.in { background: rgba(244, 241, 234, 0.12); color: var(--bone); border-bottom-left-radius: 4px; }
.wa-bubble.out {
  background: rgba(37, 211, 102, 0.22);
  color: #d9f7e5;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.wa-bubble.w2 { animation-delay: 0.9s; }
.wa-bubble.w3 { animation-delay: 1.8s; }
@keyframes bubblePop {
  0% { opacity: 0; transform: translateY(14px) scale(0.85); }
  10%, 80% { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 0; }
}

/* Scene: Kanban dashboard — card flies to "Eingestellt" */
.scene-dashboard {
  display: flex;
  gap: 10px;
  padding: 24px 18px 40%;
}
.kb-col {
  flex: 1;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 12px;
  background: rgba(20, 19, 30, 0.65);
  padding: 10px;
}
.kb-col.kb-hired { border-color: rgba(247, 52, 120, 0.45); }
.kb-head {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.kb-hired .kb-head { color: var(--blue); }
.kb-card {
  height: 26px;
  border-radius: 7px;
  background: rgba(244, 241, 234, 0.14);
  margin-bottom: 8px;
}
.kb-card.c4 {
  background: rgba(247, 52, 120, 0.35);
  box-shadow: 0 0 14px rgba(247, 52, 120, 0.4);
}
.kb-fly { animation: flyIn 3.6s cubic-bezier(0.2, 0.9, 0.3, 1.1) infinite; }
@keyframes flyIn {
  0% { transform: translateX(-220%) translateY(10px); opacity: 0; }
  30%, 85% { transform: translateX(0) translateY(0); opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- Success / stats / reviews ---------- */
.success {
  padding: 16vh 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(122, 43, 234, 0.1), transparent),
    var(--navy-2);
  border-top: 1px solid var(--line);
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto 9vh;
  padding: 0 clamp(20px, 4vw, 56px);
}
.stat {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 34px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(11, 10, 18, 0.72), rgba(11, 10, 18, 0.72)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.28), rgba(122, 43, 234, 0.12) 50%, rgba(176, 107, 255, 0.22)) border-box;
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 62px);
  filter: drop-shadow(0 0 22px rgba(122, 43, 234, 0.4));
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.review-card {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 30px;
  background:
    linear-gradient(160deg, var(--navy-3), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.22), rgba(122, 43, 234, 0.1) 50%, rgba(176, 107, 255, 0.18)) border-box;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f73478, #7a2bea 60%, #b06bff);
  box-shadow: 0 0 18px rgba(122, 43, 234, 0.35);
}
.stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 19px;
  text-shadow: 0 0 16px rgba(232, 184, 75, 0.5);
}
.review-card blockquote { color: var(--bone); font-size: 15.5px; }
.review-card figcaption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Benefits: Apple-style swipe rail ---------- */
.benefits {
  position: relative;
  overflow: hidden;
  padding: 16vh 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(247, 52, 120, 0.07), transparent),
    var(--navy);
  border-top: 1px solid var(--line);
}
.benefits .section-head { position: relative; }
/* arrow controls sit top-right of the heading (desktop) */
.rail-controls {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 4px;
}
.rail-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bone);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(20, 19, 30, 0.9), rgba(20, 19, 30, 0.9)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.4), rgba(122, 43, 234, 0.3) 60%, rgba(176, 107, 255, 0.4)) border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.rail-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rail-btn:hover { transform: scale(1.08); box-shadow: 0 0 24px rgba(122, 43, 234, 0.4); }
.rail-btn:disabled { opacity: 0.3; cursor: default; transform: none; box-shadow: none; }

/* the scroll-snap rail */
.benefits-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px clamp(20px, 4vw, 56px) 30px;
  /* peek the next card, keep left edge aligned to the container */
  scroll-padding-left: clamp(20px, 4vw, 56px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.benefits-rail::-webkit-scrollbar { display: none; }
.benefits-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.benefits-rail.is-dragging .benefit { pointer-events: none; }
.benefits-rail:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 18px; }

.benefit {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(260px, 30%, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 28px;
  min-height: 290px;
  border-radius: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(165deg, rgba(28, 27, 42, 0.92), rgba(17, 16, 26, 0.92)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.28), rgba(122, 43, 234, 0.12) 50%, rgba(176, 107, 255, 0.22)) border-box;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
}
/* top light sheen */
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
/* soft corner glow */
.benefit::after {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 43, 234, 0.22), transparent 65%);
  opacity: 0.6;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(122, 43, 234, 0.12);
  background:
    linear-gradient(165deg, rgba(34, 32, 52, 0.95), rgba(20, 19, 30, 0.95)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.6), rgba(122, 43, 234, 0.42) 50%, rgba(176, 107, 255, 0.55)) border-box;
}
.benefit:hover::after { opacity: 1; }

/* ghost number, top-right */
.b-num {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.12);
  pointer-events: none;
  user-select: none;
}
.b-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(247, 52, 120, 0.22), rgba(122, 43, 234, 0.22));
  border: 1px solid rgba(247, 52, 120, 0.25);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.b-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { font-size: 19px; letter-spacing: -0.015em; margin-top: 2px; }
.benefit p { font-size: 14.5px; color: var(--bone-dim); }
/* the two conversion anchors get the loud treatment */
.benefit-featured {
  background:
    linear-gradient(165deg, rgba(30, 26, 54, 0.95), rgba(20, 17, 34, 0.95)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.75), rgba(122, 43, 234, 0.6) 50%, rgba(176, 107, 255, 0.7)) border-box;
  box-shadow: 0 0 50px rgba(122, 43, 234, 0.2);
}
.benefit-featured::after {
  background: radial-gradient(circle, rgba(247, 52, 120, 0.3), transparent 65%);
  opacity: 1;
}
.benefit-featured .b-icon {
  background: linear-gradient(135deg, #f73478, #7a2bea);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 24px rgba(247, 52, 120, 0.45);
}

/* progress track + swipe hint */
.rail-progress {
  max-width: 1240px;
  margin: 6px auto 0;
  padding: 0 clamp(20px, 4vw, 56px);
  height: 3px;
}
.rail-progress i {
  display: block;
  height: 3px;
  width: 22%;
  min-width: 40px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f73478, #7a2bea);
  transition: margin-left 0.15s ease;
}
.rail-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
@media (min-width: 861px) { .rail-hint { display: none; } }
@media (max-width: 860px) { .rail-controls { display: none; } }

/* ---------- Editorial compare ---------- */
.editorial { padding: 16vh 0; border-top: 1px solid var(--line); }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.compare-col { border-radius: 24px; padding: clamp(28px, 3.4vw, 48px); }
.compare-col h3 { font-size: clamp(22px, 2.4vw, 32px); margin-bottom: 28px; }
.compare-col ul { list-style: none; }
.compare-col li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone-dim);
  font-size: 16px;
}
.compare-col li strong { color: var(--bone); }
.compare-old {
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.02);
  filter: saturate(0.4);
}
.compare-old h3 { color: rgba(244, 241, 234, 0.45); }
.compare-old .x { color: #ff5470; font-weight: 800; }
.compare-new {
  border: 1px solid rgba(247, 52, 120, 0.4);
  background: linear-gradient(160deg, rgba(247, 52, 120, 0.06), rgba(122, 43, 234, 0.06));
  box-shadow: 0 0 60px rgba(247, 52, 120, 0.07);
}
.compare-new h3 { color: var(--blue); }
.c { color: var(--blue); font-weight: 800; }
.compare-new .btn { margin-top: 30px; }

/* ---------- Contact form ---------- */
.contact {
  padding: 16vh 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(122, 43, 234, 0.12), transparent),
    var(--navy-2);
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  align-items: start;
}
.contact-perks { list-style: none; margin-top: 30px; }
.contact-perks li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  color: var(--bone-dim);
}
.lead-form {
  position: relative;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: clamp(26px, 3vw, 44px);
  background:
    linear-gradient(rgba(11, 10, 18, 0.82), rgba(11, 10, 18, 0.82)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.35), rgba(122, 43, 234, 0.16) 45%, rgba(176, 107, 255, 0.3)) border-box;
  backdrop-filter: blur(8px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  padding: 14px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(247, 52, 120, 0.15);
}
.field input.is-invalid { border-color: #ff5470; }
.form-error { color: #ff5470; font-size: 14px; margin-bottom: 14px; }
.btn-submit { width: 100%; font-size: 16px; padding: 17px; }
.form-privacy {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.4);
  text-align: center;
}
.form-success {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(11, 10, 18, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 30px;
  z-index: 3;
}
.form-success[hidden] { display: none; }
.success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  background: var(--blue);
  box-shadow: 0 0 40px rgba(247, 52, 120, 0.6);
}
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--bone-dim); }

/* ---------- Mega footer ---------- */
.mega-footer {
  padding: 18vh clamp(20px, 4vw, 56px) 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122, 43, 234, 0.14), transparent),
    var(--navy);
  border-top: 1px solid var(--line);
}
.footer-kicker {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 3vh;
}
.footer-title {
  font-size: clamp(46px, 9vw, 150px);
  color: var(--bone);
  margin-bottom: 5vh;
}
.footer-glow {
  filter: drop-shadow(0 0 40px rgba(122, 43, 234, 0.55)) drop-shadow(0 0 110px rgba(247, 52, 120, 0.3));
}
.btn-mega {
  font-size: clamp(16px, 1.8vw, 21px);
  padding: 22px 54px;
  animation: megaGlow 2.6s ease-in-out infinite;
}
@keyframes megaGlow {
  0%, 100% { box-shadow: 0 0 26px rgba(247, 52, 120, 0.4), 0 0 70px rgba(247, 52, 120, 0.15); }
  50% { box-shadow: 0 0 50px rgba(247, 52, 120, 0.7), 0 0 130px rgba(247, 52, 120, 0.3); }
}
.footer-meta {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1240px;
  margin: 12vh auto 0;
  padding-top: 50px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.footer-logo { height: 26px; margin-bottom: 16px; }
.footer-brand p { color: var(--bone-dim); font-size: 14px; }
.footer-meta h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
  margin-bottom: 14px;
}
.footer-meta a {
  display: block;
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 15px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-meta a:hover { color: var(--blue); }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.social-icons svg {
  width: 18px; height: 18px;
  fill: #fff;
}
.social-icons a:hover {
  border-color: var(--purple);
  box-shadow: 0 0 18px rgba(122, 43, 234, 0.45);
  transform: translateY(-2px);
}
.footer-copyright {
  margin-top: 60px;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.3);
}

/* ---------- Video demo ---------- */
.video-section {
  padding: 14vh 0;
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}
.video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.video-frame iframe,
.video-facade {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(var(--navy-3), var(--navy-3)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.5), rgba(122, 43, 234, 0.35) 50%, rgba(176, 107, 255, 0.45)) border-box;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(122, 43, 234, 0.18);
}
/* YouTube facade: local thumbnail, iframe loads only after click */
.video-facade {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.video-facade:hover img { transform: scale(1.03); filter: brightness(1.08); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 43, 234, 0.92);
  box-shadow: 0 0 0 10px rgba(122, 43, 234, 0.25), 0 10px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.3), background 0.3s;
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.1); background: #8a3af0; }
.video-play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.video-note {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.75);
  background: rgba(11, 10, 18, 0.7);
  border-radius: 999px;
  padding: 6px 14px;
  backdrop-filter: blur(6px);
}

/* ---------- Product: scroll-driven dashboard tour (Lead-Table style) ---------- */
.product {
  height: 420vh;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(122, 43, 234, 0.12), transparent),
    var(--navy);
  border-top: 1px solid var(--line);
}
.product-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 12vh 0 8vh;
  overflow: hidden;
}

/* tour stepper */
.tour-steps {
  list-style: none;
  margin: 26px 0 30px;
}
.tour-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  margin-left: -14px;
  border-radius: 14px;
  opacity: 0.38;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.tour-steps li.is-active {
  opacity: 1;
  background: rgba(122, 43, 234, 0.12);
}
.tour-steps li.is-done { opacity: 0.7; }
.ts-num {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tour-steps li.is-active .ts-num {
  background: #7a2bea;
  border-color: #7a2bea;
  color: #fff;
  box-shadow: 0 0 16px rgba(122, 43, 234, 0.6);
}
.tour-steps li.is-done .ts-num {
  background: rgba(247, 52, 120, 0.2);
  border-color: rgba(247, 52, 120, 0.6);
  color: var(--blue);
}
.tour-steps strong { color: var(--bone); font-size: 16px; }
.tour-steps p { color: var(--bone-dim); font-size: 14px; margin-top: 2px; }

/* tour elements inside the mock — hidden until their step */
[data-show-from] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-show-from].is-on { opacity: 1; transform: none; }
.wa-line[data-delay="1"].is-on { transition-delay: 0.35s; }
.wa-line[data-delay="2"].is-on { transition-delay: 0.7s; }

.lead-new {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--bone);
  border: 1px solid rgba(247, 52, 120, 0.5);
  background: rgba(247, 52, 120, 0.1);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.lead-new[data-show-from] { transform: translateX(60px); }
.lead-new[data-show-from].is-on { transform: none; }
.ln-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 1.6s ease infinite;
}
.ln-time { margin-left: auto; color: var(--blue); font-weight: 700; font-size: 11px; }

.pill-quali { background: #22c55e; }

.hired-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: #d9f7e5;
  border: 1px solid rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.14);
  border-radius: 10px;
  padding: 9px 12px;
}
.hired-banner strong { color: #4ade80; }
.hired-banner[data-show-from].is-on { box-shadow: 0 0 24px rgba(34, 197, 94, 0.25); }
.product-inner {
  display: grid;
  /* minmax(0,…) keeps the long headline from squeezing the dashboard mock */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  align-items: center;
}
.product-copy .section-title { font-size: clamp(30px, 3.7vw, 52px); }
.product-perks { list-style: none; margin: 30px 0 34px; }
.product-perks li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  color: var(--bone-dim);
  border-bottom: 1px solid var(--line);
}
.product-perks strong { color: var(--bone); font-weight: 600; }

.dash-mock {
  position: relative;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(34, 33, 49, 0.9), rgba(20, 19, 30, 0.95)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.45), rgba(122, 43, 234, 0.25) 50%, rgba(176, 107, 255, 0.4)) border-box;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(122, 43, 234, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dash-search {
  flex: 1;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  background: rgba(11, 10, 18, 0.5);
}
.dash-search::before { content: "⌕ "; }
.dash-new {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #7a2bea;
  border-radius: 10px;
  padding: 9px 16px;
  box-shadow: 0 4px 16px rgba(122, 43, 234, 0.4);
}
.pc-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(11, 10, 18, 0.55);
}
.pc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--bone);
  margin-bottom: 10px;
}
.pc-gear { color: rgba(244, 241, 234, 0.35); font-size: 14px; }
.pc-pills { display: flex; gap: 8px; margin-bottom: 12px; }
.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  color: #fff;
}
.pill-red { background: #e5484d; }
.pill-cyan { background: #f73478; }
.pc-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--bone-dim);
  padding: 5px 0;
}
.pc-row span:last-child { color: var(--bone); font-weight: 600; }
.pc-badge {
  background: rgba(244, 241, 234, 0.12);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 12px;
}
.pc-bar {
  display: flex;
  gap: 3px;
  height: 7px;
  margin-top: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.pc-bar i { display: block; height: 100%; border-radius: 2px; }
.pc-bar .s1 { width: 56%; background: #f73478; }
.pc-bar .s2 { width: 17%; background: #7a2bea; }
.pc-bar .s3 { width: 11%; background: #f59e0b; }
.pc-bar .s4 { width: 9%; background: #22c55e; }
.pc-bar .s5 { width: 7%; background: #e5484d; }

.wa-mock {
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(11, 10, 18, 0.55);
}
.wa-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wa-title { font-size: 13px; font-weight: 700; color: var(--bone); }
.wa-live { font-size: 11px; font-weight: 700; color: #25d366; }
.wa-line {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  max-width: 85%;
}
.wa-line.in { background: rgba(244, 241, 234, 0.1); color: var(--bone); border-bottom-left-radius: 4px; }
.wa-line.out {
  background: rgba(37, 211, 102, 0.2);
  color: #d9f7e5;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

/* ============================================================
   Award layer: preloader, line-mask reveals, label roll,
   footer reveal, side signaletics, reversed marquee
   ============================================================ */

/* preloader curtain */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.25, 1);
}
.preloader.is-done { transform: translateY(-101%); }
.pl-icon {
  width: 60px;
  animation: plPulse 1.3s ease-in-out infinite;
}
@keyframes plPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.75; }
}
.pl-bar {
  width: 180px;
  height: 2px;
  border-radius: 2px;
  background: rgba(244, 241, 234, 0.12);
  overflow: hidden;
}
.pl-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f73478, #7a2bea);
  transition: width 0.3s ease;
}
body.is-loading { overflow: hidden; }

/* hero entrance stagger after the curtain lifts */
.hero-content > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-content > *:nth-child(2) { transition-delay: 0.1s; }
.hero-content > *:nth-child(3) { transition-delay: 0.22s; }
.hero-content > *:nth-child(4) { transition-delay: 0.34s; }
.hero-content > *:nth-child(5) { transition-delay: 0.46s; }
body.is-ready .hero-content > * { opacity: 1; transform: none; }

/* line-mask reveals: headline lines slide up from behind a mask */
.line { display: block; overflow: hidden; }
.line-inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rv.is-in .line-inner { transform: none; }

/* button label roll */
.btn .roll {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
.roll-a, .roll-b {
  display: block;
  transition: transform 0.35s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.roll-b {
  position: absolute;
  inset: 0;
  transform: translateY(110%);
}
.btn:hover .roll-a { transform: translateY(-110%); }
.btn:hover .roll-b { transform: translateY(0); }

/* footer parallax reveal: content slides away, footer is uncovered */
main#top { position: relative; z-index: 2; background: var(--navy); }
.mega-footer.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* side signaletics: scroll progress + section index */
.scroll-progress {
  position: fixed;
  top: 0; right: 0;
  width: 2px;
  height: 100vh;
  z-index: 9995;
  background: rgba(244, 241, 234, 0.06);
}
.scroll-progress i {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(#f73478, #7a2bea);
}
.section-index {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9995;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}
.si-sep { width: 30px; height: 1px; background: rgba(244, 241, 234, 0.25); }

/* small stroke icons replacing emojis in the mock UI */
.ic {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .section-index, .scroll-progress { display: none; }
}
@media (max-width: 620px) {
  /* card fills most of the viewport, next one peeks at the edge */
  .benefit { flex-basis: 82%; min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  .benefits-rail { scroll-behavior: auto; }
  .hero-content > * { opacity: 1; transform: none; }
  .line-inner { transform: none; }
}

/* ============================================================
   Million-dollar layer: grain, aurora, floating chips,
   watermarks, button shine
   ============================================================ */

/* film grain — the whole page gets an analog texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* aurora — slow drifting light fields behind the hero */
.aurora { position: absolute; inset: 0; overflow: hidden; }
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.32;
  will-change: transform;
}
.aurora-a {
  width: 55vw; height: 55vw;
  left: -12vw; top: -18vw;
  background: radial-gradient(circle, #fc7132 10%, #f73478, transparent 66%);
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
.aurora-b {
  width: 48vw; height: 48vw;
  right: -14vw; bottom: -16vw;
  background: radial-gradient(circle, #7a2bea 20%, #b06bff, transparent 70%);
  animation: auroraDrift 20s ease-in-out infinite alternate-reverse;
}
@keyframes auroraDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(9vw, 6vh) scale(1.15); }
}

/* floating glass chips orbiting the hero copy */
.float-chip {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}
.chip-award { top: 17%; left: 9%; }
.chip-speed { top: 26%; right: 7%; }
.chip-dsgvo { bottom: 19%; left: 13%; }
.chip-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone);
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(20, 19, 30, 0.75), rgba(20, 19, 30, 0.75)) padding-box,
    linear-gradient(140deg, rgba(247, 52, 120, 0.5), rgba(122, 43, 234, 0.3) 50%, rgba(176, 107, 255, 0.45)) border-box;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(122, 43, 234, 0.12);
  animation: chipFloat 7s ease-in-out infinite alternate;
}
.chip-speed .chip-inner { animation-delay: 1.6s; animation-duration: 8s; }
.chip-dsgvo .chip-inner { animation-delay: 3s; animation-duration: 6.4s; }
@keyframes chipFloat {
  from { transform: translateY(-7px); }
  to { transform: translateY(9px); }
}
.chip-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 11px;
  color: #fff;
  background: linear-gradient(135deg, #f73478, #7a2bea);
  box-shadow: 0 0 12px rgba(247, 52, 120, 0.5);
}
.chip-dot.gold {
  background: linear-gradient(135deg, #e8b84b, #c9932a);
  box-shadow: 0 0 12px rgba(232, 184, 75, 0.55);
}

/* giant outlined watermark words behind sections */
.blueprint, .success, .benefits { position: relative; overflow: hidden; }
.watermark {
  position: absolute;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 380px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.055);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* shine sweep across primary buttons on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

/* ---------- Reveal-on-scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rv.is-in { opacity: 1; transform: none; }

/* ---------- Success note ---------- */
.success-note {
  max-width: 760px;
  margin: 5vh auto 0;
  padding: 0 clamp(20px, 4vw, 56px);
  text-align: center;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--bone-dim);
}
.success-note strong { color: var(--bone); }

/* ---------- Pricing ---------- */
.pricing {
  position: relative;
  overflow: hidden;
  padding: 16vh 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(252, 113, 50, 0.08), transparent),
    var(--navy-2);
  border-top: 1px solid var(--line);
}
.sh-center { text-align: center; }
.sh-center .section-sub { margin-left: auto; margin-right: auto; }
.price-hero {
  max-width: 1000px;
  margin: 0 auto 5vh;
  padding: 40px clamp(24px, 4vw, 56px);
  text-align: center;
  border: 1px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(34, 33, 49, 0.9), rgba(20, 19, 30, 0.9)) padding-box,
    linear-gradient(140deg, rgba(252, 113, 50, 0.6), rgba(247, 52, 120, 0.4) 50%, rgba(122, 43, 234, 0.6)) border-box;
  box-shadow: 0 0 60px rgba(247, 52, 120, 0.12);
}
.price-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.price-big {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 62px);
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1.05;
}
.price-big em {
  background: linear-gradient(95deg, #fc7132 0%, #f73478 48%, #7a2bea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-sub {
  display: block;
  margin-top: 16px;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--bone-dim);
}
.price-flex {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
  border-radius: 999px;
  padding: 9px 20px;
}
/* eye-catching secondary CTA -> external price calculator (own class, so the
   .btn label-roll JS doesn't strip the icon) */
.price-calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: fit-content;
  margin: 26px auto 0;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 34px;
  background: linear-gradient(100deg, #fc7132 0%, #f73478 50%, #7a2bea 108%);
  box-shadow: 0 6px 24px rgba(247, 52, 120, 0.4), 0 0 60px rgba(122, 43, 234, 0.2);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.25s ease;
  animation: calcPulse 2.6s ease-in-out infinite;
}
.price-calc-btn svg {
  width: 19px; height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.price-calc-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 40px rgba(247, 52, 120, 0.55), 0 0 90px rgba(252, 113, 50, 0.3);
}
.price-calc-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@keyframes calcPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(247, 52, 120, 0.4), 0 0 40px rgba(122, 43, 234, 0.18); }
  50% { box-shadow: 0 8px 34px rgba(247, 52, 120, 0.62), 0 0 74px rgba(252, 113, 50, 0.3); }
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.price-card {
  border-radius: 22px;
  padding: 34px 36px;
  border: 1px solid transparent;
}
.price-card h3 { font-size: clamp(18px, 2vw, 23px); margin-bottom: 22px; }
.price-card ul { list-style: none; }
.price-card li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
  color: var(--bone-dim);
}
.price-card li strong { color: var(--bone); }
.price-in {
  background:
    linear-gradient(160deg, rgba(30, 22, 40, 0.9), rgba(20, 17, 30, 0.9)) padding-box,
    linear-gradient(140deg, rgba(252, 113, 50, 0.55), rgba(247, 52, 120, 0.4) 50%, rgba(122, 43, 234, 0.55)) border-box;
}
.price-in h3 { color: var(--pink); }
.price-out { border: 1px solid var(--line); background: rgba(244, 241, 234, 0.02); }
.price-out h3 { color: var(--bone); }
.price-card .c { color: #4ade80; font-weight: 800; }
.price-card .x { color: #ff5470; font-weight: 800; }
.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6vh;
}
.pricing-cta-note { font-size: 13px; color: var(--bone-dim); letter-spacing: 0.04em; }

/* ---------- Booking / Calendly ---------- */
.booking {
  position: relative;
  overflow: hidden;
  padding: 15vh 0 14vh;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(122, 43, 234, 0.12), transparent),
    var(--navy);
  border-top: 1px solid var(--line);
}
.glow-warm-b {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 620px; height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  background: radial-gradient(circle, rgba(247, 52, 120, 0.18), transparent 70%);
  pointer-events: none;
}

/* ---------- Founder / LinkedIn card ---------- */
.founder {
  padding: 15vh 0 4vh;
  background: var(--navy);
}
.li-card {
  display: block;
  max-width: 720px;
  margin: 5vh auto 0;
  text-decoration: none;
  color: var(--bone);
  border: 1px solid transparent;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(var(--navy-2), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(10, 102, 194, 0.6), rgba(247, 52, 120, 0.35) 55%, rgba(122, 43, 234, 0.6)) border-box;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.li-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(10, 102, 194, 0.25);
}
.li-banner {
  position: relative;
  aspect-ratio: 4 / 1;
  overflow: hidden;
}
.li-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.li-body {
  position: relative;
  padding: 0 34px 30px;
}
.li-avatar {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -58px;
  border: 4px solid var(--navy-2);
  background: var(--navy-2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.li-info { margin-top: 16px; }
.li-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
}
.li-verify { width: 22px; height: 22px; flex: 0 0 auto; }
.li-headline {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--bone-dim);
  max-width: 560px;
}
.li-meta {
  margin-top: 14px;
  font-size: 14px;
  color: var(--bone-dim);
}
.li-meta strong {
  color: var(--bone);
  font-weight: 700;
}
.li-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #0a66c2;
  border-radius: 999px;
  padding: 12px 24px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.li-card:hover .li-cta { background: #0b76de; transform: translateY(-1px); }
.li-cta svg { width: 18px; height: 18px; }
.booking-perks {
  list-style: none;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.booking-perks li { display: flex; gap: 10px; align-items: center; color: var(--bone-dim); font-size: 15px; }
.booking-perks .c { color: #4ade80; font-weight: 800; }
.calendly-wrap {
  max-width: 1080px;
  margin: 6vh auto 0;
  padding: 0 clamp(16px, 3vw, 40px);
}
.calendly-embed {
  position: relative;
  min-width: 320px;
  height: 940px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--navy-2), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(252, 113, 50, 0.4), rgba(247, 52, 120, 0.25) 50%, rgba(122, 43, 234, 0.4)) border-box;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.calendly-embed iframe { border-radius: 20px; }
.calendly-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bone-dim);
  font-size: 15px;
}
.cal-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(244, 241, 234, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: calspin 0.8s linear infinite;
}
@keyframes calspin { to { transform: rotate(360deg); } }

/* In-app-browser fallback: a full-screen booking button instead of the jumpy
   inline iframe (Instagram/Facebook WebViews reflow the page around it). */
.calendly-embed.calendly-fallback {
  height: auto;
  min-width: 0;
  padding: clamp(40px, 8vw, 72px) 26px;
  text-align: center;
}
.cal-fb-inner { max-width: 440px; margin: 0 auto; }
.cal-fb-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 5vw, 26px);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cal-fb-text { color: var(--bone-dim); font-size: 15px; line-height: 1.55; margin-bottom: 24px; }
.cal-fb-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 34px;
  background: linear-gradient(100deg, #fc7132 0%, #f73478 50%, #7a2bea 108%);
  box-shadow: 0 6px 24px rgba(247, 52, 120, 0.4), 0 0 60px rgba(122, 43, 234, 0.2);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2), box-shadow 0.25s ease;
}
.cal-fb-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 40px rgba(247, 52, 120, 0.55), 0 0 90px rgba(252, 113, 50, 0.3); }
/* subtle "open in a new window" escape hatch under the inline embed (touch screens) */
.cal-open-newtab { display: none; }
@media (max-width: 820px) {
  .cal-open-newtab {
    display: block;
    margin: 16px auto 0;
    max-width: 1080px;
    text-align: center;
    font-size: 14px;
    color: var(--bone-dim);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.calendly-wrap.is-fallback .cal-open-newtab { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .float-chip { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .watermark { font-size: 34vw; opacity: 0.8; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-wide { grid-column: span 1; min-height: 340px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .product-inner { grid-template-columns: 1fr; }
  /* no scroll-scrub tour on small screens — show the final state statically */
  .product { height: auto; }
  .product-sticky { position: static; min-height: 0; padding: 16vh 0; }
  .product [data-show-from] { opacity: 1; transform: none; }
  .tour-steps li { opacity: 1; }
  .footer-meta { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero, .kinetic, .product { height: auto; }
  .hero-sticky, .kinetic-sticky { position: relative; height: auto; min-height: 100vh; }
  .product-sticky { position: static; min-height: 0; padding: 16vh 0; }
  .product [data-show-from] { opacity: 1; transform: none; }
  .tour-steps li { opacity: 1; }
  .kinetic-word { position: relative; display: block; opacity: 1; transform: none; filter: none; left: auto; top: auto; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- Mobile overrides for pricing + Calendly (must win the cascade) ---------- */
@media (max-width: 720px) {
  /* Calendly stacks month + time-slots vertically on phones — give it room */
  .calendly-embed { height: 1180px; }
  .booking-perks { gap: 12px 20px; }
  .price-hero { padding: 32px 22px; }
  .price-card { padding: 28px 24px; }
}

/* ============================================================
   DSGVO Consent — banner + settings modal
   Necessary (incl. the Calendly booking widget) is always on;
   Statistik/Marketing are opt-in and gated behind window.jtConsent.
   ============================================================ */
.consent {
  position: fixed;
  left: 50%;
  bottom: clamp(14px, 3vw, 28px);
  transform: translate(-50%, 24px);
  z-index: 200;
  width: min(680px, calc(100vw - 28px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.consent[hidden] { display: none; }
.consent.is-shown { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.consent-inner {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(160deg, rgba(20, 19, 30, 0.97), rgba(11, 10, 18, 0.97)) padding-box,
    linear-gradient(140deg, rgba(252, 113, 50, 0.5), rgba(247, 52, 120, 0.3) 50%, rgba(122, 43, 234, 0.5)) border-box;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}
.consent-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.consent-desc { font-size: 14px; color: var(--bone-dim); line-height: 1.55; }
.consent-desc strong { color: var(--bone); font-weight: 600; }
.consent-desc a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* buttons — deliberately NOT .btn (skips the magnetic/roll JS) */
.btn-consent {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-consent-accept {
  color: #fff;
  background: linear-gradient(100deg, #fc7132 0%, #f73478 50%, #7a2bea 108%);
  box-shadow: 0 6px 20px rgba(247, 52, 120, 0.35);
  margin-left: auto;
}
.btn-consent-accept:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247, 52, 120, 0.5); }
.btn-consent-ghost {
  color: var(--bone);
  background: rgba(244, 241, 234, 0.05);
  border-color: rgba(244, 241, 234, 0.3);
}
.btn-consent-ghost:hover { border-color: var(--purple); color: #fff; background: rgba(122, 43, 234, 0.14); }
.btn-consent:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ---- settings modal ---- */
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.consent-modal[hidden] { display: none; }
.consent-modal.is-shown { opacity: 1; pointer-events: auto; }
.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 12, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.consent-panel {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -46%);
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 40px);
  background:
    linear-gradient(160deg, var(--navy-3), var(--navy-2)) padding-box,
    linear-gradient(140deg, rgba(252, 113, 50, 0.4), rgba(247, 52, 120, 0.25) 50%, rgba(122, 43, 234, 0.4)) border-box;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.consent-modal.is-shown .consent-panel { transform: translate(-50%, -50%); }
.consent-panel:focus-visible { outline: none; }
.consent-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.05);
  color: var(--bone-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.consent-close:hover { color: #fff; border-color: var(--purple); background: rgba(122, 43, 234, 0.15); }
.consent-panel-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  padding-right: 30px;
}
.consent-panel-sub { margin-top: 12px; font-size: 14px; color: var(--bone-dim); line-height: 1.55; }
.consent-cat { border-top: 1px solid var(--line); padding: 18px 0; }
.consent-cat:first-of-type { margin-top: 22px; }
.consent-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.consent-cat-name { font-family: var(--display); font-weight: 800; font-size: 16px; }
.consent-cat-desc { margin-top: 8px; font-size: 13.5px; color: var(--bone-dim); line-height: 1.5; }

/* toggle switch */
.consent-switch { position: relative; flex: 0 0 auto; width: 46px; height: 26px; }
.consent-switch input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.consent-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.14);
  border: 1px solid var(--line);
  transition: background 0.25s ease;
  pointer-events: none;
}
.consent-slider::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bone);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.2);
}
.consent-switch input:checked + .consent-slider {
  background: linear-gradient(100deg, #fc7132, #f73478 55%, #7a2bea);
  border-color: transparent;
}
.consent-switch input:checked + .consent-slider::before { transform: translateX(20px); }
.consent-switch input:focus-visible + .consent-slider { box-shadow: 0 0 0 3px rgba(247, 52, 120, 0.3); }
.consent-switch.is-locked { opacity: 0.65; }
.consent-switch.is-locked input { cursor: not-allowed; }

.consent-modal-actions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.consent-modal-actions .btn-consent { flex: 1 1 auto; text-align: center; }
.consent-modal-actions .btn-consent-accept { margin-left: 0; }

body.consent-locked { overflow: hidden; }

/* footer "Cookie-Einstellungen" — matches the legal link look */
.footer-cookie-btn {
  display: block;
  color: var(--bone-dim);
  font-family: var(--body);
  font-size: 15px;
  padding: 5px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.footer-cookie-btn:hover { color: var(--blue); }

@media (max-width: 560px) {
  .consent-actions { flex-direction: column; align-items: stretch; }
  .btn-consent { width: 100%; text-align: center; }
  .btn-consent-accept { margin-left: 0; }
}
