/* ============================================================
   X Unfollow Manager Pro — Website
   Editorial Light Theme: cream paper, ink black, vermillion accent.
   ============================================================ */

:root {
  --paper:      #f6f1e8;
  --paper-2:    #efe7d8;
  --paper-3:    #e3d8c2;
  --paper-deep: #ebe2d0;
  --ink:        #14110d;
  --ink-soft:   #3a342b;
  --muted:      #7d7466;
  --hairline:   rgba(20,17,13,0.16);
  --hairline-2: rgba(20,17,13,0.08);
  --accent:     #c8312c;
  --accent-deep:#9c2420;
  --ok:         #2f6b3c;
  --maxw:       1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Paper grain ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(200,49,44,.035), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(20,17,13,.04), transparent 35%);
}
.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,17,13,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}

/* ── Type helpers ── */
.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.dot-sep { color: var(--accent); margin: 0 2px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s, color .15s;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--accent);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--accent); }
.btn-primary:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--accent); }
.btn-primary .arrow { font-family: "Fraunces", serif; font-size: 20px; transition: transform .15s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-outline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246,241,232,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 4px 24px -12px rgba(20,17,13,.2);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 38px; height: 38px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: "Fraunces", serif; font-weight: 900; font-style: italic;
  font-size: 22px;
  position: relative; flex-shrink: 0;
}
.brand-logo::after {
  content: ""; position: absolute; top: -4px; right: -4px;
  width: 9px; height: 9px; background: var(--accent);
  border: 2px solid var(--paper);
}
.brand-text {
  font-family: "Fraunces", serif; font-weight: 900; font-size: 20px;
  letter-spacing: -0.5px; color: var(--ink); line-height: 1;
}
.brand-text em { font-style: italic; font-weight: 500; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 600; font-size: 15px;
  transition: color .15s; position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--accent); transition: width .2s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: var(--paper) !important;
  padding: 9px 18px; border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
  transition: transform .12s, box-shadow .12s;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--accent); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ════════════════ HERO ════════════════ */
.hero { position: relative; z-index: 2; padding-top: 90px; }
.hero-rule-top { height: 2px; background: var(--ink); max-width: var(--maxw); margin: 0 auto; }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 60px 28px 40px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: "Fraunces", serif; font-weight: 900;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.96; letter-spacing: -2.5px;
  margin: 18px 0;
}
.hero-title span { display: block; }
.hero-accent { color: var(--accent); font-style: italic; font-weight: 700; }
.hero-rule { width: 120px; height: 3px; background: var(--ink); margin: 22px 0; }
.hero-sub {
  font-size: 19px; color: var(--ink-soft);
  max-width: 480px; line-height: 1.55;
  font-family: "Fraunces", serif; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; margin: 32px 0 24px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  color: var(--muted); letter-spacing: 0.02em;
}
.hero-meta b { color: var(--ink); }

/* hero popup mockup */
.hero-right { display: flex; justify-content: center; }
.popup-mock {
  width: 330px; background: var(--paper);
  border: 2px solid var(--ink);
  padding: 16px; position: relative;
  box-shadow: 12px 12px 0 rgba(20,17,13,.12), 0 24px 60px -20px rgba(20,17,13,.4);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.pm-bar { position: absolute; top:0; left:0; right:0; height: 4px; background: var(--ink); }
.pm-corner { position:absolute; top:-7px; right:-7px; width:16px; height:16px; background:var(--accent); border:2px solid var(--ink); }
.pm-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pm-logo {
  width: 36px; height: 36px; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-family: "Fraunces",serif;
  font-weight: 900; font-style: italic; font-size: 20px; flex-shrink: 0;
}
.pm-title { line-height: 1; flex: 1; }
.pm-title b { display: block; font-family: "Fraunces",serif; font-size: 16px; }
.pm-title i { font-family: "Fraunces",serif; font-style: italic; font-size: 13px; color: var(--accent); }
.pm-pill {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid var(--ink); padding: 4px 8px;
  font-family: "JetBrains Mono",monospace; font-size: 9px; font-weight: 700;
}
.pm-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.pm-rule { height: 2px; background: var(--ink); margin: 0 0 12px; }
.pm-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; }
.pm-count { font-family: "Fraunces",serif; font-weight: 900; font-size: 64px; line-height: 0.8; letter-spacing: -3px; }
.pm-count-label { font-family: "JetBrains Mono",monospace; font-size: 8px; letter-spacing: .18em; color: var(--muted); margin: 4px 0 12px; }
.pm-meta div { display: flex; justify-content: space-between; border-bottom: 1px dotted var(--hairline); padding: 3px 0; }
.pm-meta span { font-family: "JetBrains Mono",monospace; font-size: 8px; color: var(--muted); }
.pm-meta b { font-family: "Fraunces",serif; font-size: 11px; }
.pm-timer-head { display: flex; justify-content: space-between; margin-bottom: 5px; }
.pm-timer-head span { font-family: "JetBrains Mono",monospace; font-size: 8px; color: var(--muted); }
.pm-timer-head b { font-family: "JetBrains Mono",monospace; font-size: 11px; }
.pm-track { height: 4px; background: var(--paper-3); border: 1px solid var(--hairline); overflow: hidden; }
.pm-fill { height: 100%; width: 35%; background: var(--accent); transition: width .3s linear; }
.pm-btn-primary {
  background: var(--ink); color: var(--paper); text-align: center;
  padding: 10px; margin: 12px 0 8px; font-size: 12px; font-weight: 700;
  box-shadow: 3px 3px 0 var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pm-btn-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.pm-btn-quiet { border: 1px solid var(--hairline); text-align: center; padding: 7px; font-size: 11px; color: var(--ink-soft); }
.pm-btn-stop { border: 2px solid var(--accent); text-align: center; padding: 6px; font-size: 11px; color: var(--accent); font-weight: 700; }
.pm-chart { background: var(--paper-2); border: 1px solid var(--hairline); padding: 6px; }
.pm-chart canvas { display: block; width: 100%; height: 80px; }

/* hero marquee */
.hero-marquee {
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--ink); overflow: hidden; padding: 12px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap; animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: "Fraunces",serif; font-weight: 700; font-style: italic;
  font-size: 22px; color: var(--paper); letter-spacing: -0.3px;
}
.marquee-track .m-dot { color: var(--accent); font-size: 12px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════ STATS ════════════════ */
.stats { position: relative; z-index: 2; border-bottom: 1px solid var(--hairline); }
.stats-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat { padding: 36px 24px; text-align: center; border-right: 1px solid var(--hairline); }
.stat:last-child { border-right: 0; }
.stat b {
  display: block; font-family: "Fraunces",serif; font-weight: 900;
  font-size: 52px; line-height: 1; letter-spacing: -2px; color: var(--accent);
}
.stat span {
  display: block; margin-top: 8px;
  font-family: "JetBrains Mono",monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* ════════════════ SECTIONS ════════════════ */
.section { position: relative; z-index: 2; padding: 90px 28px; max-width: var(--maxw); margin: 0 auto; }
.section-alt { background: var(--paper-2); max-width: none; }
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 56px; position: relative; padding-top: 20px; }
.section-num {
  font-family: "Fraunces",serif; font-weight: 900; font-style: italic;
  font-size: 60px; color: var(--accent); line-height: 1; display: block; margin-bottom: 8px;
  letter-spacing: -3px;
}
.section-head h2 {
  font-family: "Fraunces",serif; font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1; letter-spacing: -1.5px;
}
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--accent); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); font-family: "Fraunces",serif; }

/* feature grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
}
.feature-card {
  background: var(--paper); padding: 28px 24px; position: relative;
  transition: background .2s;
}
.feature-card:hover { background: var(--paper-deep); }
.fc-icon {
  font-size: 32px; color: var(--accent); line-height: 1; margin-bottom: 16px;
  display: inline-block;
}
.feature-card h3 {
  font-family: "Fraunces",serif; font-weight: 700; font-size: 19px;
  letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.1;
}
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.fc-tag {
  font-family: "JetBrains Mono",monospace; font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  border-top: 1px dotted var(--hairline); padding-top: 12px; display: block;
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step {
  background: var(--paper); border: 1px solid var(--hairline);
  padding: 28px 22px; position: relative;
}
.step::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--ink); }
.step-num {
  width: 44px; height: 44px; background: var(--accent); color: var(--paper);
  display: grid; place-items: center; font-family: "Fraunces",serif;
  font-weight: 900; font-size: 22px; margin-bottom: 18px;
}
.step-body h3 { font-family: "Fraunces",serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--ink-soft); }

/* ════════════════ SPOTLIGHT ════════════════ */
.spotlight { position: relative; z-index: 2; background: var(--ink); color: var(--paper); padding: 90px 28px; overflow: hidden; }
.spotlight::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(246,241,232,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.spotlight-inner {
  max-width: var(--maxw); margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.spotlight .section-num { color: var(--accent); }
.spotlight h2 {
  font-family: "Fraunces",serif; font-weight: 900;
  font-size: clamp(36px,5vw,60px); line-height: 0.98; letter-spacing: -2px;
}
.spotlight h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
.spotlight-text p { margin: 20px 0 24px; font-size: 18px; color: rgba(246,241,232,.7); max-width: 460px; font-family: "Fraunces",serif; }
.spot-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.spot-list li {
  padding-left: 28px; position: relative; font-size: 15px; color: rgba(246,241,232,.85);
}
.spot-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-family: "Fraunces",serif; font-size: 18px; }
.spot-list b { color: var(--paper); }

.spotlight-visual { position: relative; }
.window-mock {
  background: #0a0a0a; border: 2px solid #333; border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
}
.wm-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: #1a1a1a; }
.wm-bar > span { width: 10px; height: 10px; border-radius: 50%; }
.wm-bar > span:nth-child(1){background:#ff5f57} .wm-bar>span:nth-child(2){background:#febc2e} .wm-bar>span:nth-child(3){background:#28c840}
.wm-url { margin-left: 12px; font-family: "JetBrains Mono",monospace; font-size: 11px; color: #777; }
.wm-body { height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.wm-play { width: 70px; height: 70px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 26px; }
.wm-body p { color: #666; font-size: 14px; }
.wm-taskbar { background: #1a1a2a; padding: 10px 12px; }
.wm-tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2a2a3a; border: 1px solid #444; padding: 8px 12px; border-radius: 4px;
  font-family: "JetBrains Mono",monospace; font-size: 12px; color: #9999bb;
}
.wm-badge { background: var(--accent); color: #fff; padding: 1px 6px; border-radius: 3px; font-weight: 700; font-size: 10px; }
.float-badge {
  position: absolute; bottom: -24px; right: -16px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 6px 6px 0 var(--accent);
  animation: floaty 5s ease-in-out infinite;
}
.fb-check { width: 30px; height: 30px; background: var(--ok); color: #fff; display: grid; place-items: center; border-radius: 50%; font-weight: 700; }
.float-badge b { display: block; font-family: "Fraunces",serif; font-size: 14px; }
.float-badge small { color: var(--muted); font-size: 11px; }

/* ════════════════ DOWNLOAD ════════════════ */
.download-card {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 50px; display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 40px;
  align-items: center; position: relative;
  box-shadow: 10px 10px 0 var(--accent);
}
.dl-corner { position: absolute; top: -9px; right: -9px; width: 20px; height: 20px; background: var(--accent); border: 2px solid var(--ink); }
.dl-left h2 { font-family: "Fraunces",serif; font-weight: 900; font-size: clamp(32px,4.5vw,52px); line-height: 0.98; letter-spacing: -1.5px; margin: 14px 0; }
.dl-left h2 em { font-style: italic; color: var(--accent); font-weight: 700; }
.dl-left p { font-size: 18px; color: var(--ink-soft); max-width: 440px; margin-bottom: 28px; font-family: "Fraunces",serif; }
.dl-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.dl-compat { font-family: "JetBrains Mono",monospace; font-size: 12px; color: var(--muted); }
.dl-compat b { color: var(--ink); }
.dl-right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.dl-logo {
  width: 120px; height: 120px; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; position: relative;
  font-family: "Fraunces",serif; font-weight: 900; font-style: italic; font-size: 64px;
}
.dl-logo-corner { position: absolute; top: -8px; right: -8px; width: 28px; height: 28px; background: var(--accent); border: 3px solid var(--paper); }
.dl-rating { text-align: center; }
.dl-rating .stars { color: var(--accent); font-size: 20px; letter-spacing: 2px; }
.dl-rating span { font-family: "JetBrains Mono",monospace; font-size: 10px; color: var(--muted); }

/* ════════════════ FAQ ════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 24px 50px 24px 0;
  font-family: "Fraunces",serif; font-weight: 700; font-size: 20px;
  position: relative; transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: "Fraunces",serif; font-size: 28px; color: var(--accent); transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-body { padding: 0 50px 24px 0; }
.faq-body p { color: var(--ink-soft); font-size: 16px; }

/* ════════════════ FOOTER ════════════════ */
.footer { position: relative; z-index: 2; padding: 0 28px 28px; max-width: var(--maxw); margin: 0 auto; }
.footer-rule { height: 2px; background: var(--ink); margin-bottom: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 36px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-logo {
  width: 44px; height: 44px; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-family: "Fraunces",serif;
  font-weight: 900; font-style: italic; font-size: 24px; flex-shrink: 0; position: relative;
}
.footer-logo::after { content:""; position:absolute; top:-3px; right:-3px; width:8px; height:8px; background:var(--accent); }
.footer-brand b { font-family: "Fraunces",serif; font-size: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 240px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col span {
  font-family: "JetBrains Mono",monospace; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--hairline); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: "JetBrains Mono",monospace; font-size: 11px; color: var(--muted);
}

/* sticky cta */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--ink); color: var(--paper); text-decoration: none;
  padding: 14px 22px; font-weight: 700; font-size: 14px;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--accent);
  transform: translateY(120px); transition: transform .35s cubic-bezier(.5,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 var(--accent); }

/* ════════════════ REVEAL ANIMATIONS ════════════════ */
/* Only hide when JS is active (html.js). Without JS everything stays visible. */
.js .reveal, .js .reveal-up { opacity: 0; }
.js .reveal { animation: fadeIn .8s ease forwards; animation-delay: var(--d, 0s); }
.js .reveal-up { transform: translateY(30px); }
.js .reveal-up.in { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-up { opacity: 1 !important; transform: none !important; animation: none !important; }
  .marquee-track, .popup-mock, .float-badge { animation: none !important; }
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .spotlight-inner { grid-template-columns: 1fr; gap: 50px; }
  .download-card { grid-template-columns: 1fr; }
  .dl-right { flex-direction: row; justify-content: flex-start; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--paper); padding: 20px 28px;
    gap: 16px; border-bottom: 2px solid var(--ink); align-items: flex-start;
  }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .download-card { padding: 32px 24px; }
  .section { padding: 60px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .sticky-cta { left: 24px; right: 24px; text-align: center; }
}
