/* ==========================================================================
   ChromaCut — chroma-cut.com
   Single-page marketing site. Dependency-free, fast, SEO-first.
   ========================================================================== */

:root {
  --violet: #7c6cf0;
  --violet-deep: #5b4fd6;
  --indigo: #4a3fc4;
  --coral: #f5637a;
  --orange: #fba85c;
  --ink: #14131c;
  --ink-soft: #2a2836;
  --slate: #55536a;
  --slate-light: #7b7990;
  --line: #e7e4f0;
  --bg: #ffffff;
  --bg-alt: #f7f5fc;
  --bg-tint: #f2effb;
  --white: #ffffff;

  --grad-brand: linear-gradient(135deg, #7c6cf0 0%, #9b6fe0 100%);
  --grad-warm: linear-gradient(135deg, #f5637a 0%, #fba85c 100%);
  --grad-hero: linear-gradient(160deg, #6f5ff0 0%, #8a63e6 55%, #a06fe0 100%);

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(30, 20, 70, 0.06);
  --shadow: 0 12px 32px rgba(40, 24, 90, 0.10);
  --shadow-lg: 0 30px 70px rgba(40, 24, 90, 0.22);

  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* transparency checkerboard */
  --checker:
    linear-gradient(45deg, #e3dff0 25%, transparent 25%),
    linear-gradient(-45deg, #e3dff0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e3dff0 75%),
    linear-gradient(-45deg, transparent 75%, #e3dff0 75%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--violet-deep); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--violet-deep); margin-bottom: 14px;
}
.muted { color: var(--slate); }
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--slate); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 16px; font-weight: 700; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Apple App Store badge button */
.appstore-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; border-radius: 14px;
  padding: 12px 22px 12px 18px; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow);
}
.appstore-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.appstore-btn svg { width: 30px; height: 30px; flex: none; }
.appstore-btn .asb-sm { display: block; font-size: 11px; line-height: 1.1; opacity: .85; letter-spacing: .02em; }
.appstore-btn .asb-lg { display: block; font-size: 20px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--slate); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 10px 20px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
  padding: 76px 0 90px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1000px 500px at 80% -10%, rgba(251,168,92,.28), transparent 60%),
              radial-gradient(800px 500px at 5% 110%, rgba(245,99,122,.30), transparent 55%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 850; margin-bottom: 20px; }
.hero h1 .hl {
  background: linear-gradient(120deg, #ffe4c4, #ffd0d9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(17px, 2.3vw, 21px); color: rgba(255,255,255,.92); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-price { margin: 16px 0 0; font-size: 15px; color: rgba(255,255,255,.9); font-weight: 500; }
.hero-price strong { font-weight: 800; color: #fff; }
.hero-price span { color: #ffe4c4; font-weight: 700; }
.hero-note { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.8); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; }

.hero-visual { position: relative; }
.hero-shot {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.25); overflow: hidden;
  background: #14131c;
}
.hero-shot img { display: block; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; color: var(--ink); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 14px;
}
.hero-badge .swatch {
  width: 34px; height: 34px; border-radius: 9px;
  background-color: var(--bg-tint);
  background-image: var(--checker);
  background-size: 14px 14px; background-position: 0 0, 0 7px, 7px -7px, -7px 0;
  border: 1px solid var(--line);
}

/* ---------- Logo/trust strip ---------- */
.trust { background: var(--ink); color: #fff; padding: 20px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; }
.trust-row svg { width: 17px; height: 17px; color: var(--orange); }

/* ---------- Section shells ---------- */
section { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.alt { background: var(--bg-alt); }
.tint { background: var(--bg-tint); }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ico {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 16px;
}
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--slate); font-size: 15.5px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px 26px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step .num {
  width: 40px; height: 40px; border-radius: 11px; background: var(--grad-warm); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { margin: 0; font-size: 15px; color: var(--slate); }

/* ---------- Split (why chromacut) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { display: flex; gap: 13px; margin-bottom: 16px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand);
  display: grid; place-items: center; margin-top: 2px;
}
.checklist .tick svg { width: 15px; height: 15px; color: #fff; }
.checklist b { display: block; font-size: 16.5px; }
.checklist span { color: var(--slate); font-size: 15px; }

/* ---------- Use cases ---------- */
.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usecase {
  border-radius: var(--radius); padding: 26px; color: #fff; position: relative; overflow: hidden;
  min-height: 168px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-sm);
}
.usecase h3 { color: #fff; margin-bottom: 6px; font-size: 19px; }
.usecase p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.9); }
.usecase .uc-ico { position: absolute; top: 20px; left: 22px; width: 30px; height: 30px; opacity: .95; }
.uc-1 { background: linear-gradient(150deg, #7c6cf0, #5b4fd6); }
.uc-2 { background: linear-gradient(150deg, #f5637a, #e0455f); }
.uc-3 { background: linear-gradient(150deg, #fba85c, #f5883b); }
.uc-4 { background: linear-gradient(150deg, #57b894, #37997a); }
.uc-5 { background: linear-gradient(150deg, #4aa3e0, #2f7bc0); }
.uc-6 { background: linear-gradient(150deg, #9b6fe0, #7c4fd0); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery figure { margin: 0; grid-column: span 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #14131c; }
.gallery figure.wide { grid-column: span 3; }
.gallery img { width: 100%; display: block; }

/* ---------- Comparison table ---------- */
.compare { max-width: 760px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15.5px; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--ink); color: #fff; font-weight: 700; }
.compare thead th:last-child { background: var(--indigo); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.col-cc { font-weight: 600; }
.compare .yes { color: #2f9e6b; font-weight: 700; }
.compare .no { color: var(--slate-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform .2s ease; color: var(--violet-deep); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { margin: 0 0 18px; color: var(--slate); font-size: 15.5px; }

/* ---------- Final CTA ---------- */
.cta {
  background: var(--grad-hero); color: #fff; text-align: center; border-radius: var(--radius-lg);
  padding: 64px 32px; position: relative; overflow: hidden; margin: 0 auto; max-width: var(--maxw);
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(251,168,92,.30), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-icon { width: 76px; height: 76px; border-radius: 20px; box-shadow: var(--shadow-lg); margin: 0 auto 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 56px 0 34px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ---------- Legal blocks (privacy / support anchors) ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h3 { margin-top: 32px; }
.legal ul { color: var(--slate); }

/* ---------- Demo / real-results showcase ---------- */
.showcase { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.showcase-panel { margin: 0; flex: 1 1 260px; max-width: 320px; text-align: center; }
.showcase-panel .shot {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: #fff; aspect-ratio: 1 / 1;
}
.showcase-panel .shot img { width: 100%; height: 100%; object-fit: contain; display: block; }
.showcase-panel .shot.checker {
  background-color: #fff;
  background-image: var(--checker);
  background-size: 26px 26px; background-position: 0 0, 0 13px, 13px -13px, -13px 0;
}
.showcase-panel figcaption { margin-top: 14px; font-size: 15px; color: var(--slate); font-weight: 600; }
.tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; padding: 3px 9px; border-radius: 999px; margin-right: 7px; }
.tag-1 { background: var(--slate); }
.tag-2 { background: var(--violet-deep); }
.tag-3 { background: var(--coral); }
.showcase-arrow { flex: 0 0 auto; color: var(--violet); display: grid; place-items: center; }
.showcase-arrow svg { width: 30px; height: 30px; }
@media (max-width: 900px) {
  .showcase-arrow { transform: rotate(90deg); }
  .showcase-panel { flex-basis: 78%; max-width: 360px; }
}

/* ---------- Guides / article pages ---------- */
.subnav-title { font-weight: 600; color: var(--slate); font-size: 15px; }
.article-hero { background: var(--grad-hero); color: #fff; padding: 56px 0 46px; }
.article-hero .wrap { max-width: 820px; }
.breadcrumb { font-size: 14px; margin-bottom: 16px; color: rgba(255,255,255,.85); }
.breadcrumb a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb .sep { opacity: .6; margin: 0 8px; }
.article-hero h1 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 14px; }
.article-hero p { font-size: clamp(16px, 2.2vw, 19px); color: rgba(255,255,255,.9); margin: 0; max-width: 680px; }
.article-meta { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.8); }

.article { max-width: 760px; margin: 0 auto; padding: 56px 24px 40px; }
.article > p, .article ul, .article ol { font-size: 17.5px; color: var(--ink); line-height: 1.7; }
.article h2 { font-size: 27px; margin: 42px 0 14px; }
.article h3 { font-size: 20px; margin: 30px 0 10px; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 20px; }
.article li { margin-bottom: 9px; }
.article img { border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin: 26px 0; width: 100%; }
.article figure { margin: 26px 0; }
.article figcaption { font-size: 14px; color: var(--slate-light); text-align: center; margin-top: 8px; }
.article a { text-decoration: underline; text-underline-offset: 2px; }
.article strong { font-weight: 700; }

.callout {
  background: var(--grad-brand); color: #fff; border-radius: var(--radius-lg);
  padding: 30px 28px; margin: 40px 0; text-align: center; box-shadow: var(--shadow);
}
.callout h3 { color: #fff; margin: 0 0 8px; font-size: 22px; }
.callout p { color: rgba(255,255,255,.92); margin: 0 0 18px; font-size: 16px; }

.tip { background: var(--bg-tint); border-left: 4px solid var(--violet); border-radius: 10px; padding: 16px 20px; margin: 24px 0; font-size: 16px; }
.tip b { color: var(--violet-deep); }

.step-h { display: flex; align-items: center; gap: 12px; margin: 42px 0 12px; }
.step-h .n { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--grad-warm); color: #fff; display: grid; place-items: center; font-weight: 800; }
.step-h h2 { margin: 0; font-size: 24px; }

.guide-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.guide-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; color: var(--ink); }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-card .k { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--violet-deep); }
.guide-card h3 { margin: 10px 0 8px; font-size: 20px; }
.guide-card p { margin: 0; color: var(--slate); font-size: 15px; }
.guide-card .go { margin-top: 14px; font-weight: 700; color: var(--violet-deep); font-size: 15px; }

.related { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 30px; }
.related h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 14px; }

@media (max-width: 640px) { .guide-cards { grid-template-columns: 1fr; } }
@media (prefers-color-scheme: dark) {
  .guide-card, .article img { background: var(--bg-alt); }
  .article > p, .article ul, .article ol, .article li { color: var(--ink); }
}

/* ---------- Reveal animation ---------- */
/* Hidden state only applies when JS is active (html.js). Without JS, everything
   stays visible — no content is ever lost if a script fails to run. */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .features, .usecases { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure, .gallery figure.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 22px; gap: 4px;
    box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links .nav-cta { border: 0; margin-top: 10px; justify-content: center; }
  .nav-toggle { display: block; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .features, .usecases, .steps { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 64px; }
  .hero-cta { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .compare th, .compare td { padding: 13px 14px; font-size: 14px; }
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14131c; --bg-alt: #1b1a26; --bg-tint: #201e2e; --white: #14131c;
    --ink: #f4f2fb; --ink-soft: #d9d5ea; --slate: #a9a6bd; --slate-light: #8783a0;
    --line: #2c2a3b;
    --checker:
      linear-gradient(45deg, #2c2a3b 25%, transparent 25%),
      linear-gradient(-45deg, #2c2a3b 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #2c2a3b 75%),
      linear-gradient(-45deg, transparent 75%, #2c2a3b 75%);
  }
  body { background: var(--bg); color: var(--ink); }
  .nav { background: rgba(20,19,28,.82); }
  .brand, .nav-cta.btn-primary { color: #fff; }
  .feature, .step, .faq details, .compare, .footer-grid, .split-media img { background: var(--bg-alt); }
  .btn-primary { background: #fff; color: var(--ink); }
  .btn-light { background: var(--ink-soft); color: var(--bg); }
  .nav-links.open { background: var(--bg-alt); }
  .compare thead th { background: #0e0d15; }
  .compare thead th:last-child { background: var(--indigo); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature, .appstore-btn { transition: none; }
}
