/* ============================================================
   MacCleaner — System Health Dashboard aesthetic
   green #00e676 · bg #080c10 · glass panels · monospace stats
   ============================================================ */
:root {
  --green:      #00e676;
  --green-dim:  #00c853;
  --green-s:    rgba(0, 230, 118, .12);
  --green-glow: rgba(0, 230, 118, .28);
  --green-ring: rgba(0, 230, 118, .18);
  --amber:      #ffab40;
  --amber-s:    rgba(255, 171, 64, .14);
  --red:        #ff5252;
  --red-s:      rgba(255, 82, 82, .13);
  --bg:         #080c10;
  --bg-2:       #0d1117;
  --glass:      rgba(255,255,255,.04);
  --glass-2:    rgba(255,255,255,.07);
  --border:     rgba(255,255,255,.08);
  --brd-s:      rgba(255,255,255,.14);
  --text:       #e8edf2;
  --soft:       #99aabb;
  --muted:      #556677;
  --ink:        #080c10;
  --grad:       linear-gradient(135deg, #00e676 0%, #00c853 100%);
  --grad-soft:  linear-gradient(135deg, rgba(0,230,118,.18) 0%, rgba(0,200,83,.08) 100%);
  --shadow:     0 8px 32px rgba(0,0,0,.7);
  --glow:       0 0 40px rgba(0,230,118,.18);
  --rad:        16px;
  --rad-sm:     10px;
  --rad-lg:     24px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  --mono: "SF Mono", "Fira Code", "JetBrains Mono", "Menlo", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
section[id] { scroll-margin-top: 70px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
body {
  font-family: var(--sans); font-size: 15px; line-height: 1.65;
  color: var(--text); background: var(--bg); overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILS ─────────────────────────────────── */
.wrap       { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-sm    { max-width: 780px;  margin: 0 auto; padding: 0 1.5rem; }
.sr         { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.reveal     { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in  { opacity: 1; transform: none; }
.mono       { font-family: var(--mono); }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center;
  background: rgba(8,12,16,.0); transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(8,12,16,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1.08rem; letter-spacing: -.02em; color: #fff;
  flex-shrink: 0;
}
.brand-logo { display: block; flex-shrink: 0; }
.brand em { color: var(--green); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav-link  { font-size: .88rem; color: var(--soft); transition: color .15s; }
.nav-link:hover { color: #fff; }
.nav-cta {
  background: var(--green-s); color: var(--green);
  border: 1px solid var(--green-ring); font-size: .88rem; font-weight: 700;
  padding: .42rem 1.1rem; border-radius: 20px; transition: background .15s, box-shadow .15s;
}
.nav-cta:hover { background: var(--green); color: var(--ink); box-shadow: var(--glow); }
.nav-burger {
  display: none;
  background: transparent; border: 0; padding: 10px; margin-left: auto;
  cursor: pointer; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 64px 0 auto 0;
  background: rgba(8,12,16,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column; gap: .5rem;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: .75rem 0; color: var(--soft); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-cta {
  margin-top: .5rem;
  background: var(--green-s); color: var(--green);
  border: 1px solid var(--green-ring); font-size: .95rem; font-weight: 700;
  padding: .7rem 1.1rem; border-radius: 20px; text-align: center;
}
.mobile-nav-cta:hover { background: var(--green); color: var(--ink); }

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px; position: relative; overflow: hidden;
}
/* Ambient background blobs */
.hero::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; right: -5%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px; gap: 4rem; align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-gauge-wrap { order: -1; }
}

/* Left column */
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.03em; color: #fff; margin-bottom: 1.25rem;
}
.hero h1 .hi { color: var(--green); }
.hero-sub {
  font-size: 1.06rem; color: var(--soft); line-height: 1.75; max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad); color: var(--ink); font-weight: 800; font-size: .95rem;
  padding: .75rem 1.8rem; border-radius: 30px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,230,118,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,230,118,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--soft); font-size: .9rem; border-bottom: 1px solid var(--border);
  padding-bottom: 1px; transition: color .15s, border-color .15s;
}
.btn-ghost:hover { color: #fff; border-color: var(--brd-s); }
.hero-note {
  margin-top: 1.25rem; font-size: .78rem; color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
}
.hero-note svg { flex-shrink: 0; }

/* Right column — gauge */
.hero-gauge-wrap {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.gauge-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--green-ring); animation: spin-slow 20s linear infinite;
}
.gauge-ring:nth-child(1) { width: 380px; height: 380px; border-style: dashed; opacity: .4; }
.gauge-ring:nth-child(2) { width: 310px; height: 310px; animation-direction: reverse; animation-duration: 14s; opacity: .25; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.gauge-svg { position: relative; z-index: 2; }
.gauge-bg   { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 10; }
.gauge-fill { fill: none; stroke: url(#gaugeGrad); stroke-width: 10; stroke-linecap: round;
              stroke-dasharray: 565; stroke-dashoffset: 565;
              transition: stroke-dashoffset 2s cubic-bezier(.4,0,.2,1); }
.gauge-fill.animated { stroke-dashoffset: 127; } /* 78% filled: 565*(1-.78)=124 */
.gauge-center { text-anchor: middle; }
.gauge-pct  { font-family: var(--mono); font-size: 48px; font-weight: 700; fill: #fff; }
.gauge-label{ font-family: var(--sans); font-size: 13px; fill: var(--soft); }
.gauge-sublabel { font-family: var(--sans); font-size: 11px; fill: var(--green); font-weight: 600; }

/* Stat chips around gauge */
.gauge-chips {
  position: absolute; inset: 0; pointer-events: none;
}
.gchip {
  position: absolute; display: flex; align-items: center; gap: .4rem;
  background: rgba(8,12,16,.85); border: 1px solid var(--border);
  backdrop-filter: blur(8px); border-radius: 10px; padding: .45rem .75rem;
  font-size: .75rem; white-space: nowrap;
}
.gchip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.gchip-val { font-family: var(--mono); font-weight: 700; color: #fff; }
.gchip-key { color: var(--soft); }
.gchip:nth-child(1) { top: 8%; right: 0; }
.gchip:nth-child(2) { bottom: 22%; right: -5%; }
.gchip:nth-child(3) { bottom: 5%; left: 10%; }
.gchip:nth-child(4) { top: 25%; left: -2%; }

/* ── TICKER ─────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(0,230,118,.04); padding: 1.4rem 0;
}
.ticker-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--rad);
  overflow: hidden;
}
@media (max-width: 700px) { .ticker-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .ticker-inner { grid-template-columns: 1fr; }
  .tick { padding: 1.1rem 1.2rem; }
}
.tick {
  background: var(--bg); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .25rem;
}
.tick-n {
  font-family: var(--mono); font-size: 1.85rem; font-weight: 700;
  color: var(--green); line-height: 1;
}
.tick-l { font-size: .78rem; color: var(--soft); }

/* ── FEATURES ───────────────────────────────── */
.features { padding: 7rem 0; }
.section-label {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: .75rem;
}
.section-label::before { content: "// "; opacity: .5; }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -.03em; color: #fff; line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--soft); max-width: 560px; line-height: 1.75; }
.section-head { margin-bottom: 3.5rem; }

/* Bento grid layout */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

.bcard {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--rad-lg); padding: 1.8rem; position: relative; overflow: hidden;
  transition: background .2s, border-color .2s, transform .2s;
}
.bcard:hover { background: var(--glass-2); border-color: var(--brd-s); transform: translateY(-2px); }
.bcard-wide { grid-column: span 2; }
.bcard-tall { grid-row: span 2; }
@media (max-width: 900px) { .bcard-wide { grid-column: span 1; } .bcard-tall { grid-row: span 1; } }

@media (hover: none) {
  .bcard:hover { background: var(--glass); border-color: var(--border); transform: none; }
  .bcard:hover::before { opacity: 0; }
}

/* Subtle gradient shimmer on card */
.bcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,.3), transparent);
  opacity: 0; transition: opacity .3s;
}
.bcard:hover::before { opacity: 1; }

.bcard-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--grad-soft); border: 1px solid var(--green-ring);
}
.bcard h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .55rem; }
.bcard p  { font-size: .88rem; color: var(--soft); line-height: 1.7; }

/* Big stat card variant */
.bcard-stat .bcard-big-n {
  font-family: var(--mono); font-size: 3.5rem; font-weight: 800; color: var(--green);
  line-height: 1; margin: .5rem 0 .3rem;
}
.bcard-stat .bcard-big-l { font-size: .82rem; color: var(--soft); }

/* Bar mini-chart */
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 52px; margin-top: 1rem; }
.mini-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: var(--green-s); border: 1px solid var(--green-ring);
  transition: background .2s;
}
.mini-bar.active { background: var(--green); border-color: var(--green); }
.mini-bar:hover  { background: var(--green); }

/* Inline scan animation */
.scan-line {
  height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 1px; margin-top: 1rem; position: relative;
  animation: scan 2.5s ease-in-out infinite;
}
@keyframes scan {
  0%   { width: 0; margin-left: 0; opacity: 1; }
  70%  { width: 100%; margin-left: 0; opacity: 1; }
  100% { width: 0; margin-left: 100%; opacity: 0; }
}

/* File type mini list */
.file-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .9rem; }
.file-row {
  display: flex; align-items: center; gap: .6rem; font-size: .8rem;
}
.file-bar-wrap { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.file-bar { height: 100%; border-radius: 3px; }
.file-label { color: var(--soft); width: 90px; flex-shrink: 0; font-family: var(--mono); font-size: .72rem; }
.file-val   { color: var(--text); width: 42px; text-align: right; flex-shrink: 0; font-family: var(--mono); font-size: .72rem; }

/* ── BEFORE/AFTER ───────────────────────────── */
.before-after { padding: 6rem 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ba-grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 1.5rem; align-items: center; }
@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
}
.ba-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--rad-lg); padding: 2rem;
}
.ba-card.after { border-color: var(--green-ring); background: rgba(0,230,118,.04); }
.ba-tag {
  font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .18rem .55rem; border-radius: 5px; margin-bottom: 1rem;
  display: inline-block;
}
.ba-tag.before-tag { background: rgba(255,82,82,.12); color: var(--red); }
.ba-tag.after-tag  { background: var(--green-s); color: var(--green); }
.ba-disk {
  display: flex; gap: 4px; align-items: flex-end; height: 80px; margin: 1.2rem 0;
}
.ba-disk-seg {
  flex: 1; border-radius: 4px 4px 0 0;
  transition: height .5s ease;
}
.ba-label { font-size: .8rem; color: var(--soft); margin-bottom: .35rem; }
.ba-val   { font-family: var(--mono); font-size: 1.6rem; font-weight: 800; color: #fff; }
.ba-freed { font-size: .8rem; color: var(--green); font-weight: 600; margin-top: .2rem; }
.ba-arrow { display: flex; align-items: center; justify-content: center; color: var(--green); opacity: .8; }

/* ── STEPS ──────────────────────────────────── */
.steps { padding: 7rem 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }
.step { display: flex; flex-direction: column; gap: .75rem; }
.step-num {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--green); margin-bottom: .25rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.step p  { font-size: .88rem; color: var(--soft); line-height: 1.75; }
.step-line {
  width: 36px; height: 2px; background: var(--green); border-radius: 1px; margin-bottom: .5rem;
}

/* ── CTA ────────────────────────────────────── */
.cta-section {
  padding: 8rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-tag {
  display: inline-block; background: var(--green); color: var(--ink);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 5px; margin-bottom: 1.25rem;
}
.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.03em;
  color: #fff; margin-bottom: 1rem; line-height: 1.1;
}
.cta-section p { font-size: 1.05rem; color: var(--soft); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: .78rem; color: var(--muted); }

/* ── FAQ ────────────────────────────────────── */
.faq-section { padding: 6rem 0; border-top: 1px solid var(--border); }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--rad);
  overflow: hidden; transition: border-color .2s;
}
.faq-item:hover { border-color: var(--brd-s); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff; font-family: var(--sans);
  font-size: .95rem; font-weight: 600; text-align: left; padding: 1.15rem 1.4rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-icon { color: var(--green); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; font-size: .9rem; color: var(--soft); line-height: 1.75; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 3rem 0 2rem;
  background: var(--bg-2);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.foot-brand {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1rem; color: #fff; letter-spacing: -.01em;
}
.foot-brand em { color: var(--green); font-style: normal; }
.foot-brand svg { display: block; flex-shrink: 0; }
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-links a { font-size: .82rem; color: var(--soft); transition: color .15s; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: .75rem; color: var(--muted); width: 100%; margin-top: .75rem; text-align: center; }

/* ── COOKIE ─────────────────────────────────── */
.cookie {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: rgba(13,17,23,.95); border: 1px solid var(--border);
  backdrop-filter: blur(14px); border-radius: var(--rad);
  padding: .85rem 1.2rem; display: flex; align-items: center; gap: 1rem;
  font-size: .82rem; color: var(--soft); z-index: 500; max-width: 520px; width: calc(100% - 2rem);
  box-shadow: var(--shadow);
}
.cookie a { color: var(--green); }
.cookie.hidden { display: none; }
.cookie-ok {
  background: var(--green-s); border: 1px solid var(--green-ring); color: var(--green);
  font-size: .8rem; font-weight: 700; padding: .3rem .9rem; border-radius: 20px;
  cursor: pointer; flex-shrink: 0; transition: background .15s;
}
.cookie-ok:hover { background: var(--green); color: var(--ink); }

/* ── SHOWCASE (FAN DECK) ────────────────────── */
.showcase { padding: 7rem 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase .section-head { margin-bottom: 4rem; }

.deck-stage {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
  user-select: none;
}

/* The container that holds all cards stacked */
.deck {
  position: relative;
  width: 540px; height: 340px;
  perspective: 1200px;
  cursor: pointer;
}
@media (max-width: 620px) {
  .deck { width: 320px; height: 210px; }
}
@media (max-width: 360px) {
  .deck { width: 280px; height: 184px; }
}

/* Each card is a CSS-rendered app screen mockup */
.deck-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background: #0d1520;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(0,230,118,.06);
  transition: transform .55s cubic-bezier(.4,0,.2,1), opacity .45s ease, box-shadow .3s;
  will-change: transform;
  backface-visibility: hidden;
}

/* Card stack positions — set via JS data-pos attribute */
.deck-card[data-pos="0"] { /* active / front */
  transform: translateX(0) rotateY(0deg) scale(1);
  opacity: 1; z-index: 4;
  box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 50px rgba(0,230,118,.1);
}
.deck-card[data-pos="1"] {
  transform: translateX(30px) rotateY(-14deg) scale(.93) translateZ(-60px);
  opacity: .75; z-index: 3;
}
.deck-card[data-pos="2"] {
  transform: translateX(55px) rotateY(-22deg) scale(.87) translateZ(-120px);
  opacity: .5; z-index: 2;
}
.deck-card[data-pos="3"] {
  transform: translateX(75px) rotateY(-28deg) scale(.82) translateZ(-180px);
  opacity: .3; z-index: 1;
}
/* Fly-out animation when card is dismissed */
.deck-card.fly-out {
  transform: translateX(-650px) rotateY(40deg) rotateZ(-20deg) scale(.75) !important;
  opacity: 0 !important;
  transition: transform .5s cubic-bezier(.4,0,.6,1), opacity .4s ease !important;
  pointer-events: none;
}

/* Mockup card internals */
.mc-titlebar {
  height: 36px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; padding: 0 14px; gap: 7px; flex-shrink: 0;
}
.mc-dot { width: 11px; height: 11px; border-radius: 50%; }
.mc-title { font-size: .72rem; color: var(--soft); margin-left: 6px; font-family: var(--mono); }
.mc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; height: calc(100% - 36px); }

/* Scan card */
.mc-scan-ring {
  width: 90px; height: 90px; border-radius: 50%;
  border: 6px solid rgba(0,230,118,.15); position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mc-scan-ring::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 6px solid transparent; border-top-color: var(--green);
  animation: mc-spin 1.2s linear infinite;
}
@keyframes mc-spin { to { transform: rotate(360deg); } }
.mc-scan-pct { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: #fff; }
.mc-scan-row { display: flex; align-items: center; gap: 12px; }
.mc-scan-info { flex: 1; }
.mc-scan-label { font-size: .72rem; color: var(--muted); font-family: var(--mono); margin-bottom: 4px; }
.mc-scan-path  { font-size: .78rem; color: var(--soft); font-family: var(--mono); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-scan-found { font-size: .82rem; color: var(--green); font-weight: 600; }
.mc-scan-bar { height: 3px; background: rgba(0,230,118,.15); border-radius: 2px; margin-top: 10px; }
.mc-scan-bar-fill { height: 100%; width: 62%; background: var(--green); border-radius: 2px; animation: mc-bar 3s ease-in-out infinite alternate; }
@keyframes mc-bar { from { width: 45%; } to { width: 78%; } }

/* Results card */
.mc-result-header { font-family: var(--mono); font-size: .75rem; color: var(--muted); margin-bottom: 4px; }
.mc-result-total { font-family: var(--mono); font-size: 1.8rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 14px; }
.mc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.mc-row-label { font-size: .72rem; color: var(--soft); width: 95px; flex-shrink: 0; }
.mc-row-bar { flex: 1; height: 5px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.mc-row-fill { height: 100%; border-radius: 3px; }
.mc-row-val { font-family: var(--mono); font-size: .72rem; color: var(--text); width: 38px; text-align: right; flex-shrink: 0; }
.mc-clean-btn {
  margin-top: auto; background: var(--grad); color: var(--ink);
  font-weight: 800; font-size: .82rem; text-align: center; padding: .55rem;
  border-radius: 10px; letter-spacing: .02em;
}

/* Duplicates card */
.mc-dup-header { display: flex; justify-content: space-between; align-items: baseline; }
.mc-dup-title { font-family: var(--mono); font-size: .75rem; color: var(--muted); }
.mc-dup-count { font-family: var(--mono); font-size: .75rem; color: var(--amber); }
.mc-dup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; flex: 1; }
.mc-dup-item {
  border-radius: 8px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mc-dup-item svg { display: block; max-width: 60%; max-height: 60%; }
.mc-dup-item .mc-badge {
  position: absolute; top: 3px; right: 3px; width: 14px; height: 14px;
  background: var(--red); border-radius: 50%;
  font-size: .5rem; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.mc-dup-item.selected { border-color: var(--red); background: rgba(255,82,82,.08); }

/* Done card */
.mc-done-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mc-done-icon { font-size: 2.5rem; margin-bottom: 4px; color: var(--green); display: flex; }
.mc-done-label { font-size: .78rem; color: var(--soft); font-family: var(--mono); letter-spacing: .06em; }
.mc-done-n { font-family: var(--mono); font-size: 3rem; font-weight: 900; color: var(--green); line-height: 1; }
.mc-done-sub { font-size: .78rem; color: var(--muted); }
.mc-done-stats { display: flex; gap: 2rem; margin-top: 10px; }
.mc-done-stat { text-align: center; }
.mc-done-stat-n { font-family: var(--mono); font-size: .95rem; font-weight: 700; color: #fff; }
.mc-done-stat-l { font-size: .68rem; color: var(--muted); }

/* Deck navigation */
.deck-nav { display: flex; align-items: center; gap: 1.5rem; }
.deck-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--glass); color: var(--soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
  font-size: 1.1rem;
}
.deck-btn:hover { background: var(--green-s); border-color: var(--green-ring); color: var(--green); }
.deck-dots { display: flex; gap: 7px; }
.ddot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); transition: background .3s, transform .3s;
}
.ddot.active { background: var(--green); transform: scale(1.3); }
.deck-hint { font-size: .75rem; color: var(--muted); font-family: var(--mono); }

/* ══════════════════════════════════════════════════════════
   3-D MACBOOK SCROLL HERO
══════════════════════════════════════════════════════════ */

/* Outer scroll container — sets the scrollable height */
.hero3d-scroll {
  position: relative;
  height: 500vh;
}

/* Sticky viewport that stays at top while scrolling */
.hero3d-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Colour-shifting background */
.hero3d-bg {
  position: absolute;
  inset: 0;
  background: #070b13;
  transition: background-color 0.7s ease;
  z-index: 0;
}

/* Ambient blobs */
.hero3d-bg::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.07) 0%, transparent 70%);
  pointer-events: none;
  transition: background 0.7s;
}
.hero3d-bg::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Three.js canvas container — fills sticky area */
#hero3d-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* explicit dimensions as fallback when inset: 0 doesn't resolve */
  width: 100%;
  height: 100%;
}
#hero3d-scene canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Text overlay — left side (constrained to left 42% of screen) */
.hero3d-text {
  position: relative;
  z-index: 10;
  padding: 0 0 0 7%;
  width: 42%;
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.hero3d-text.h3d-fade {
  opacity: 0;
  transform: translateY(16px);
}

.hero3d-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.hero3d-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero3d-title em {
  color: var(--green);
  font-style: normal;
}

.hero3d-sub {
  font-size: 1.02rem;
  color: var(--soft);
  line-height: 1.76;
  margin-bottom: 2rem;
  max-width: 430px;
}

.hero3d-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll progress dots — right edge */
.h3d-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.h3d-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 0.35s, transform 0.35s;
  cursor: pointer;
}
.h3d-dot.active {
  background: var(--green);
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(0,230,118,0.5);
}

/* Scroll hint at bottom */
.h3d-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.28);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--mono);
  pointer-events: none;
}
.h3d-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(0,230,118,0.55), transparent);
  animation: h3dArrow 1.6s ease-in-out infinite;
}
@keyframes h3dArrow {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(8px);  opacity: 0; }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero3d-text { width: 46%; }
}
@media (max-width: 900px) {
  .hero3d-text {
    width: auto;
    max-width: 100%;
    background: rgba(6,11,18,0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--rad);
    padding: 1.5rem;
    margin: 0 1rem;
  }
  .hero3d-title { font-size: 2rem; }
  .h3d-dots { right: 0.8rem; }
}
@media (max-width: 540px) {
  .h3d-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero3d-text {
    padding: 1.25rem;
    margin: 0 .75rem;
  }
  .hero3d-title { font-size: 1.55rem; line-height: 1.15; margin-bottom: .9rem; }
  .hero3d-sub { font-size: .9rem; line-height: 1.55; margin-bottom: 1.25rem; }
  .hero3d-actions { gap: .65rem; }
  .h3d-dots { display: none; }
}

/* Mobile fallback: no 3D, hero collapses to a static viewport */
.hero3d-scroll.mobile-static { height: auto; }
.hero3d-scroll.mobile-static .hero3d-sticky {
  position: relative;
  height: auto;
  min-height: 92vh;
  padding: 100px 0 60px;
}
.hero3d-scroll.mobile-static #hero3d-scene { display: none; }
.hero3d-scroll.mobile-static .h3d-dots,
.hero3d-scroll.mobile-static .h3d-scroll-hint { display: none; }
.hero3d-scroll.mobile-static .hero3d-bg {
  background: radial-gradient(ellipse at top right, rgba(0,230,118,.08), transparent 60%), #070b13;
}

/* ── LONG-FORM ARTICLE ─────────────────────────── */
.article-section {
  padding: 7rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.article-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.article-body .article-lede {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text);
  padding: 1.4rem 1.6rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--rad);
}
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  margin: 1.6rem 0 .25rem;
  line-height: 1.3;
}
.article-body h2::before {
  content: "// ";
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
  font-size: .85em;
  opacity: .65;
}
.article-body p {
  font-size: .96rem;
  color: var(--soft);
  line-height: 1.85;
}
.article-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.article-body ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .94rem;
  color: var(--soft);
  line-height: 1.7;
}
.article-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: .9em;
}

/* ── COMPARISON TABLE ──────────────────────────── */
.compare-section {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-wrap {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
}
.compare-table thead th {
  position: sticky;
  top: 0;
  background: var(--bg-2);
  padding: 1rem .85rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--soft);
  letter-spacing: .01em;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
}
.compare-table thead th.ct-feature {
  text-align: left;
}
.compare-table thead th.ct-ours {
  background: linear-gradient(180deg, rgba(0,230,118,.10), rgba(0,230,118,.04));
  border-bottom-color: var(--green-ring);
}
.compare-table .ct-brand {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.compare-table .ct-ours .ct-brand {
  color: var(--green);
}
.compare-table .ct-price {
  display: inline-block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 5px;
  background: var(--green);
  color: var(--ink);
}
.compare-table .ct-price-paid {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  padding: .85rem .9rem;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.compare-table tbody td {
  text-align: center;
  padding: .85rem .85rem;
  border-bottom: 1px solid var(--border);
  color: var(--soft);
  vertical-align: middle;
}
.compare-table tbody td.ct-ours {
  background: rgba(0,230,118,.04);
  border-left: 1px solid var(--green-ring);
  border-right: 1px solid var(--green-ring);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table .ct-yes,
.compare-table .ct-no,
.compare-table .ct-part,
.compare-table .ct-paid {
  display: inline-block;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .25rem .6rem;
  border-radius: 20px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.compare-table .ct-yes {
  background: var(--green-s);
  color: var(--green);
  border-color: var(--green-ring);
}
.compare-table .ct-yes::before { content: "✓ "; opacity: .8; }
.compare-table .ct-no {
  background: rgba(255,82,82,.10);
  color: var(--red);
  border-color: rgba(255,82,82,.25);
}
.compare-table .ct-no::before { content: "✕ "; opacity: .8; }
.compare-table .ct-part {
  background: var(--amber-s);
  color: var(--amber);
  border-color: rgba(255,171,64,.28);
}
.compare-table .ct-part::before { content: "◐ "; opacity: .8; }
.compare-table .ct-paid {
  background: rgba(255,255,255,.04);
  color: var(--soft);
  border-color: var(--border);
}
.compare-table .ct-strong {
  font-size: .78rem;
  padding: .3rem .75rem;
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
}
.compare-table .ct-price-row th,
.compare-table .ct-price-row td {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  background: rgba(0,0,0,.18);
}
.compare-table .ct-price-row td.ct-ours {
  background: rgba(0,230,118,.10);
}
.compare-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: var(--soft);
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .article-section { padding: 5rem 0; }
  .article-body h2 { font-size: 1.18rem; }
  .article-body .article-lede { font-size: .98rem; padding: 1.1rem 1.2rem; }
  .compare-section { padding: 5rem 0; }
  .compare-wrap { padding: .5rem; border-radius: var(--rad); }
}

/* ── Final mobile polish (≤480px) ──────────────── */
@media (max-width: 480px) {
  .cookie {
    left: .75rem; right: .75rem; transform: none;
    width: auto; max-width: none;
    padding: .75rem .9rem; font-size: .78rem; gap: .65rem;
  }
  .foot-links { gap: .9rem; font-size: .76rem; }
  .foot-brand { font-size: .92rem; }
  .footer-inner { gap: 1rem; }
  .faq-q { padding: 1.1rem 1rem; }
}

/* ============================================================
   ARTICLE DASHBOARD BLOCKS
   Restructured long-form into mixed dashboard cards
   ============================================================ */

.art-block {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem 0 1rem;
}
.art-block > h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.art-block > h2::before {
  content: "// ";
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
  font-size: .85em;
  opacity: .65;
}
.art-block > p {
  font-size: .96rem;
  color: var(--soft);
  line-height: 1.85;
  margin: 0;
}

/* ── STAT STRIP (intro block) ──────────────────── */
.art-statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  margin-top: .5rem;
}
.art-stat {
  background: var(--bg);
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  position: relative;
}
.art-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,.35), transparent);
  opacity: .55;
}
.art-stat-n {
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: .15rem;
}
.art-stat-u {
  font-size: .7em;
  color: var(--soft);
  font-weight: 600;
  margin-left: .15rem;
}
.art-stat-l {
  font-size: .74rem;
  color: var(--soft);
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .art-statstrip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .art-statstrip { grid-template-columns: 1fr; }
}

/* ── FEATURE GRID (cleaning modules) ───────────── */
.art-featgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.art-feat {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  transition: background .2s, border-color .2s, transform .2s;
}
.art-feat:hover {
  background: var(--glass-2);
  border-color: var(--brd-s);
  transform: translateY(-2px);
}
.art-feat-wide { grid-column: span 2; }
.art-feat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-s);
  border: 1px solid var(--green-ring);
  color: var(--green);
  margin-bottom: .25rem;
}
.art-feat h2 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.art-feat h2::before { content: none; }
.art-feat p {
  font-size: .88rem;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 640px) {
  .art-featgrid { grid-template-columns: 1fr; }
  .art-feat-wide { grid-column: span 1; }
}

/* ── AI ASSISTANT HIGHLIGHT ────────────────────── */
.art-ai {
  background: linear-gradient(180deg, rgba(0,230,118,.06), rgba(0,230,118,.02));
  border: 1px solid var(--green-ring);
  border-radius: var(--rad-lg);
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: 0 0 50px rgba(0,230,118,.07) inset;
}
.art-ai-head { display: flex; flex-direction: column; gap: .4rem; }
.art-ai-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-s);
  border: 1px solid var(--green-ring);
  padding: .3rem .55rem;
  border-radius: 999px;
}
.art-ai h2 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0;
}
.art-ai h2::before { content: none; }
.art-ai-mock {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.1rem 1.2rem;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.85;
  color: var(--text);
  margin: .1rem 0;
  box-shadow: var(--glow);
}
.art-ai-line { white-space: pre-wrap; }
.art-ai-prompt {
  color: var(--green);
  font-weight: 700;
  margin-right: .55rem;
}
.art-ai-prompt-bot { color: var(--soft); }
.art-ai-q { color: #fff; }
.art-ai-a { color: var(--soft); }
.art-ai-cursor { color: var(--green); }
.art-ai-blink {
  display: inline-block;
  margin-left: .15rem;
  animation: art-blink 1.05s steps(1) infinite;
  color: var(--green);
}
@keyframes art-blink { 50% { opacity: 0; } }
.art-ai p {
  font-size: .92rem;
  color: var(--soft);
  line-height: 1.8;
  margin: 0;
}

/* ── TERMINAL BLOCK ────────────────────────────── */
.art-terminal {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-term-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.art-term-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.art-term-dot:first-child { background: #ff5f57; }
.art-term-dot:nth-child(2) { background: #ffbd2e; }
.art-term-dot:nth-child(3) { background: #28c93f; }
.art-term-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.art-term-body {
  padding: 1rem 1.2rem 1.15rem;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.85;
  color: var(--text);
}
.art-term-line { white-space: pre-wrap; }
.art-term-prompt {
  color: var(--green);
  font-weight: 700;
  margin-right: .55rem;
}
.art-term-out { color: var(--soft); }
.art-term-ok { color: var(--green); }

/* ── PRICE CALLOUT ─────────────────────────────── */
.art-pricecallout {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  gap: 1.4rem;
  background: var(--glass);
  border: 1px solid var(--green-ring);
  border-radius: var(--rad-lg);
  padding: 1.6rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.art-pricecallout::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,230,118,.16), transparent 60%);
  pointer-events: none;
}
.art-pc-left, .art-pc-right {
  display: flex; flex-direction: column; gap: .25rem;
  position: relative;
}
.art-pc-label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
}
.art-pc-label-green { color: var(--green); }
.art-pc-old {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  line-height: 1;
}
.art-pc-old-per {
  font-size: .55em;
  font-weight: 500;
  margin-left: .15rem;
  color: var(--muted);
  text-decoration: none;
}
.art-pc-arrow {
  font-family: var(--mono);
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 700;
  position: relative;
}
.art-pc-free {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: .04em;
  text-shadow: 0 0 24px rgba(0,230,118,.45);
}
.art-pc-sub {
  font-size: .82rem;
  color: var(--soft);
  margin-top: .25rem;
}
@media (max-width: 640px) {
  .art-pricecallout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.4rem 1.2rem;
    gap: .9rem;
  }
  .art-pc-left, .art-pc-right { align-items: center; }
  .art-pc-arrow { transform: rotate(90deg); }
}

/* ── MINI COMPARISON TEASER ────────────────────── */
.art-mini-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.art-mc-col {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1.1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.art-mc-ours {
  background: var(--green-s);
  border-color: var(--green-ring);
  box-shadow: 0 0 30px rgba(0,230,118,.08);
}
.art-mc-name {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.art-mc-price {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.art-mc-paid { color: var(--soft); }
.art-mc-col ul {
  list-style: none;
  padding: 0;
  margin: .35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.art-mc-col li {
  font-size: .8rem;
  color: var(--soft);
  display: flex; align-items: baseline; gap: .45rem;
  line-height: 1.4;
}
.art-mc-ok {
  color: var(--green); font-weight: 700; font-family: var(--mono);
  flex-shrink: 0;
}
.art-mc-no {
  color: var(--red); font-weight: 700; font-family: var(--mono);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .art-mini-compare { grid-template-columns: 1fr; }
}

/* ── PROCESS FLOW DIAGRAM ──────────────────────── */
.art-flow {
  display: flex;
  align-items: stretch;
  gap: .55rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 1rem 1.2rem;
}
.art-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .35rem .25rem;
}
.art-flow-num {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
}
.art-flow-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.art-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  opacity: .75;
  text-shadow: 0 0 10px rgba(0,230,118,.4);
}
@media (max-width: 520px) {
  .art-flow { flex-direction: column; align-items: stretch; }
  .art-flow-arrow { transform: rotate(90deg); padding: .25rem 0; font-size: 1.3rem; }
}

/* ── HONEST CALLOUT BOX ────────────────────────── */
.art-honest {
  background: rgba(0,230,118,.05);
  border: 1px dashed var(--green-ring);
  border-radius: var(--rad);
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.art-honest-tag {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: .85;
}
.art-honest-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

/* ── ARTICLE BLOCK RESPONSIVE TIGHTENING ───────── */
@media (max-width: 700px) {
  .art-block { margin: 1.6rem 0 .75rem; }
  .art-block > h2 { font-size: 1.18rem; }
  .art-ai { padding: 1.25rem 1.2rem; }
  .art-ai h2 { font-size: 1.05rem; }
  .art-pc-old { font-size: 1.7rem; }
  .art-pc-free { font-size: 2rem; }
  .art-ai-mock,
  .art-term-body { font-size: .76rem; padding: .9rem 1rem; line-height: 1.7; }
  .art-term-bar { padding: .45rem .7rem; }
  .art-feat { padding: 1.15rem 1.1rem; }
  .art-pricecallout { padding: 1.3rem 1.1rem; }
  .art-honest { padding: 1.05rem 1.15rem; }
  .art-flow { padding: .85rem 1rem; }
}

@media (max-width: 480px) {
  .art-block > h2 { font-size: 1.08rem; }
  .art-stat-n { font-size: 1.3rem; }
  .art-stat { padding: .9rem .85rem; }
  .art-feat { padding: 1rem .95rem; min-width: 0; }
  .art-feat h2 { font-size: .96rem; }
  .art-feat p,
  .art-honest-text,
  .art-ai p,
  .art-block > p { font-size: .88rem; line-height: 1.7; }
  .art-ai { padding: 1.05rem 1rem; }
  .art-ai-mock,
  .art-term-body { font-size: .7rem; padding: .8rem .85rem; line-height: 1.65; word-break: break-word; overflow-wrap: anywhere; }
  .art-term-title { font-size: .62rem; }
  .art-pricecallout { padding: 1.1rem .9rem; }
  .art-pc-old { font-size: 1.4rem; }
  .art-pc-free { font-size: 1.7rem; }
  .art-pc-arrow { font-size: 1.3rem; }
  .art-mc-col { padding: .95rem .9rem 1rem; min-width: 0; }
  .art-mc-price { font-size: .95rem; }
  .art-mc-col li { font-size: .76rem; }
  .art-flow { padding: .8rem .9rem; }
  .art-flow-label { font-size: .95rem; }
  .art-honest { padding: .95rem 1rem; }
}
@media (max-width: 360px) {
  .art-ai-mock,
  .art-term-body { font-size: .66rem; padding: .7rem .75rem; }
  .art-pc-old { font-size: 1.25rem; }
  .art-pc-free { font-size: 1.5rem; }
  .art-stat-n { font-size: 1.15rem; }
}

/* ============================================================
   ARTICLE — 7 distinct top-level sections (sec-*)
   Each has its OWN background + layout so the lower half of
   the page reads as varied like the upper half (hero / ticker
   / features / showcase). No shared container, no shared bg.
   ============================================================ */

/* ── SEC 1 · INTRO LEAD · full-bleed centered + dot grid ── */
.sec-intro {
  position: relative;
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,230,118,.07), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.sec-intro-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(0,230,118,.18) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: 0 0;
  opacity: .35;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.sec-intro-inner { position: relative; text-align: center; }
.sec-intro-eyebrow {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.25rem;
}
.sec-intro-title {
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  font-weight: 800; letter-spacing: -.035em;
  color: #fff; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sec-intro-title em {
  font-style: normal; color: var(--green);
  text-shadow: 0 0 32px rgba(0,230,118,.45);
}
.sec-intro-lede {
  font-size: 1.06rem; line-height: 1.85;
  color: var(--soft);
  max-width: 720px; margin: 0 auto;
}

/* ── SEC 2 · STATS MARQUEE · full-width green-tinted strip ── */
.sec-stats2 {
  padding: 5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(0,230,118,.05), rgba(0,230,118,.10) 50%, rgba(0,230,118,.04)),
    var(--bg-2);
  border-top: 1px solid var(--green-ring);
  border-bottom: 1px solid var(--green-ring);
  position: relative;
}
.sec-stats2::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: .55;
}
.sec-stats2-head { margin-bottom: 2rem; }
.sec-stats2-kicker {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); font-weight: 700;
  display: inline-block; margin-bottom: .65rem;
}
.sec-stats2-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.2;
}
.sec-stats2-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px dashed rgba(0,230,118,.25);
  border-bottom: 1px dashed rgba(0,230,118,.25);
  margin-bottom: 2rem;
}
.sec-stats2-cell {
  display: flex; flex-direction: column; gap: .4rem; align-items: flex-start;
}
.sec-stats2-n {
  font-family: var(--mono); font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800;
  color: var(--green); line-height: 1;
  display: inline-flex; align-items: baseline; gap: .2rem;
  text-shadow: 0 0 28px rgba(0,230,118,.35);
}
.sec-stats2-u {
  font-size: .42em; color: var(--soft); font-weight: 600;
  letter-spacing: .02em;
}
.sec-stats2-l {
  font-family: var(--mono); font-size: .75rem;
  color: var(--soft); letter-spacing: .06em; text-transform: uppercase;
}
.sec-stats2-copy {
  font-size: .96rem; color: var(--text); line-height: 1.85;
  max-width: 880px;
}

/* ── SEC 3 · FEATURE MOSAIC · asymmetric sidebar + grid ── */
.sec-mosaic {
  padding: 7rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.sec-mosaic .wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.sec-mosaic-aside {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: .9rem;
}
.sec-mosaic-tag {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
}
.sec-mosaic-tag::before { content: "// "; opacity: .55; }
.sec-mosaic-h {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.15;
}
.sec-mosaic-sub {
  font-size: .95rem; color: var(--soft); line-height: 1.7;
}
.sec-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sec-mosaic-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.sec-mosaic-card:hover {
  background: var(--glass-2); border-color: var(--brd-s); transform: translateY(-2px);
}
.sec-mosaic-hero {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(0,230,118,.08), transparent 60%),
    var(--glass-2);
  border: 1px solid var(--green-ring);
  padding: 2rem 1.9rem;
}
.sec-mosaic-wide { grid-column: span 2; }
.sec-mosaic-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid var(--green-ring);
  color: var(--green);
}
.sec-mosaic-card h3 {
  font-size: 1.02rem; font-weight: 700; color: #fff;
  letter-spacing: -.01em;
}
.sec-mosaic-hero h3 { font-size: 1.25rem; }
.sec-mosaic-card p {
  font-size: .9rem; color: var(--soft); line-height: 1.75;
}

/* ── SEC 4 · AI · split 2-col · sticky-feel · code panel left ── */
.sec-ai {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,230,118,.08), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
}
.sec-ai-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.sec-ai-mock {
  background: #050a0d;
  border: 1px solid var(--green-ring);
  border-radius: var(--rad);
  box-shadow: var(--shadow), 0 0 60px rgba(0,230,118,.12);
  overflow: hidden;
  position: relative;
}
.sec-ai-mock::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 95%, rgba(0,230,118,.08));
  pointer-events: none;
}
.sec-ai-mock-bar {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem;
  background: rgba(0,230,118,.08);
  border-bottom: 1px solid var(--green-ring);
}
.sec-ai-mock-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: secAiPulse 1.8s ease-in-out infinite;
}
@keyframes secAiPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.sec-ai-mock-title {
  font-family: var(--mono); font-size: .75rem; color: var(--green);
  letter-spacing: .04em;
}
.sec-ai-mock-body {
  padding: 1.4rem 1.5rem;
  font-family: var(--mono); font-size: .88rem; line-height: 2;
  display: flex; flex-direction: column; gap: .15rem;
  min-height: 240px;
}
.sec-ai-line { white-space: pre-wrap; }
.sec-ai-prompt {
  color: var(--green); font-weight: 700; margin-right: .4rem;
}
.sec-ai-prompt-bot { color: var(--soft); }
.sec-ai-q { color: #fff; }
.sec-ai-a { color: var(--soft); }
.sec-ai-cursor { color: var(--green); }
.sec-ai-blink {
  display: inline-block; margin-left: 2px;
  animation: secAiBlink 1s steps(1) infinite;
}
@keyframes secAiBlink { 50% { opacity: 0; } }
.sec-ai-copy { display: flex; flex-direction: column; gap: 1rem; }
.sec-ai-chip {
  display: inline-flex; align-self: flex-start;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em;
  color: var(--green); background: var(--green-s);
  border: 1px solid var(--green-ring);
  padding: .35rem .7rem; border-radius: 999px;
}
.sec-ai-title {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.2;
}
.sec-ai-copy p {
  font-size: .98rem; color: var(--soft); line-height: 1.85;
}

/* ── SEC 5 · TERMINAL · centered macOS window · pure dark ── */
.sec-terminal {
  padding: 7rem 1.5rem;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px),
    #04070a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-terminal-head { text-align: center; margin-bottom: 2.4rem; }
.sec-terminal-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.2;
}
.sec-terminal-win {
  max-width: 880px; margin: 0 auto;
  background: #000;
  border: 1px solid rgba(0,230,118,.22);
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow), 0 0 80px rgba(0,230,118,.10);
  overflow: hidden;
}
.sec-terminal-bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .7rem 1.1rem;
  background: linear-gradient(180deg, #1c1f24, #131619);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sec-terminal-dot {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
}
.sec-terminal-dot:first-child { background: #ff5f57; }
.sec-terminal-dot:nth-child(2) { background: #ffbd2e; }
.sec-terminal-dot:nth-child(3) { background: #28c93f; }
.sec-terminal-name {
  margin-left: auto; margin-right: auto;
  font-family: var(--mono); font-size: .78rem; color: #889; letter-spacing: .03em;
}
.sec-terminal-body {
  padding: 1.6rem 1.8rem;
  font-family: var(--mono); font-size: .92rem; line-height: 1.95;
  color: #cfd8de;
  display: flex; flex-direction: column; gap: .15rem;
}
.sec-terminal-line { white-space: pre-wrap; }
.sec-terminal-p {
  color: var(--green); font-weight: 700; margin-right: .55rem;
}
.sec-terminal-out { color: var(--soft); }
.sec-terminal-ok { color: var(--green); }
.sec-terminal-copy {
  max-width: 720px; margin: 2rem auto 0;
  font-size: .96rem; color: var(--soft); line-height: 1.85;
}
.sec-terminal-copy + .sec-terminal-copy { margin-top: 1.1rem; }

/* ── SEC 6 · FREE vs PAID · 2-panel · dim vs neon ── */
.sec-vsfree {
  padding: 7rem 1.5rem 5rem;
  background:
    linear-gradient(135deg, #0a0f14 0%, #0d1117 50%, #08110d 100%);
  border-top: 1px solid var(--border);
}
.sec-vsfree-inner {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 1rem;
  align-items: stretch;
}
.sec-vsfree-panel {
  border-radius: var(--rad-lg);
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.sec-vsfree-paid {
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.14);
  color: var(--muted);
  filter: grayscale(.45);
}
.sec-vsfree-free {
  background:
    radial-gradient(ellipse at top right, rgba(0,230,118,.18), transparent 60%),
    rgba(0,230,118,.05);
  border: 1px solid var(--green);
  box-shadow: var(--glow);
  position: relative;
}
.sec-vsfree-tag {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  color: var(--muted);
}
.sec-vsfree-tag-green { color: var(--green); }
.sec-vsfree-price {
  font-family: var(--mono); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800;
  color: #6b7785; line-height: 1;
  text-decoration: line-through; text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,82,82,.5);
}
.sec-vsfree-per { font-size: .35em; color: var(--muted); text-decoration: none; margin-left: .15rem; }
.sec-vsfree-free-w {
  font-family: var(--mono); font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800;
  color: var(--green); line-height: 1;
  text-shadow: 0 0 32px rgba(0,230,118,.55);
  letter-spacing: -.01em;
}
.sec-vsfree-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .65rem;
}
.sec-vsfree-list li {
  font-size: .92rem; line-height: 1.5;
  display: flex; align-items: flex-start; gap: .6rem;
  font-family: var(--mono);
}
.sec-vsfree-paid li { color: var(--muted); }
.sec-vsfree-free li { color: var(--text); }
.sec-vsfree-x {
  color: var(--red); font-weight: 700; min-width: 16px;
}
.sec-vsfree-ok {
  color: var(--green); font-weight: 700; min-width: 16px;
}
.sec-vsfree-vs {
  align-self: center;
  font-family: var(--mono); font-size: 1.1rem; font-weight: 700;
  color: var(--green);
  background: var(--bg);
  border: 1px solid var(--green-ring);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(0,230,118,.25);
}
.sec-vsfree-foot {
  margin-top: 2.4rem;
  text-align: center;
}
.sec-vsfree-foot p {
  font-size: .96rem; color: var(--soft); line-height: 1.85;
}

/* ── SEC 7 · PIPELINE · full-width horizontal + honest box ── */
.sec-pipeline {
  padding: 7rem 1.5rem;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}
.sec-pipeline-head {
  text-align: center; margin-bottom: 3rem;
  display: flex; flex-direction: column; gap: .6rem; align-items: center;
}
.sec-pipeline-kick {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--green);
}
.sec-pipeline-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
  color: #fff; letter-spacing: -.025em; line-height: 1.2;
}
.sec-pipeline-flow {
  list-style: none; padding: 0; margin: 0 0 3rem;
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: stretch;
  gap: 0;
}
.sec-pipeline-step {
  background:
    linear-gradient(180deg, rgba(0,230,118,.06), transparent 70%),
    var(--glass);
  border: 1px solid var(--green-ring);
  border-radius: var(--rad-lg);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: .55rem;
  position: relative;
}
.sec-pipeline-step::before {
  content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: .55;
}
.sec-pipeline-num {
  font-family: var(--mono); font-size: .8rem; font-weight: 700;
  color: var(--green); letter-spacing: .08em;
}
.sec-pipeline-name {
  font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
}
.sec-pipeline-meta {
  font-family: var(--mono); font-size: .78rem; color: var(--soft);
}
.sec-pipeline-conn {
  align-self: center; justify-self: center;
  width: 100%; height: 2px; position: relative;
  background: repeating-linear-gradient(90deg, var(--green-ring) 0 6px, transparent 6px 12px);
}
.sec-pipeline-conn::after {
  content: "›"; position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.5rem; color: var(--green); font-weight: 700;
  line-height: 1;
}
.sec-pipeline-copy {
  max-width: 820px; margin: 0 auto;
  font-size: .98rem; color: var(--soft); line-height: 1.85;
}
.sec-pipeline-honest {
  max-width: 720px; margin: 2.4rem auto 0;
  background: rgba(255,171,64,.04);
  border: 1px solid rgba(255,171,64,.22);
  border-left: 3px solid var(--amber);
  border-radius: var(--rad);
  padding: 1.4rem 1.6rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.sec-pipeline-honest-tag {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  color: var(--amber); font-weight: 700; opacity: .9;
}
.sec-pipeline-honest p {
  font-size: .93rem; color: var(--text); line-height: 1.8; margin: 0;
}

/* ── RESPONSIVE · 700px ─────────────────────────────────── */
@media (max-width: 900px) {
  .sec-mosaic .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .sec-mosaic-aside { position: static; }
  .sec-ai-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sec-ai-mock { order: 2; }
  .sec-ai-copy { order: 1; }
}
@media (max-width: 700px) {
  .sec-intro { padding: 4.5rem 1.25rem; }
  .sec-intro-lede { font-size: .98rem; }
  .sec-stats2 { padding: 3.5rem 1.25rem; }
  .sec-stats2-row { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.25rem; padding: 1.1rem 0; }
  .sec-mosaic { padding: 4.5rem 1.25rem; }
  .sec-mosaic-grid { grid-template-columns: 1fr; }
  .sec-mosaic-hero, .sec-mosaic-wide { grid-column: span 1; }
  .sec-mosaic-card { padding: 1.3rem 1.2rem; }
  .sec-mosaic-hero { padding: 1.5rem 1.3rem; }
  .sec-ai { padding: 4.5rem 1.25rem; }
  .sec-ai-mock-body { padding: 1.1rem 1.15rem; font-size: .8rem; min-height: 0; line-height: 1.85; }
  .sec-terminal { padding: 4.5rem 1rem; }
  .sec-terminal-win { border-radius: var(--rad); }
  .sec-terminal-body { padding: 1.1rem 1.15rem; font-size: .78rem; line-height: 1.8; }
  .sec-terminal-bar { padding: .55rem .8rem; }
  .sec-terminal-name { font-size: .68rem; }
  .sec-vsfree { padding: 4.5rem 1.25rem 3.5rem; }
  .sec-vsfree-inner { grid-template-columns: 1fr; }
  .sec-vsfree-vs {
    justify-self: center;
    width: 44px; height: 44px; font-size: .95rem;
  }
  .sec-vsfree-panel { padding: 1.7rem 1.4rem; }
  .sec-pipeline { padding: 4.5rem 1.25rem; }
  .sec-pipeline-flow {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .sec-pipeline-step { padding: 1.3rem 1.2rem; }
  .sec-pipeline-conn {
    width: 2px; height: 24px; justify-self: center;
    background: repeating-linear-gradient(180deg, var(--green-ring) 0 6px, transparent 6px 12px);
  }
  .sec-pipeline-conn::after {
    content: "⌄"; right: auto; left: 50%; top: auto; bottom: -10px;
    transform: translateX(-50%);
  }
  .sec-pipeline-honest { padding: 1.1rem 1.2rem; }
}

/* ── RESPONSIVE · 480px ─────────────────────────────────── */
@media (max-width: 480px) {
  .sec-intro { padding: 3.5rem 1rem; }
  .sec-intro-title { font-size: 1.7rem; }
  .sec-intro-lede { font-size: .92rem; line-height: 1.75; }
  .sec-stats2 { padding: 3rem 1rem; }
  .sec-stats2-row { grid-template-columns: 1fr 1fr; gap: .9rem 1rem; }
  .sec-stats2-n { font-size: 1.7rem; }
  .sec-stats2-l { font-size: .68rem; }
  .sec-stats2-copy { font-size: .9rem; line-height: 1.75; }
  .sec-mosaic { padding: 3.5rem 1rem; }
  .sec-mosaic-h { font-size: 1.45rem; }
  .sec-mosaic-card { padding: 1.15rem 1.05rem; min-width: 0; }
  .sec-mosaic-card h3 { font-size: .98rem; }
  .sec-mosaic-card p { font-size: .85rem; line-height: 1.7; }
  .sec-ai { padding: 3.5rem 1rem; }
  .sec-ai-title { font-size: 1.4rem; }
  .sec-ai-copy p { font-size: .9rem; line-height: 1.75; }
  .sec-ai-mock-body { font-size: .72rem; padding: .95rem 1rem; word-break: break-word; overflow-wrap: anywhere; }
  .sec-ai-mock-title { font-size: .68rem; }
  .sec-ai-chip { font-size: .66rem; padding: .3rem .6rem; }
  .sec-terminal { padding: 3.5rem .75rem; }
  .sec-terminal-title { font-size: 1.4rem; }
  .sec-terminal-body { font-size: .7rem; padding: .9rem .95rem; line-height: 1.75; word-break: break-word; overflow-wrap: anywhere; }
  .sec-terminal-bar { padding: .5rem .65rem; }
  .sec-terminal-name { font-size: .6rem; }
  .sec-terminal-dot { width: 9px; height: 9px; }
  .sec-terminal-copy { font-size: .9rem; line-height: 1.75; }
  .sec-vsfree { padding: 3.5rem 1rem 2.8rem; }
  .sec-vsfree-panel { padding: 1.4rem 1.15rem; }
  .sec-vsfree-price { font-size: 2rem; }
  .sec-vsfree-free-w { font-size: 2.2rem; }
  .sec-vsfree-list li { font-size: .85rem; }
  .sec-vsfree-foot p { font-size: .88rem; line-height: 1.75; }
  .sec-pipeline { padding: 3.5rem 1rem; }
  .sec-pipeline-title { font-size: 1.45rem; }
  .sec-pipeline-step { padding: 1.1rem 1rem; }
  .sec-pipeline-name { font-size: 1.2rem; }
  .sec-pipeline-meta { font-size: .72rem; }
  .sec-pipeline-copy { font-size: .9rem; line-height: 1.75; }
  .sec-pipeline-honest { padding: 1rem 1.05rem; }
  .sec-pipeline-honest p { font-size: .87rem; line-height: 1.7; }
}

/* ╔══════════════════════════════════════════════════
   DOWNLOAD CTA — final section
══════════════════════════════════════════════════ */
.sec-download {
  position: relative;
  padding: 6.5rem 0 7rem;
  background: #050a0d;
  border-top: 1px solid var(--green-ring);
  overflow: hidden;
}
.sec-dl-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sec-dl-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  opacity: .65;
}
.sec-dl-orb {
  position: absolute;
  left: 50%; top: 35%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,230,118,.18) 0%, transparent 60%);
  filter: blur(40px);
}
.sec-dl-in {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}
.sec-dl-head { margin-bottom: 2.5rem; }
.sec-dl-tag {
  display: inline-block;
  font-size: .75rem;
  color: var(--green);
  letter-spacing: .14em;
  margin-bottom: 1rem;
}
.sec-dl-h {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 1.1rem;
}
.sec-dl-h em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 32px rgba(0,230,118,.45);
}
.sec-dl-sub {
  font-size: 1.02rem;
  color: var(--soft);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.sec-dl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  padding: 1.1rem 1.1rem 1.1rem 1.4rem;
  background: linear-gradient(135deg, rgba(0,230,118,.07), rgba(0,230,118,.02));
  border: 1px solid var(--green-ring);
  border-radius: var(--rad-lg);
  box-shadow:
    0 24px 60px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 0 1px rgba(0,230,118,.05);
}
.sec-dl-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.sec-dl-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,230,118,.06);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(0,230,118,.18);
}
.sec-dl-card-meta { text-align: left; min-width: 0; }
.sec-dl-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.sec-dl-card-line {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  color: var(--soft);
  letter-spacing: .04em;
}
.sec-dl-card-dot {
  width: 3px; height: 3px;
  background: var(--muted);
  border-radius: 50%;
  display: inline-block;
}
.sec-dl-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.85rem;
  background: var(--grad);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.005em;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .18s, box-shadow .18s, filter .18s;
  box-shadow:
    0 8px 28px rgba(0,230,118,.35),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.sec-dl-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 40px rgba(0,230,118,.5),
    inset 0 1px 0 rgba(255,255,255,.4);
  filter: brightness(1.05);
}
.sec-dl-cta:active { transform: translateY(0); }
.sec-dl-trust {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 2rem;
  max-width: 640px;
  text-align: left;
}
.sec-dl-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--soft);
}
.sec-dl-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
  background: rgba(0,230,118,.1);
  padding: 4px;
  border-radius: 50%;
  box-sizing: content-box;
}
.sec-dl-foot {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .02em;
  padding: .55rem 1.1rem;
  background: rgba(0,0,0,.4);
  border: 1px dashed var(--border);
  border-radius: 6px;
}
.sec-dl-foot-c { color: var(--green); }

@media (max-width: 700px) {
  .sec-download { padding: 5rem 0 5.5rem; }
  .sec-dl-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.1rem;
  }
  .sec-dl-cta {
    justify-content: center;
    padding: .9rem 1.2rem;
  }
  .sec-dl-trust { grid-template-columns: 1fr; gap: .65rem; }
  .sec-dl-orb { width: 480px; height: 480px; }
}
@media (max-width: 480px) {
  .sec-download { padding: 4rem 0 4.5rem; }
  .sec-dl-h { font-size: 1.85rem; }
  .sec-dl-sub { font-size: .94rem; }
  .sec-dl-card-title { font-size: .98rem; }
  .sec-dl-card-line { font-size: .72rem; }
  .sec-dl-foot { font-size: .72rem; padding: .5rem .9rem; }
  .sec-dl-orb { width: 360px; height: 360px; }
}
