


.page-hero {
  position: relative;
  padding: var(--space-16) 0 var(--space-12);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}
.page-hero--accent { border-bottom-color: color-mix(in oklab, var(--orange-400) 30%, var(--border)); }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 15% 30%, color-mix(in oklab, var(--brand-300) 22%, transparent), transparent 70%),
    radial-gradient(40% 55% at 85% 70%, color-mix(in oklab, var(--mint-300) 18%, transparent), transparent 70%);
  filter: blur(50px);
  opacity: 0.85;
}
.page-hero--accent .page-hero__bg {
  background:
    radial-gradient(50% 60% at 15% 30%, color-mix(in oklab, var(--orange-300) 28%, transparent), transparent 70%),
    radial-gradient(40% 55% at 85% 70%, color-mix(in oklab, var(--brand-300) 16%, transparent), transparent 70%);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-600);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.page-hero__title {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 var(--space-4);
  max-width: 820px;
}
.page-hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 var(--space-6);
  max-width: 680px;
}
.page-hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }


.page-hero--split .page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero--split .page-hero__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}


.prose {
  max-width: 760px;
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--fg);
}
.prose p { margin: 0 0 var(--space-4); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(24px, 2.6vw, 32px); margin: var(--space-10) 0 var(--space-4); letter-spacing: -0.02em; }
.prose h3 { font-size: clamp(18px, 1.8vw, 22px); margin: var(--space-8) 0 var(--space-3); }
.prose ul { margin: var(--space-3) 0 var(--space-5); padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.prose ul li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--mint-500);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
}
.prose ol { margin: var(--space-3) 0 var(--space-5); padding-left: 22px; }
.prose ol li { line-height: 1.5; padding: 4px 0; }
.prose a { color: var(--brand-600); border-bottom: 1px solid color-mix(in oklab, var(--brand-600) 35%, transparent); transition: color var(--duration-1) var(--ease-out), border-color var(--duration-1) var(--ease-out); }
.prose a:hover { color: var(--brand-700); border-color: var(--brand-700); }
.prose strong { color: var(--fg); font-weight: 600; }


.prose-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 760px) { .prose-cols { grid-template-columns: 1fr; } }


.levels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 760px) { .levels { grid-template-columns: 1fr; } }
.level {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.level__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: var(--space-3);
}
.level--free {
  border-color: color-mix(in oklab, var(--orange-500) 50%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--orange-500) 25%, transparent);
}
.level--free .level__num { background: var(--orange-50); color: var(--orange-700); }
.level__tag {
  position: absolute;
  top: var(--space-5); right: var(--space-5);
}
.level h3 { font-size: var(--text-md); margin: 0 0 6px; line-height: 1.25; }
.level p  { font-size: var(--text-sm); color: var(--fg-muted); line-height: 1.55; margin: 0; }


.note {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-500);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--fg);
}
.note--accent { border-left-color: var(--orange-500); background: var(--orange-50); }
.note--mint   { border-left-color: var(--mint-500); background: color-mix(in oklab, var(--mint-50) 60%, var(--bg-elevated)); }
.note strong { font-weight: 600; }


.hero {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .hero { padding: var(--space-16) 0 var(--space-12); } }

.hero__bg {
  position: absolute; inset: -10% -8% 20% -8%;
  z-index: -1;
  background:
    radial-gradient(45% 60% at 18% 25%, color-mix(in oklab, var(--brand-400) 28%, transparent), transparent 70%),
    radial-gradient(40% 55% at 82% 35%, color-mix(in oklab, var(--mint-400) 22%, transparent), transparent 70%),
    radial-gradient(36% 50% at 65% 85%, color-mix(in oklab, var(--orange-300) 30%, transparent), transparent 70%);
  filter: blur(60px);
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-16);
  align-items: center;
}
.hero__grid > * { min-width: 0; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-10); }
}


.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.hero__eyebrow .pill {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 0 0 var(--space-5);
}
.hero__title em {
  font-style: normal;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 0 var(--space-8);
  max-width: 560px;
}
.hero__actions {
  display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap;
}
.hero__trust {
  margin-top: var(--space-8);
  display: flex; align-items: center; gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--fg-subtle);
  flex-wrap: wrap;
}
.hero__trust b { color: var(--fg); font-weight: 600; }
.hero__trust-stars { color: var(--orange-500); letter-spacing: 1.5px; }
.hero__trust-divider { opacity: 0.4; }


.hero-viz {
  position: relative;
  aspect-ratio: 4 / 4.4;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
@media (max-width: 900px) { .hero-viz { justify-self: stretch; max-width: 100%; aspect-ratio: 16/12; } }

.hv-card {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hv-card--main {
  inset: 0 0 18% 12%;
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.hv-card--bottom {
  width: 70%;
  aspect-ratio: 4/2.2;
  bottom: 0;
  left: 0;
  transform: rotate(-2.5deg);
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: 8px;
}
.hv-card--top {
  width: 42%;
  top: 4%;
  right: 0;
  transform: rotate(3deg);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.hv-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.hv-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.hv-sub { font-size: 12px; color: var(--fg-muted); }
.hv-bar {
  height: 10px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.hv-bar::after {
  content: "";
  position: absolute; inset: 0 28% 0 0;
  background: linear-gradient(90deg, var(--brand-500), var(--orange-500));
  border-radius: 999px;
}
.hv-tick {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
}
.hv-tick__dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--mint-500);
  color: oklch(0.18 0.04 175);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.hv-tick--pending .hv-tick__dot { background: var(--bg-muted); color: var(--fg-subtle); }
.hv-tick--accent .hv-tick__dot { background: var(--orange-500); color: #fff; }
.hv-num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); margin-left: auto; }


.stats {
  padding: var(--space-12) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
.stats__cell {
  padding: var(--space-4) var(--space-6);
  border-right: 1px solid var(--border);
}
.stats__cell:last-child { border-right: none; }
@media (max-width: 700px) {
  .stats__cell:nth-child(2n) { border-right: none; }
  .stats__cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: var(--space-5); }
  .stats__cell:nth-child(n+3) { padding-top: var(--space-5); }
}
.stats__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-feature-settings: 'tnum';
}
.stats__num small { font-size: 0.55em; color: var(--fg-muted); font-weight: 500; }
.stats__label {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.stats__placeholder {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid color-mix(in oklab, var(--orange-500) 25%, transparent);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
  white-space: nowrap;
}


.spotlight {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg,
    oklch(0.98 0.018 55) 0%,
    oklch(0.97 0.024 50) 60%,
    oklch(0.96 0.028 45) 100%);
  border-top: 1px solid color-mix(in oklab, var(--orange-300) 35%, var(--border));
  border-bottom: 1px solid color-mix(in oklab, var(--orange-300) 35%, var(--border));
}
@media (max-width: 700px) { .spotlight { padding: var(--space-16) 0; } }
.spotlight::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(45% 60% at 12% 30%, color-mix(in oklab, var(--orange-400) 18%, transparent), transparent 70%),
    radial-gradient(35% 45% at 88% 70%, color-mix(in oklab, var(--brand-400) 12%, transparent), transparent 70%);
  filter: blur(40px);
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) { .spotlight__grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.spotlight__title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: var(--space-4) 0 var(--space-4);
}
.spotlight__sub {
  font-size: var(--text-md);
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0 0 var(--space-6);
  max-width: 560px;
}
.spotlight__points {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 0 var(--space-8);
}
.spotlight__point {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: var(--text-base);
  color: var(--fg);
}
.spotlight__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.spotlight__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  
  outline: 1px solid color-mix(in oklab, var(--orange-400) 25%, var(--border));
  outline-offset: -1px;
}
.spotlight__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.spotlight__badge {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  z-index: 2;
}


.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .features__grid { grid-template-columns: 1fr; } }

.feature {
  padding: var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-color var(--duration-2) var(--ease-out),
              box-shadow var(--duration-2) var(--ease-out),
              transform var(--duration-2) var(--ease-out);
}
.feature:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid; place-items: center;
}
.feature__icon--accent { background: var(--orange-50); color: var(--orange-700); }
.feature__icon--mint { background: var(--mint-50); color: var(--mint-700); }
.feature h3 {
  font-size: var(--text-md);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.feature p {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
}
.feature__link {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--brand-600);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: var(--space-3);
}
.feature__link:hover { color: var(--brand-700); gap: 8px; }


.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) { .split__grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.split__grid--reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split__grid--reverse > :first-child { order: 0; } }

.split__title {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: var(--space-3) 0 var(--space-4);
}
.split__text {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}
.split__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 22px -8px rgba(15, 18, 28, 0.20), 0 2px 6px -2px rgba(15, 18, 28, 0.10);
}
.split__img img { display: block; width: 100%; height: auto; }

.split__img--bare {
  box-shadow: none;
  border-radius: var(--radius-lg);
}

.split__img--framed {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  display: grid; place-items: center;
}
.step h4 { font-size: var(--text-md); font-weight: 600; margin: 4px 0 4px; }
.step p { font-size: var(--text-sm); color: var(--fg-muted); line-height: 1.55; margin: 0; }


.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative;
}
.plan--featured {
  border-color: color-mix(in oklab, var(--brand-600) 50%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--brand-600) 30%, transparent), var(--shadow-md);
}
.plan--featured::before {
  content: "Bestseller";
  position: absolute;
  top: -12px; left: var(--space-6);
  background: var(--brand-600);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan--accent {
  border-color: color-mix(in oklab, var(--orange-500) 55%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--orange-500) 32%, transparent), var(--shadow-md);
}
.plan--accent::before {
  content: "Kostenlos";
  position: absolute;
  top: -12px; left: var(--space-6);
  background: var(--orange-600);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--fg-muted);
}
.plan__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan__price b {
  font-size: 44px; font-weight: 600; letter-spacing: -0.025em;
  font-feature-settings: 'tnum';
  color: var(--fg);
}
.plan__price span { color: var(--fg-muted); font-size: var(--text-sm); }
.plan__desc { font-size: var(--text-sm); color: var(--fg-muted); line-height: 1.5; margin: 0; min-height: 38px; }
.plan__list { display: flex; flex-direction: column; gap: 8px; margin: var(--space-2) 0; padding: 0; list-style: none; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); line-height: 1.4; color: var(--fg); }
.plan__list li::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--mint-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/70% no-repeat;
}
.plan__cta { margin-top: auto; }


.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote__mark {
  font-family: 'Georgia', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--brand-400);
  margin-bottom: var(--space-5);
  opacity: 0.55;
}
.quote__text {
  font-size: clamp(20px, 2.4vw, 14px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 400;
  margin: 0 0 var(--space-8);
  text-wrap: balance;
}
.quote__author { display: inline-flex; align-items: center; gap: 14px; }
.quote__avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background-image: url("../../assets/img/v2026/symbols/mail.png");
  background-size: cover;
  border: 1px solid var(--border);
}
.quote__name { font-weight: 600; font-size: var(--text-sm); }
.quote__role { font-size: var(--text-sm); color: var(--fg-muted); }


.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.platforms__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .platforms__grid { grid-template-columns: 1fr; }
  .platforms__grid--two { grid-template-columns: 1fr; }
}

.platform {
  padding: var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-3);
  align-items: flex-start;
}
.platform__os {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-subtle);
}
.platform__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 22px -8px rgba(15, 18, 28, 0.20), 0 2px 6px -2px rgba(15, 18, 28, 0.10);
}
.platform__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.platform h3 { font-size: var(--text-lg); margin: 0; }
.platform p { font-size: var(--text-sm); color: var(--fg-muted); margin: 0; line-height: 1.55; }


.shots {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-subtle) 100%);
  border: 1px solid var(--border);
}
.shots__viewport { overflow: hidden; }
.shots__track {
  display: flex;
  transition: transform 480ms var(--ease-out);
  will-change: transform;
}
.shots__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-10);
  
}
@media (max-width: 900px) {
  .shots__slide { grid-template-columns: 1fr; gap: var(--space-6); padding: var(--space-6); }
  .shots__slide > :first-child { order: 2; }
}
.shots__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 22px -8px rgba(15, 18, 28, 0.20), 0 2px 6px -2px rgba(15, 18, 28, 0.10);
}
.shots__img img { display: block; width: 100%; height: auto; }
.shots__caption-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-600);
  margin-bottom: var(--space-3);
}
.shots__caption h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}
.shots__caption p { font-size: var(--text-base); color: var(--fg-muted); line-height: 1.55; margin: 0; }

.shots__nav {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  display: flex; gap: 8px;
  z-index: 2;
}
.shots__btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration-1) var(--ease-out), border-color var(--duration-1) var(--ease-out);
}
.shots__btn:hover { background: var(--bg-muted); border-color: var(--border-strong); }
.shots__dots {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  display: flex; gap: 6px;
  z-index: 2;
}
.shots__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  transition: background var(--duration-1) var(--ease-out), width var(--duration-2) var(--ease-out);
  padding: 0;
}
.shots__dot.is-active { background: var(--brand-600); width: 24px; border-radius: 999px; }


.cta {
  padding: var(--space-20) 0;
  background: var(--bg);
  text-align: center;
}
.cta__panel {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900) 70%, oklch(0.20 0.06 280) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-10);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 700px) {
  .cta__panel { padding: var(--space-12) var(--space-6); }
}
.cta__panel::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(50% 40% at 25% 30%, color-mix(in oklab, var(--mint-400) 50%, transparent), transparent 70%),
    radial-gradient(40% 35% at 80% 70%, color-mix(in oklab, var(--orange-400) 65%, transparent), transparent 70%);
  filter: blur(50px);
  opacity: 0.55;
  z-index: -1;
}
.cta__title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 var(--space-4);
}
.cta__sub {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0 auto var(--space-8);
  max-width: 540px;
}
.cta__actions { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }


.progression {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) { .progression { grid-template-columns: 1fr; gap: var(--space-8); } }
@media (max-width: 900px) { .progression > :first-child { order: 2; } }

.progression__copy h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: var(--space-3) 0 var(--space-4);
}
.progression__text {
  font-size: var(--text-base);
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-6);
}


.progression__legend {
  display: flex; flex-direction: column; gap: var(--space-2);
  margin: 0 0 var(--space-6);
}
.progression__legend-row {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--text-sm);
  color: var(--fg);
}
.progression__swatch {
  width: 14px; height: 14px; border-radius: 4px;
  flex-shrink: 0;
}
.progression__swatch--red    { background: oklch(0.65 0.20 25); }
.progression__swatch--orange { background: var(--orange-500); }
.progression__swatch--green  { background: oklch(0.65 0.18 150); }
.progression__legend small { color: var(--fg-muted); font-size: 12px; }


.progression__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.progression__viewport {
  position: relative;
  aspect-ratio: 1366/1024;
  background: #f8f8fa;
  overflow: hidden;
}
.progression__frame {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease-in-out);
}
.progression__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.progression__frame.is-active { opacity: 1; }

.progression__chrome {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  gap: var(--space-4);
}
.progression__steps {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}
.progression__step {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  transition: background var(--duration-1) var(--ease-out),
              color var(--duration-1) var(--ease-out),
              border-color var(--duration-1) var(--ease-out);
}
.progression__step:hover { color: var(--fg); border-color: var(--border-strong); }
.progression__step.is-active {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}
.progression__label {
  font-size: 12px;
  color: var(--fg-subtle);
  font-family: var(--font-mono);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .progression__chrome { flex-direction: column; align-items: stretch; padding: var(--space-3); gap: var(--space-2); }
  .progression__label { text-align: center; }
  .progression__steps { justify-content: center; gap: 3px; }
  .progression__step { padding: 5px 8px; font-size: 11px; }
}


.progression--standalone {
  display: block;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  min-width: 0;
}
.progression--standalone .progression__card { min-width: 0; }
@media (max-width: 900px) {
  .progression--standalone { justify-self: stretch; max-width: 100%; }
}


.progression--shots .progression__viewport {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}
.progression--shots .progression__frame img {
  object-fit: cover;
  background: #fff;
}



.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare__col {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.compare__col--win {
  background: color-mix(in oklab, var(--mint-50) 50%, var(--bg-elevated));
  border-color: color-mix(in oklab, var(--mint-500) 25%, var(--border));
}
.compare__col--bad {
  background: color-mix(in oklab, var(--gray-100) 50%, var(--bg-elevated));
}
.compare__head {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.compare__row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--text-sm);
  color: var(--fg);
  padding: 6px 0;
}
.compare__row svg { flex-shrink: 0; margin-top: 2px; }
