/* ============================================================
   bolzn — static site
   Recreated from the new design tokens (cyan/violet, editorial).
   Sections:
     1. Tokens (light + dark)
     2. Reset & type
     3. Layout helpers
     4. Buttons
     5. Nav + drawer
     6. Hero + tactic board card
     7. Trust row
     8. Features (tabs + iPhone mockup + paging)
     9. Tutorials (YouTube grid)
    10. Werte (editorial grid)
    11. Testimonials (editorial cards)
    12. Pricing (toggle + 3 cards)
    13. CTA band
    14. Footer
    15. Standalone pages (preise/datenschutz/impressum/richtlinien)
    16. Responsive
   ============================================================ */

/* ============ 1. TOKENS ============ */
:root {
  --accent:        #06b6d4;
  --accent-2:      #8b5cf6;
  --accent-deep:   #0e91a8;
  --grad:          linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);

  --bg:        #f6f7f9;
  --surface:   #ffffff;
  --surface-2: #f1f3f7;
  --line:      #e3e6ec;
  --line-2:    #eceff4;

  --ink:       #0b1220;
  --ink-2:     #2a3142;
  --ink-3:     #5b6478;
  --ink-mute:  #8a90a0;
  --on-ink:    #ffffff;

  --shadow-sm: 0 1px 2px rgba(11,18,32,.05), 0 1px 1px rgba(11,18,32,.04);
  --shadow-md: 0 6px 24px -8px rgba(11,18,32,.12), 0 2px 6px rgba(11,18,32,.05);
  --shadow-lg: 0 30px 60px -25px rgba(11,18,32,.25), 0 8px 24px -12px rgba(11,18,32,.15);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --max: 1200px;

  /* Inversion surfaces that stay dark regardless of theme
     (Beliebt pricing card, CTA band). */
  --ink-fixed:    #0b1220;
  --on-ink-fixed: #ffffff;
}

html[data-theme="dark"] {
  --accent:      #22d3ee;
  --accent-2:    #a78bfa;
  --accent-deep: #67e8f9;
  --bg:          #0a0d14;
  --surface:     #131825;
  --surface-2:   #1a2030;
  --line:        #232a3b;
  --line-2:      #1c2231;
  --ink:         #f1f3f9;
  --ink-2:       #d4d8e2;
  --ink-3:       #969cae;
  --ink-mute:    #6b7287;
  --on-ink:      #0a0d14;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
  --shadow-md:   0 6px 24px -8px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg:   0 30px 60px -25px rgba(0,0,0,.7), 0 8px 24px -12px rgba(0,0,0,.5);
}

/* ============ 2. RESET & TYPE ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

.display, .h2, .h3, .brand-name {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.display {
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.06;
  margin: 0 0 24px;
  text-wrap: balance;
}
.display-line { display: block; }
.accent-underline { position: relative; display: inline-block; }
.accent-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.32em;
  background: var(--grad);
  z-index: -1;
  border-radius: 2px;
}
.h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  text-wrap: balance;
}
.h3 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 38em;
  margin: 0 0 32px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

/* ============ 3. LAYOUT ============ */
.page { overflow-x: hidden; }
.section-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 0 32px;
  text-align: center;
}
.section-sub {
  color: var(--ink-3);
  font-size: 18px;
  max-width: 36em;
  margin: 8px auto 0;
}

/* ============ 4. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--ink); color: var(--on-ink); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--on-ink); }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.btn-grad { background: var(--grad); color: #fff; }
.btn-grad:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.icon-svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg-sm { width: 16px; height: 16px; }

/* ============ 5. NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 32px; width: auto; display: block; }
html[data-theme="dark"] .brand-logo,
html[data-theme="dark"] .foot-logo { filter: brightness(1.15) saturate(1.1); }
.nav-links { display: flex; gap: 28px; justify-self: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 15px; color: var(--ink-2); transition: color .15s ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.link-muted { font-size: 15px; color: var(--ink-2); }
.link-muted:hover { color: var(--ink); }
.nav-theme {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.nav-theme:hover { color: var(--ink); border-color: var(--ink-3); transform: translateY(-1px); }
.nav-theme svg { width: 18px; height: 18px; }
.nav-theme .sun { display: none; }
html[data-theme="dark"] .nav-theme .sun { display: block; }
html[data-theme="dark"] .nav-theme .moon { display: none; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 4px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Drawer */
.nav-drawer {
  position: fixed;
  inset: 0 0 0 0;
  top: 70px;
  background: var(--bg);
  z-index: 49;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 32px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.nav-drawer a {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

/* ============ 6. HERO + TACTIC BOARD ============ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 32px 72px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--ink-3);
  font-size: 14px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--accent-deep); }

/* Tactic board card — Copilot-style aurora glow */
.tb-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  isolation: isolate;
}
/* Uniform halo glow — one centered radial-gradient, evenly spreads around the card */
.tb-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -1;
  background: radial-gradient(closest-side at 50% 50%,
    color-mix(in oklch, var(--accent) 65%, transparent) 0%,
    color-mix(in oklch, var(--accent-2) 32%, transparent) 50%,
    transparent 100%);
  filter: blur(50px);
  pointer-events: none;
}
/* Light theme — quieter halo against bright bg */
html[data-theme="light"] .tb-card::before { opacity: 0.6; }

.tb-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
  max-width: 682px;
  box-shadow:
    /* tight colored rim — same hue as the halo */
    0 0 40px -8px color-mix(in oklch, var(--accent) 55%, transparent),
    /* depth shadow */
    0 30px 70px -28px rgba(8,12,24,0.55),
    /* hairline border */
    0 0 0 1px var(--line),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.tb-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ============ 7. TRUST ============ */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 32px 48px;
  text-align: center;
}
.trust-label {
  font-size: 13px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
  opacity: 0.6;
}
.trust-item {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}

/* ============ 8. FEATURES ============ */
.features {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.feat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.feat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  transition: all .15s ease;
}
.feat-tab:hover { border-color: var(--ink-3); color: var(--ink); }
.feat-tab.is-active {
  background: var(--ink);
  color: var(--on-ink);
  border-color: var(--ink);
}
.feat-tab svg { width: 18px; height: 18px; }

.feat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
}
.feat-text { min-width: 0; position: relative; }
.feature-slide { display: none; }
.feature-slide.active { display: block; }
.feat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--ink);
  background: var(--accent);
  margin-bottom: 20px;
}
.feat-icon svg { width: 28px; height: 28px; }
.feat-desc {
  color: var(--ink-3);
  font-size: 17px;
  margin: 0 0 20px;
  max-width: 30em;
}
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color .2s ease, font-weight .2s ease, opacity .2s ease;
  opacity: 0.78;
}
.feat-list li::before {
  content: "";
  width: 18px; height: 18px;
  background: var(--accent-deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 6'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 6'/></svg>") center / contain no-repeat;
  flex: none;
  margin-top: 1px;
}
.feat-list li.highlighted {
  font-weight: 700;
  opacity: 1;
  color: var(--ink);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.feat-visual { display: grid; place-items: center; position: relative; }

/* iPhone mockup (kept from existing site, restyled to match design) */
.iphone-with-avatar { position: relative; }
.iphone-mockup {
  --iphone-width: 260px;
  --iphone-height: 540px;
  --iphone-radius: 40px;
  --iphone-border: 10px;
  --screen-radius: 30px;
  flex-shrink: 0;
}
.iphone-frame {
  width: var(--iphone-width);
  height: var(--iphone-height);
  background: #0f1410;
  border-radius: var(--iphone-radius);
  padding: var(--iphone-border);
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.04) inset,
    0 30px 60px -25px rgba(15,20,16,.55),
    0 12px 24px -16px rgba(15,20,16,.45);
  transition: background .4s ease, box-shadow .4s ease;
}
.iphone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #0f1410;
  border-radius: 14px;
  z-index: 2;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: var(--screen-radius);
  overflow: hidden;
  position: relative;
}
.iphone-home-indicator {
  width: 86px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.iphone-dark-blue .iphone-frame {
  background: linear-gradient(145deg, #1e3a5f, #0d2137);
}
.screenshot-container { position: relative; width: 100%; height: 100%; }
.screenshot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity .35s ease;
  will-change: transform, opacity;
}
.screenshot.active { opacity: 1; transform: translateX(0); }
.screenshot.leaving {
  opacity: 0;
  transform: translateX(-30%);
  transition: transform .5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity .35s ease;
}

/* Avatar overlay */
.avatar-overlay {
  position: absolute;
  top: -16px; left: -16px;
  width: 64px; height: 64px;
  border-radius: 50%;
  z-index: 20;
  background: var(--grad);
  padding: 3px;
  box-shadow: 0 8px 20px -8px rgba(11,18,32,0.4);
}
.avatar-image {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.avatar-label {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 10px -3px rgba(11,18,32,0.3);
}
.avatar-overlay.avatar-spieler { background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); }
.avatar-overlay.avatar-spieler .avatar-label { background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); }

/* Screenshot navigation dots (under iPhone) */
@property --progress {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}
.screenshot-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.screenshot-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform .3s ease, background .3s ease;
  padding: 0;
}
.screenshot-dot:hover { background: var(--ink-3); transform: scale(1.1); }
.screenshot-dot.active {
  width: 14px; height: 14px;
  background: transparent;
}
.screenshot-dot.active::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) var(--progress, 0%), var(--line) var(--progress, 0%));
  animation: dot-progress 4s linear forwards;
  z-index: 0;
}
.screenshot-dot.active::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--surface);
  z-index: 1;
}
.screenshot-dot.is-paused::before { animation-play-state: paused; }
.screenshot-dot.is-paused::after {
  background:
    linear-gradient(to right, var(--ink-2) 0 35%, transparent 35% 65%, var(--ink-2) 65% 100%) center / 6px 8px no-repeat,
    var(--surface);
}
@keyframes dot-progress {
  from { --progress: 0%; }
  to { --progress: 100%; }
}

/* ============ 9. TUTORIALS ============ */
.tutorials {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yt-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.yt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0; border: 0; cursor: pointer;
  background: var(--surface-2);
  overflow: hidden;
  display: block;
}
.yt-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .2s ease;
}
.yt-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.yt-thumb:hover img { transform: scale(1.04); filter: brightness(1.05); }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transition: transform .15s ease;
}
.yt-thumb:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.yt-meta {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.yt-chip {
  background: rgba(255,255,255,0.92);
  color: #0b1220;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.yt-duration {
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}
.yt-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}
.yt-info { padding: 18px 20px 22px; }
.yt-info h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
  text-wrap: balance;
}
.yt-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============ 10. WERTE ============ */
.werte {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.wert {
  background: var(--surface);
  padding: 36px 28px;
}
.wert-num {
  font-family: "Inter Tight", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.wert-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.wert-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.wert-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* ============ 11. TESTIMONIALS ============ */
.testi {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-q {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-q::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .25s ease;
}
.card-q:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-q:hover::before { opacity: 1; }
.quote-mark {
  width: 28px;
  height: 22px;
  fill: var(--accent);
  margin-bottom: 18px;
  opacity: 0.9;
}
.card-q blockquote {
  margin: 0 0 24px;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
  text-wrap: pretty;
}
.card-q figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
}
.cap-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cap-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.cap-role {
  font-size: 12.5px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cap-dot { opacity: 0.5; }
.cap-club { font-weight: 500; color: var(--ink-2); }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  color: var(--on-ink);
  display: grid; place-items: center;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex: none;
  letter-spacing: 0.02em;
}

/* ============ 12. PRICING ============ */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
}
.price-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.price-toggle {
  position: relative;
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
}
.price-toggle-pill {
  position: absolute;
  top: 5px; bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.price-toggle-pill[data-active="monthly"] { transform: translateX(100%); }
.price-toggle-btn {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
  white-space: nowrap;
}
.price-toggle-btn.is-active { color: var(--on-ink); }
.price-toggle-discount {
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-pro {
  background: var(--ink-fixed);
  color: var(--on-ink-fixed);
  border-color: var(--ink-fixed);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-flag {
  position: absolute;
  top: 0; left: 32px;
  transform: translateY(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-name {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
}
.price-amt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.03em;
}
.price-currency {
  font-size: 24px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 6px;
}
.price-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-amt small {
  font-size: 14px;
  opacity: 0.65;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-left: 2px;
}
.price-custom {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.price-amt-custom { margin-bottom: 12px; }
.price-yearly-total {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 14px;
  min-height: 1.2em;
}
.price-yearly-total.hidden { visibility: hidden; }
.price-card-pro .price-yearly-total { color: rgba(255,255,255,0.65); }
.price-desc {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
  line-height: 1.5;
}
.price-card-pro .price-desc { color: rgba(255,255,255,0.7); }
.price-card .btn { margin-bottom: 24px; }
.price-card-pro .btn { background: var(--grad); color: #fff; border: none; }
.price-card-pro .btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.price-includes {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.price-card-pro .price-includes { color: rgba(255,255,255,0.55); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
}
.price-list li::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 6'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 6'/></svg>") center / contain no-repeat;
  flex: none;
  margin-top: 3px;
}

/* ============ 13. CTA BAND ============ */
.cta-band {
  margin: 80px 32px;
  background: var(--ink-fixed);
  color: var(--on-ink-fixed);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 60%, transparent), transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 50%; height: 160%;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent-2) 55%, transparent), transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 720px; position: relative; }
.cta-band .h2 { color: #fff; }
.cta-band p { font-size: 18px; opacity: 0.8; margin: 0 0 28px; }
.cta-band .hero-cta { margin-bottom: 28px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  background: #fff; color: #0b1220;
  padding: 10px 18px; border-radius: 14px;
  display: flex; flex-direction: row; gap: 12px;
  align-items: center;
  line-height: 1.1;
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,0.3); }
.store-glyph { width: 28px; height: 28px; flex: none; color: #0b1220; }
.store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-mini { font-size: 11px; opacity: 0.7; }
.store-big { font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 15px; }

/* ============ 14. FOOTER ============ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 32px 32px;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
}
.foot-logo { height: 36px; width: auto; display: block; margin-bottom: 14px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; margin: 0 0 16px; line-height: 1.6; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--ink-2);
  transition: all .15s ease;
}
.foot-social a:hover {
  background: var(--grad);
  color: #fff;
  transform: translateY(-2px);
}
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.foot-cols h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 14px;
}
.foot-cols a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
}
.foot-cols a:hover { color: var(--ink); }
.foot-base {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ 15. STANDALONE PAGES ============ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  color: var(--ink-2);
}
.legal-page h1 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.legal-page h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-page h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.7; }
.legal-page a { color: var(--accent-deep); text-decoration: underline; }
.legal-page ul { padding-left: 1.4em; }

/* Standalone pricing page header */
.pricing-page-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 32px 0;
  text-align: center;
}
.pricing-page-head .pricing-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pricing-page-head .pricing-trial-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
}

/* ============ 16. RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .link-muted { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .feat-panel { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .feat-visual { order: -1; }
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-card-pro { transform: none; }
  .foot-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
  .werte-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 28px; margin: 48px 16px; }
  .hero { padding: 32px 20px 48px; }
  .features, .werte, .testi, .pricing, .tutorials { padding: 56px 20px; }
  .nav-inner { padding: 14px 20px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-base { flex-direction: column; gap: 8px; justify-content: flex-start; }
  .iphone-mockup {
    --iphone-width: 240px;
    --iphone-height: 500px;
    --iphone-radius: 36px;
    --iphone-border: 8px;
    --screen-radius: 28px;
  }
}
