/* =========================================================
   PROYEKTY — VSL
   Apple Vision Pro-style cinematic dark landing
   ========================================================= */

:root {
  /* Tweakable (persisted via /*EDITMODE markers in HTML) */
  --accent-h: 220;
  --accent-c: 0.08;
  --accent-l: 0.78;

  --bg: oklch(0.14 0.01 250);
  --bg-2: oklch(0.17 0.012 250);
  --bg-3: oklch(0.21 0.014 250);
  --ink: oklch(0.98 0.004 250);
  --ink-2: oklch(0.78 0.01 250);
  --ink-3: oklch(0.58 0.012 250);
  --line: color-mix(in oklch, var(--ink) 10%, transparent);
  --line-2: color-mix(in oklch, var(--ink) 18%, transparent);

  --accent: oklch(var(--accent-l) var(--accent-c) var(--accent-h));
  --accent-soft: oklch(var(--accent-l) var(--accent-c) var(--accent-h) / 0.18);
  --accent-glow: oklch(var(--accent-l) var(--accent-c) var(--accent-h) / 0.35);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Typography (tweakable) */
  --font-display: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "SF Pro Display", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "SF Pro Text", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

html[data-theme="light"] {
  --bg: oklch(0.985 0.003 250);
  --bg-2: oklch(0.965 0.005 250);
  --bg-3: oklch(0.94 0.007 250);
  --ink: oklch(0.16 0.012 250);
  --ink-2: oklch(0.36 0.012 250);
  --ink-3: oklch(0.52 0.012 250);
  --line: color-mix(in oklch, var(--ink) 10%, transparent);
  --line-2: color-mix(in oklch, var(--ink) 18%, transparent);
}

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

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  letter-spacing: -0.005em;
  transition: background .6s var(--ease), color .6s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* =========================================================
   GLOBAL ATMOSPHERE — subtle aurora
   ========================================================= */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.atmosphere::before,
.atmosphere::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  transition: background .6s var(--ease);
}
.atmosphere::before {
  width: 900px; height: 900px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
}
.atmosphere::after {
  width: 700px; height: 700px;
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  opacity: 0.22;
}

main, header, footer, section { position: relative; z-index: 2; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  background: color-mix(in oklch, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-3);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 450;
}
.nav-links a { transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--ink); }

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

.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all .2s var(--ease);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-3); }
.theme-toggle svg { width: 16px; height: 16px; }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px; font-weight: 500;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); opacity: .9; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

/* =========================================================
   LAYOUT
   ========================================================= */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 860px) { .wrap, .wrap-narrow { padding: 0 20px; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 32px;
  font-weight: 450;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 16ch;
}
h1.display .accent {
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 60%, var(--ink)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  padding-right: 0.12em;
  margin-right: -0.06em;
  display: inline-block;
}

.hero-sub {
  margin: 32px auto 0;
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 400;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all .25s var(--ease);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px color-mix(in oklch, var(--ink) 40%, transparent);
}
.btn-ghost {
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  background: color-mix(in oklch, var(--ink) 10%, transparent);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; }

/* =========================================================
   VSL player
   ========================================================= */
.vsl {
  position: relative;
  margin: 64px auto 0;
  max-width: 1060px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: oklch(0.08 0.01 250);
  border: 1px solid var(--line-2);
  box-shadow:
    0 40px 80px -30px color-mix(in oklch, var(--accent) 30%, transparent),
    0 20px 50px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1px color-mix(in oklch, var(--ink) 4%, transparent);
  isolation: isolate;
}
.vsl-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, var(--accent-soft), transparent 55%),
    radial-gradient(circle at 75% 70%, color-mix(in oklch, var(--accent) 15%, transparent), transparent 55%),
    linear-gradient(180deg, oklch(0.12 0.012 250), oklch(0.08 0.008 250));
}
.vsl-poster {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  cursor: pointer;
  transition: opacity .4s var(--ease);
}
.vsl-poster.hidden { opacity: 0; pointer-events: none; }

.vsl-play-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.vsl-play {
  width: 96px; height: 96px; border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 95%, transparent);
  color: var(--bg);
  display: grid; place-items: center;
  position: relative;
  transition: transform .3s var(--ease);
  backdrop-filter: blur(12px);
}
.vsl-play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
  animation: ring 2.4s ease-out infinite;
}
.vsl-play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklch, var(--ink) 30%, transparent);
  animation: ring 2.4s ease-out infinite 1.2s;
}
@keyframes ring {
  0% { transform: scale(0.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.vsl-play:hover { transform: scale(1.06); }
.vsl-play svg { width: 28px; height: 28px; margin-left: 3px; }

.vsl-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklch, #fff 75%, transparent);
  text-align: center;
}
.vsl-meta b {
  display: block;
  color: color-mix(in oklch, #fff 95%, transparent);
  font-weight: 500;
  margin-bottom: 4px;
}

.vsl-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in oklch, #000 60%, transparent);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  z-index: 2;
}

.vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* =========================================================
   SECTION
   ========================================================= */
.section {
  padding: 140px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

@media (max-width: 860px) { .section { padding: 88px 0; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--ink-3);
}
.section-eyebrow b {
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 60%, var(--ink)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  padding-right: 0.12em;
  margin-right: -0.06em;
  display: inline-block;
}

.section-lede {
  margin-top: 20px;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.5;
}

.section-head { margin-bottom: 72px; }

/* =========================================================
   PROBLEM — three holes
   ========================================================= */
.holes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 1060px) { .holes { grid-template-columns: 1fr; } }

.hole {
  background: color-mix(in oklch, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.hole::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--accent-soft), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.hole:hover { border-color: var(--line-2); transform: translateY(-3px); }
.hole:hover::before { opacity: 1; }
.hole-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.hole-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.hole-p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.hole-cost {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.holes-total {
  margin-top: 36px;
  padding: 24px 32px;
  background: color-mix(in oklch, var(--accent) 8%, var(--bg-2));
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 680px;
}
.holes-total b { color: var(--ink); }

/* =========================================================
   TRUST — author / why listen
   ========================================================= */
.trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 56px;
  align-items: start;
  padding-top: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-origin {
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 900px) { .trust { grid-template-columns: 1fr; gap: 32px; max-width: 640px; } .trust-cost { position: static; } }

.trust-body b, .trust-body strong {
  color: var(--ink);
  font-weight: 600;
}
mark.trust-mark,
.trust-mark {
  background: transparent;
  color: var(--ink);
  padding: 0;
  font-weight: 500;
}

.trust-cost {
  background: color-mix(in oklch, var(--ink) 3%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: sticky;
  top: 96px;
}
.trust-cost-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.trust-cost-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.2vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.trust-cost-unit {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink-2);
}
.trust-cost-p {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.trust-cost-p b { color: var(--ink); font-weight: 600; }

.trust-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, oklch(0.25 0.012 250), oklch(0.18 0.01 250));
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.trust-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.trust-portrait.has-img .trust-portrait-label,
.trust-portrait.has-img::before {
  display: none;
}
.trust-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 18px,
    color-mix(in oklch, var(--ink) 4%, transparent) 18px,
    color-mix(in oklch, var(--ink) 4%, transparent) 19px
  );
  opacity: 0.6;
}
.trust-portrait-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: color-mix(in oklch, var(--bg) 60%, transparent);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.trust-who {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.trust-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 22ch;
}
.trust-role {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.trust-body {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}
.trust-body p + p { margin-top: 16px; }
.trust-body b { color: var(--ink); font-weight: 500; }

.trust-logos {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-logos-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  opacity: 0.7;
}

/* =========================================================
   SYSTEM — 3 steps
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 960px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: color-mix(in oklch, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 28px;
}
.step-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  border: 1px solid var(--line);
  margin-bottom: 28px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.step-visual svg { width: 56px; height: 56px; color: var(--accent); }
.step-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Visual — receipt */
.visual-receipt {
  width: 80%; height: 80%;
  background: color-mix(in oklch, var(--ink) 12%, transparent);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 14px 12px;
  gap: 6px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.visual-receipt::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 12px;
  background: repeating-linear-gradient(90deg,
    var(--bg-2) 0, var(--bg-2) 4px,
    transparent 4px, transparent 8px);
}
.visual-receipt-line {
  height: 3px;
  background: color-mix(in oklch, var(--ink) 20%, transparent);
  border-radius: 2px;
}
.visual-receipt-line.short { width: 60%; }
.visual-receipt-line.mid { width: 80%; }
.visual-receipt-line.total {
  background: var(--accent);
  height: 5px;
  width: 40%;
  margin-top: auto;
}
.visual-scan {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan {
  0% { top: 10%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* Visual — swipe (interactive click mockup) */
.visual-swipe {
  width: 78%;
  padding: 14px;
  background: color-mix(in oklch, var(--ink) 10%, transparent);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  animation: swipe-approve 4.2s var(--ease) infinite;
}
.visual-swipe:hover {
  background: color-mix(in oklch, var(--accent) 12%, transparent);
  border-color: color-mix(in oklch, var(--accent) 40%, transparent);
  animation-play-state: paused;
}
.visual-swipe:active {
  transform: scale(0.97);
}
.visual-swipe::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 14%, transparent);
  transform: translateY(-50%);
  animation: swipe-cursor 4.2s var(--ease) infinite;
  pointer-events: none;
}
@keyframes swipe-approve {
  0%, 18% {
    background: color-mix(in oklch, var(--ink) 10%, transparent);
    border-color: var(--line-2);
  }
  28%, 72% {
    background: color-mix(in oklch, var(--accent) 18%, transparent);
    border-color: color-mix(in oklch, var(--accent) 55%, transparent);
  }
  88%, 100% {
    background: color-mix(in oklch, var(--ink) 10%, transparent);
    border-color: var(--line-2);
  }
}
@keyframes swipe-cursor {
  0%, 15% { opacity: 0; transform: translate(-4px, -50%) scale(0.6); }
  22%, 26% { opacity: 0.9; transform: translate(0, -50%) scale(1); }
  30%, 70% { opacity: 0; transform: translate(0, -50%) scale(2.6); }
  100% { opacity: 0; transform: translate(0, -50%) scale(0.6); }
}
.visual-swipe-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: color-mix(in oklch, var(--accent) 20%, transparent);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.visual-swipe-icon svg {
  width: 18px; height: 18px;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: swipe-check 4.2s var(--ease) infinite;
}
@keyframes swipe-check {
  0%, 28% { stroke-dashoffset: 30; transform: scale(0.7); opacity: 0.5; }
  35% { stroke-dashoffset: 0; transform: scale(1.15); opacity: 1; }
  45%, 75% { stroke-dashoffset: 0; transform: scale(1); opacity: 1; }
  88%, 100% { stroke-dashoffset: 30; transform: scale(0.7); opacity: 0.5; }
}
.visual-swipe-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 5px;
}
.visual-swipe-body div {
  height: 4px;
  background: color-mix(in oklch, var(--ink) 20%, transparent);
  border-radius: 2px;
}
.visual-swipe-body div:first-child { width: 70%; }
.visual-swipe-body div:last-child { width: 50%; }

/* Visual — chart */
.visual-chart {
  width: 80%; height: 70%;
  display: flex; align-items: flex-end; gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.visual-chart div {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), color-mix(in oklch, var(--accent) 30%, transparent));
  border-radius: 3px 3px 0 0;
  animation: grow 1.6s var(--ease) infinite alternate;
  opacity: 0.9;
}
.visual-chart div:nth-child(1) { height: 30%; animation-delay: 0s; }
.visual-chart div:nth-child(2) { height: 55%; animation-delay: .2s; }
.visual-chart div:nth-child(3) { height: 40%; animation-delay: .4s; }
.visual-chart div:nth-child(4) { height: 70%; animation-delay: .6s; }
.visual-chart div:nth-child(5) { height: 85%; animation-delay: .8s; }
.visual-chart div:nth-child(6) { height: 60%; animation-delay: 1s; }
@keyframes grow {
  from { transform: scaleY(0.85); }
  to { transform: scaleY(1); }
}

/* =========================================================
   OUTCOME / RESULT
   ========================================================= */
.outcome {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .outcome { grid-template-columns: 1fr; gap: 40px; } }

.outcome-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.outcome-copy p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}

.outcome-list {
  list-style: none;
  margin-top: 28px;
}
.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.outcome-list li:last-child { border-bottom: 0; }
.outcome-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 18%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.outcome-list .check svg { width: 12px; height: 12px; }

.outcome-stats {
  background: color-mix(in oklch, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.stat-big-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.stat-big-num small {
  font-size: 24px;
  color: var(--accent);
  margin-left: 2px;
  font-weight: 500;
}
.stat-big-lbl {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}

/* =========================================================
   DIFFERENCE / COMPARISON
   ========================================================= */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: color-mix(in oklch, var(--ink) 3%, transparent);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}
.compare-row > div:last-child { border-right: 0; }
.compare-head {
  background: color-mix(in oklch, var(--ink) 3%, transparent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.compare-head .winner { color: var(--accent); font-weight: 600; }
.compare-label { color: var(--ink); font-weight: 500; }
.wincol { background: color-mix(in oklch, var(--accent) 6%, transparent); }
.check-ic {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: color-mix(in oklch, var(--accent) 20%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
}
.check-ic svg { width: 10px; height: 10px; }
.cross-ic {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 8%, transparent);
  color: var(--ink-3);
  display: grid; place-items: center;
}
.cross-ic svg { width: 10px; height: 10px; }

@media (max-width: 860px) {
  .compare-row { grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr; font-size: 13px; }
  .compare-row > div { padding: 14px 10px; }
}

/* =========================================================
   TESTIMONIAL / PROOF
   ========================================================= */
.quote-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .quote-wrap { grid-template-columns: 1fr; gap: 40px; } }

.quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.quote-text::before {
  content: "„";
  color: var(--accent);
  font-size: 1.2em;
  line-height: 0;
  margin-right: .05em;
  position: relative;
  top: 0.18em;
}
.quote-who {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}
.quote-who b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}

.quote-card {
  background: color-mix(in oklch, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quote-card-h {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.quote-card-h b { color: var(--accent); }
.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.meta-row:last-child { border-bottom: 0; }
.meta-row span:first-child { color: var(--ink-2); }
.meta-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
}
.meta-row .up { color: var(--accent); }
.meta-row .down { color: oklch(0.68 0.14 28); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  border: 1px solid var(--line-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 16px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 68ch;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  padding: 160px 0 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto;
  position: relative;
}
.final h2 .accent {
  background: linear-gradient(135deg, var(--accent), color-mix(in oklch, var(--accent) 60%, var(--ink)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  padding-right: 0.12em;
  margin-right: -0.06em;
  display: inline-block;
}
.final p {
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-2);
  position: relative;
}
.final .btn { margin-top: 48px; position: relative; font-size: 16px; padding: 16px 28px; }
.final-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  position: relative;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.foot-grid a { color: var(--ink-3); transition: color .2s var(--ease); }
.foot-grid a:hover { color: var(--ink); }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 100;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  font-size: 13px;
  color: var(--ink);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.tweaks-close {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 8%, transparent);
  display: grid; place-items: center;
  color: var(--ink-2);
}
.tweak {
  margin-bottom: 18px;
}
.tweak-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.tweak-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--ink); }
.tweak-fonts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.font-opt {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  text-align: center;
  transition: all .15s var(--ease);
}
.font-opt:hover { border-color: var(--line-2); color: var(--ink); }
.font-opt.active { border-color: var(--accent); color: var(--ink); background: var(--accent-soft); }
.tweak-theme {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.theme-opt {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  text-align: center;
  transition: all .15s var(--ease);
}
.theme-opt:hover { border-color: var(--line-2); color: var(--ink); }
.theme-opt.active { border-color: var(--accent); color: var(--ink); background: var(--accent-soft); }


/* =========================================================
   EXPERIENCES — WhatsApp-style testimonials
   ========================================================= */
.wa-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
  padding: 24px 0 8px;
}
.wa-phone {
  grid-column: span 5;
  position: relative;
  margin: 0;
}
.wa-phone-wide { grid-column: span 7; margin-top: 64px; }
@media (max-width: 860px) {
  .wa-phone, .wa-phone-wide { grid-column: 1 / -1; margin-top: 0; max-width: 460px; margin-inline: auto; }
}

.wa-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 3;
  background: #25D366;
  color: #0a2a14;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.wa-tag-right { left: auto; right: 24px; top: auto; bottom: -14px; }

.wa-screen {
  background: #EFEAE2;
  border-radius: 28px;
  border: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 2px 0 rgba(255,255,255,0.04) inset;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.wa-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0,0,0,0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 72% 34%, rgba(0,0,0,0.035) 1px, transparent 1.5px),
    radial-gradient(circle at 28% 62%, rgba(0,0,0,0.04) 1px, transparent 1.5px),
    radial-gradient(circle at 86% 78%, rgba(0,0,0,0.03) 1px, transparent 1.5px),
    radial-gradient(circle at 44% 88%, rgba(0,0,0,0.035) 1px, transparent 1.5px);
  background-size: 160px 160px, 180px 180px, 200px 200px, 150px 150px, 170px 170px;
  opacity: 0.6;
  pointer-events: none;
}

.wa-header {
  background: #F5F1EB;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 15px;
  color: #111;
  position: relative;
  z-index: 1;
}
.wa-back { color: #067eaa; font-size: 22px; line-height: 1; width: 14px; }
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 35%, #1a1a1a, #000 70%);
}
.wa-name { font-weight: 500; flex: 1; }
.wa-actions { font-size: 14px; letter-spacing: 6px; color: #333; opacity: 0.7; }

.wa-thread {
  padding: 14px 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.wa-day {
  align-self: center;
  background: #E1F3FB;
  color: #3a5664;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 4px 0;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.05);
}
.wa-day-today { background: #E1F3FB; }

.wa-bubble {
  max-width: 82%;
  padding: 7px 10px 18px;
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.35;
  color: #111;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
  word-wrap: break-word;
}
.wa-in {
  align-self: flex-start;
  background: #FFFFFF;
  border-top-left-radius: 2px;
}
.wa-out {
  align-self: flex-end;
  background: #D9FDD3;
  border-top-right-radius: 2px;
}
.wa-emoji {
  font-size: 34px;
  padding: 6px 10px 18px;
  line-height: 1;
  min-width: 60px;
}
.wa-time {
  position: absolute;
  right: 8px;
  bottom: 3px;
  font-size: 10.5px;
  color: #667781;
  white-space: nowrap;
}
.wa-tick { color: #53bdeb; letter-spacing: -2px; margin-left: 2px; }

.wa-deleted {
  align-self: flex-start;
  background: #FFFFFF;
  color: #667781;
  font-style: italic;
  font-size: 13.5px;
  padding: 6px 10px 16px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
}
.wa-deleted .wa-time { font-style: normal; }

.wa-input {
  background: #F5F1EB;
  padding: 8px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.wa-plus {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: #8696a0;
  font-size: 22px;
  line-height: 1;
}
.wa-input-field {
  flex: 1;
  height: 36px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.06);
}
.wa-mic { color: #8696a0; font-size: 16px; }


/* =========================================================
   EXPERIENCES — real WhatsApp screenshots collage
   ========================================================= */
.wa-real-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  padding: 12px 0 8px;
}
.wa-real {
  position: relative;
  margin: 0;
  grid-column: span 1;
  aspect-ratio: 3 / 4;
}
.wa-real img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #EFEAE2;
  border-radius: 22px;
  border: 1px solid color-mix(in oklch, var(--ink) 10%, transparent);
  box-shadow: 0 28px 60px rgba(0,0,0,0.38);
}
/* Subtle vertical offset rhythm */
.wa-real-a { transform: translateY(0); }
.wa-real-b { transform: translateY(32px); }
.wa-real-c { transform: translateY(-16px); }
.wa-real-d { transform: translateY(16px); }

.wa-real .wa-tag {
  position: absolute;
  left: 50%;
  bottom: auto;
  top: -14px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 16px);
  background: #25D366;
  color: #0a2a14;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  z-index: 3;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

@media (max-width: 1100px) {
  .wa-real-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
  .wa-real-a, .wa-real-b, .wa-real-c, .wa-real-d { transform: none; }
  .wa-real-b, .wa-real-d { margin-top: 24px; }
}
@media (max-width: 640px) {
  .wa-real-grid { grid-template-columns: 1fr; gap: 36px; max-width: 380px; margin: 0 auto; }
  .wa-real-b, .wa-real-d { margin-top: 0; }
}


/* =========================================================
   DECISION — do nothing vs book call
   ========================================================= */
.decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 780px) { .decision { grid-template-columns: 1fr; } }

.decision-card {
  position: relative;
  padding: 32px 30px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.decision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(120% 80% at 100% 0%, currentColor, transparent 55%);
  color: inherit;
}
.decision-bad {
  background: color-mix(in oklch, oklch(0.52 0.18 25) 10%, var(--bg-2));
  border-color: color-mix(in oklch, oklch(0.52 0.18 25) 35%, transparent);
  color: oklch(0.78 0.12 25);
}
.decision-good {
  background: color-mix(in oklch, oklch(0.65 0.16 155) 8%, var(--bg-2));
  border-color: color-mix(in oklch, oklch(0.65 0.16 155) 35%, transparent);
  color: oklch(0.82 0.14 155);
}

.decision-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: color-mix(in oklch, currentColor 18%, transparent);
  color: currentColor;
  flex-shrink: 0;
}
.decision-icon svg { width: 18px; height: 18px; }

.decision-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: currentColor;
  font-weight: 600;
}
.decision-p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}
.decision-p b { color: var(--ink); font-weight: 600; }

.decision-list {
  list-style: none;
  padding: 14px 0 0;
  margin: 6px 0 0;
  border-top: 1px solid color-mix(in oklch, currentColor 25%, transparent);
  display: flex; flex-direction: column; gap: 8px;
}
.decision-list li {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}
.decision-bad .decision-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: currentColor;
}
.decision-good .decision-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 600;
}

.decision-foot {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-2);
  font-style: italic;
}
.decision-foot b {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}
