:root {
  --bg: #060b15;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-2: rgba(11, 18, 33, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(103, 232, 249, 0.34);
  --text: #f8fafc;
  --muted: #bbc6d7;
  --soft: #8ea2bc;
  --cyan: #67e8f9;
  --cyan-2: #22d3ee;
  --blue: #60a5fa;
  --green: #34d399;
  --yellow: #facc15;
  --red: #ef4444;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(96, 165, 250, 0.16), transparent 28rem),
    radial-gradient(circle at 52% 46%, rgba(217, 70, 239, 0.06), transparent 34rem),
    linear-gradient(180deg, #050914 0%, #081120 46%, #050914 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
.page { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 9, 20, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-copy { min-width: 0; }
.brand-name { margin: 0; font-size: 21px; font-weight: 900; letter-spacing: -0.03em; }
.brand-note { color: var(--soft); font-size: 13px; font-weight: 700; }

.logo-mark {
  width: 56px;
  height: 56px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(96, 165, 250, 0.12)),
    #0f172a;
  border: 1px solid rgba(103, 232, 249, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.logo-card {
  position: absolute;
  width: 31px;
  height: 23px;
  border-radius: 8px;
  background: #f8fafc;
  transform: translateY(-2px);
}

.logo-play {
  position: absolute;
  border-left: 13px solid #0ea5e9;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translate(2px, -2px);
}

.logo-lines {
  position: absolute;
  left: 15px;
  bottom: 12px;
  width: 25px;
  display: grid;
  gap: 4px;
}

.logo-lines span { height: 3px; border-radius: 999px; background: rgba(96, 165, 250, 0.94); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover { color: var(--cyan); }

.button, .ghost-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.compact-button { min-height: 44px; }
.button:hover, .ghost-button:hover { transform: translateY(-1px); }
.button {
  color: #04121e;
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
  box-shadow: 0 18px 42px rgba(34, 211, 238, 0.18);
}
.ghost-button {
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.hero {
  padding: 88px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: 50px;
  align-items: center;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--cyan);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(103, 232, 249, 0.24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.section-kicker.soft { color: #e9d5ff; border-color: rgba(217, 70, 239, 0.22); background: rgba(217, 70, 239, 0.08); }

h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

h2 {
  margin: 13px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 560;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; }

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.68);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 820;
}

.hero-product { position: relative; min-height: 665px; }
.hero-glow {
  position: absolute;
  inset: 48px 22px 40px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 60%);
  filter: blur(18px);
}

.hero-frame {
  position: relative;
  min-height: 665px;
  padding: 22px;
  border-radius: 36px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(7, 11, 20, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-top { display: flex; gap: 8px; margin-bottom: 18px; }
.browser-top span { width: 11px; height: 11px; border-radius: 999px; background: rgba(148, 163, 184, 0.36); }

.hero-shot { display: grid; grid-template-columns: minmax(0, 1fr) 224px; gap: 16px; }
.watch-stage, .sidebar-stage, .subtitle-strip {
  border-radius: 25px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.watch-stage {
  min-height: 356px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 24% 18%, rgba(250, 204, 21, 0.14), transparent 16rem),
    linear-gradient(165deg, #121b2c 0%, #0d1423 100%);
}

.watch-badge {
  width: fit-content;
  padding: 8px 12px;
  color: #fef3c7;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.24);
}

.watch-subtitle {
  max-width: 380px;
  padding: 16px;
  border-radius: 19px;
  font-size: 20px;
  font-weight: 820;
  background: rgba(2, 6, 23, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.watch-footer { display: flex; gap: 9px; }
.timeline { display: block; width: 124px; height: 7px; border-radius: 999px; background: rgba(103, 232, 249, 0.58); }
.timeline.short { width: 74px; background: rgba(96, 165, 250, 0.44); }
.timeline.mini { width: 36px; background: rgba(148, 163, 184, 0.36); }

.sidebar-stage {
  min-height: 356px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: rgba(15, 23, 42, 0.76);
}

.panel-title { color: #e0f2fe; font-weight: 950; }
.panel-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.panel-card strong, .panel-card small { display: block; }
.panel-card small { margin-top: 6px; color: var(--soft); font-size: 12px; font-weight: 700; }
.panel-card.slim { padding: 12px 14px; }

.nav-row, .answer-row { display: grid; gap: 8px; }
.nav-row { grid-template-columns: 1fr 1.2fr 1fr; }
.answer-row { grid-template-columns: repeat(3, 1fr); }
.nav-row span, .answer-row span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 950;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.nav-row span.active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.28);
}

.subtitle-strip {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  gap: 11px;
  background: rgba(15, 23, 42, 0.76);
}

.subtitle-strip div {
  padding: 12px 13px;
  border-radius: 16px;
  color: #d1fae5;
  font-weight: 780;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.subtitle-strip div.active {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(52, 211, 153, 0.56);
}

.proof-row {
  margin: 18px 0 70px;
  padding: 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.66);
}

.proof-label {
  max-width: 240px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 860;
}

.platform-badges { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.platform-badge {
  min-height: 86px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.58);
}
.platform-badge strong, .platform-badge span { display: block; }
.platform-badge strong { font-size: 17px; font-weight: 950; }
.platform-badge span { color: var(--soft); font-size: 12px; font-weight: 750; }

.brand-glyph {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  font-weight: 1000;
  font-size: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}
.netflix-glyph { color: #ff3047; background: rgba(239, 68, 68, 0.1); }
.youtube-glyph { position: relative; background: rgba(239, 68, 68, 0.12); }
.youtube-glyph i {
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: #ff3047;
  display: grid;
  place-items: center;
  position: relative;
}
.youtube-glyph i::after {
  content: "";
  margin-left: 3px;
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.anki-glyph { color: #60a5fa; background: rgba(96, 165, 250, 0.12); }

.feature-showcase {
  padding: 34px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.showcase-copy p, .compatibility-copy p {
  color: var(--muted);
  font-size: 19px;
  margin: 0 0 22px;
}

.showcase-list { display: grid; gap: 13px; color: var(--muted); font-size: 17px; }
.showcase-list b { color: var(--text); }

.showcase-card, .compatibility-card, .step-card, .benefit-card, .price-card, .faq-item {
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.16);
}

.showcase-card { padding: 22px; }
.shot-title { font-size: 18px; font-weight: 950; color: #e0f2fe; margin-bottom: 18px; }

.standalone-layout {
  min-height: 356px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
}

.fake-video, .fake-subs {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.fake-video {
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    radial-gradient(circle at 30% 18%, rgba(250, 204, 21, 0.12), transparent 17rem),
    linear-gradient(155deg, #111827 0%, #0b1221 100%);
}

.fake-caption {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-weight: 850;
}

.fake-subs {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 11px;
  background: rgba(2, 6, 23, 0.68);
}

.fake-subs div {
  padding: 12px;
  border-radius: 15px;
  color: #cbd5e1;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.fake-subs div.selected {
  color: #d1fae5;
  border-color: rgba(52, 211, 153, 0.52);
  background: rgba(16, 185, 129, 0.12);
}

.mini-caption { margin-top: 14px; color: var(--soft); font-size: 13px; font-weight: 720; }

.workflow-section { padding: 38px 0 82px; }
.section-heading { margin-bottom: 28px; }
.section-heading.centered { text-align: center; display: flex; justify-content: center; }

.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { padding: 26px; }
.step-index {
  width: 44px; height: 44px; border-radius: 16px; display: grid; place-items: center;
  color: #04121e; background: var(--cyan); font-weight: 1000; margin-bottom: 18px;
}
.step-card p, .benefit-card p, .price-card, .faq-item p { color: var(--muted); margin: 0; }

.compatibility-band {
  margin: 0 0 84px;
  padding: 30px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(217, 70, 239, 0.18);
  background:
    radial-gradient(circle at 16% 20%, rgba(217, 70, 239, 0.08), transparent 18rem),
    rgba(15, 23, 42, 0.72);
}

.compatibility-copy h2 { font-size: clamp(30px, 3.5vw, 44px); }
.compatibility-note {
  color: var(--soft);
  font-size: 13px;
  font-weight: 780;
  padding-top: 4px;
}

.compatibility-card { padding: 18px; background: rgba(2, 6, 23, 0.54); }
.compact-header { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 14px; font-weight: 950; }
.compact-header small { color: #e9d5ff; }
.compact-shot { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 14px; }
.compact-video, .compact-lr { min-height: 230px; border-radius: 22px; border: 1px solid rgba(148, 163, 184, 0.14); }
.compact-video {
  background:
    radial-gradient(circle at 30% 22%, rgba(96, 165, 250, 0.12), transparent 14rem),
    linear-gradient(160deg, #111827 0%, #0b1221 100%);
}
.compact-lr {
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: rgba(15, 23, 42, 0.88);
}
.compact-lr div {
  padding: 11px;
  border-radius: 14px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 13px;
  font-weight: 800;
}
.compact-lr div.active {
  color: #e9d5ff;
  border-color: rgba(217, 70, 239, 0.38);
  background: rgba(217, 70, 239, 0.1);
}

.benefits-section, .pricing-section, .faq-section { padding: 0 0 82px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { padding: 24px; min-height: 188px; }
.benefit-icon { font-size: 28px; margin-bottom: 16px; }

.pricing-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; }
.price-card { padding: 28px; display: grid; align-content: start; gap: 16px; }
.price-card.pro {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 86% 16%, rgba(34, 211, 238, 0.14), transparent 16rem),
    var(--panel-2);
}
.plan-name {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-list { display: grid; gap: 11px; color: var(--muted); }
.plan-list div::before { content: "✓"; color: var(--green); font-weight: 1000; margin-right: 10px; }
.price-card .button { width: fit-content; margin-top: 4px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-item { padding: 24px; }

.cta {
  margin: 0 0 78px;
  padding: 44px;
  border-radius: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 12%, rgba(96, 165, 250, 0.15), transparent 20rem),
    rgba(15, 23, 42, 0.84);
}
.cta p { margin: 12px 0 0; color: var(--muted); font-size: 18px; }
.cta-actions { margin-bottom: 0; flex: 0 0 auto; }

.footer {
  padding-bottom: 42px;
  color: var(--soft);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .hero, .feature-showcase, .compatibility-band { grid-template-columns: 1fr; }
  .hero-product { min-height: auto; }
  .hero-frame { min-height: auto; }
  .proof-row { align-items: stretch; flex-direction: column; }
  .platform-badges, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .page { width: min(100% - 24px, 1180px); }
  .nav-inner, .cta, .footer { align-items: flex-start; flex-direction: column; }
  .nav-links { display: none; }
  .hero { padding-top: 56px; }
  .hero-shot, .standalone-layout, .compact-shot, .workflow-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .platform-badges, .benefit-grid { grid-template-columns: 1fr; }
  .hero-frame, .showcase-card, .compatibility-band, .cta { border-radius: 28px; }
  .cta { padding: 28px; }
}


/* ===== Setup preview on homepage ===== */
.setup-preview {
  margin: 0 0 82px;
  padding: 34px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.12), transparent 22rem),
    rgba(15, 23, 42, 0.76);
}

.setup-preview-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 19px;
}

.setup-preview-steps {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.52);
}

.setup-preview-steps div {
  min-height: 68px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: #dbeafe;
  font-weight: 820;
}

.setup-preview-steps span {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #04121e;
  background: var(--cyan);
  font-size: 14px;
  font-weight: 1000;
}

/* ===== Setup guide page ===== */
.setup-page {
  padding-bottom: 88px;
}

.setup-hero {
  padding: 74px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.setup-summary-card,
.setup-section,
.setup-mini-card,
.setup-figure,
.setup-field-explainer article {
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.16);
}

.setup-summary-card {
  padding: 26px;
}

.setup-summary-title {
  margin-bottom: 16px;
  color: #e0f2fe;
  font-size: 20px;
  font-weight: 950;
}

.setup-summary-card ol {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  font-size: 16px;
  font-weight: 760;
}

.setup-section {
  margin-bottom: 22px;
  padding: 30px;
}

.setup-step-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.setup-step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: #04121e;
  background: var(--cyan);
  font-size: 24px;
  font-weight: 1000;
}

.setup-step-head h2 {
  margin-top: 0;
}

.setup-step-head p,
.setup-note,
.setup-mini-card p,
.setup-field-explainer p,
.setup-figure figcaption {
  color: var(--muted);
}

.setup-step-head p {
  margin: 0;
  font-size: 18px;
}

.setup-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.08);
  font-size: 16px;
}

.setup-note strong {
  color: #fef3c7;
}

.setup-inline-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.setup-mini-card {
  padding: 18px;
}

.setup-mini-card h3 {
  margin-bottom: 6px;
}

.setup-mini-card p {
  margin: 0;
  font-weight: 760;
}

.setup-mini-card code,
.setup-step-head code {
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--cyan);
  font-weight: 900;
}

.field-pill-grid,
.import-map {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.field-pill-grid {
  grid-template-columns: repeat(4, 1fr);
}

.field-pill-grid span,
.import-map div {
  min-height: 56px;
  padding: 14px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.58);
  color: #dbeafe;
  font-weight: 900;
}

.setup-screenshot-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.74fr);
  gap: 18px;
  align-items: start;
}

.setup-figure {
  margin: 0;
  padding: 16px;
}

.setup-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.setup-figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 760;
}

.setup-field-explainer {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.setup-field-explainer article {
  padding: 18px;
}

.setup-field-explainer h3 {
  margin-bottom: 7px;
}

.setup-field-explainer p {
  margin: 0;
}

.import-map {
  grid-template-columns: repeat(4, 1fr);
}

.final-setup-section .hero-actions {
  margin-top: 24px;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .setup-preview,
  .setup-hero {
    grid-template-columns: 1fr;
  }

  .setup-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .field-pill-grid,
  .import-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .setup-field-explainer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .setup-preview-steps,
  .setup-inline-grid,
  .field-pill-grid,
  .import-map,
  .setup-field-explainer {
    grid-template-columns: 1fr;
  }

  .setup-step-head {
    grid-template-columns: 1fr;
  }

  .setup-section,
  .setup-preview {
    padding: 24px;
    border-radius: 28px;
  }
}


/* ===== Real product screenshots ===== */
.product-shot,
.screenshot-showcase,
.screenshot-compatibility {
  margin: 0;
}

.product-shot {
  position: relative;
}

.product-shot-glow {
  position: absolute;
  inset: 8% 6% 12%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 64%);
  filter: blur(22px);
}

.product-shot-frame,
.screenshot-showcase,
.screenshot-compatibility {
  position: relative;
  z-index: 1;
}

.product-shot-frame {
  overflow: hidden;
  padding: 12px;
  border-radius: 34px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.68);
  box-shadow: var(--shadow);
}

.product-shot img,
.screenshot-showcase img,
.screenshot-compatibility img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.hero-product-shot figcaption,
.screenshot-showcase figcaption,
.screenshot-compatibility figcaption {
  margin-top: 14px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.hero-product-shot figcaption {
  padding: 0 8px;
}

.screenshot-showcase {
  padding: 22px;
}

.screenshot-showcase img {
  margin-top: 18px;
}

.screenshot-compatibility {
  padding: 18px;
  background: rgba(2, 6, 23, 0.54);
}

.screenshot-compatibility img {
  margin-top: 14px;
}

/* Telegram support section */
.telegram-help-section {
  border-color: rgba(34, 211, 238, 0.24);
  background:
    radial-gradient(circle at 16% 18%, rgba(34, 211, 238, 0.12), transparent 20rem),
    var(--panel);
}

.compact-step-head {
  align-items: center;
}

.telegram-step {
  background: linear-gradient(135deg, var(--cyan), #7dd3fc);
}

.telegram-actions {
  margin-top: 20px;
  margin-bottom: 0;
}


/* ===== Updated pricing ===== */
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: 18px;
}

.free-plan-card,
.pricing-pro-card {
  align-content: start;
}

.price-value {
  color: #f8fafc;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pro-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.pro-plan {
  min-height: 108px;
  padding: 16px;
  border-radius: 22px;
  display: grid;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.58);
}

.pro-plan strong {
  color: #dbeafe;
  font-size: 15px;
  font-weight: 950;
}

.pro-plan span {
  color: #f8fafc;
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pro-plan em {
  margin-right: 8px;
  color: var(--soft);
  font-style: normal;
  font-size: 24px;
  font-weight: 850;
  text-decoration: line-through;
}

.pro-plan small {
  color: #fef3c7;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.pro-plan.featured {
  border-color: rgba(250, 204, 21, 0.34);
  background:
    radial-gradient(circle at 84% 18%, rgba(250, 204, 21, 0.14), transparent 10rem),
    rgba(2, 6, 23, 0.7);
}

.pricing-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background: rgba(34, 211, 238, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

@media (max-width: 1080px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .pro-plan-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Separate pricing page ===== */
.nav-links .nav-active {
  color: var(--cyan);
}

.pricing-page {
  padding-bottom: 88px;
}

.pricing-page-hero {
  max-width: 900px;
  padding: 82px 0 46px;
}

.pricing-page-hero h1 {
  max-width: 980px;
}

.pricing-page-section {
  padding-bottom: 34px;
}

.pricing-details-grid {
  padding: 0 0 82px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pricing-cta {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .pricing-details-grid {
    grid-template-columns: 1fr;
  }
}
