/* =============== TOKENS =============== */
:root{
  --ivory: oklch(0.985 0.006 90);
  --ivory-2: oklch(0.965 0.008 90);
  --ink:   oklch(0.145 0.012 260);
  --ink-2: oklch(0.32 0.012 260);
  --mute:  oklch(0.55 0.01 260);
  --line:  oklch(0.88 0.008 90);
  --line-2:oklch(0.78 0.01 260);

  --lime:  oklch(0.88 0.18 125);
  --lime-deep: oklch(0.74 0.17 128);
  --lavender: oklch(0.74 0.13 290);
  --lavender-deep: oklch(0.55 0.14 290);
  --coral: oklch(0.78 0.13 35);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(20,20,30,0.04), 0 1px 1px rgba(20,20,30,0.03);
  --shadow-md: 0 12px 40px -12px rgba(20,20,30,0.10), 0 4px 12px -6px rgba(20,20,30,0.06);
  --shadow-lg: 0 40px 80px -30px rgba(20,20,30,0.18), 0 16px 32px -16px rgba(20,20,30,0.08);

  --font-sans: 'Geist', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-display: 'Instrument Serif', 'Times New Roman', serif;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

*{ box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body{
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01","ss02","cv11";
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  /* clip instead of hidden — hidden breaks position:sticky on child elements */
  overflow-x: clip;
}
body.menu-open{ overflow: hidden; }
::selection{ background: var(--lime); color: var(--ink);}
a{ color: inherit; text-decoration:none;}
button{ font: inherit; color:inherit; background:none; border:0; cursor:pointer;}
img,svg{ display:block; max-width:100%;}

/* =============== NAV =============== */
.nav{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: color-mix(in oklab, var(--ivory) 75%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
  /* Promote nav into its own layer — avoids repaint on every scroll frame */
  will-change: transform;
  transform: translateZ(0);
}
/* Cheaper blur on mobile to keep scroll silky on weaker GPUs */
@media (max-width: 880px){
  .nav{
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    background: color-mix(in oklab, var(--ivory) 88%, transparent);
  }
}
.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display:flex; align-items:center; justify-content:space-between;
  gap: 24px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 52;
}
.logo .mark{
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--ivory);
  display:grid; place-items:center;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1;
}
.logo .dot{ color: var(--lime-deep); }
.nav-links{
  display:flex; gap: 4px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a{
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active{ background: var(--ivory-2); color: var(--ink);}
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--ink); color: var(--ivory);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .15s, background .2s;
  position: relative;
  z-index: 52;
}
.nav-cta:hover{ background: var(--ink-2);}
.nav-cta .arrow{ width:14px; height:14px;}

/* =============== HAMBURGER =============== */
.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 52;
  position: relative;
  flex-shrink: 0;
}
.hamburger:hover{ background: var(--ivory-2); }
.hamburger span{
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* =============== MOBILE NAV =============== */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: 90px var(--pad) 40px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
  gap: 0;
}
.mobile-nav.open{ transform: none; }

.mobile-nav-links{
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.mobile-link{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(30px, 7vw, 48px);
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color .2s, padding-left .3s cubic-bezier(.2,.7,.2,1);
  opacity: 0;
  transform: translateX(20px);
}
.mobile-nav.open .mobile-link{
  opacity: 1;
  transform: none;
  transition: color .2s, padding-left .3s cubic-bezier(.2,.7,.2,1),
              opacity .4s cubic-bezier(.2,.7,.2,1),
              transform .4s cubic-bezier(.2,.7,.2,1);
}
.mobile-nav.open .mobile-link:nth-child(1){ transition-delay: .05s;}
.mobile-nav.open .mobile-link:nth-child(2){ transition-delay: .1s;}
.mobile-nav.open .mobile-link:nth-child(3){ transition-delay: .15s;}
.mobile-nav.open .mobile-link:nth-child(4){ transition-delay: .2s;}
.mobile-nav.open .mobile-link:nth-child(5){ transition-delay: .25s;}
.mobile-link::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}
.mobile-link:hover{ color: var(--lime-deep); padding-left: 10px; }
.mobile-link:hover::before{ opacity: 1; }

.mobile-nav-cta{
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s;
}
.mobile-nav-cta:hover{ background: var(--ink-2); }

.mobile-nav-foot{
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-foot a{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .04em;
  padding: 5px 0;
  transition: color .2s;
}
.mobile-nav-foot a:hover{ color: var(--ink); }

@media (max-width: 820px){
  .nav-links{ display:none; }
  .hamburger{ display: flex; }
}
@media (max-width: 480px){
  .nav-cta{ display: none; }
}

/* =============== LAYOUT =============== */
section{ position:relative; padding: clamp(80px, 12vw, 160px) 0;}
.container{ max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);}
.eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display:inline-flex; align-items:center; gap: 8px;
}
.eyebrow::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--lime-deep);
}
h1, h2, h3{ font-weight: 500; letter-spacing: -0.03em; text-wrap: balance; }
h1{ font-size: clamp(48px, 9vw, 124px); line-height: 0.95;}
h2{ font-size: clamp(36px, 6vw, 76px); line-height: 1.02;}
h3{ font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15;}
.display{ font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -0.025em;}
p{ text-wrap: pretty; color: var(--ink-2);}
.lead{ font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; color: var(--ink-2); max-width: 56ch;}

/* =============== HERO =============== */
.hero{
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: clip;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px){ .hero-grid{ grid-template-columns: 1fr;} }
.hero h1 .word{
  display:inline-block;
  opacity: 0; transform: translateY(40px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .word:nth-child(1){ animation-delay: .05s;}
.hero h1 .word:nth-child(2){ animation-delay: .15s;}
.hero h1 .word:nth-child(3){ animation-delay: .25s;}
.hero h1 .word:nth-child(4){ animation-delay: .35s;}
.hero h1 .word:nth-child(5){ animation-delay: .45s;}
@keyframes rise{ to{ opacity:1; transform:none;}}
.hero .accent-underline{
  position: relative; display:inline-block;
}
.hero .accent-underline::after{
  content:""; position:absolute; left:-2px; right:-2px; bottom:6%; height:24%;
  background: var(--lime);
  z-index:-1;
  transform-origin: left;
  transform: scaleX(0);
  animation: hl .8s .9s cubic-bezier(.2,.7,.2,1) forwards;
  border-radius: 4px;
}
@keyframes hl{ to{ transform: scaleX(1);}}
.hero-sub{
  margin-top: 32px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 46ch;
  opacity:0; animation: fadein .8s .6s forwards;
}
@keyframes fadein{ to{ opacity:1;}}
.hero-cta{
  margin-top: 40px;
  display:flex; gap:12px; flex-wrap:wrap;
  opacity:0; animation: fadein .8s .8s forwards;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.btn-primary{ background: var(--ink); color: var(--ivory);}
.btn-primary:hover{ background: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-md);}
.btn-ghost{ background: transparent; color: var(--ink); border: 1px solid var(--line-2);}
.btn-ghost:hover{ background: var(--ivory-2);}

.hero-meta{
  margin-top: 56px;
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  opacity:0; animation: fadein .8s 1s forwards;
}
.hero-meta .stat{ display:flex; flex-direction:column; gap:6px;}
.hero-meta .num{
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1; color: var(--ink);
}
.hero-meta .lbl{
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mute);
}

/* hero canvas */
.hero-canvas{
  aspect-ratio: 1/1;
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(at 30% 20%, color-mix(in oklab, var(--lime) 60%, transparent), transparent 55%),
    radial-gradient(at 70% 80%, color-mix(in oklab, var(--lavender) 70%, transparent), transparent 50%),
    var(--ivory-2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.hero-canvas svg{ position:absolute; inset:0; width:100%; height:100%;}
.hc-grid line{ stroke: color-mix(in oklab, var(--ink) 8%, transparent); stroke-width: 1;}
.floating-pill{
  position:absolute;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display:inline-flex; align-items:center; gap:8px;
  backdrop-filter: blur(8px);
}
.floating-pill .dotG{ width:6px; height:6px; border-radius:50%; background: var(--lime-deep); box-shadow: 0 0 0 4px color-mix(in oklab, var(--lime) 35%, transparent);}
.fp-1{ top: 12%; left: 8%; animation: floatA 7s ease-in-out infinite;}
.fp-2{ bottom: 18%; right: 10%; animation: floatB 9s ease-in-out infinite;}
.fp-3{ bottom: 6%; left: 14%; animation: floatA 8s ease-in-out 2s infinite;}
@keyframes floatA{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);}}
@keyframes floatB{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(10px);}}

/* =============== SCROLL STAGE =============== */
/* Total stage height = (steps × 100vh) + 1 viewport for the pin window.
   Mobile uses svh (small viewport) to avoid URL-bar layout shifts. */
.stage{
  /* 4 steps: 4 × 100vh = 400vh travel, with sticky 100vh = 300vh extra */
  height: 320vh;
  position: relative;
  /* Trigger GPU compositing on the wrapper so sticky child stays smooth */
  contain: layout paint;
}
.stage.steps-3{ height: 240vh; }

.stage-pin{
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  /* Promote to its own layer for smoother sticky scrolling */
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 880px){
  /* Mobile: keep sticky, shorter total scroll, vertical stack (canvas top, copy bottom) */
  .stage{ height: 280svh; }
  .stage.steps-3{ height: 220svh; }
  .stage-pin{
    height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: 40% 60%;
  }
}

.stage-copy{
  padding: clamp(40px, 6vw, 88px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 28px;
  position: relative;
  min-width: 0;
}

.stage-step{
  position: absolute; inset: 0;
  padding: clamp(40px, 6vw, 88px);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .6s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  will-change: opacity, transform;
}
.stage-step.active{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.stage-step h2{ color: var(--ivory); max-width: 14ch;}
.stage-step p{ color: color-mix(in oklab, var(--ivory) 75%, transparent); max-width: 44ch; font-size: 18px;}
.stage-step .tag{
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid color-mix(in oklab, var(--ivory) 25%, transparent);
  border-radius: 999px; padding: 6px 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime);
  width: max-content;
}
.stage-step .tag::before{
  content:""; width:6px; height:6px; border-radius:50%; background: var(--lime);
}

@media (max-width: 880px){
  .stage-copy{
    padding: clamp(24px, 5vw, 40px);
    order: 2;
    overflow: hidden;
  }
  .stage-step{
    padding: clamp(24px, 5vw, 40px);
    gap: 16px;
  }
  .stage-step h2{
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.05;
  }
  .stage-step p{
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 480px){
  .stage-step h2{ font-size: clamp(26px, 7.5vw, 36px); }
  .stage-step p{ font-size: 14.5px; }
  .stage-step{ gap: 14px; }
}

.stage-canvas{
  position: relative; overflow: hidden;
  background:
    radial-gradient(at 60% 30%, color-mix(in oklab, var(--lavender-deep) 45%, transparent), transparent 60%),
    radial-gradient(at 20% 80%, color-mix(in oklab, var(--lime-deep) 30%, transparent), transparent 55%),
    var(--ink);
}
@media (max-width: 880px){
  .stage-canvas{
    order: 1;
    border-bottom: 1px solid color-mix(in oklab, var(--ivory) 12%, transparent);
  }
}

.stage-canvas .glyph{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transition:
    opacity .55s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
  transform: translate3d(0, 0, 0) scale(.92) rotate(-4deg);
  will-change: opacity, transform;
}
.stage-canvas .glyph.active{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}
.stage-canvas .glyph svg{
  width: 64%; height: 64%;
  max-width: 520px; max-height: 520px;
}
@media (max-width: 880px){
  .stage-canvas .glyph svg{
    width: 72%; height: 78%;
    max-width: 340px; max-height: 340px;
  }
}

.stage-progress{
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  color: color-mix(in oklab, var(--ivory) 55%, transparent);
  align-items: center;
  z-index: 2;
}
.stage-progress .bar{
  width: 200px; height: 2px;
  background: color-mix(in oklab, var(--ivory) 15%, transparent);
  border-radius: 2px; overflow: hidden;
}
.stage-progress .bar-fill{
  height: 100%; background: var(--lime);
  width: 0%;
  transition: width .15s linear;
  will-change: width;
}
@media (max-width: 880px){
  .stage-progress{ bottom: 18px; }
  .stage-progress .bar{ width: 100px; }
  .stage-progress span:last-child{ display: none; }
}

/* Light variant */
.stage.light .stage-pin{
  background: var(--ivory);
  color: var(--ink);
}
.stage.light .stage-step h2{ color: var(--ink);}
.stage.light .stage-step p{ color: var(--ink-2);}
.stage.light .stage-step .tag{
  border-color: var(--line-2);
  color: var(--lime-deep);
}
.stage.light .stage-canvas{
  background:
    radial-gradient(at 70% 30%, color-mix(in oklab, var(--lime) 30%, transparent), transparent 60%),
    radial-gradient(at 20% 80%, color-mix(in oklab, var(--lavender) 25%, transparent), transparent 55%),
    var(--ivory-2);
  border-left: 1px solid var(--line);
}
@media (max-width: 880px){
  .stage.light .stage-canvas{
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
}
.stage.light .stage-progress{ color: var(--mute);}
.stage.light .stage-progress .bar{ background: var(--line);}

/* Plum variant */
.stage.plum .stage-pin{
  background: oklch(0.18 0.04 290);
  color: var(--ivory);
}
.stage.plum .stage-canvas{
  background:
    radial-gradient(at 30% 30%, color-mix(in oklab, var(--lavender-deep) 60%, transparent), transparent 55%),
    radial-gradient(at 80% 80%, color-mix(in oklab, var(--lime-deep) 30%, transparent), transparent 55%),
    oklch(0.18 0.04 290);
}

/* Reduced motion: disable scroll-driven animations */
@media (prefers-reduced-motion: reduce){
  .stage{ height: auto; }
  .stage-pin{
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .stage-step{
    position: relative; inset: auto;
    opacity: 1;
    transform: none;
    padding: clamp(24px, 5vw, 48px);
  }
  .stage-canvas{ min-height: 50vh; }
  .stage-progress{ display: none; }
  html{ scroll-behavior: auto; }
}

/* =============== PRODUKTE / PROZESS =============== */
.process-grid{
  margin-top: 64px;
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px){ .process-grid{ grid-template-columns: 1fr 1fr;}}
@media (max-width: 560px){ .process-grid{ grid-template-columns: 1fr;}}
.step{
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display:flex; flex-direction:column; gap:18px;
  min-height: 280px;
  position: relative;
  transition: background .2s;
}
.step:hover{ background: var(--ivory-2);}
.step:last-child{ border-right: 1px solid var(--line);}
.step .step-num{
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--mute); text-transform: uppercase;
}
.step .step-time{
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lime-deep);
  display:inline-flex; align-items:center; gap:8px;
}
.step .step-time::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--lime) 30%, transparent);
}
.step h3{ font-size: 22px;}
.step .glyph{
  width: 44px; height: 44px;
  color: var(--ink);
}

/* =============== PRICING =============== */
.pricing{ background: var(--ivory-2);}
.pricing-head{
  display:flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.toggle{
  display:inline-flex;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.toggle button{
  position: relative; z-index: 1;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  transition: color .25s;
}
.toggle button.active{ color: var(--ivory);}
.toggle .indicator{
  position:absolute; top:4px; bottom:4px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), width .35s cubic-bezier(.2,.7,.2,1);
}

.price-grid{
  margin-top: 56px;
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px){ .price-grid{ grid-template-columns: 1fr;}}
.price-card{
  background: var(--ivory);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--line);
  display:flex; flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md);}
.price-card.featured{
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured .price-feature{ color: var(--ivory);}
.price-card.featured .price-sub,
.price-card.featured .price-meta,
.price-card.featured p{ color: color-mix(in oklab, var(--ivory) 70%, transparent);}
.price-card.featured .price-check{
  background: color-mix(in oklab, var(--lime) 100%, transparent);
  color: var(--ink);
}

.price-tag{
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--lime) 80%, transparent);
  color: oklch(0.25 0.06 130);
}
.price-name{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount{
  font-size: 64px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  display:flex; align-items: baseline; gap: 8px;
}
.price-amount .cur{ font-family: var(--font-sans); font-style: normal; font-size: 24px; font-weight: 400; transform: translateY(-22px); color: var(--ink-2);}
.price-card.featured .price-amount .cur{ color: color-mix(in oklab, var(--ivory) 70%, transparent);}
.price-amount .per{ font-family: var(--font-sans); font-size: 16px; font-style: normal; color: var(--mute); align-self: center;}
.price-card.featured .price-amount .per{ color: color-mix(in oklab, var(--ivory) 60%, transparent);}
.price-sub{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--mute);
}
.price-list{ list-style: none; display:flex; flex-direction:column; gap:14px; margin-top: 4px;}
.price-feature{ display:flex; gap: 12px; align-items: flex-start; font-size: 15px;}
.price-check{
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  display:grid; place-items:center;
  margin-top: 2px;
}
.price-cta{
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink); color: var(--ivory);
  display:inline-flex; justify-content: center; align-items:center; gap:10px;
  font-size: 15px; font-weight: 500;
  transition: background .2s, transform .2s;
}
.price-card.featured .price-cta{ background: var(--lime); color: var(--ink);}
.price-card.featured .price-cta:hover{ background: oklch(0.92 0.18 122);}
.price-cta:hover{ background: var(--ink-2);}
.price-meta{ font-size: 13px; color: var(--mute); }
.price-meta strong{ color: var(--ink); font-weight: 500;}
.price-card.featured .price-meta strong{ color: var(--ivory);}

.price-blob{
  position:absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(at 30% 30%, color-mix(in oklab, var(--lime) 50%, transparent), transparent 70%);
  pointer-events: none;
}
.price-card.featured .price-blob{
  background: radial-gradient(at 30% 30%, color-mix(in oklab, var(--lavender) 60%, transparent), transparent 70%);
}

.price-check.price-x{
  background: transparent;
  color: var(--mute);
  border: 1px solid var(--line-2);
}
.price-card.featured .price-check.price-x{
  color: color-mix(in oklab, var(--ivory) 55%, transparent);
  border-color: color-mix(in oklab, var(--ivory) 22%, transparent);
  background: transparent;
}

/* SUPPORT */
.support-grid{
  margin-top: 48px;
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px){ .support-grid{ grid-template-columns: 1fr;}}
.support-card{
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display:flex; flex-direction:column; gap:16px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.support-card:hover{
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.support-card.featured{
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.support-tag{
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ivory-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.support-card.featured .support-tag{
  background: var(--lime);
  color: oklch(0.25 0.06 130);
  border-color: var(--lime);
}
.support-amount{
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.support-amount .cur{
  font-family: var(--font-sans); font-style: normal;
  font-size: 22px; transform: translateY(-18px);
  color: var(--ink-2);
}
.support-card.featured .support-amount .cur{
  color: color-mix(in oklab, var(--ivory) 70%, transparent);
}
.support-amount .per{
  font-family: var(--font-sans); font-style: normal;
  font-size: 14px;
  color: var(--mute);
  align-self: center;
}
.support-card.featured .support-amount .per{
  color: color-mix(in oklab, var(--ivory) 60%, transparent);
}
.support-target{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime-deep);
}
.support-card.featured .support-target{ color: var(--lime); }
.support-list{
  list-style: none;
  display:flex; flex-direction:column; gap:10px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.support-card.featured .support-list{
  border-color: color-mix(in oklab, var(--ivory) 18%, transparent);
  color: color-mix(in oklab, var(--ivory) 80%, transparent);
}
.support-list li{ position: relative; padding-left: 18px;}
.support-list li::before{
  content:""; position: absolute; left: 0; top: .65em;
  width: 6px; height: 1px; background: var(--mute);
}
.support-card.featured .support-list li::before{
  background: color-mix(in oklab, var(--ivory) 50%, transparent);
}
.support-list strong{ font-weight: 500; color: var(--ink);}
.support-card.featured .support-list strong{ color: var(--ivory);}

/* SCHUTZKLAUSELN */
.clauses{
  margin-top: clamp(80px, 10vw, 120px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: flex-start;
}
@media (max-width: 880px){ .clauses{ grid-template-columns: 1fr;} }
.clauses-list{
  list-style: none;
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 720px){ .clauses-list{ grid-template-columns: 1fr;}}
.clauses-list li{
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  display:flex; gap:14px; align-items: flex-start;
  transition: background .2s;
}
.clauses-list li:hover{ background: var(--ivory-2);}
.clauses-list .cn{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--lime-deep);
  flex: 0 0 auto;
  line-height: 1.4;
}
.clauses-list p{
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.clauses-list strong{ font-weight: 500; color: var(--ink);}

/* =============== BOOKING =============== */
.booking{ padding-top: clamp(80px, 12vw, 140px); }
.booking-shell{
  margin-top: 56px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 340px 1fr;
}
@media (max-width: 820px){
  .booking-shell{ grid-template-columns: 1fr; }
  .booking-info{ border-right: 0; border-bottom: 1px solid var(--line); }
}

.booking-info{
  padding: 36px;
  border-right: 1px solid var(--line);
  display:flex; flex-direction:column; gap: 22px;
}
.booking-info .org{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--font-display); font-size: 22px;
}
.booking-info .org .mark{
  width: 32px; height: 32px;
  background: var(--ink); color: var(--ivory);
  border-radius: 10px; display:grid; place-items:center;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1;
}
.booking-info h3{ font-size: 26px; line-height: 1.15;}
.booking-info .detail{
  display:flex; gap:10px; align-items: center;
  color: var(--ink-2); font-size: 14px;
}
.booking-info .detail svg{ width:16px; height:16px; color: var(--mute); flex-shrink: 0;}
.booking-info .detail a{ color: var(--ink); transition: color .2s;}
.booking-info .detail a:hover{ color: var(--lime-deep);}
.booking-info p{ color: var(--ink-2); font-size: 14px;}
.free-badge{
  display:inline-flex; align-items:center; gap:8px;
  align-self: flex-start;
  background: color-mix(in oklab, var(--lime) 80%, transparent);
  color: oklch(0.25 0.06 130);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.free-badge::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.25 0.06 130);
}

/* Booking contact / Calendly area */
.booking-contact{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.booking-placeholder{
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.booking-placeholder .bp-icon{
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.booking-placeholder h3{
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.025em;
}
.booking-placeholder > p{
  font-size: 15px;
  color: var(--ink-2);
  max-width: 36ch;
}
.booking-divider{
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}
.contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.contact-btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-btn.phone{
  background: var(--ink);
  color: var(--ivory);
}
.contact-btn.phone:hover{ background: var(--ink-2); }
.contact-btn.email{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.contact-btn.email:hover{ background: var(--ivory-2); transform: none; box-shadow: none; }

/* =============== CTA / FOOTER =============== */
.cta{
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
  overflow:hidden;
}
.cta h2{ color: var(--ivory); font-size: clamp(48px, 8vw, 112px);}
.cta-row{ margin-top: 40px; display:flex; gap: 12px; flex-wrap: wrap;}
.cta-row .btn-primary{ background: var(--lime); color: var(--ink);}
.cta-row .btn-primary:hover{ background: oklch(0.92 0.18 122);}
.cta-row .btn-ghost{ color: var(--ivory); border-color: color-mix(in oklab, var(--ivory) 30%, transparent);}
.cta-row .btn-ghost:hover{ background: color-mix(in oklab, var(--ivory) 6%, transparent);}

.cta-blob{
  position:absolute;
  border-radius:50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.cta-blob.b1{ width: 460px; height: 460px; background: var(--lime); top: -120px; right: -80px;}
.cta-blob.b2{ width: 320px; height: 320px; background: var(--lavender); bottom: -100px; left: -80px;}

footer{
  background: var(--ivory);
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-grid{
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px){ .foot-grid{ grid-template-columns: 1fr 1fr; gap: 24px;}}
@media (max-width: 480px){ .foot-grid{ grid-template-columns: 1fr;}}
.foot-grid h4{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.foot-grid ul{ list-style:none; display:flex; flex-direction: column; gap: 10px;}
.foot-grid a{ color: var(--ink-2); font-size: 14px; transition: color .2s;}
.foot-grid a:hover{ color: var(--ink);}
.foot-bottom{
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .04em;
}
.foot-brand{
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.foot-brand .dot{ color: var(--lime-deep);}
.foot-tag{ color: var(--ink-2); font-size: 14px; max-width: 36ch;}

/* =============== UTILITY =============== */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);}
.reveal.in{ opacity: 1; transform: none;}

.row-flex{ display:flex; flex-wrap:wrap; gap: 24px; align-items: center;}

.live-chip{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.live-chip .pulse{
  width:6px; height:6px; border-radius:50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--lime) 50%, transparent);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--lime) 50%, transparent);}
  70%{ box-shadow: 0 0 0 8px color-mix(in oklab, var(--lime) 0%, transparent);}
  100%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--lime) 0%, transparent);}
}

section[id]{ scroll-margin-top: 80px; }

/* =============== LEGAL PAGES =============== */
.legal-hero{
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow{ margin-bottom: 20px; }
.legal-hero h1{
  font-size: clamp(40px, 6vw, 72px);
  max-width: 18ch;
  line-height: 1.05;
}
.legal-hero .meta{
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: .06em;
}

.legal-body{
  padding: clamp(48px, 6vw, 96px) 0;
}
.legal-content{
  max-width: 72ch;
}
.legal-content h2{
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  letter-spacing: -0.02em;
}
.legal-content h2:first-child{ margin-top: 0; padding-top: 0; border-top: 0;}
.legal-content h3{
  font-size: 18px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.legal-content p{
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 16px;
}
.legal-content ul{
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.legal-content ul li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.legal-content ul li::before{
  content: "—";
  color: var(--lime-deep);
  flex-shrink: 0;
  font-family: var(--font-mono);
}
.legal-content ol{
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-content ol li{
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.legal-content a{
  color: var(--lime-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.legal-content a:hover{ color: var(--ink);}
.legal-content strong{ font-weight: 500; color: var(--ink);}
.legal-content .address-block{
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
}
.legal-content .address-block strong{
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

/* Back link for sub-pages */
.back-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: background .2s, color .2s, border-color .2s;
  margin-bottom: 40px;
  text-decoration: none;
}
.back-link:hover{
  background: var(--ivory-2);
  color: var(--ink);
  border-color: var(--line-2);
}
.back-link svg{ width: 12px; height: 12px;}
