/* ============================================================
   VEYCURA — design tokens
   Palette / type / radii / shadow language ported from the
   nordpixel.ch structural + motion audit (see CONTENT.md / plan).
   ============================================================ */
:root {
  --bg:        #0A0E14;
  --ink:       #EFF3F8;
  --mut:       #93A3B8;
  --dim:       #5B6B80;
  --acc:       #4272D4;
  --acc-2:     #2F55A6;
  --line:      rgba(239, 243, 248, .08);
  --card-light:#F0F3F7;
  --green:     #57B08C;

  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease:      cubic-bezier(.16, 1, .3, 1);
  --ease-back: cubic-bezier(.32, 1.65, .5, 1);
  --ease-out2: cubic-bezier(.22, 1, .36, 1);

  --sec: clamp(76px, 9vw, 124px);
  --wrap: 1140px;
  --nav-h: 84px;
}

/* White-band token flip — mirrors nordpixel's .band-light pattern */
.band-light {
  background: #FFFFFF;
  --ink: #0A0E14;
  --mut: #44546A;
  --dim: #5B6B80;
  --line: rgba(10, 14, 20, .1);
  color: var(--ink);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

::selection { background: var(--acc); color: var(--bg); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 1200;
  background: var(--acc); color: #fff; padding: .75rem 1.25rem; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .35em;
  text-transform: uppercase; color: var(--acc);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--acc); }

h1, h2, h3, h4 { font-family: var(--font); margin: 0; }

.section { padding: var(--sec) 0; position: relative; }

/* ============================================================
   Reduced motion — universal early-out
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal .rv-c, .tw > i { opacity: 1 !important; transform: none !important; translate: none !important; }
}

/* ============================================================
   Reveal system
   30px rise + fade, 900ms, var(--ease); children use `translate`
   so a hover transform on the same element never fights it.
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rv-delay, 0s);
}
.reveal.on { opacity: 1; transform: none; }

.reveal .rv-c {
  opacity: 0; translate: 0 20px;
  transition: opacity .8s var(--ease), translate .8s var(--ease);
}
.reveal.on .rv-c { opacity: 1; translate: none; }

/* ============================================================
   Word-split heading reveal
   ============================================================ */
.tw { display: inline-block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.tw > i {
  display: inline-block; font-style: normal;
  transform: translateY(115%) rotate(3deg); opacity: 0;
  transition: transform .85s var(--ease), opacity .45s ease;
  transition-delay: var(--w-delay, 0s);
}
.ts-on .tw > i { transform: none; opacity: 1; }

/* ============================================================
   Scroll progress + nav
   ============================================================ */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
  z-index: 1100; pointer-events: none;
}

.site-head {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(calc(100% - 32px), 1140px);
}
.bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 10px 12px 10px 20px;
  background: rgba(10, 14, 20, .55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(239, 243, 248, .1);
  border-radius: 999px;
  transition: background .45s var(--ease), border-radius .45s var(--ease),
              box-shadow .45s var(--ease), margin .45s var(--ease), transform .18s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}
.site-head.scrolled .bar {
  background: rgba(10, 14, 20, .9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: #fff;
}
.brand-mark { height: 30px; width: auto; max-width: 40px; display: block; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  font-size: .87rem; font-weight: 500; color: var(--mut);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .06); }

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

.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, .06); border-radius: 999px; padding: 3px;
}
.lang-toggle button {
  border: none; background: transparent; color: var(--mut);
  font-family: inherit; font-size: .76rem; font-weight: 700;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-toggle button.is-active { background: #fff; color: var(--bg); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; align-items: center; justify-content: center;
  transition: border-color .2s var(--ease);
}

.nav-mobile {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(10, 14, 20, .96); border-radius: 20px;
  border: 1px solid var(--line);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), padding .4s var(--ease);
}
.site-head.is-open .nav-mobile { max-height: 320px; opacity: 1; padding: 10px; }
.nav-mobile a { display: block; padding: 12px 16px; border-radius: 12px; color: var(--mut); font-weight: 500; }
.nav-mobile a:hover { background: rgba(255, 255, 255, .06); color: #fff; }

/* ============================================================
   Buttons — the full nordpixel kit
   magnetic + label slide-swap + ripple + particle burst
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 16px 32px; font-family: inherit;
  font-size: 15px; font-weight: 600; border: 1px solid transparent;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn-solid { background: var(--acc); color: #fff; }
.btn-solid:hover { background: var(--acc-2); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(66, 114, 212, .45); }

.btn-ghost { border-color: rgba(255, 255, 255, .18); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--acc); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(66, 114, 212, .2); }
.band-light .btn-ghost { border-color: rgba(10,14,20,.15); color: var(--ink); }

.btn:active { transform: translateY(-1px) scale(.96); }

.btn-label { position: relative; display: inline-block; overflow: hidden; }
.btn-label span {
  display: block; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.btn-label span.dup {
  position: absolute; inset: 0; transform: translateY(100%);
}
.btn:hover .btn-label span:not(.dup) { transform: translateY(-100%); opacity: 0; }
.btn:hover .btn-label span.dup { transform: translateY(0); }

.ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255, 255, 255, .35); transform: scale(0); opacity: 1;
  animation: rippleGo .6s ease-out forwards;
}
.btn-ghost .ripple { background: rgba(66, 114, 212, .3); }
@keyframes rippleGo { to { transform: scale(1); opacity: 0; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0; will-change: transform, opacity;
}
.hero-media picture, .hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media img { animation: heroZoom 16s .15s var(--ease) forwards; }
.hero-media video {
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-media video.is-playing { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.03); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,14,20,.35) 0%, rgba(10,14,20,.15) 40%, rgba(10,14,20,1) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-tag {
  opacity: 0; transform: translateY(34px);
  animation: rise 1s var(--ease) .2s forwards;
  margin-bottom: 22px;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.hero-word {
  font-weight: 700; letter-spacing: .3em;
  font-size: clamp(40px, 11vw, 132px); line-height: 1;
  color: #fff; margin: 0;
  animation: brandIn 2.6s var(--ease) both;
  text-shadow: 0 0 30px rgba(66, 114, 212, .55);
}
.hero-word .dot { color: var(--acc); }
@keyframes brandIn { from { letter-spacing: .62em; opacity: 0; } to { letter-spacing: .12em; opacity: 1; } }
.hero-sub {
  margin: 22px auto 0; max-width: 560px; color: var(--mut);
  font-size: 1.05rem; line-height: 1.7;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--ease) .6s forwards;
}
.hero-cta {
  margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--ease) .8s forwards;
}
.hero-down {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.5) 40%, transparent);
  overflow: hidden;
}
.hero-down::after {
  content: ""; position: absolute; left: 0; top: -20px; width: 100%; height: 20px;
  background: linear-gradient(180deg, transparent, #fff);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop { 0% { top: -20px; } 100% { top: 46px; } }

/* ============================================================
   Partner / tool marquee
   ============================================================ */
.clients { padding: 44px 0 56px; position: relative; z-index: 1; }
.clients .eyebrow { display: flex; justify-content: center; margin-bottom: 28px; }
.clients .eyebrow::before { display: none; }
.mgroup {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.mtrack {
  display: flex; width: max-content; gap: 64px; align-items: center;
  animation: mar 46s linear infinite;
}
.mgroup:hover .mtrack { animation-play-state: paused; }
.mtrack .tool {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  height: 34px;
  transition: transform .35s var(--ease-out2), filter .35s ease;
}
.mtrack .tool:hover { transform: translateY(-3px); filter: brightness(1.15); }
.mtrack .tool svg { height: 34px; width: auto; display: block; }
@keyframes mar { to { transform: translateX(-50%); } }

/* ============================================================
   Transform / intro section
   ============================================================ */
.xform {
  text-align: center;
  overflow: hidden;
  position: relative; z-index: 1;
}

/* Shared background field so the glow bends continuously across the
   marquee + intro sections instead of restarting at each section edge. */
.dark-flow { position: relative; background: var(--bg); overflow: hidden; }
.dark-flow::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(130% 85% at 50% 55%, rgba(66, 114, 212, .16), transparent 68%);
}
.xform h2 { font-size: clamp(30px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin: 18px auto 0; max-width: 780px; }
.xform .lede { max-width: 560px; margin: 22px auto 0; color: var(--mut); font-size: 1.02rem; line-height: 1.75; }
.xform .hero-cta { animation: none; opacity: 1; transform: none; margin-top: 34px; }

/* ============================================================
   Benefits tabs widget
   ============================================================ */
.vorteile-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center;
}
.wv-tabs { display: flex; flex-direction: column; gap: 14px; }
.wv-tab {
  position: relative; text-align: left; width: 100%;
  background: #fff; border: 1px solid rgba(10, 14, 20, .08);
  border-radius: 16px; padding: 20px 24px; cursor: pointer; overflow: hidden;
  color: var(--mut); font-family: inherit;
  box-shadow: 0 2px 10px rgba(16, 24, 40, .04);
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease);
}
.wv-tab .wv-num { font-weight: 800; color: var(--acc); margin-right: 12px; }
.wv-tab.is-active {
  background: #fff; color: var(--ink);
  border-color: rgba(66, 114, 212, .35);
  box-shadow: 0 14px 30px rgba(16, 24, 40, .08);
}
.wv-tab-bar {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0%;
  background: var(--acc);
}
.wv-tab.is-active .wv-tab-bar.run { animation: wvProg 5s linear forwards; }
@keyframes wvProg { from { width: 0; } to { width: 100%; } }

.wv-view {
  position: relative; min-height: 300px; border-radius: 24px;
  background: #fff; border: 1px solid rgba(10, 14, 20, .08);
  box-shadow: 0 24px 60px rgba(16, 24, 40, .08);
  padding: 44px; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
}
.wv-ghost {
  position: absolute; right: 28px; bottom: 8px; line-height: 1;
  font-size: clamp(90px, 13vw, 170px); font-weight: 800;
  color: rgba(66, 114, 212, .1);
  -webkit-text-stroke: 1.5px rgba(66, 114, 212, .18);
}
.wv-pane { position: relative; z-index: 1; }
.wv-pane h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.wv-pane p { color: var(--mut); line-height: 1.7; max-width: 420px; }

.wv-seal {
  position: absolute; right: -20px; top: -20px; width: 104px; height: 104px;
  opacity: 0; transform: scale(.6) rotate(-22deg);
  filter: drop-shadow(0 10px 24px rgba(16, 24, 40, .14));
  transition: opacity .95s var(--ease-back) .3s, transform .95s var(--ease-back) .3s;
}
.wv-seal.on { opacity: 1; transform: scale(1) rotate(0); }
.wv-seal .sl-ring { transform-box: fill-box; transform-origin: 50% 50%; animation: wvSeal 24s linear infinite; }
@keyframes wvSeal { to { transform: rotate(360deg); } }

/* ============================================================
   About / what we do
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-grid h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 18px; }
.about-grid p { color: var(--mut); font-size: 1.02rem; line-height: 1.8; margin: 0 0 16px; }
.about-grid p:last-child { margin-bottom: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); padding: .7rem 1.2rem; border-radius: 999px;
  font-weight: 600; font-size: .88rem; background: rgba(255,255,255,.03); color: var(--ink);
  transition: transform .3s var(--ease-out2), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.chip:hover { border-color: var(--acc); color: var(--acc); transform: translateY(-3px); background: rgba(66,114,212,.08); }
.band-light .chip { background: #fff; }

/* ============================================================
   Founder block — feature band
   ============================================================ */
.founder-feature {
  min-height: 70vh; display: flex; align-items: center;
  position: relative; overflow: hidden; isolation: isolate;
}
.founder-feature::before {
  content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none;
  background: radial-gradient(58% 60% at 14% 22%, rgba(66, 114, 212, .12), transparent 68%),
    radial-gradient(46% 54% at 96% 88%, rgba(66, 114, 212, .08), transparent 70%);
}
.founder-feature .wrap { width: 100%; }

.founder-wrap { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
.founder-lead { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.founder-copy { display: flex; flex-direction: column; gap: 26px; }

.avatar-chip {
  width: 136px; height: 136px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #fff; font-weight: 800; font-size: 2rem;
  box-shadow: 0 24px 48px -18px rgba(66, 114, 212, .55);
}
.avatar-chip.sm { width: 52px; height: 52px; font-size: .95rem; box-shadow: none; }
.founder-name { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 4px 0 0; }
.founder-role { color: var(--acc); font-weight: 600; font-size: .95rem; }
.founder-quote {
  font-size: clamp(20px, 2.3vw, 26px); line-height: 1.6; font-weight: 500;
  color: var(--ink); margin: 0;
}
.founder-note { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.75; color: var(--mut); margin: 0; max-width: 560px; }

/* ============================================================
   Testimonials — centered carousel
   ============================================================ */
.testimonial-section {
  position: relative; isolation: isolate; overflow: hidden; min-height: 708px;
  padding: clamp(88px, 9vw, 108px) 24px 96px; background: #06101a;
}
.testimonial-section::before {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background: radial-gradient(ellipse 64% 68% at 50% 37%, rgba(12, 29, 45, .85), transparent 72%),
    linear-gradient(112deg, #07111b 0%, #030a11 47%, #08121c 100%);
}
.testimonial-glow {
  position: absolute; z-index: -1; width: 68vw; height: 100%; top: 3%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(27, 73, 111, .17), transparent 68%); filter: blur(20px); pointer-events: none;
}
.testimonial-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-kicker {
  display: inline-flex; align-items: center; gap: 13px; color: #3379d7; font-size: 11px;
  font-weight: 600; letter-spacing: .42em; line-height: 1; margin-bottom: 25px;
}
.testimonial-kicker::before, .testimonial-kicker::after { content: ""; width: 26px; height: 1px; background: #3379d7; opacity: .7; }
.testimonial-section h2 { font-size: clamp(38px, 4vw, 52px); line-height: 1.04; letter-spacing: -.055em; font-weight: 700; color: #f1f5fb; }
.vslider { position: relative; max-width: 770px; margin: 9px auto 0; text-align: center; min-height: 292px; }
.vquote {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility 0s .6s;
}
.vquote.on { position: relative; opacity: 1; visibility: visible; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.quote-mark { color: #173356; font-family: Georgia, serif; font-weight: 700; font-size: 102px; line-height: .66; height: 74px; overflow: hidden; margin-top: 12px; }
.vquote blockquote { max-width: 760px; margin: 0 auto 42px; color: #e4eaf2; font-size: clamp(20px, 2.1vw, 27px); line-height: 1.45; letter-spacing: -.04em; font-weight: 500; }
.vwho { display: flex; align-items: center; justify-content: center; gap: 15px; text-align: left; }
.testimonial-avatar { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, #c48659, #223b4a 55%, #e9d8c4); border: 2px solid rgba(255,255,255,.2); color: #fff; font-size: 13px; font-weight: 800; }
.testimonial-person { min-width: 148px; }
.stars { color: #3478d9; letter-spacing: 2px; font-size: 12px; line-height: 1; margin-bottom: 8px; }
.vwho .who-name { color: #f3f6fa; font-size: 14px; font-weight: 700; line-height: 1.2; }
.vwho .who-role { color: #8497ad; font-size: 12.5px; line-height: 1.38; margin-top: 3px; }
.vnav { display: flex; align-items: center; justify-content: center; gap: 21px; margin-top: 47px; }
.vnav button {
  width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(183, 201, 220, .22);
  background: rgba(255,255,255,.025); color: #3980de; cursor: pointer; font-size: 25px; line-height: 1;
  transition: border-color .3s var(--ease), transform .3s var(--ease-out2), background .3s var(--ease);
}
.vnav button:hover { border-color: #3980de; background: rgba(57,128,222,.1); transform: translateY(-2px); }
.v-dots { display: flex; align-items: center; gap: 9px; }
.v-dots i { width: 8px; height: 8px; border-radius: 50%; background: #344554; transition: transform .3s var(--ease), background .3s var(--ease); }
.v-dots i.on { background: #3479dc; transform: scale(1.22); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-col { max-width: 820px; margin: 0 auto; }
.faq-it {
  border: 1px solid var(--line); border-radius: 16px; padding: 6px 22px;
  margin-bottom: 12px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-it[open] { box-shadow: 0 14px 40px rgba(0,0,0,.15); border-color: rgba(66,114,212,.35); }
.faq-it summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 1rem;
}
.faq-it summary::-webkit-details-marker { display: none; }
.faq-x {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.06);
  flex-shrink: 0; position: relative; transition: background .3s var(--ease), transform .35s var(--ease-out2);
}
.faq-it[open] .faq-x { background: var(--acc); transform: rotate(180deg); }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink);
  transform: translate(-50%, -50%);
}
.faq-x::before { width: 10px; height: 1.5px; }
.faq-x::after { width: 1.5px; height: 10px; transition: opacity .25s ease; }
.faq-it[open] .faq-x::before, .faq-it[open] .faq-x::after { background: #fff; }
.faq-it[open] .faq-x::after { opacity: 0; }
.faq-it p { margin: 0 0 20px; color: var(--mut); line-height: 1.7; animation: faqIn .35s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Final CTA — canvas hills
   ============================================================ */
.cta-sec { padding: var(--sec) 0; }
.hills-card {
  position: relative; border-radius: 36px; overflow: hidden;
  background: #0d1420; padding: clamp(48px, 8vw, 96px) 24px; text-align: center;
}
.hills-card canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hills-inner { position: relative; z-index: 1; }
.hills-inner h2 { font-size: clamp(28px, 4.2vw, 50px); font-weight: 800; letter-spacing: -.02em; max-width: 720px; margin: 0 auto 18px; line-height: 1.15; }
.hills-inner p { color: var(--mut); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.contact-line { margin-top: 26px; color: var(--mut); font-size: .92rem; }
.contact-line a { color: var(--ink); font-weight: 600; }
.contact-line a:hover { color: var(--acc); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #05070b; padding: 72px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-brand p { color: var(--mut); font-size: .92rem; line-height: 1.7; max-width: 300px; margin: 14px 0 0; }
.foot-col h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mut); margin-bottom: 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--ink); font-size: .92rem; transition: color .2s var(--ease); }
.foot-col a:hover { color: var(--acc); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: .82rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .vorteile-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-badges { grid-template-columns: repeat(2, 1fr); }
  .pcards { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .founder-feature { min-height: auto; padding: 8px 0; }
  .founder-wrap { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-lead { align-items: center; }
  .founder-copy { align-items: center; }
  .founder-note { max-width: 100%; }
  .founder-wrap .avatar-chip { margin: 0 auto; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: calc(var(--sec) * .6) 0; }
  .proof-badges { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta .btn, .xform .hero-cta .btn { width: 100%; }
}
