/* ============================================================
   HEIC Converter — image-format conversion landing
   Spectrum theme · violet → magenta → cyan on deep plum · Inter
   ============================================================ */

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; } }

.skip { position:absolute; left:-9999px; top:0; background:#FF4D8D; color:#16092E; padding:.7rem 1.1rem; z-index:1000; font-weight:700; font-size:.9rem; border-radius:6px; }
.skip:focus { left:12px; top:12px; }

:root {
  --ink-900:#0E0820; --ink-800:#150B2B; --ink-700:#1E1140; --ink-600:#281653; --ink-500:#341C68;
  --vio-600:#6D49F5; --vio-500:#7C5CFF; --vio-400:#9B7BFF; --vio-300:#C4B1FF;
  --mag-600:#E0357A; --mag-500:#FF4D8D; --mag-400:#FF6FA5;
  --cyan-400:#22D3EE; --cyan-500:#06B6D4; --mint-400:#33E0C2;
  --rose-400:#FB7185;
  --slate-900:#0F172A; --slate-800:#1E293B; --slate-700:#334155; --slate-600:#475569;
  --slate-500:#64748B; --slate-400:#9A8CC9; --slate-300:#C4B8E6; --slate-200:#E3DCF5; --slate-100:#F3EFFB;
  --white:#FFFFFF;
  --header-h:60px;
  --font-b:'Inter',system-ui,-apple-system,sans-serif;
  --shadow-sm:0 1px 2px rgba(10,4,28,.10),0 1px 1px rgba(10,4,28,.06);
  --shadow-md:0 6px 16px rgba(10,4,28,.18),0 2px 4px rgba(10,4,28,.10);
  --shadow-lg:0 20px 50px rgba(10,4,28,.30),0 6px 14px rgba(10,4,28,.16);
  --shadow-glow:0 0 0 1px rgba(124,92,255,.30),0 12px 40px rgba(124,92,255,.22);
  --shadow-mag:0 0 0 1px rgba(255,77,141,.30),0 18px 44px rgba(255,77,141,.24);
  --grad-hero:radial-gradient(circle at 12% -10%,rgba(124,92,255,.30),transparent 50%),radial-gradient(circle at 92% 8%,rgba(255,77,141,.20),transparent 55%),radial-gradient(circle at 60% 100%,rgba(34,211,238,.12),transparent 55%),linear-gradient(180deg,#0E0820,#150B2B);
  --grad-card:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.01));
  --grad-btn:linear-gradient(135deg,var(--vio-500),var(--mag-500));
  --grad-spectrum:linear-gradient(90deg,var(--cyan-400),var(--vio-400),var(--mag-400));
  --grad-vio:linear-gradient(135deg,var(--vio-400),var(--mag-500));
  --grad-mag:linear-gradient(135deg,var(--mag-400),var(--vio-500));
}
@media (min-width:768px) { :root { --header-h:64px; } }

body { font-family:var(--font-b); background:var(--ink-900); color:var(--slate-200); font-size:16px; line-height:1.65; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; overflow-x:hidden; }
img,svg { display:block; max-width:100%; }
a { color:var(--vio-400); text-decoration:none; transition:color .2s ease; }
a:hover { color:var(--vio-300); }
ul { list-style:none; }

/* ── Focus ring (WCAG 2.4.7) ── */
:focus { outline:none; }
a:focus-visible, button:focus-visible, summary:focus-visible, .btn:focus-visible, [tabindex]:focus-visible, details:focus-visible { outline:2px solid var(--vio-300); outline-offset:3px; border-radius:6px; }
.btn:focus-visible { outline-offset:4px; }

/* ── Loader ── */
.loader { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; background:var(--ink-900); transition:opacity .5s ease, visibility .5s ease; }
.loader__inner { display:flex; flex-direction:column; align-items:center; gap:14px; }
.loader__inner span { font-weight:700; letter-spacing:.04em; color:var(--slate-300); }
.loader__spin { animation:rot 1.05s linear infinite; }
@keyframes rot { to { transform:rotate(360deg); } }
.loader.hide { opacity:0; visibility:hidden; pointer-events:none; }

/* ── Container ── */
.container { width:100%; max-width:1200px; margin-inline:auto; padding-inline:20px; }
@media (min-width:768px) { .container { padding-inline:32px; } }
.container-wide { max-width:1320px; }

/* ── Section ── */
.section { padding-block:64px; position:relative; scroll-margin-top:calc(var(--header-h) + 12px); }
@media (min-width:768px) { .section { padding-block:96px; } }
#guide,#faq,#features,#platforms,#screens,#download,#home,#compare,#steps { scroll-margin-top:calc(var(--header-h) + 12px); }

.section__head { text-align:center; margin-bottom:48px; max-width:780px; margin-inline:auto; }
.section__label { display:inline-block; font-size:11px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--vio-300); margin-bottom:14px; padding:6px 12px; border:1px solid rgba(124,92,255,.30); border-radius:999px; background:rgba(124,92,255,.08); }
.section__title { font-size:clamp(1.9rem,5vw,3.2rem); font-weight:800; line-height:1.1; color:var(--white); letter-spacing:-.02em; }
.section__title em { font-style:normal; background:var(--grad-spectrum); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.section__sub { margin-top:16px; color:var(--slate-400); font-size:17px; line-height:1.6; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:10px; font-family:var(--font-b); font-size:14px; font-weight:600; cursor:pointer; border:none; padding:12px 22px; border-radius:8px; transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease; white-space:nowrap; text-decoration:none; }
.btn--lg { padding:16px 30px; font-size:16px; border-radius:10px; }
.btn--fill { background:var(--grad-btn); color:var(--white); box-shadow:0 6px 20px rgba(255,77,141,.32), 0 2px 4px rgba(10,4,28,.40); }
.btn--fill:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(255,77,141,.42); color:var(--white); }
.btn--outline { color:var(--slate-100); background:transparent; border:1px solid rgba(255,255,255,.18); }
.btn--outline:hover { border-color:var(--vio-400); color:var(--vio-300); background:rgba(124,92,255,.08); }
.btn--ghost { color:var(--vio-300); background:rgba(124,92,255,.12); border:1px solid rgba(124,92,255,.28); }
.btn--ghost:hover { background:rgba(124,92,255,.20); color:var(--vio-300); }
.btn svg { width:16px; height:16px; flex:0 0 16px; }
.btn--block { width:100%; justify-content:center; }
@media (max-width:599px) { .btn { min-height:44px; } }

/* ── Header ── */
.header { position:sticky; top:0; z-index:100; backdrop-filter:saturate(160%) blur(14px); -webkit-backdrop-filter:saturate(160%) blur(14px); background:rgba(14,8,32,.78); border-bottom:1px solid transparent; transition:border-color .25s ease, background .25s ease; }
.header.scrolled { border-bottom-color:rgba(255,255,255,.07); background:rgba(14,8,32,.92); }
.header__inner { max-width:1200px; margin-inline:auto; padding:12px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
@media (min-width:768px) { .header__inner { padding:14px 32px; } }
.header__logo { display:inline-flex; align-items:center; gap:10px; font-weight:800; font-size:16px; color:var(--white); letter-spacing:-.01em; }
.header__logo:hover { color:var(--white); }
@media (min-width:600px) { .header__logo { font-size:17px; } }
.header__logo img { width:32px; height:32px; border-radius:8px; flex:0 0 32px; }
.header__nav { display:none; gap:6px; align-items:center; }
@media (min-width:960px) { .header__nav { display:inline-flex; } }
.header__nav a { font-weight:500; font-size:14px; color:var(--slate-300); padding:8px 12px; border-radius:6px; transition:color .15s ease, background .15s ease; }
.header__nav a:hover { color:var(--white); background:rgba(255,255,255,.05); }
.header__right { display:none; align-items:center; gap:12px; }
@media (min-width:960px) { .header__right { display:inline-flex; } }
.header__burger { display:inline-flex; flex-direction:column; gap:6px; width:44px; height:44px; align-items:center; justify-content:center; background:transparent; border:none; cursor:pointer; border-radius:8px; }
.header__burger span { width:22px; height:2px; background:var(--slate-100); border-radius:2px; transition:transform .25s ease, opacity .25s ease; }
.header__burger[aria-expanded="true"] span:nth-child(1) { transform:translateY(8px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity:0; transform:scaleX(0); }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform:translateY(-8px) rotate(-45deg); }
@media (min-width:960px) { .header__burger { display:none; } }

.mobile-nav { position:fixed; top:var(--header-h); left:0; right:0; z-index:99; background:rgba(14,8,32,.98); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); padding:20px; display:flex; flex-direction:column; gap:6px; transform:translateY(-110%); transition:transform .35s cubic-bezier(.16,1,.3,1); border-bottom:1px solid rgba(255,255,255,.06); max-height:calc(100vh - var(--header-h)); overflow-y:auto; }
.mobile-nav.open { transform:translateY(0); }
.mobile-nav a { padding:14px 12px; font-weight:600; color:var(--slate-100); border-radius:8px; }
.mobile-nav a:not(.btn):hover { background:rgba(255,255,255,.05); color:var(--vio-300); }
.mobile-nav__cta { margin-top:8px; }
@media (min-width:960px) { .mobile-nav { display:none; } }

/* ════════════════════════════════════════════════════════════
   HERO — text + app icon + spectrum conversion visual
════════════════════════════════════════════════════════════ */
.hero { position:relative; padding:56px 20px 56px; background:var(--grad-hero); overflow:hidden; }
@media (min-width:768px) { .hero { padding:88px 32px 88px; } }
@media (min-width:1080px) { .hero { padding:104px 32px 104px; } }
.hero__inner { max-width:1280px; margin-inline:auto; display:grid; gap:48px; grid-template-columns:1fr; align-items:center; position:relative; z-index:2; }
@media (min-width:960px) { .hero__inner { grid-template-columns:1.05fr .95fr; gap:64px; } }

.hero__grid { position:absolute; inset:0; background-image:linear-gradient(rgba(124,92,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(124,92,255,.07) 1px,transparent 1px); background-size:60px 60px; mask-image:radial-gradient(ellipse 80% 60% at 50% 30%,#000 30%,transparent 80%); -webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 30%,#000 30%,transparent 80%); pointer-events:none; }

.hero__eyebrow { display:inline-flex; align-items:center; gap:10px; padding:6px 14px 6px 8px; background:rgba(124,92,255,.12); border:1px solid rgba(124,92,255,.28); border-radius:999px; font-size:12px; font-weight:600; color:var(--vio-300); margin-bottom:22px; }
.hero__dot { width:8px; height:8px; border-radius:50%; background:var(--mag-400); box-shadow:0 0 0 4px rgba(255,77,141,.18); animation:pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow:0 0 0 4px rgba(255,77,141,.18); } 50% { box-shadow:0 0 0 8px rgba(255,77,141,0); } }

.hero__title { font-size:clamp(2rem,6vw,3.6rem); font-weight:800; line-height:1.08; letter-spacing:-.02em; color:var(--white); margin-bottom:16px; }
.hero__title em { font-style:normal; background:var(--grad-spectrum); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
@media (min-width:600px) { .hero__title em { display:block; } }
.hero__sub { font-size:16px; line-height:1.65; color:var(--slate-300); max-width:560px; margin-bottom:28px; }
@media (min-width:768px) { .hero__sub { font-size:18px; margin-bottom:32px; } }
.hero__actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:28px; }

.hero__trust { display:flex; flex-wrap:wrap; align-items:center; gap:14px 22px; font-size:13px; color:var(--slate-400); }
.hero__trust-item { display:inline-flex; align-items:center; gap:8px; }
.hero__trust-item svg { width:16px; height:16px; color:var(--mint-400); }
.hero__stars { display:inline-flex; gap:2px; }
.hero__stars svg { width:14px; height:14px; color:var(--mag-400); fill:currentColor; }

/* Hero visual: app icon with orbits + floating pills */
.hero__visual { position:relative; width:100%; max-width:560px; margin-inline:auto; }
.hero__icon-wrap { position:relative; width:100%; aspect-ratio:1/1; max-width:300px; margin-inline:auto; display:flex; align-items:center; justify-content:center; }
.hero__icon-glow { position:absolute; inset:8%; background:radial-gradient(circle,rgba(255,77,141,.40),rgba(124,92,255,.30) 45%,transparent 68%); filter:blur(40px); animation:iconPulse 4s ease-in-out infinite; pointer-events:none; }
@keyframes iconPulse { 0%,100% { opacity:.7; transform:scale(1); } 50% { opacity:1; transform:scale(1.05); } }
.hero__icon { position:relative; width:74%; height:auto; filter:drop-shadow(0 30px 50px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(124,92,255,.34)); animation:iconFloat 6s ease-in-out infinite; border-radius:26%; }
@keyframes iconFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
.hero__icon-orbit { position:absolute; inset:0; border:1px dashed rgba(124,92,255,.22); border-radius:50%; animation:orbit 20s linear infinite; }
.hero__icon-orbit::before { content:''; position:absolute; top:-6px; left:50%; width:12px; height:12px; border-radius:50%; background:var(--vio-400); box-shadow:0 0 12px rgba(124,92,255,.8); transform:translateX(-50%); }
.hero__icon-orbit2 { position:absolute; inset:10%; border:1px dashed rgba(255,77,141,.20); border-radius:50%; animation:orbit 14s linear infinite reverse; }
.hero__icon-orbit2::before { content:''; position:absolute; bottom:-5px; left:30%; width:10px; height:10px; border-radius:50%; background:var(--mag-400); box-shadow:0 0 10px rgba(255,77,141,.7); }
@keyframes orbit { to { transform:rotate(360deg); } }

.hero__pill { position:absolute; padding:8px 14px; background:rgba(20,11,43,.92); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.10); border-radius:12px; font-size:12px; font-weight:600; color:var(--slate-100); display:inline-flex; align-items:center; gap:8px; box-shadow:var(--shadow-md); white-space:nowrap; }
.hero__pill svg { width:14px; height:14px; }
.hero__pill--1 { top:14%; left:-2%; color:var(--vio-300); }
.hero__pill--1 svg { color:var(--vio-400); }
.hero__pill--2 { top:48%; right:-4%; color:var(--cyan-400); }
.hero__pill--2 svg { color:var(--cyan-400); }
.hero__pill--3 { bottom:8%; left:8%; color:var(--mag-400); }
.hero__pill--3 svg { color:var(--mag-400); }
@media (max-width:559px) { .hero__pill--1 { top:6%; left:0; font-size:11px; padding:6px 10px; } .hero__pill--2 { top:48%; right:-2%; font-size:11px; padding:6px 10px; } .hero__pill--3 { bottom:0; left:4%; font-size:11px; padding:6px 10px; } }

/* ════════════════════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════════════════════ */
.trust { background:linear-gradient(180deg,var(--ink-800),var(--ink-900)); padding:28px 20px; border-block:1px solid rgba(255,255,255,.05); }
.trust__inner { max-width:1200px; margin-inline:auto; display:grid; grid-template-columns:repeat(2,1fr); gap:18px 24px; align-items:center; }
@media (min-width:600px) { .trust__inner { grid-template-columns:repeat(4,1fr); } }
.trust-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; padding:6px 0; border-right:1px solid rgba(255,255,255,.06); }
.trust-item:nth-child(2n) { border-right:none; }
@media (min-width:600px) { .trust-item:nth-child(2n) { border-right:1px solid rgba(255,255,255,.06); } .trust-item:nth-child(4n) { border-right:none; } }
.trust-item strong { font-size:22px; font-weight:800; color:var(--white); letter-spacing:-.02em; }
.trust-item span { font-size:11px; color:var(--slate-400); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
@media (min-width:600px) { .trust-item strong { font-size:28px; } }

/* ════════════════════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════════════════ */
.steps { background:var(--ink-900); }
.steps__pipe { display:grid; gap:18px; grid-template-columns:1fr; counter-reset:step; position:relative; }
@media (min-width:768px) { .steps__pipe { grid-template-columns:repeat(3,1fr); gap:24px; } }
.step { background:var(--grad-card); border:1px solid rgba(255,255,255,.07); border-radius:18px; padding:28px 24px; position:relative; counter-increment:step; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.step:hover { transform:translateY(-4px); border-color:rgba(124,92,255,.30); box-shadow:var(--shadow-glow); }
.step__num { width:48px; height:48px; border-radius:14px; background:var(--grad-vio); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:800; margin-bottom:18px; box-shadow:0 8px 22px rgba(124,92,255,.34); }
.step__num::before { content:counter(step,decimal-leading-zero); }
.step h3 { font-size:18px; font-weight:700; color:var(--white); margin-bottom:8px; }
.step p { font-size:14px; line-height:1.6; color:var(--slate-400); }
.step__arrow { display:none; }
@media (min-width:768px) {
  .step__arrow { display:block; position:absolute; right:-18px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--vio-400); z-index:2; }
  .step:last-child .step__arrow { display:none; }
}

/* ════════════════════════════════════════════════════════════
   FEATURES — bento grid
════════════════════════════════════════════════════════════ */
.features { background:var(--ink-800); position:relative; }
.bento { display:grid; gap:14px; grid-template-columns:1fr; grid-auto-rows:minmax(180px,auto); }
@media (min-width:600px) { .bento { grid-template-columns:repeat(2,1fr); gap:16px; } }
@media (min-width:960px) { .bento { grid-template-columns:repeat(4,1fr); grid-auto-rows:minmax(200px,auto); gap:18px; } }
.bento-card { background:var(--grad-card); border:1px solid rgba(255,255,255,.08); border-radius:18px; padding:24px; position:relative; overflow:hidden; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; display:flex; flex-direction:column; justify-content:space-between; }
.bento-card:hover { transform:translateY(-4px); border-color:rgba(124,92,255,.32); box-shadow:var(--shadow-glow); }
.bento-card__icon { width:46px; height:46px; border-radius:12px; background:linear-gradient(135deg,rgba(124,92,255,.20),rgba(34,211,238,.10)); border:1px solid rgba(124,92,255,.28); display:flex; align-items:center; justify-content:center; color:var(--vio-300); }
.bento-card__icon svg { width:24px; height:24px; }
.bento-card__top { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:16px; }
.bento-card__num { font-size:11px; font-weight:700; color:var(--slate-400); letter-spacing:.14em; }
.bento-card h3 { font-size:18px; font-weight:700; color:var(--white); margin-bottom:8px; letter-spacing:-.01em; }
.bento-card p { font-size:14px; color:var(--slate-400); line-height:1.6; }

@media (min-width:960px) {
  .bento-card--xl { grid-column:span 2; grid-row:span 2; padding:32px; }
  .bento-card--lg { grid-column:span 2; }
  .bento-card--accent { background:linear-gradient(135deg,rgba(124,92,255,.18),rgba(34,211,238,.10)); border-color:rgba(124,92,255,.32); }
  .bento-card--mag { background:linear-gradient(135deg,rgba(255,77,141,.18),rgba(124,92,255,.08)); border-color:rgba(255,77,141,.30); }
  .bento-card--mag .bento-card__icon { background:linear-gradient(135deg,rgba(255,77,141,.22),rgba(124,92,255,.10)); border-color:rgba(255,77,141,.30); color:var(--mag-400); }
}
.bento-card--xl h3 { font-size:22px; }
.bento-card--xl p { font-size:15px; }
.bento-card__visual { margin-top:18px; height:100%; min-height:140px; position:relative; border-radius:12px; overflow:hidden; background:linear-gradient(180deg,var(--ink-700),var(--ink-900)); display:flex; align-items:center; justify-content:center; }
.bento-card__visual img { width:100%; height:100%; object-fit:cover; opacity:.96; }

/* ════════════════════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════════════════════ */
.showcase { background:var(--ink-900); }
.showcase__stage { position:relative; max-width:1080px; margin-inline:auto; }
.showcase__frame { position:relative; border-radius:20px; overflow:hidden; background:var(--ink-700); border:1px solid rgba(255,255,255,.10); box-shadow:0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(124,92,255,.12); }
.showcase__chrome { display:flex; align-items:center; gap:8px; padding:14px 18px; background:linear-gradient(180deg,#2A1F52,#1E1140); border-bottom:1px solid rgba(0,0,0,.30); }
.showcase__chrome span { width:12px; height:12px; border-radius:50%; }
.showcase__chrome span:nth-child(1) { background:#FF5F57; }
.showcase__chrome span:nth-child(2) { background:#FEBC2E; }
.showcase__chrome span:nth-child(3) { background:#28C840; }
.showcase__chrome em { font-style:normal; margin-left:auto; font-size:12px; color:var(--slate-400); font-weight:500; }
.showcase__img-wrap { position:relative; aspect-ratio:1500/682; background:var(--ink-900); }
.showcase__img-wrap img { width:100%; height:100%; object-fit:cover; display:none; }
.showcase__img-wrap img.active { display:block; }
.showcase__tabs { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:22px; }
.showcase__tab { padding:10px 18px; font-size:13px; font-weight:600; color:var(--slate-300); background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:999px; cursor:pointer; transition:all .2s ease; }
.showcase__tab:hover { background:rgba(124,92,255,.12); border-color:rgba(124,92,255,.30); color:var(--vio-300); }
.showcase__tab.active { background:var(--grad-vio); color:var(--white); border-color:transparent; }
@media (max-width:559px) { .showcase__tab { font-size:12px; padding:11px 14px; min-height:44px; } }

/* ════════════════════════════════════════════════════════════
   COMPARE
════════════════════════════════════════════════════════════ */
.compare { background:var(--ink-800); }
.compare__table-wrap { overflow-x:auto; border-radius:16px; border:1px solid rgba(255,255,255,.08); background:var(--grad-card); -webkit-overflow-scrolling:touch; }
.compare__table { width:100%; border-collapse:collapse; min-width:640px; }
.compare__table thead th { padding:18px 14px; text-align:left; font-size:13px; font-weight:700; color:var(--white); border-bottom:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.02); }
.compare__table thead th.is-us { background:linear-gradient(180deg,rgba(124,92,255,.18),rgba(124,92,255,.04)); color:var(--vio-300); border-bottom-color:rgba(124,92,255,.32); }
.compare__table tbody td { padding:14px; font-size:14px; color:var(--slate-300); border-bottom:1px solid rgba(255,255,255,.06); }
.compare__table tbody tr:last-child td { border-bottom:none; }
.compare__table tbody tr:hover td { background:rgba(255,255,255,.02); }
.compare__table td:first-child { color:var(--white); font-weight:600; }
.compare__table td.is-us { background:rgba(124,92,255,.05); color:var(--white); font-weight:600; }
.cmp-yes { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:rgba(34,211,238,.18); color:var(--cyan-400); }
.cmp-yes svg { width:14px; height:14px; }
.cmp-no { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:rgba(100,116,139,.18); color:var(--slate-500); }
.cmp-no svg { width:12px; height:12px; }
.cmp-partial { font-size:12px; padding:3px 8px; border-radius:6px; background:rgba(255,77,141,.18); color:var(--mag-400); font-weight:600; }
.compare__hint { font-size:12px; color:var(--slate-400); text-align:center; margin-top:12px; }
@media (min-width:768px) { .compare__hint { display:none; } }

/* ════════════════════════════════════════════════════════════
   PLATFORMS
════════════════════════════════════════════════════════════ */
.platforms { background:var(--ink-900); }
.platforms__grid { display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:900px) { .platforms__grid { grid-template-columns:1fr 1fr; gap:24px; } }
.platform-card { background:linear-gradient(180deg,var(--ink-700),var(--ink-800)); border:1px solid rgba(255,255,255,.08); border-radius:22px; padding:28px 24px; position:relative; overflow:hidden; }
@media (min-width:768px) { .platform-card { padding:36px 32px; } }
.platform-card--mac::before { content:''; position:absolute; top:-40%; right:-20%; width:70%; height:80%; background:radial-gradient(circle,rgba(124,92,255,.22),transparent 60%); pointer-events:none; }
.platform-card--win::before { content:''; position:absolute; top:-40%; right:-20%; width:70%; height:80%; background:radial-gradient(circle,rgba(34,211,238,.18),transparent 60%); pointer-events:none; }
.platform-card__head { display:flex; align-items:center; gap:14px; margin-bottom:22px; position:relative; }
.platform-card__os { width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); display:flex; align-items:center; justify-content:center; color:var(--vio-300); flex:0 0 48px; }
.platform-card__os svg { width:24px; height:24px; }
.platform-card--win .platform-card__os { color:var(--cyan-400); }
.platform-card__title { font-size:22px; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.platform-card__title span { display:block; font-size:11px; font-weight:600; color:var(--slate-400); letter-spacing:.08em; text-transform:uppercase; margin-top:4px; }
.platform-card__body p { color:var(--slate-300); font-size:15px; line-height:1.7; margin-bottom:14px; position:relative; }
.platform-card__list { display:flex; flex-direction:column; gap:10px; margin-top:14px; position:relative; }
.platform-card__list li { display:flex; gap:10px; color:var(--slate-200); font-size:14px; line-height:1.55; }
.platform-card__list li::before { content:''; width:18px; height:18px; flex:0 0 18px; margin-top:2px; background:linear-gradient(135deg,var(--vio-400),var(--mag-400)); -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat; mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat; }
.platform-card--win .platform-card__list li::before { background:linear-gradient(135deg,var(--cyan-400),var(--vio-400)); }
.platform-card__cta { margin-top:22px; position:relative; }

/* ════════════════════════════════════════════════════════════
   QUOTE
════════════════════════════════════════════════════════════ */
.quote { background:var(--ink-800); padding-block:64px; }
.quote__inner { max-width:820px; margin-inline:auto; text-align:center; padding-inline:20px; }
.quote__mark { font-size:72px; line-height:.5; color:var(--vio-400); opacity:.5; font-family:Georgia,serif; }
.quote blockquote { font-size:clamp(1.1rem,2.4vw,1.5rem); line-height:1.5; color:var(--white); font-weight:500; letter-spacing:-.01em; margin-block:18px 24px; }
.quote blockquote em { font-style:normal; color:var(--vio-300); }
.quote__attr { display:inline-flex; align-items:center; gap:12px; padding:8px 16px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07); border-radius:999px; font-size:13px; color:var(--slate-300); }
.quote__attr strong { color:var(--white); font-weight:700; }

/* ════════════════════════════════════════════════════════════
   DOWNLOAD
════════════════════════════════════════════════════════════ */
.download { background:var(--ink-900); }
.download__card { max-width:1080px; margin-inline:auto; border-radius:28px; background:radial-gradient(circle at 90% 0%,rgba(255,77,141,.22),transparent 50%),radial-gradient(circle at 0% 100%,rgba(124,92,255,.18),transparent 55%),linear-gradient(180deg,var(--ink-700),var(--ink-800)); border:1px solid rgba(255,77,141,.20); box-shadow:var(--shadow-lg); position:relative; overflow:hidden; padding:36px 22px; }
@media (min-width:768px) { .download__card { padding:48px 40px; } }
.download__inner { display:grid; gap:32px; grid-template-columns:1fr; align-items:center; }
@media (min-width:768px) { .download__inner { grid-template-columns:auto 1fr; gap:40px; } }
.download__icon { width:140px; height:140px; margin-inline:auto; flex:0 0 140px; position:relative; filter:drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
@media (min-width:768px) { .download__icon { width:170px; height:170px; flex-basis:170px; } }
.download__icon img { width:100%; height:100%; border-radius:24%; }
.download__title { font-size:clamp(1.6rem,4vw,2.4rem); font-weight:800; color:var(--white); margin-bottom:12px; letter-spacing:-.02em; line-height:1.15; }
.download__sub { color:var(--slate-300); margin-bottom:22px; font-size:15px; line-height:1.6; max-width:560px; }
@media (min-width:768px) { .download__sub { font-size:16px; } }
.download__actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:20px; }
.download__meta { display:flex; flex-wrap:wrap; gap:10px 22px; font-size:13px; color:var(--slate-400); }
.download__meta-item { display:inline-flex; align-items:center; gap:8px; }
.download__meta-item svg { width:14px; height:14px; color:var(--mint-400); flex:0 0 14px; }

/* ════════════════════════════════════════════════════════════
   STORY — each H2 is a full-width section with unique treatment
════════════════════════════════════════════════════════════ */
.story { position:relative; overflow:hidden; padding-block:64px; }
@media (min-width:768px) { .story { padding-block:96px; } }
.story__container { max-width:1180px; margin-inline:auto; padding-inline:20px; }
@media (min-width:768px) { .story__container { padding-inline:32px; } }
.story__kicker { display:inline-block; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:var(--vio-300); font-weight:700; padding:6px 12px; border:1px solid rgba(124,92,255,.30); border-radius:999px; background:rgba(124,92,255,.06); margin-bottom:18px; }
.story h2 { font-size:clamp(1.7rem,4.2vw,2.4rem); font-weight:800; line-height:1.18; color:var(--white); letter-spacing:-.02em; margin-bottom:18px; }
.story h2 em { font-style:normal; background:var(--grad-spectrum); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.story h3 { color:var(--white); }
.story p { color:var(--slate-300); font-size:16px; line-height:1.7; margin-bottom:14px; }
.story p strong { color:var(--white); font-weight:700; }
.story a:not(.btn) { color:var(--vio-300); border-bottom:1px solid rgba(124,92,255,.35); }
.story a:not(.btn):hover { color:var(--vio-300); border-color:var(--vio-300); }

/* ── 1. INTRO ── */
.story--intro { background:radial-gradient(ellipse 100% 60% at 50% -10%,rgba(124,92,255,.16),transparent 55%),linear-gradient(180deg,var(--ink-900),var(--ink-800)); border-block:1px solid rgba(255,255,255,.06); padding-block:80px 56px; }
@media (min-width:768px) { .story--intro { padding-block:110px 80px; } }
.story--intro::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(124,92,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(124,92,255,.05) 1px,transparent 1px); background-size:80px 80px; mask-image:radial-gradient(ellipse 80% 50% at 50% 30%,#000 30%,transparent 80%); -webkit-mask-image:radial-gradient(ellipse 80% 50% at 50% 30%,#000 30%,transparent 80%); pointer-events:none; }
.story--intro .story__container { position:relative; max-width:820px; text-align:center; }
.story--intro h2 { font-size:clamp(1.9rem,5vw,2.8rem); }
.story--intro .story__lede { font-size:clamp(16px,2vw,19px); line-height:1.7; color:var(--slate-200); margin-bottom:22px; }
.story--intro .story__lede strong { color:var(--white); }
.story--intro .story__callout { display:flex; gap:14px; align-items:flex-start; text-align:left; max-width:680px; margin:24px auto 0; padding:18px 22px; background:linear-gradient(135deg,rgba(34,211,238,.10),rgba(124,92,255,.05)); border:1px solid rgba(34,211,238,.30); border-radius:14px; }
.story--intro .story__callout svg { width:22px; height:22px; color:var(--cyan-400); flex:0 0 22px; margin-top:2px; }
.story--intro .story__callout p { margin:0; font-size:14.5px; color:var(--slate-200); }
.story--intro .story__callout strong { color:var(--white); }

/* ── 2. WHAT — split: text + circular giant stat ── */
.story--what { background:radial-gradient(circle at 100% 50%,rgba(124,92,255,.12),transparent 55%),var(--ink-900); }
.story--what .story__container { display:grid; gap:48px; grid-template-columns:1fr; align-items:center; }
@media (min-width:900px) { .story--what .story__container { grid-template-columns:1.2fr .8fr; gap:64px; } }
.story--what__stage { position:relative; aspect-ratio:1/1; max-width:380px; margin-inline:auto; width:100%; display:flex; align-items:center; justify-content:center; }
.story--what__orbit { position:absolute; inset:0; border:1px dashed rgba(124,92,255,.25); border-radius:50%; animation:orbit 26s linear infinite; }
.story--what__orbit::before, .story--what__orbit::after { content:''; position:absolute; width:14px; height:14px; border-radius:50%; background:var(--vio-400); box-shadow:0 0 12px rgba(124,92,255,.8); }
.story--what__orbit::before { top:-7px; left:50%; transform:translateX(-50%); }
.story--what__orbit::after { bottom:-7px; left:50%; transform:translateX(-50%); background:var(--mag-400); box-shadow:0 0 12px rgba(255,77,141,.8); }
.story--what__orbit2 { position:absolute; inset:14%; border:1px dashed rgba(34,211,238,.20); border-radius:50%; animation:orbit 18s linear infinite reverse; }
.story--what__core { position:relative; width:70%; aspect-ratio:1/1; border-radius:50%; background:radial-gradient(circle,var(--ink-700),var(--ink-900)); border:1px solid rgba(124,92,255,.30); display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:inset 0 0 60px rgba(124,92,255,.12), 0 30px 60px rgba(0,0,0,.50); }
.story--what__num { font-size:clamp(40px,7vw,64px); font-weight:800; background:var(--grad-spectrum); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; letter-spacing:-.03em; line-height:1; }
.story--what__lbl { font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--slate-400); font-weight:700; margin-top:8px; }
.story--what__mini { display:flex; gap:20px; margin-top:28px; justify-content:center; }
.story--what__mini > div { text-align:center; }
.story--what__mini strong { display:block; font-size:22px; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.story--what__mini span { font-size:10px; color:var(--slate-400); letter-spacing:.10em; text-transform:uppercase; font-weight:600; }
.story--what__quote { margin-top:20px; padding:18px 20px 18px 50px; position:relative; background:linear-gradient(135deg,rgba(124,92,255,.10),rgba(255,77,141,.04)); border-radius:14px; border-left:4px solid var(--vio-400); }
.story--what__quote::before { content:'"'; position:absolute; top:-4px; left:12px; font-family:Georgia,serif; font-size:56px; color:var(--vio-400); opacity:.6; line-height:1; }
.story--what__quote p { font-size:15px; font-style:italic; color:var(--white); margin:0; line-height:1.55; }
.story--what__quote em { color:var(--vio-300); font-style:italic; }

/* ── 3. DELIVERS — staircase 3-col + screenshot ── */
.story--delivers { background:linear-gradient(180deg,var(--ink-800),var(--ink-700)); }
.story--delivers .story__header { text-align:center; max-width:720px; margin-inline:auto; margin-bottom:44px; }
.story--delivers__stair { display:grid; gap:18px; grid-template-columns:1fr; margin-bottom:36px; }
@media (min-width:768px) { .story--delivers__stair { grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; } .story--delivers__stair > article:nth-child(2) { transform:translateY(40px); } }
.story--delivers__card { background:linear-gradient(180deg,rgba(124,92,255,.07),rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.10); border-radius:18px; padding:26px 22px; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.story--delivers__card:hover { transform:translateY(-4px); border-color:rgba(124,92,255,.40); box-shadow:var(--shadow-glow); }
.story--delivers__card:nth-child(2) { background:linear-gradient(180deg,rgba(34,211,238,.08),rgba(255,255,255,.02)); border-color:rgba(34,211,238,.20); }
.story--delivers__card:nth-child(2):hover { border-color:rgba(34,211,238,.40); box-shadow:0 0 0 1px rgba(34,211,238,.25),0 12px 40px rgba(34,211,238,.18); }
.story--delivers__card:nth-child(3) { background:linear-gradient(180deg,rgba(255,77,141,.08),rgba(255,255,255,.02)); border-color:rgba(255,77,141,.20); }
.story--delivers__card:nth-child(3):hover { border-color:rgba(255,77,141,.40); box-shadow:0 0 0 1px rgba(255,77,141,.25),0 12px 40px rgba(255,77,141,.18); }
.story--delivers__icon { width:52px; height:52px; border-radius:14px; background:var(--grad-vio); color:var(--white); display:flex; align-items:center; justify-content:center; margin-bottom:18px; box-shadow:0 10px 22px rgba(124,92,255,.30); }
.story--delivers__card:nth-child(2) .story--delivers__icon { background:linear-gradient(135deg,var(--cyan-400),var(--vio-400)); box-shadow:0 10px 22px rgba(34,211,238,.30); }
.story--delivers__card:nth-child(3) .story--delivers__icon { background:var(--grad-mag); box-shadow:0 10px 22px rgba(255,77,141,.30); }
.story--delivers__icon svg { width:26px; height:26px; }
.story--delivers__card h3 { font-size:17px; font-weight:700; color:var(--white); margin-bottom:8px; letter-spacing:-.01em; }
.story--delivers__card p { font-size:14px; color:var(--slate-300); line-height:1.6; margin:0; }
.story--delivers__shot { max-width:1080px; margin:48px auto 0; }
.story--delivers__shot-frame { border-radius:16px; overflow:hidden; background:var(--ink-700); border:1px solid rgba(255,255,255,.10); box-shadow:0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(124,92,255,.10); }
.story--delivers__chrome { display:flex; align-items:center; gap:8px; padding:12px 16px; background:linear-gradient(180deg,#2A1F52,#1E1140); border-bottom:1px solid rgba(0,0,0,.30); }
.story--delivers__chrome span { width:11px; height:11px; border-radius:50%; }
.story--delivers__chrome span:nth-child(1) { background:#FF5F57; }
.story--delivers__chrome span:nth-child(2) { background:#FEBC2E; }
.story--delivers__chrome span:nth-child(3) { background:#28C840; }
.story--delivers__chrome em { font-style:normal; margin-left:auto; font-size:11px; color:var(--slate-400); font-weight:500; }
.story--delivers__shot-frame img { display:block; width:100%; height:auto; }
.story--delivers__cap { text-align:center; margin-top:14px; font-size:13px; color:var(--slate-400); }
.story--delivers__cap strong { color:var(--slate-100); }

/* ── 4. COMPARE ── */
.story--compare { background:radial-gradient(circle at 100% 0%,rgba(255,77,141,.14),transparent 50%),radial-gradient(circle at 0% 100%,rgba(124,92,255,.12),transparent 50%),var(--ink-900); }
.story--compare .story__container { display:grid; gap:36px; grid-template-columns:1fr; align-items:start; }
@media (min-width:960px) { .story--compare .story__container { grid-template-columns:.7fr 1fr; gap:48px; } }
.story--compare__hero { position:relative; }
.story--compare__trophy { width:96px; height:96px; border-radius:24px; background:var(--grad-mag); display:flex; align-items:center; justify-content:center; color:var(--white); margin-bottom:24px; box-shadow:0 20px 40px rgba(255,77,141,.30); }
.story--compare__trophy svg { width:48px; height:48px; }
.story--compare__rows { display:flex; flex-direction:column; gap:14px; }
.story--compare__row { display:grid; grid-template-columns:auto 1fr; gap:18px; padding:18px 20px; background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01)); border:1px solid rgba(255,255,255,.08); border-radius:14px; transition:transform .25s ease, border-color .25s ease; align-items:center; }
.story--compare__row:hover { transform:translateX(4px); border-color:rgba(255,77,141,.30); }
.story--compare__row-label { font-size:11px; letter-spacing:.10em; text-transform:uppercase; color:var(--mag-400); font-weight:700; padding:6px 10px; background:rgba(255,77,141,.10); border:1px solid rgba(255,77,141,.25); border-radius:8px; white-space:nowrap; }
.story--compare__row-body strong { display:block; font-size:15px; color:var(--white); margin-bottom:2px; font-weight:700; }
.story--compare__row-body span { font-size:13.5px; color:var(--slate-400); line-height:1.5; display:block; }

/* ── 5. WINDOWS — cyan split ── */
.story--windows { background:radial-gradient(circle at 0% 50%,rgba(34,211,238,.12),transparent 50%),linear-gradient(180deg,var(--ink-800),var(--ink-900)); border-block:1px solid rgba(34,211,238,.08); }
.story--windows .story__container { display:grid; gap:36px; grid-template-columns:1fr; align-items:center; }
@media (min-width:900px) { .story--windows .story__container { grid-template-columns:1fr 1.1fr; gap:48px; } }
.story--windows__badge { display:inline-flex; align-items:center; gap:8px; padding:6px 14px; background:rgba(34,211,238,.12); border:1px solid rgba(34,211,238,.30); border-radius:999px; color:var(--cyan-400); font-size:11px; font-weight:700; letter-spacing:.10em; text-transform:uppercase; margin-bottom:18px; }
.story--windows__badge svg { width:14px; height:14px; }
.story--windows h2 em { background:linear-gradient(90deg,var(--cyan-400),var(--vio-400)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.story--windows__tools { display:flex; flex-direction:column; gap:14px; }
.story--windows__tool { display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center; padding:18px 20px; background:var(--grad-card); border:1px solid rgba(255,255,255,.08); border-radius:14px; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.story--windows__tool:hover { transform:translateX(-4px); border-color:rgba(34,211,238,.30); box-shadow:0 10px 30px rgba(34,211,238,.12); }
.story--windows__logo { width:48px; height:48px; border-radius:12px; background:linear-gradient(135deg,rgba(34,211,238,.22),rgba(124,92,255,.10)); border:1px solid rgba(34,211,238,.30); color:var(--cyan-400); font-size:22px; font-weight:800; display:flex; align-items:center; justify-content:center; flex:0 0 48px; }
.story--windows__tool-body strong { display:block; font-size:15px; color:var(--white); font-weight:700; }
.story--windows__tool-body span { display:block; font-size:13px; color:var(--slate-400); margin-top:2px; line-height:1.45; }
.story--windows__rank { font-size:11px; letter-spacing:.10em; text-transform:uppercase; color:var(--slate-400); padding:4px 10px; background:rgba(255,255,255,.05); border-radius:6px; font-weight:600; white-space:nowrap; }

/* ── 6. HOW-TO — vertical timeline ── */
.story--howto { background:linear-gradient(180deg,var(--ink-900),var(--ink-800)); }
.story--howto .story__header { text-align:center; max-width:720px; margin-inline:auto; margin-bottom:48px; }
.story--howto__timeline { position:relative; max-width:760px; margin-inline:auto; padding-left:50px; counter-reset:tstep; }
@media (min-width:600px) { .story--howto__timeline { padding-left:64px; } }
.story--howto__timeline::before { content:''; position:absolute; left:20px; top:24px; bottom:24px; width:2px; background:linear-gradient(180deg,var(--cyan-400),var(--vio-400),var(--mag-400)); border-radius:2px; }
@media (min-width:600px) { .story--howto__timeline::before { left:26px; } }
.story--howto__step { position:relative; padding:20px 22px; background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01)); border:1px solid rgba(255,255,255,.08); border-radius:14px; counter-increment:tstep; margin-bottom:20px; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.story--howto__step:hover { transform:translateX(4px); border-color:rgba(124,92,255,.30); box-shadow:var(--shadow-glow); }
.story--howto__step::before { content:counter(tstep,decimal-leading-zero); position:absolute; left:-50px; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; background:var(--grad-vio); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; box-shadow:0 8px 20px rgba(124,92,255,.30), 0 0 0 4px var(--ink-900); }
@media (min-width:600px) { .story--howto__step::before { left:-64px; width:52px; height:52px; font-size:15px; } }
.story--howto__step h3 { font-size:16px; font-weight:700; color:var(--white); margin-bottom:6px; }
.story--howto__step p { margin:0; font-size:14px; color:var(--slate-300); line-height:1.6; }
.story--howto__shot { margin-top:48px; max-width:1000px; margin-inline:auto; }
.story--howto__shot-frame { border-radius:16px; overflow:hidden; background:var(--ink-700); border:1px solid rgba(255,255,255,.10); box-shadow:0 30px 60px rgba(0,0,0,.5); }
.story--howto__chrome { display:flex; align-items:center; gap:8px; padding:12px 16px; background:linear-gradient(180deg,#2A1F52,#1E1140); border-bottom:1px solid rgba(0,0,0,.30); }
.story--howto__chrome span { width:11px; height:11px; border-radius:50%; }
.story--howto__chrome span:nth-child(1) { background:#FF5F57; }
.story--howto__chrome span:nth-child(2) { background:#FEBC2E; }
.story--howto__chrome span:nth-child(3) { background:#28C840; }
.story--howto__chrome em { font-style:normal; margin-left:auto; font-size:11px; color:var(--slate-400); font-weight:500; }
.story--howto__shot-frame img { display:block; width:100%; height:auto; }
.story--howto__cap { text-align:center; margin-top:14px; font-size:13px; color:var(--slate-400); }
.story--howto__cap strong { color:var(--slate-100); }

/* ── 7. WHY — urgency panel ── */
.story--why { background:radial-gradient(circle at 50% 0%,rgba(255,77,141,.18),transparent 55%),radial-gradient(circle at 30% 100%,rgba(124,92,255,.16),transparent 55%),linear-gradient(180deg,var(--ink-900),var(--ink-800)); position:relative; }
.story--why::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(255,77,141,.06) 1px,transparent 1px); background-size:30px 30px; opacity:.40; pointer-events:none; mask-image:radial-gradient(ellipse at 50% 50%,#000,transparent 70%); -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000,transparent 70%); }
.story--why .story__container { position:relative; max-width:980px; }
.story--why__shield { max-width:760px; margin:0 auto 32px; padding:32px 28px; background:linear-gradient(180deg,rgba(255,77,141,.10),rgba(14,8,32,.20)); border:1px solid rgba(255,77,141,.30); border-radius:20px; display:flex; gap:20px; align-items:flex-start; }
@media (max-width:559px) { .story--why__shield { flex-direction:column; align-items:center; text-align:center; padding:28px 22px; } }
.story--why__shield-icon { width:64px; height:64px; flex:0 0 64px; border-radius:18px; background:var(--grad-mag); color:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:0 16px 32px rgba(255,77,141,.30); }
.story--why__shield-icon svg { width:34px; height:34px; }
.story--why__shield h3 { font-size:20px; font-weight:800; color:var(--white); margin-bottom:8px; letter-spacing:-.01em; }
.story--why__shield p { margin:0; font-size:15px; color:var(--slate-200); line-height:1.6; }
.story--why__shield strong { color:var(--mag-400); }
.story--why__losses { display:grid; gap:14px; grid-template-columns:1fr; max-width:900px; margin-inline:auto; }
@media (min-width:640px) { .story--why__losses { grid-template-columns:repeat(3,1fr); gap:16px; } }
.story--why__loss { background:linear-gradient(180deg,rgba(124,92,255,.08),rgba(255,255,255,.02)); border:1px solid rgba(124,92,255,.20); border-radius:14px; padding:20px; text-align:center; }
.story--why__loss-icon { width:44px; height:44px; margin:0 auto 12px; border-radius:50%; background:rgba(124,92,255,.14); border:1px solid rgba(124,92,255,.30); display:flex; align-items:center; justify-content:center; color:var(--vio-300); }
.story--why__loss-icon svg { width:22px; height:22px; }
.story--why__loss strong { display:block; font-size:14px; color:var(--white); font-weight:700; margin-bottom:4px; }
.story--why__loss span { font-size:12.5px; color:var(--slate-400); line-height:1.5; display:block; }

/* ── 8. FINAL CTA ── */
.story--final { background:radial-gradient(circle at 0% 0%,rgba(255,77,141,.18),transparent 55%),radial-gradient(circle at 100% 100%,rgba(124,92,255,.16),transparent 55%),linear-gradient(180deg,var(--ink-800),#08041A); border-top:1px solid rgba(255,77,141,.20); padding-block:80px; }
@media (min-width:768px) { .story--final { padding-block:120px; } }
.story--final .story__container { max-width:980px; text-align:center; position:relative; }
.story--final__icon { width:150px; height:150px; margin:0 auto 28px; position:relative; filter:drop-shadow(0 30px 50px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(255,77,141,.25)); animation:iconFloat 6s ease-in-out infinite; }
@media (min-width:768px) { .story--final__icon { width:180px; height:180px; } }
.story--final__icon img { width:100%; height:100%; border-radius:24%; }
.story--final h2 { font-size:clamp(2rem,5.5vw,3.2rem); margin-bottom:14px; }
.story--final h2 em { background:var(--grad-mag); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.story--final p { font-size:17px; color:var(--slate-300); max-width:620px; margin-inline:auto; margin-bottom:32px; }
.story--final__actions { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:28px; }
.story--final__meta { display:flex; flex-wrap:wrap; gap:14px 26px; justify-content:center; font-size:13px; color:var(--slate-400); margin-bottom:32px; }
.story--final__meta-item { display:inline-flex; align-items:center; gap:8px; }
.story--final__meta-item svg { width:14px; height:14px; color:var(--mint-400); flex:0 0 14px; }
.story--final__strip { display:grid; gap:14px; grid-template-columns:repeat(2,1fr); padding-top:28px; border-top:1px solid rgba(255,255,255,.06); max-width:760px; margin-inline:auto; }
@media (min-width:600px) { .story--final__strip { grid-template-columns:repeat(4,1fr); } }
.story--final__strip-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; }
.story--final__strip-item strong { font-size:18px; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.story--final__strip-item span { font-size:11px; color:var(--slate-400); letter-spacing:.06em; text-transform:uppercase; font-weight:600; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background:linear-gradient(180deg,var(--ink-900),#08041A); padding:56px 20px 28px; border-top:1px solid rgba(255,255,255,.06); }
.footer__inner { max-width:1200px; margin-inline:auto; }
.footer__cols { display:grid; gap:36px; grid-template-columns:1fr; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,.06); }
@media (min-width:600px) { .footer__cols { grid-template-columns:repeat(2,1fr); gap:32px; } }
@media (min-width:960px) { .footer__cols { grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:48px; } }
.footer__brand-col { display:flex; flex-direction:column; gap:16px; }
.footer__brand { display:inline-flex; align-items:center; gap:10px; font-weight:800; color:var(--white); font-size:17px; }
.footer__brand img { width:32px; height:32px; border-radius:8px; }
.footer__desc { color:var(--slate-400); font-size:14px; line-height:1.6; max-width:340px; margin:0; }
.footer__social { display:flex; gap:10px; margin-top:6px; }
.footer__social a { width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:10px; color:var(--slate-300); transition:all .2s ease; }
.footer__social a:hover { background:rgba(124,92,255,.12); border-color:rgba(124,92,255,.30); color:var(--vio-300); transform:translateY(-2px); }
.footer__social svg { width:16px; height:16px; }
.footer__col h3 { font-size:13px; font-weight:700; color:var(--white); letter-spacing:.06em; text-transform:uppercase; margin-bottom:16px; }
.footer__col ul { display:flex; flex-direction:column; gap:10px; padding:0; list-style:none; }
.footer__col li { padding:0; }
.footer__col a { font-size:14px; color:var(--slate-400); display:inline-flex; align-items:center; gap:6px; min-height:36px; transition:color .15s ease; text-decoration:none; }
.footer__col a:hover { color:var(--vio-300); }
.footer__col a svg { width:12px; height:12px; opacity:.7; }
.footer__news p { color:var(--slate-400); font-size:13px; line-height:1.55; margin-bottom:12px; }
.footer__sysreq { background:rgba(124,92,255,.07); border:1px solid rgba(124,92,255,.20); border-radius:12px; padding:14px 16px; }
.footer__sysreq-title { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--vio-300); font-weight:700; margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.footer__sysreq-title svg { width:14px; height:14px; }
.footer__sysreq ul { display:flex; flex-direction:column; gap:6px; padding:0; list-style:none; }
.footer__sysreq li { font-size:13px; color:var(--slate-300); display:flex; gap:8px; align-items:center; padding:0; }
.footer__sysreq li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--vio-400); flex:0 0 6px; }
.footer__bottom { padding-top:24px; display:flex; flex-direction:column; gap:12px; align-items:center; text-align:center; }
@media (min-width:768px) { .footer__bottom { flex-direction:row; justify-content:space-between; text-align:left; } }
.footer__copy { font-size:13px; color:var(--slate-400); margin:0; }
.footer__legal { display:flex; flex-wrap:wrap; gap:16px 22px; justify-content:center; }
.footer__legal a { font-size:13px; color:var(--slate-400); padding:6px 0; min-height:44px; display:inline-flex; align-items:center; text-decoration:none; transition:color .15s ease; }
.footer__legal a:hover { color:var(--vio-300); }
.footer__note { font-size:11px; color:var(--slate-500); margin-top:14px; max-width:760px; margin-inline:auto; text-align:center; line-height:1.6; }

/* ════════════════════════════════════════════════════════════
   REVEAL on scroll + stagger
════════════════════════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
.bento .reveal:nth-child(1) { transition-delay:0ms; }
.bento .reveal:nth-child(2) { transition-delay:80ms; }
.bento .reveal:nth-child(3) { transition-delay:160ms; }
.bento .reveal:nth-child(4) { transition-delay:240ms; }
.bento .reveal:nth-child(5) { transition-delay:320ms; }
.bento .reveal:nth-child(6) { transition-delay:400ms; }
.steps__pipe .reveal:nth-child(1) { transition-delay:0ms; }
.steps__pipe .reveal:nth-child(2) { transition-delay:120ms; }
.steps__pipe .reveal:nth-child(3) { transition-delay:240ms; }
.faq__list .reveal:nth-child(odd) { transition-delay:0ms; }
.faq__list .reveal:nth-child(even) { transition-delay:80ms; }
.story--delivers__stair .reveal:nth-child(1) { transition-delay:0ms; }
.story--delivers__stair .reveal:nth-child(2) { transition-delay:100ms; }
.story--delivers__stair .reveal:nth-child(3) { transition-delay:200ms; }
.story--compare__rows .reveal:nth-child(1) { transition-delay:0ms; }
.story--compare__rows .reveal:nth-child(2) { transition-delay:80ms; }
.story--compare__rows .reveal:nth-child(3) { transition-delay:160ms; }
.story--howto__timeline .reveal:nth-child(1) { transition-delay:0ms; }
.story--howto__timeline .reveal:nth-child(2) { transition-delay:80ms; }
.story--howto__timeline .reveal:nth-child(3) { transition-delay:160ms; }
.story--howto__timeline .reveal:nth-child(4) { transition-delay:240ms; }
.story--why__losses .reveal:nth-child(1) { transition-delay:0ms; }
.story--why__losses .reveal:nth-child(2) { transition-delay:80ms; }
.story--why__losses .reveal:nth-child(3) { transition-delay:160ms; }
@media (prefers-reduced-motion: reduce) {
  .hero__icon, .hero__icon-glow, .hero__icon-orbit, .hero__icon-orbit2, .hero__dot, .loader__spin, .story--what__orbit, .story--what__orbit2, .story--final__icon { animation:none !important; }
}

/* Section rhythm hairline */
.section + .section, .trust + .section, .story + .story, .section + .story, .story + .section, .story + .footer, .section + .footer { border-top:1px solid rgba(255,255,255,.04); }

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq { background:var(--ink-800); }
.faq__list { max-width:820px; margin-inline:auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--ink-700); border:1px solid rgba(255,255,255,.08); border-radius:14px; transition:border-color .2s ease; }
.faq-item:hover { border-color:rgba(124,92,255,.20); }
.faq-item[open] { border-color:rgba(124,92,255,.30); }
.faq-item summary { padding:18px 22px; font-size:15px; font-weight:600; color:var(--white); cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:12px; }
@media (min-width:768px) { .faq-item summary { font-size:16px; } }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:''; width:12px; height:12px; border-right:2px solid var(--slate-400); border-bottom:2px solid var(--slate-400); transform:rotate(45deg); transition:transform .25s ease, border-color .2s ease; flex:0 0 12px; margin-top:-3px; }
.faq-item[open] summary::after { transform:rotate(-135deg); border-color:var(--vio-400); }
.faq-item__body { padding:0 22px 22px; color:var(--slate-300); font-size:14px; line-height:1.7; }
@media (min-width:768px) { .faq-item__body { font-size:15px; } }
.faq-item__body p { margin:0; }
.faq-item__body p + p { margin-top:10px; }

/* ── Hero content wrapper ── */
.hero__content { position:relative; }
