/* self-hosted fonts */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/assets/fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/assets/fonts/clash-display-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}


:root {
  --bg: #060809;
  --bg-2: #0B0D10;
  --panel: #0E1117;
  --panel-2: #131720;
  --panel-3: #181D27;
  --line: rgba(255,255,255,.06);
  --line-2: rgba(255,255,255,.10);
  --txt: #F1F3F6;
  --body: #B8C0CC;
  --muted: #737E8E;
  --accent: #F97316;
  --accent-dim: rgba(249,115,22,.10);
  --accent-2: #FB923C;
  --ok: #34D399;
  --red: #FB7185;
  --focus: #F97316;
  --font-display: 'Clash Display', Inter, system-ui, sans-serif;
  --font-sans: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  --radius: 12px;
  --radius-lg: 18px;
  --nav-h: 60px;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--body);
  font: 15.5px/1.7 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #000;
  padding: 12px 20px; font-weight: 600; font-size: 14px;
  z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* type */
h1, h2, h3 {
  font-family: var(--font-display); color: var(--txt);
  line-height: 1.1; letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin: 0 0 20px; }
h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 600; margin: 0 0 12px; }
h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.01em; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.accent { color: var(--accent); }
.c-ok { color: var(--ok); }
.c-accent { color: var(--accent); }
.c-dim { color: var(--muted); }

/* focus */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(6,8,9,.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 20px; height: var(--nav-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--txt); min-height: 44px; flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 6px; margin-left: auto; font-size: 13.5px;
}
.nav-links a {
  padding: 6px 10px; border-radius: 6px; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--txt); background: rgba(255,255,255,.04); }
.nav-links a[aria-current="page"] { color: var(--txt); background: rgba(255,255,255,.06); }

/* mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer; padding: 10px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  color: var(--txt); margin-left: auto; border-radius: 8px;
}
.nav-toggle-label:hover { background: rgba(255,255,255,.06); }
.hamburger {
  display: block; width: 20px; height: 2px; background: currentColor;
  position: relative; transition: .2s;
}
.hamburger::before, .hamburger::after {
  content: ''; display: block; width: 20px; height: 2px; background: currentColor;
  position: absolute; left: 0; transition: .2s;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle:checked ~ .nav-toggle-label .hamburger { background: transparent; }
.nav-toggle:checked ~ .nav-toggle-label .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 840px) {
  .nav-links {
    display: none; position: absolute; top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,8,9,.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 12px 16px 18px; gap: 2px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a {
    padding: 12px 12px; min-height: 44px;
    display: flex; align-items: center; border-radius: 8px;
  }
  .nav-links a:hover { background: rgba(255,255,255,.04); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle-label { display: flex; }
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; min-height: 44px;
  border-radius: 9px; font-weight: 600; font-size: 14px;
  transition: all .15s; cursor: pointer; border: 0;
  text-decoration: none;
}
.btn-solid {
  background: var(--accent); color: #000;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-solid:hover {
  background: var(--accent-2);
  box-shadow: 0 4px 16px rgba(249,115,22,.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-ghost {
  border: 1px solid var(--line-2); color: var(--txt);
  background: transparent;
}
.btn-ghost:hover { border-color: rgba(249,115,22,.4); color: var(--accent); }
.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 44px; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -200px;
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -80px; left: -300px;
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.05) 0%, transparent 65%);
  pointer-events: none;
}
.eyebrow {
  font: 500 12px/1 var(--font-mono); letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.lede {
  font-size: 17px; max-width: 580px; color: var(--body); line-height: 1.7;
}
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 0; }

/* hero stat chips */
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 8px; font-size: 12.5px; color: var(--muted);
  background: var(--panel);
}
.hero-chip b { color: var(--txt); font-weight: 600; }

/* ═══════════════════════════════════════════
   TERMINAL / VISUAL CARD
   ═══════════════════════════════════════════ */
.visual { max-width: 620px; margin-top: 36px; }
.visual-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03),
    0 20px 60px -12px rgba(0,0,0,.5);
}
.vc-head {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-block; }
.dot-live {
  background: var(--ok);
  box-shadow: 0 0 6px rgba(52,211,153,.4);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.vc-title { margin-left: 6px; font: 500 11.5px var(--font-mono); color: var(--muted); }
.vc-body {
  margin: 0; padding: 16px; font: 500 12.5px/1.8 var(--font-mono);
  color: var(--body); overflow-x: auto;
}
.vc-body::-webkit-scrollbar { height: 3px; }
.vc-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: 64px 0; }
.section.alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* scroll animations */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim.in, .anim-left.in, .anim-right.in, .anim-scale.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════ */
.grid { display: grid; gap: 12px; margin-top: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
/* only interactive cards get hover effects */
a.card { display: block; color: inherit; }
a.card:hover {
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 8px 30px -8px rgba(249,115,22,.08);
}

/* icon tiles for service cards */
.icon-tile {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border: 1px solid rgba(249,115,22,.12);
  border-radius: 9px;
}
.icon-tile img { width: 20px; height: 20px; }

.product h3 { margin: 12px 0 4px; }
.product p { font-size: 14px; color: var(--muted); min-height: 40px; margin: 0; }
.price {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--accent);
}
.price small { font: 500 12px var(--font-sans); color: var(--muted); }

.product.bundle {
  border-color: rgba(249,115,22,.25);
  background: linear-gradient(170deg, rgba(249,115,22,.04) 0%, transparent 50%), var(--panel);
}

.card-link {
  display: inline-block; margin-top: 10px;
  color: var(--accent); font-size: 13px; font-weight: 600;
  transition: transform .15s;
}
a.card:hover .card-link { transform: translateX(3px); }

.usecase { padding: 18px; }
.usecase h3 { margin-bottom: 4px; font-size: 15px; }
.usecase p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════
   SPLIT LAYOUT
   ═══════════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.checks { list-style: none; padding: 0; margin: 16px 0 0; }
.checks li {
  padding: 8px 0 8px 28px; position: relative;
  font-size: 14.5px; line-height: 1.6;
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
}

/* ═══════════════════════════════════════════
   COMPARISON DUO
   ═══════════════════════════════════════════ */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .duo { grid-template-columns: 1fr; } }
.duo-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.duo-col.bad { border-color: rgba(251,113,133,.15); background: rgba(251,113,133,.02); }
.duo-col.good { border-color: rgba(52,211,153,.15); background: rgba(52,211,153,.02); }
.duo-head {
  font: 600 11px var(--font-mono); letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.duo-col.good .duo-head { color: var(--ok); }
.duo-col.bad .duo-head { color: var(--red); }
.duo-col ul { list-style: none; margin: 0; padding: 0; }
.duo-col li {
  position: relative; padding: 6px 0 6px 22px; font-size: 13.5px;
}
.duo-col.bad li::before {
  content: "\2715"; position: absolute; left: 0; color: var(--red); font-size: 11px; top: 8px;
}
.duo-col.good li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--ok); font-size: 11px; top: 8px;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.center { text-align: center; }
.price-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.price-panel::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 250px;
  background: radial-gradient(ellipse, rgba(249,115,22,.08), transparent 70%);
  pointer-events: none;
}
.price-big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 56px); color: var(--txt); line-height: 1;
  position: relative;
}
.price-big .price-accent { color: var(--accent); }
.price-note { color: var(--muted); margin: 8px 0 20px; font-size: 14px; }
.price-list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.price-list li {
  border: 1px solid var(--line);
  border-radius: 6px; padding: 5px 12px;
  font-size: 13px; color: var(--body);
  background: rgba(255,255,255,.02);
}
.price-panel .btn { margin-top: 16px; }

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--line);
}
.stats > div {
  background: var(--panel); padding: 20px;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stats b {
  display: block; font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px); color: var(--txt); font-weight: 700;
}
.stats span { color: var(--muted); font-size: 12.5px; display: block; margin-top: 2px; }

/* ═══════════════════════════════════════════
   PRICING TABLE (semantic)
   ═══════════════════════════════════════════ */
.price-table-wrap {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-top: 16px;
}
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table thead th {
  font: 600 11px var(--font-mono); letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); padding: 12px 16px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--line);
}
.price-table tbody td {
  padding: 14px 16px; font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: rgba(255,255,255,.015); }
.price-table tbody td b { color: var(--accent); }

@media (max-width: 640px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tbody tr { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .price-table tbody tr:last-child { border-bottom: 0; }
  .price-table tbody td { padding: 2px 0; border-bottom: 0; }
  .price-table tbody td::before {
    content: attr(data-label);
    display: block; font: 500 10px var(--font-mono);
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1px;
  }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); margin-bottom: 8px;
  transition: border-color .15s;
}
details[open] { border-color: var(--line-2); }
summary {
  cursor: pointer; padding: 14px 44px 14px 18px;
  font-weight: 600; font-size: 14.5px; color: var(--txt);
  list-style: none; position: relative; min-height: 44px;
  display: flex; align-items: center;
  border-radius: var(--radius);
  transition: background .12s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { background: rgba(255,255,255,.02); }
summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); font-weight: 500; font-size: 16px;
  transition: transform .2s, color .15s;
}
details[open] summary::after {
  content: "\2212"; transform: translateY(-50%) rotate(180deg); color: var(--accent);
}
details .faq-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .2s ease;
}
details[open] .faq-body { grid-template-rows: 1fr; }
details .faq-body > div { overflow: hidden; }
details .faq-body p {
  padding: 0 18px 14px; margin: 0;
  color: var(--body); font-size: 14px; line-height: 1.7;
}

/* inline links */
details a, .faq-body a, .checks a, p a:not(.btn):not(.brand):not(.card-link) {
  color: var(--accent); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 2px;
}
details a:hover, p a:not(.btn):not(.brand):not(.card-link):hover {
  color: var(--accent-2);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-cta {
  border-top: 1px solid var(--line);
  padding: 32px 0; text-align: center;
}
.footer-cta p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0; background: var(--bg);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; align-items: flex-start;
}
.footer .brand { min-height: 44px; font-size: 15px; }
.footer-links {
  display: flex; gap: 6px; flex-wrap: wrap; font-size: 13px;
}
.footer-links a {
  color: var(--muted); padding: 6px 8px; border-radius: 6px;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color .12s;
}
.footer-links a:hover { color: var(--txt); }

/* ═══════════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════════ */
.flag { font-size: 13px; color: #8B9DB3; margin-top: 8px; }
.flag-body { color: var(--body); }

/* ═══════════════════════════════════════════
   AGED ACCOUNT PROFILES
   ═══════════════════════════════════════════ */
.profiles { margin-top: 24px; }
.profile { display: flex; flex-direction: column; gap: 12px; }
.prof-head {
  font-family: var(--font-display); font-size: 16px; color: var(--txt);
  font-weight: 600; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prof-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
@media (max-width: 560px) { .prof-stats { grid-template-columns: 1fr 1fr; } }
.prof-stats b {
  display: block; font-family: var(--font-display);
  font-size: 18px; color: var(--txt); font-weight: 700;
}
.prof-stats span { font-size: 11.5px; color: var(--muted); }
.prof-badges { display: flex; flex-wrap: wrap; gap: 4px; }
.badge {
  border: 1px solid var(--line);
  border-radius: 6px; padding: 3px 8px;
  font-size: 11.5px; color: var(--body);
  background: rgba(255,255,255,.02);
}

/* age bands */
.band {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.band:last-child { border-bottom: 0; }

/* showcase gallery */
.showcase-card {
  padding: 0; overflow: hidden; cursor: pointer;
  display: block; color: inherit;
}
.showcase-card img {
  width: 100%; height: 220px; object-fit: cover; object-position: top;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform .2s, opacity .15s;
}
@media (max-width: 640px) {
  .showcase-card img { height: 160px; }
}
.showcase-card:hover img { transform: scale(1.02); opacity: .9; }
.showcase-info {
  padding: 14px 16px;
}
.showcase-info b {
  display: block; font-size: 14px; color: var(--txt);
  margin-bottom: 2px;
}
.showcase-info span { font-size: 12.5px; }
.showcase-hint {
  font-size: 11px; color: var(--accent); margin-top: 6px; display: block;
}

/* lightbox (JS-powered) */
.lb {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,.96);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lb.lb-open {
  display: flex;
}
.lb-img {
  max-width: 92vw; max-height: 92vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  cursor: default;
}
.lb-close {
  position: fixed; top: 16px; right: 20px; z-index: 10000;
  font-size: 32px; color: #fff; line-height: 1;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12);
  transition: background .12s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

/* breadcrumb */
.breadcrumb {
  padding: 12px 0 0; font-size: 12.5px; color: var(--muted);
}
.breadcrumb a {
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.breadcrumb a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */
.mt-10 { margin-top: 10px; }
.mt-14 { margin-top: 14px; }
.mt-18 { margin-top: 18px; }
.mt-26 { margin-top: 26px; }
.mt-34 { margin-top: 34px; }
.ml-8 { margin-left: 8px; }

/* star graph */
.graph-img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* process flow */
.flow {
  display: flex; flex-direction: column; gap: 0;
}
.flow-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.flow-step:last-child { border-bottom: 0; }
.flow-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(249,115,22,.12);
  color: var(--accent);
  font: 700 13px var(--font-display);
}
.flow-step strong { color: var(--txt); font-size: 14.5px; display: block; margin-bottom: 2px; }
.flow-step p { font-size: 13px; margin: 0; }

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .anim, .anim-left, .anim-right, .anim-scale, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .hero { padding: 64px 0 40px; }
  .lede { font-size: 15px; }
  .split { gap: 24px; }
  .price-panel { padding: 28px 20px; }
  .duo { gap: 8px; }
  .hero-stats { gap: 6px; }
  .hero-chip { font-size: 11.5px; padding: 5px 10px; }
}
