/* ====================================================================
   Jahresanzeigen.de — V2 Immersive Recruiting Cockpit
   Design system, layout, components, motion
   ==================================================================== */

/* ---------- 1. Tokens ------------------------------------------------ */
:root {
  /* Brand */
  --brand:        #00B6F0;   /* signal cyan */
  --brand-2:      #3D9AFF;   /* warm blue */
  --brand-glow:   #7FE0FF;   /* highlight */
  --brand-deep:   #0B1D3A;   /* deep navy */

  /* Dark theme */
  --ink:          #050B1C;
  --ink-1:        #08132B;
  --ink-2:        #0B1D3A;
  --ink-3:        #11264A;
  --ink-4:        #1A3463;

  /* Light theme */
  --paper:        #FFFFFF;
  --paper-2:      #F4F8FC;
  --paper-3:      #E6F0F9;

  /* Text */
  --text-on-dark:        #E9F1FB;
  --text-on-dark-soft:   #93AECC;
  --text-on-dark-mute:   #7E9CC4;
  --text-on-light:       #0B1D3A;
  --text-on-light-soft:  #4A6280;
  --text-on-light-mute:  #7B91AB;

  /* Strokes */
  --rule-on-dark:        rgba(127, 224, 255, 0.10);
  --rule-on-dark-soft:   rgba(127, 224, 255, 0.05);
  --rule-on-light:       rgba(11, 29, 58, 0.08);
  --rule-on-light-soft:  rgba(11, 29, 58, 0.04);

  /* Glass */
  --glass-dark-bg:       rgba(17, 38, 74, 0.55);
  --glass-dark-border:   rgba(127, 224, 255, 0.14);
  --glass-light-bg:      rgba(255, 255, 255, 0.62);
  --glass-light-border:  rgba(11, 29, 58, 0.06);

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(5, 11, 28, 0.20);
  --shadow-md:  0 8px 28px rgba(5, 11, 28, 0.20), 0 2px 6px rgba(5, 11, 28, 0.12);
  --shadow-lg:  0 24px 56px rgba(5, 11, 28, 0.30), 0 8px 24px rgba(5, 11, 28, 0.18);
  --shadow-xl:  0 36px 96px rgba(5, 11, 28, 0.45), 0 12px 32px rgba(5, 11, 28, 0.25);
  --glow-cyan:  0 0 0 1px rgba(127, 224, 255, 0.18), 0 0 32px rgba(0, 182, 240, 0.18), 0 0 80px rgba(0, 182, 240, 0.10);
  --glow-cyan-strong: 0 0 0 1px rgba(127, 224, 255, 0.35), 0 0 40px rgba(0, 182, 240, 0.45), 0 0 120px rgba(0, 182, 240, 0.25);

  /* Type */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --wrap:         1280px;
  --wrap-narrow:   880px;
  --gutter:        clamp(20px, 4vw, 40px);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;

  /* Easings */
  --ease-spring:   cubic-bezier(0.22, 1.20, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.30, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:  150ms;
  --t-base:  280ms;
  --t-slow:  520ms;
}

/* ---------- 2. Reset & base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-feature-settings: 'kern' 1, 'liga' 1, 'cv11' 1;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand-glow); outline-offset: 3px; border-radius: 3px; }

/* Skip link */
.skip-link {
  position: absolute; left: -1000px; top: 8px;
  background: var(--brand); color: var(--ink);
  padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 16px; }

/* ---------- 3. Typography utilities --------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: ''; width: 18px; height: 1px;
  background: var(--brand);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.theme-light .eyebrow { color: var(--brand-2); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.06; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.3; }

.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--text-on-dark-soft); max-width: 60ch; }
.theme-light .lead { color: var(--text-on-light-soft); }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

em.brand-em { color: var(--brand-glow); font-style: normal; }
.theme-light em.brand-em { color: var(--brand); }

/* ---------- 4. Layout ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 10vw, 144px) 0; position: relative; }

.theme-dark { background: var(--ink); color: var(--text-on-dark); }
.theme-deep { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-1) 100%); color: var(--text-on-dark); }
.theme-light { background: var(--paper-2); color: var(--text-on-light); }
.theme-paper { background: var(--paper); color: var(--text-on-light); }

/* ---------- 5. Header ----------------------------------------------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--t-base) var(--ease-out), backdrop-filter var(--t-base);
}
.hdr.is-scrolled {
  background: rgba(5, 11, 28, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--rule-on-dark);
}
.hdr__inner {
  display: flex; align-items: center; gap: 32px;
  height: 56px;
}
.hdr__brand { display: flex; align-items: center; gap: 12px; }
.hdr__brand img { height: 54px; width: auto; }
.hdr__brand-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-on-dark-mute);
  border-left: 1px solid var(--rule-on-dark); padding-left: 12px;
}
.hdr__nav { display: flex; gap: 24px; margin-left: auto; flex-wrap: nowrap; }
.hdr__nav a {
  font-size: 13.5px;
  color: var(--text-on-dark-soft);
  position: relative; padding: 8px 0;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.hdr__nav a:hover { color: var(--text-on-dark); }
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  height: 1px; width: 0; background: var(--brand);
  transition: width var(--t-base) var(--ease-out);
}
.hdr__nav a:hover::after { width: 100%; }

.hdr__contact {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; color: var(--text-on-dark-soft);
}
.hdr__contact a { display: inline-flex; align-items: center; gap: 6px; }
.hdr__contact a:hover { color: var(--brand-glow); }

.hdr__cta { margin-left: 8px; }

.hdr__menu-btn { display: none; }

@media (max-width: 1180px) {
  .hdr__brand-tag { display: none; }
  .hdr__nav { gap: 18px; }
}
@media (max-width: 1080px) {
  .hdr__contact { display: none; }
}
@media (max-width: 980px) {
  .hdr__nav { display: none; }
  .hdr__menu-btn {
    display: inline-flex; margin-left: auto;
    width: 40px; height: 40px; border-radius: var(--r-sm);
    background: var(--glass-dark-bg); border: 1px solid var(--glass-dark-border);
    align-items: center; justify-content: center;
    color: var(--text-on-dark);
  }
}

/* ---------- 6. Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-spring),
              background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn .arrow {
  display: inline-block; transition: transform var(--t-base) var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(180deg, #0EC0F7 0%, #0090D6 100%);
  color: #001525;
  box-shadow: 0 8px 24px rgba(0, 182, 240, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover {
  box-shadow: 0 14px 40px rgba(0, 182, 240, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-on-dark);
  border: 1px solid rgba(127, 224, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(127, 224, 255, 0.08);
  border-color: rgba(127, 224, 255, 0.35);
  transform: translateY(-2px);
}
.btn--small { height: 38px; padding: 0 16px; font-size: 13px; }

.theme-light .btn--ghost {
  background: rgba(11, 29, 58, 0.04);
  border-color: rgba(11, 29, 58, 0.10);
  color: var(--text-on-light);
}
.theme-light .btn--ghost:hover {
  background: rgba(11, 29, 58, 0.07);
  border-color: rgba(11, 29, 58, 0.18);
}

/* ---------- 7. Pills, badges, chips --------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 30px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(127, 224, 255, 0.08);
  border: 1px solid rgba(127, 224, 255, 0.18);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.10em;
  color: var(--brand-glow);
  text-transform: uppercase;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 0 3px rgba(127, 224, 255, 0.15);
  animation: pulse-dot 2.4s var(--ease-out) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(127, 224, 255, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(127, 224, 255, 0); }
}

.theme-light .pill {
  background: rgba(0, 182, 240, 0.08);
  border-color: rgba(0, 182, 240, 0.18);
  color: var(--brand-2);
}

/* ---------- 8. Glass surfaces -------------------------------------- */
.glass {
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-radius: var(--r-lg);
}
.glass--light {
  background: var(--glass-light-bg);
  border: 1px solid var(--glass-light-border);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

/* ---------- 9. Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(820px, 100vh, 1080px);
  padding: 132px 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.hero__bg, .hero__bg * { pointer-events: none; }
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg-grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(rgba(127, 224, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 224, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero__bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(0, 182, 240, 0.30) 0%, transparent 45%),
    radial-gradient(circle at 25% 70%, rgba(61, 154, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 110%, rgba(127, 224, 255, 0.15) 0%, transparent 60%);
  filter: blur(8px);
}
.hero__bg-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.78  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: screen;
}
.hero__bg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(127, 224, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 60%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 22%, rgba(127, 224, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 70%, rgba(127, 224, 255, 0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 88%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 30%, rgba(127, 224, 255, 0.5) 0%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__copy { max-width: 580px; }
.hero__copy .pill { margin-bottom: 28px; }
.hero__copy h1 {
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero__copy h1 .line { display: block; }
.hero__copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-glow) 0%, var(--brand) 60%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-on-dark-soft);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__trust {
  font-size: 13px;
  color: var(--text-on-dark-mute);
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 20px;
  max-width: 480px;
  line-height: 1.5;
}
.hero__trust strong { color: var(--text-on-dark-soft); font-weight: 500; }

/* ---- Hero scene (cockpit / orbit) ---- */
.hero__scene {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 620px;
  justify-self: end;
  perspective: 1400px;
}

.scene__streams {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: visible;
}
.scene__streams path.stream-base {
  fill: none;
  stroke: url(#stream-grad);
  stroke-width: 0.6;
  stroke-linecap: round;
  opacity: 0.85;
  vector-effect: non-scaling-stroke;
}
.scene__streams .stream-flow {
  fill: none;
  stroke: var(--brand-glow);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 4 60;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(127, 224, 255, 0.95));
  animation: stream-flow 3.6s linear infinite;
}
@keyframes stream-flow {
  0% { stroke-dashoffset: 64; }
  100% { stroke-dashoffset: 0; }
}

/* Center job card */
.scene__job {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 36%, 240px);
  z-index: 5;
  padding: 18px;
  background: linear-gradient(155deg, rgba(17, 38, 74, 0.85) 0%, rgba(8, 19, 43, 0.82) 100%);
  border: 1px solid rgba(127, 224, 255, 0.28);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 0 0 1px rgba(127, 224, 255, 0.10),
    0 18px 40px rgba(5, 11, 28, 0.55),
    0 0 60px rgba(0, 182, 240, 0.18);
  animation: float-soft 6s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 6px)); }
}
.scene__job-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--brand-glow); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.scene__job-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-glow); box-shadow: 0 0 6px var(--brand-glow); }
.scene__job-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.2; color: var(--text-on-dark); margin-bottom: 4px; }
.scene__job-meta { font-size: 11.5px; color: var(--text-on-dark-soft); margin-bottom: 12px; }
.scene__job-bars { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.scene__job-bar { height: 4px; border-radius: 2px; background: rgba(127, 224, 255, 0.08); overflow: hidden; position: relative; }
.scene__job-bar::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-glow) 100%);
  border-radius: 2px;
}
.scene__job-bar.b1::after { width: 80%; }
.scene__job-bar.b2::after { width: 60%; }
.scene__job-bar.b3::after { width: 92%; }
.scene__job-status {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-on-dark-mute);
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 10px;
}
.scene__job-status .ok {
  color: var(--brand-glow);
  display: inline-flex; align-items: center; gap: 4px;
}

/* Platform pills around the orbit */
.scene__platforms {
  position: absolute; inset: 0;
  z-index: 4;
}
.platform-pill {
  --angle: 0deg;
  --r: clamp(118px, 22vw, 200px);
  position: absolute;
  top: 50%; left: 50%;
  width: 96px; height: 56px;
  margin-left: -48px; margin-top: -28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 6px 20px rgba(5, 11, 28, 0.45),
    0 0 0 1px rgba(127, 224, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--t-base);
  animation: platform-float 7s ease-in-out infinite;
  /* Place at angle around center: rotate, translate outward, counter-rotate. */
  transform:
    rotate(var(--angle))
    translateX(var(--r))
    rotate(calc(-1 * var(--angle)));
  transform-origin: center center;
}
.platform-pill img {
  height: 26px; width: auto; max-width: 74px;
  object-fit: contain; display: block;
}
.platform-pill:hover {
  box-shadow:
    0 12px 32px rgba(0, 182, 240, 0.55),
    0 0 0 1px rgba(127, 224, 255, 0.55);
  z-index: 6;
  animation-play-state: paused;
}
@keyframes platform-float {
  0%, 100% {
    transform:
      rotate(var(--angle))
      translateX(var(--r))
      rotate(calc(-1 * var(--angle)))
      translateY(0);
  }
  50% {
    transform:
      rotate(var(--angle))
      translateX(var(--r))
      rotate(calc(-1 * var(--angle)))
      translateY(-6px);
  }
}

/* 9 channels distributed evenly around the orbit (40° apart) */
.platform-pill[data-i='0'] { --angle: -90deg; }
.platform-pill[data-i='1'] { --angle: -50deg; }
.platform-pill[data-i='2'] { --angle: -10deg; }
.platform-pill[data-i='3'] { --angle:  30deg; }
.platform-pill[data-i='4'] { --angle:  70deg; }
.platform-pill[data-i='5'] { --angle: 110deg; }
.platform-pill[data-i='6'] { --angle: 150deg; }
.platform-pill[data-i='7'] { --angle: 190deg; }
.platform-pill[data-i='8'] { --angle: 230deg; }

.platform-pill[data-i='0'] { animation-delay: -0.0s; }
.platform-pill[data-i='1'] { animation-delay: -0.8s; }
.platform-pill[data-i='2'] { animation-delay: -1.6s; }
.platform-pill[data-i='3'] { animation-delay: -2.4s; }
.platform-pill[data-i='4'] { animation-delay: -3.2s; }
.platform-pill[data-i='5'] { animation-delay: -4.0s; }
.platform-pill[data-i='6'] { animation-delay: -4.8s; }
.platform-pill[data-i='7'] { animation-delay: -5.6s; }
.platform-pill[data-i='8'] { animation-delay: -6.4s; }

/* Orbit decorative ring */
.scene__ring {
  position: absolute; top: 50%; left: 50%;
  width: 88%; height: 88%;
  margin-left: -44%; margin-top: -44%;
  border-radius: 50%;
  border: 1px dashed rgba(127, 224, 255, 0.14);
  z-index: 2;
  animation: rotate-slow 90s linear infinite;
}
.scene__ring--inner {
  width: 64%; height: 64%; margin-left: -32%; margin-top: -32%;
  border: 1px dashed rgba(127, 224, 255, 0.10);
  animation-direction: reverse;
  animation-duration: 120s;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

/* Cockpit chips overlaid on scene */
.scene__chip {
  position: absolute;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(8, 19, 43, 0.78);
  border: 1px solid rgba(127, 224, 255, 0.22);
  color: var(--text-on-dark);
  padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 7;
  box-shadow: 0 8px 24px rgba(5, 11, 28, 0.4);
}
.scene__chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-glow); box-shadow: 0 0 8px var(--brand-glow); }
.scene__chip--tl { top: -6px; left: -10px; }
.scene__chip--br { bottom: -8px; right: -8px; }

/* Live advisor mini panel — humans in the cockpit */
.scene__advisor {
  position: absolute;
  bottom: -36px;
  left: 50%; margin-left: -110px;
  width: 220px;
  z-index: 8;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(8, 19, 43, 0.94);
  border: 1px solid rgba(127, 224, 255, 0.30);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  animation: advisor-float 8s ease-in-out infinite;
}
@media (max-width: 1080px) { .scene__advisor { bottom: -50px; } }
.scene__advisor img {
  width: 100%; height: 110px; object-fit: cover; object-position: center 40%;
  filter: brightness(0.85) saturate(1.05) hue-rotate(-6deg);
}
.scene__advisor::after {
  content: ''; position: absolute; inset: 0 0 50% 0; background: linear-gradient(180deg, transparent 0%, rgba(8, 19, 43, 0.65) 100%); pointer-events: none;
}
.scene__advisor-meta {
  position: relative;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--rule-on-dark);
}
.scene__advisor-meta .label {
  display: block; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-glow); margin-bottom: 3px;
}
.scene__advisor-meta .text { font-size: 12px; color: var(--text-on-dark); line-height: 1.35; }
@keyframes advisor-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-6px); }
}

/* Hero stats strip */
.hero__stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(64px, 8vw, 88px);
  padding-top: 32px;
  border-top: 1px solid var(--rule-on-dark);
}
.stat {
  display: flex; flex-direction: column; gap: 4px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  line-height: 1;
}
.stat__num em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-glow) 0%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
}

/* ---------- 10. Cinematic sequence strip --------------------------- */
.sequence {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-1) 100%);
  padding: clamp(64px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  position: relative;
  overflow: hidden;
}
.sequence::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 182, 240, 0.10), transparent 60%);
  pointer-events: none;
}
.sequence__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.sequence__head h2 { max-width: 560px; }
.sequence__head .mono { color: var(--text-on-dark-mute); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

.sequence__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  position: relative;
}
.sequence__strip::after {
  content: ''; position: absolute;
  top: 50%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  opacity: 0.18;
  pointer-events: none;
}

.frame {
  position: relative;
  background: linear-gradient(155deg, rgba(17, 38, 74, 0.50) 0%, rgba(8, 19, 43, 0.50) 100%);
  border: 1px solid var(--rule-on-dark);
  border-radius: var(--r-lg);
  padding: 22px 22px 24px;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base);
}
.frame:hover { transform: translateY(-4px); border-color: rgba(127, 224, 255, 0.30); }
.frame__num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-on-dark-mute);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.frame__num span:first-child { color: var(--brand-glow); }
.frame__visual {
  height: 180px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, transparent 100%), var(--ink-2);
  border-radius: var(--r-md);
  border: 1px solid var(--rule-on-dark-soft);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.frame__title { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px; }
.frame__desc { font-size: 13.5px; color: var(--text-on-dark-soft); line-height: 1.5; }

/* Frame 1 visual: briefing — animated cursor on document */
.fv-briefing {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, transparent 60%),
    var(--ink-2);
}
.fv-briefing::before {
  content: ''; position: absolute;
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(127, 224, 255, 0.05) 0%, rgba(127, 224, 255, 0.01) 100%);
  border: 1px solid rgba(127, 224, 255, 0.12);
}
.fv-briefing::after {
  content: ''; position: absolute;
  top: 36px; left: 38px;
  width: 60%; height: 6px; border-radius: 3px;
  background: rgba(127, 224, 255, 0.30);
  box-shadow:
    0 16px 0 0 rgba(127, 224, 255, 0.18),
    0 32px 0 0 rgba(127, 224, 255, 0.18),
    0 48px 0 0 rgba(127, 224, 255, 0.10);
}
.fv-briefing .pen {
  position: absolute; left: 60%; top: 70%;
  width: 28px; height: 28px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(127, 224, 255, 0.18), 0 0 24px rgba(0, 182, 240, 0.6);
  animation: pen-bob 3.2s ease-in-out infinite;
}
@keyframes pen-bob {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, -8px); }
}

/* Frame 2 visual: routing — three diverging paths */
.fv-routing {
  background: var(--ink-2);
}
.fv-routing svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Frame 3 visual: 365 — orbit arc with month ticks */
.fv-365 {
  background: var(--ink-2);
}
.fv-365 svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- 11. How It Works --------------------------------------- */
.how {
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink) 100%);
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.how__head { max-width: 660px; margin-bottom: 64px; }
.how__head .eyebrow { margin-bottom: 18px; }
.how__head h2 { margin-bottom: 16px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 36px; left: 4%; right: 4%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(127, 224, 255, 0.30) 20%, rgba(127, 224, 255, 0.30) 80%, transparent 100%);
}
.step {
  position: relative;
  padding-top: 88px;
}
.step__num {
  position: absolute;
  top: 0; left: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid rgba(127, 224, 255, 0.30);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  color: var(--brand-glow);
  box-shadow: 0 0 0 6px var(--ink), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.step__num::after {
  content: ''; position: absolute; inset: -12px;
  border-radius: 50%; border: 1px solid rgba(127, 224, 255, 0.10);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.12); opacity: 0; }
}
.step__title { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; }
.step__desc { font-size: 14.5px; color: var(--text-on-dark-soft); line-height: 1.55; }

/* ---------- 12. Channels (bento) ----------------------------------- */
.channels {
  background: var(--ink);
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
}
.channels__head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.channels__head h2 { max-width: 540px; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.cb {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(17, 38, 74, 0.55) 0%, rgba(8, 19, 43, 0.55) 100%);
  border: 1px solid var(--rule-on-dark);
  padding: 24px;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column; justify-content: space-between;
}
.cb:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 224, 255, 0.30);
  box-shadow: var(--shadow-lg);
}
.cb__logo {
  height: 56px;
  display: flex; align-items: center;
  margin-bottom: 16px;
}
.cb__logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}
.cb__logo-pill img { height: 24px; width: auto; max-width: 124px; object-fit: contain; display: block; }
.cb__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cb__desc { font-size: 13.5px; color: var(--text-on-dark-soft); line-height: 1.5; flex: 1; }
.cb__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--brand-glow);
  font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 14px;
  transition: gap var(--t-base);
}
.cb:hover .cb__link { gap: 10px; }

/* Bento spans — designed pattern, scaled to 12-col grid */
.cb--lg { grid-column: span 6; grid-row: span 2; }
.cb--md { grid-column: span 4; grid-row: span 1; }
.cb--sm { grid-column: span 3; grid-row: span 1; }
.cb--w  { grid-column: span 6; grid-row: span 1; }

/* Backdrop accent for the lg featured */
.cb--lg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 182, 240, 0.18), transparent 50%);
  pointer-events: none;
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .cb--lg { grid-column: span 6; grid-row: span 2; }
  .cb--md, .cb--sm, .cb--w { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .cb { grid-column: 1 / -1 !important; grid-row: auto !important; min-height: 220px; }
}

/* ---------- 13. Use cases / roles ---------------------------------- */
.roles {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-1) 100%);
  padding: clamp(96px, 12vw, 144px) 0;
}
.roles__head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.roles__head h2 { max-width: 540px; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .role-grid { grid-template-columns: 1fr; } }

.role {
  position: relative;
  padding: 28px 26px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(17, 38, 74, 0.50) 0%, rgba(8, 19, 43, 0.55) 100%);
  border: 1px solid var(--rule-on-dark);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.role::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(0, 182, 240, 0.16), transparent 50%);
  opacity: 0; transition: opacity var(--t-base) var(--ease-out);
  z-index: -1;
}
.role:hover { transform: translateY(-4px); border-color: rgba(127, 224, 255, 0.30); }
.role:hover::before { opacity: 1; }
.role__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(127, 224, 255, 0.10);
  border: 1px solid rgba(127, 224, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-glow);
}
.role__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.role__desc  { font-size: 13.5px; color: var(--text-on-dark-soft); line-height: 1.5; margin-bottom: 16px; }
.role__stat {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-glow);
  display: inline-flex; align-items: center; gap: 8px;
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 14px; width: 100%;
}

/* ---------- 14. Advisor / People section --------------------------- */
.advisor {
  background: var(--paper-2);
  color: var(--text-on-light);
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.advisor::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, var(--ink-1) 0%, transparent 100%);
}
.advisor__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .advisor__inner { grid-template-columns: 1fr; }
}
.advisor__media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--rule-on-light);
  isolation: isolate;
}
.advisor__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  filter: contrast(1.02) saturate(1.05);
}
.advisor__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(11, 29, 58, 0.35) 100%),
    linear-gradient(135deg, rgba(0, 182, 240, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.advisor__chip {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--brand-2);
  box-shadow: 0 4px 14px rgba(11, 29, 58, 0.14);
}
.advisor__chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 6px var(--brand); }
.advisor__quote {
  position: absolute; right: 22px; bottom: 22px; z-index: 2;
  background: rgba(11, 29, 58, 0.86);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.advisor__quote .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--brand-glow); margin-top: 8px; display: block; }

.advisor__copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; color: var(--text-on-light); }
.advisor__copy h2 em { font-style: normal; color: var(--brand-2); }
.advisor__copy p { color: var(--text-on-light-soft); font-size: 16px; line-height: 1.6; max-width: 50ch; margin-bottom: 24px; }
.advisor__bullets {
  display: grid; gap: 14px; margin-bottom: 32px;
}
.advisor__bullet { display: flex; gap: 14px; align-items: start; font-size: 14.5px; }
.advisor__bullet svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-2); }
.advisor__bullet strong { color: var(--text-on-light); font-weight: 600; }
.advisor__bullet span { color: var(--text-on-light-soft); display: block; margin-top: 2px; }

/* ---------- 15. Why us (bento) ------------------------------------- */
.why {
  background: var(--ink);
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
}
.why__head { max-width: 760px; margin-bottom: 56px; }
.why__head h2 { margin-bottom: 18px; }
.why__head .quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--brand-glow);
  margin-top: 18px;
  padding-left: 18px;
  border-left: 2px solid var(--brand);
  max-width: 600px;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px 26px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, rgba(17, 38, 74, 0.45) 0%, rgba(8, 19, 43, 0.55) 100%);
  border: 1px solid var(--rule-on-dark);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base);
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(127, 224, 255, 0.30); }
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(127, 224, 255, 0.08);
  border: 1px solid rgba(127, 224, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--brand-glow);
}
.why-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.why-card__desc { font-size: 14px; color: var(--text-on-dark-soft); line-height: 1.55; }

/* ---------- 16. Inquiry form --------------------------------------- */
.inquiry {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-1) 100%);
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.inquiry::before {
  content: ''; position: absolute; inset: -10% -10% auto -10%; height: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 182, 240, 0.22), transparent 60%);
  pointer-events: none;
}
.inquiry__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  position: relative;
  align-items: start;
}
@media (max-width: 980px) {
  .inquiry__inner { grid-template-columns: 1fr; }
}
.form-card {
  background: rgba(8, 19, 43, 0.70);
  border: 1px solid var(--rule-on-dark);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 40px);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: var(--shadow-lg);
}
.form-card h2 { margin-bottom: 8px; }
.form-card .lead { margin-bottom: 28px; font-size: 16px; color: var(--text-on-dark-soft); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-on-dark-mute);
}
.form-row input, .form-row select, .form-row textarea {
  background: rgba(127, 224, 255, 0.04);
  border: 1px solid var(--rule-on-dark);
  color: var(--text-on-dark);
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-on-dark-mute); }
.form-row textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--brand-glow, #7FE0FF);
  outline-offset: 2px;
  border-color: rgba(127, 224, 255, 0.45);
  background: rgba(127, 224, 255, 0.07);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path fill='none' stroke='%237FE0FF' stroke-width='1.5' d='M3 5l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-on-dark);
}
.form-actions p { font-size: 12.5px; color: var(--text-on-dark-mute); flex: 1; min-width: 200px; }

.inquiry__side {
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 6px;
}
.inquiry__side h3 { font-size: 22px; line-height: 1.2; margin-bottom: 6px; }
.inquiry__side .lead { font-size: 15px; color: var(--text-on-dark-soft); margin-bottom: 12px; }
.inquiry-promise {
  display: flex; gap: 14px; align-items: start;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(8, 19, 43, 0.55);
  border: 1px solid var(--rule-on-dark);
}
.inquiry-promise svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-glow); }
.inquiry-promise strong { display: block; color: var(--text-on-dark); font-weight: 600; font-size: 14.5px; margin-bottom: 2px; }
.inquiry-promise span { color: var(--text-on-dark-soft); font-size: 13px; line-height: 1.45; }

/* ---------- 17. FAQ ----------------------------------------------- */
.faq {
  background: var(--paper);
  color: var(--text-on-light);
  padding: clamp(96px, 12vw, 144px) 0;
}
.faq__head { max-width: 720px; margin-bottom: 48px; }
.faq__head h2 { color: var(--text-on-light); margin-bottom: 16px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--paper-2);
  border: 1px solid var(--rule-on-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base);
}
.faq__item[open] {
  background: #fff;
  border-color: rgba(0, 182, 240, 0.30);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 17px; color: var(--text-on-light);
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex-shrink: 0;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path stroke='%230B1D3A' stroke-width='1.6' fill='none' d='M3 5l4 4 4-4'/></svg>") center / contain no-repeat;
  transition: transform var(--t-base) var(--ease-spring);
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__body {
  padding: 0 26px 22px;
  font-size: 15px; color: var(--text-on-light-soft); line-height: 1.6;
  max-width: 70ch;
}

/* ---------- 18. Insights / blog ---------------------------------- */
.insights {
  background: var(--paper-2);
  color: var(--text-on-light);
  padding: clamp(96px, 12vw, 144px) 0;
}
.insights__head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.insights__head h2 { color: var(--text-on-light); }
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .insights__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .insights__grid { grid-template-columns: 1fr; } }
.post {
  background: var(--paper);
  border: 1px solid var(--rule-on-light);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.post:hover { transform: translateY(-4px); border-color: rgba(0, 182, 240, 0.30); box-shadow: var(--shadow-md); }
.post__cat {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 16px;
}
.post__title {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
  color: var(--text-on-light);
  margin-bottom: 12px;
}
.post__excerpt {
  font-size: 14.5px; color: var(--text-on-light-soft); line-height: 1.55;
  flex: 1; margin-bottom: 18px;
}
.post__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--brand-2);
  transition: gap var(--t-base);
}
.post:hover .post__link { gap: 10px; }

/* ---------- 19. Footer -------------------------------------------- */
.ftr {
  background: var(--ink);
  border-top: 1px solid var(--rule-on-dark);
  padding: 80px 0 40px;
  color: var(--text-on-dark-soft);
}
.ftr__main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .ftr__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ftr__main { grid-template-columns: 1fr; }
}
.ftr__brand img { height: 54px; width: auto; margin-bottom: 18px; }
.ftr__claim { font-size: 14px; max-width: 32ch; line-height: 1.55; margin-bottom: 24px; color: var(--text-on-dark-soft); }
.ftr__org { font-size: 13px; color: var(--text-on-dark-mute); line-height: 1.6; }
.ftr__org strong { color: var(--text-on-dark); font-weight: 500; display: block; }

.ftr h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 18px;
  font-weight: 500;
}
.ftr ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ftr ul a {
  font-size: 14px; color: var(--text-on-dark-soft);
  transition: color var(--t-fast);
}
.ftr ul a:hover { color: var(--brand-glow); }

.ftr__seo {
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 32px;
  font-size: 12px; line-height: 1.7;
  color: var(--text-on-dark-mute);
}
.ftr__seo strong { color: var(--text-on-dark-soft); font-weight: 500; }
.ftr__seo a { color: var(--text-on-dark-soft); border-bottom: 1px dotted var(--rule-on-dark); }

.ftr__base {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--rule-on-dark);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-on-dark-mute); letter-spacing: 0.08em;
}

/* ---------- 20. Reveal motion ------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-spring);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }
.reveal[data-delay="5"] { transition-delay: 0.50s; }
.reveal[data-delay="6"] { transition-delay: 0.60s; }
.reveal[data-delay="7"] { transition-delay: 0.70s; }
.reveal[data-delay="8"] { transition-delay: 0.80s; }

/* Hero cinematic intro */
.hero__copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 1s var(--ease-spring) forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: 0.20s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.32s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.44s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.56s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.68s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

.hero__scene {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  animation: scene-in 1.6s var(--ease-spring) 0.2s forwards;
}
@keyframes scene-in { to { opacity: 1; transform: none; } }

.hero__stats > * {
  opacity: 0; transform: translateY(12px);
  animation: hero-in 0.8s var(--ease-spring) forwards;
}
.hero__stats > *:nth-child(1) { animation-delay: 0.85s; }
.hero__stats > *:nth-child(2) { animation-delay: 0.95s; }
.hero__stats > *:nth-child(3) { animation-delay: 1.05s; }
.hero__stats > *:nth-child(4) { animation-delay: 1.15s; }

/* ---------- 21. Reduced motion ----------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__copy > *, .hero__scene, .hero__stats > * {
    opacity: 1 !important; transform: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scene__job, .platform-pill, .scene__advisor, .scene__ring,
  .scene__streams .stream-flow, .step__num::after, .pill .dot,
  .scene__chip .dot {
    animation: none !important;
  }
}

/* ---------- 22. Hero responsive ---------------------------------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__scene { justify-self: center; max-width: 540px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 56px; }
  .hero__copy h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero__scene { max-width: 380px; }
  .platform-pill { width: 76px; height: 46px; margin-left: -38px; margin-top: -23px; }
  .platform-pill img { max-width: 60px; max-height: 26px; }
  .scene__advisor { left: -20px; bottom: -28px; width: 180px; }
  .scene__advisor img { height: 86px; }
  .scene__chip { font-size: 9.5px; padding: 6px 10px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 28px; }

  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .step { padding-top: 0; padding-left: 88px; }
  .step__num { box-shadow: 0 0 0 6px var(--ink-1); }

  .sequence__strip { grid-template-columns: 1fr; }
}

/* ---------- 23. Misc utility ------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; } .mt-8 { margin-top: 64px; }
.mb-4 { margin-bottom: 32px; } .mb-6 { margin-bottom: 48px; }

/* Section divider — gradient line */
.divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--rule-on-dark), transparent);
  margin: 0 auto; max-width: 1280px;
}

/* Scroll progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-glow) 100%);
  width: 0%;
  box-shadow: 0 0 12px var(--brand-glow);
  transition: width 80ms linear;
}

/* ====================================================================
   24. V2 finishing pass — hero 24h note, merged process lead,
   channel CTA tile, use-case CTA, footer cookie trigger,
   insights "soon" labels, form status, Referenzkunden strip.
   ==================================================================== */

/* ---- Hero 24-hour SLA note ---- */
.hero__sla {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-on-dark-soft);
  margin-bottom: 24px;
}
.hero__sla strong { color: var(--text-on-dark); font-weight: 600; }
.hero__sla-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 0 4px rgba(127, 224, 255, 0.14), 0 0 10px var(--brand-glow);
  flex-shrink: 0;
  animation: pulse-dot 2.4s var(--ease-out) infinite;
}
/* keep the hero copy intro cascade correct now that a 6th child exists */
.hero__copy > *:nth-child(6) { animation-delay: 0.80s; }

/* ---- Merged process section: lead under the heading ---- */
.sequence__head .lead { margin-top: 14px; }

/* ---- Channels: "+250 weitere" CTA tile ---- */
.cb--cta {
  background: linear-gradient(155deg, rgba(0, 182, 240, 0.16) 0%, rgba(17, 38, 74, 0.55) 100%);
  border-color: rgba(127, 224, 255, 0.28);
}
.cb__cta-mark {
  font-family: var(--font-display);
  font-weight: 600; font-size: 30px; line-height: 1;
  color: var(--brand-glow);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* ---- Roles: full-width "… und viele weitere Positionen" CTA ---- */
.role--more {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0, 182, 240, 0.10) 0%, rgba(8, 19, 43, 0.55) 100%);
}
.role--more__text { max-width: 70ch; }
.role--more .role__desc { margin-bottom: 0; }
.role--more .btn { flex-shrink: 0; }

/* ---- Footer: cookie-settings trigger styled like a footer link ---- */
.ftr .cookie-trigger {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-size: 14px;
  color: var(--text-on-dark-soft);
  text-align: left;
  transition: color var(--t-fast);
}
.ftr .cookie-trigger:hover { color: var(--brand-glow); }
.ftr__base a { border-bottom: 1px dotted var(--rule-on-dark); }
.ftr__base a:hover { color: var(--brand-glow); }

/* ---- Insights: deferred-blog "soon" labels ---- */
.post__soon {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-on-light-mute);
}
.insights__soon {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--brand-2);
  border: 1px dashed rgba(0, 182, 240, 0.30);
  border-radius: 999px; padding: 8px 14px;
}

/* ---- Inquiry form: status / error message ---- */
.form-status {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 13.5px; line-height: 1.5;
  padding: 12px 14px; border-radius: var(--r-sm);
}
.form-status--ok {
  color: #c8f8e6;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.40);
}
.form-status--error {
  color: #ffd7d7;
  background: rgba(255, 100, 100, 0.10);
  border: 1px solid rgba(255, 100, 100, 0.40);
}

/* ====================================================================
   25. Referenzkunden / Trusted-by strip (under the hero)
   ==================================================================== */
.refs {
  position: relative;
  background: var(--ink);
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 60px);
  overflow: hidden;
  isolation: isolate;
}
.refs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--rule-on-dark) 22%,
    rgba(127, 224, 255, 0.22) 50%,
    var(--rule-on-dark) 78%,
    transparent 100%);
  pointer-events: none;
}
.refs::after {
  content: '';
  position: absolute;
  inset: -40% 0 auto 0;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 182, 240, 0.07), transparent 62%);
  pointer-events: none;
  z-index: -1;
}
.refs__inner { position: relative; z-index: 1; }
.refs__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 3.4vw, 40px);
}
.refs__head .eyebrow { justify-content: center; margin-bottom: 16px; }
.refs__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--text-on-dark);
}
.refs__title em.brand-em { font-style: normal; }
.refs__note {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-on-dark-soft);
}
.refs__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 2px 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.refs__viewport::-webkit-scrollbar { display: none; }
.refs__viewport:focus-visible {
  outline: 2px solid var(--brand-glow);
  outline-offset: 4px;
  border-radius: var(--r-md);
}
.refs__track {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 20px);
  width: max-content;
  min-width: 100%;
  margin: 0; padding: 0;
  justify-content: center;
  animation: refs-drift 28s var(--ease-in-out) infinite alternate;
  will-change: transform;
}
.refs__viewport:hover .refs__track,
.refs__viewport:focus-within .refs__track {
  animation-play-state: paused;
}
@keyframes refs-drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(min(0px, calc(100% - 100vw))); }
}
.ref-tile {
  flex: 0 0 auto;
  width: clamp(150px, 17vw, 188px);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 18px;
  border-radius: var(--r-lg);
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.ref-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 224, 255, 0.30);
  box-shadow: var(--shadow-lg);
}
.ref-tile__glyph {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(127, 224, 255, 0.08);
  border: 1px solid rgba(127, 224, 255, 0.18);
  color: var(--brand-glow);
}
.ref-tile__glyph svg { width: 24px; height: 24px; }
.ref-tile__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  color: var(--text-on-dark-mute);
}
.ref-tile--more {
  gap: 6px;
  background: linear-gradient(155deg, rgba(0, 182, 240, 0.12) 0%, rgba(17, 38, 74, 0.55) 100%);
  border-color: rgba(127, 224, 255, 0.22);
}
.ref-tile__more-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: var(--brand-glow);
}
.ref-tile--more .ref-tile__label {
  color: var(--text-on-dark-soft);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  font-size: 12px;
}
@media (max-width: 760px) {
  .refs__track { justify-content: flex-start; }
  .ref-tile { width: clamp(140px, 42vw, 168px); }
}
@media (max-width: 375px) {
  .refs { padding-top: 40px; }
  .refs__track { gap: 12px; }
  .ref-tile { width: 150px; min-height: 88px; padding: 18px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .refs__track { animation: none !important; transform: none !important; }
}

/* ====================================================================
   26. Mobile fixes — inquiry form overflow + hero advisor panel
   ==================================================================== */
/* Inputs have an intrinsic min-width; in the 2-col grid they refused to
   shrink and forced the whole inquiry section ~196px too wide on phones.
   min-width:0 lets the cells shrink; the form stacks to 1 column on mobile. */
.form-row { min-width: 0; }
.form-row input, .form-row select, .form-row textarea { width: 100%; min-width: 0; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  /* Stack the privacy note above a full-width submit button so the note
     never gets squeezed into a one-word-per-line sliver beside the button. */
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions p { min-width: 0; order: 2; }
  .form-actions .btn { width: 100%; justify-content: center; order: 1; }
}

/* ====================================================================
   27. Mobile optimization pass (audit 2026-06-01)
   ==================================================================== */
.hdr__nav-cta { display: none; }

/* Slide-down mobile menu panel + comfortable tap targets */
@media (max-width: 980px) {
  .hdr__nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5, 11, 28, 0.97);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    padding: 18px var(--gutter) 24px;
    gap: 4px;
    border-top: 1px solid var(--rule-on-dark);
    border-bottom: 1px solid var(--rule-on-dark);
    box-shadow: var(--shadow-lg);
  }
  .hdr__nav.is-open a {
    padding: 12px 4px; min-height: 44px;
    display: flex; align-items: center; font-size: 15px;
  }
  .hdr__nav.is-open a::after { display: none; }
}

@media (max-width: 600px) {
  /* --- Header: declutter, protect the hamburger, slim the bar --- */
  .hdr { padding: 10px 0; }
  .hdr__inner { height: 44px; gap: 16px; }
  .hdr__brand img { height: 40px; }
  .hdr__cta { display: none; }
  .hdr__menu-btn { flex: 0 0 44px; width: 44px; height: 44px; }
  .hdr__nav-cta { display: inline-flex; justify-content: center; margin-top: 10px; }
  .hero { padding-top: 84px; }

  /* --- Hero cockpit: clear pill / card / advisor collisions, tidy stack --- */
  .hero__copy h1 { font-size: clamp(30px, 8vw, 40px); line-height: 1.06; letter-spacing: -0.022em; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .hero__inner { gap: 40px; }
  .hero__scene { max-width: 320px; }
  .hero__stats { margin-top: clamp(40px, 9vw, 56px); }
  .scene__job { width: clamp(148px, 46%, 168px); padding: 13px; }
  .scene__job-title { font-size: 14px; }
  .scene__job-meta { font-size: 10.5px; margin-bottom: 9px; }
  .scene__job-bars { gap: 5px; margin-bottom: 9px; }
  .scene__job-status { padding-top: 8px; }
  .platform-pill { --r: clamp(110px, 31vw, 134px); width: 70px; height: 42px; margin-left: -35px; margin-top: -21px; }
  .platform-pill img { max-width: 54px; max-height: 24px; }
  .scene__advisor { left: 0; margin-left: 0; bottom: -14px; width: 150px; transform: rotate(2deg); }
  .scene__advisor img { height: 72px; }
  .scene__advisor-meta { padding: 8px 10px 10px; }
  .scene__advisor-meta .text { font-size: 11px; }
  .scene__chip--tl { top: -2px; left: 0; }
  .scene__chip--br { bottom: -2px; right: 0; }

  /* --- Section rhythm: reclaim vertical space, tighten heads & headings --- */
  .how, .channels, .roles, .advisor, .why, .inquiry, .faq, .insights { padding-top: 64px; padding-bottom: 64px; }
  .sequence { padding-top: 56px; padding-bottom: 56px; }
  .refs { padding-top: 40px; padding-bottom: 36px; }
  .how__head, .why__head { margin-bottom: 32px; }
  .channels__head, .roles__head, .faq__head, .insights__head { margin-bottom: 28px; }
  h2 { font-size: 26px; line-height: 1.12; letter-spacing: -0.02em; }
  .cb { min-height: 160px; padding: 22px; }
  .role { padding: 22px 20px; }
  .why-card { padding: 22px 20px; }
  .post { padding: 24px 22px; min-height: 0; }
  .role--more { flex-direction: column; align-items: flex-start; gap: 18px; }
  .role--more .btn { width: 100%; justify-content: center; }
  .faq__item summary { padding: 18px; font-size: 15.5px; gap: 16px; }
  .faq__body { padding: 0 18px 18px; font-size: 14.5px; }

  /* --- Advisor (light) section: keep the photo visible, quote as bottom caption --- */
  .advisor__media { aspect-ratio: 3 / 2; }
  .advisor__quote { left: 16px; right: 16px; bottom: 16px; max-width: none; font-size: 13px; padding: 14px 16px; }
  .advisor__chip { left: 16px; top: 16px; }

  /* --- Touch targets (>=44px) --- */
  .cb__link { min-height: 44px; align-items: center; margin-top: 14px; padding: 4px 0; }
  .form-row input, .form-row select { min-height: 44px; }
  .ftr ul { gap: 4px; }
  .ftr ul a, .ftr .cookie-trigger { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 0; }
  .btn--small { min-height: 44px; }
  .ftr__base a { padding: 4px 0; display: inline-block; }
}

/* post card as link */
a.post { text-decoration: none; }
