/* ============================================================
   Macuum marketing site — design tokens & base
   ============================================================ */

:root{
  --paper: #ffffff;
  --paper-alt: #f5f6f8;
  --ink: #0b0d12;
  --ink-soft: #4a4f5a;
  --ink-faint: #7b8190;
  --border: rgba(11,13,18,0.09);
  --card: #ffffff;
  --card-shadow: 0 1px 2px rgba(16,20,30,0.04), 0 12px 32px -16px rgba(16,20,30,0.14);
  --accent: #2f6fef;
  --accent-dark: #1d4fc4;
  --accent-soft: #eaf1ff;
  --accent-ink: #ffffff;
  --green: #21b862;
  --green-soft: #e6f8ee;
  --yellow: #d99a00;
  --yellow-soft: #fff6df;
  --red: #ea3d3d;
  --red-soft: #fdeaea;
  --charcoal: #1c1c1e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark){
  :root{
    --paper: #0a0b0d;
    --paper-alt: #131418;
    --ink: #f2f3f5;
    --ink-soft: #b7bbc4;
    --ink-faint: #7d828e;
    --border: rgba(255,255,255,0.09);
    --card: #17181c;
    --card-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 20px 40px -20px rgba(0,0,0,0.6);
    --accent: #5b93ff;
    --accent-dark: #3f76ea;
    --accent-soft: rgba(91,147,255,0.14);
    --green-soft: rgba(33,184,98,0.14);
    --yellow-soft: rgba(217,154,0,0.14);
    --red-soft: rgba(234,61,61,0.14);
  }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin:0; padding:0; list-style:none; }
section{ position: relative; }

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2{
  font-size: clamp(28px, 3.6vw, 40px);
  margin-top: 14px;
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 17px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(47,111,239,0.6);
}
.btn-primary:hover{ background: var(--accent-dark); }
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover{ background: var(--paper-alt); }
.btn-sm{ padding: 8px 16px; font-size: 13px; }
.btn svg{ width: 18px; height: 18px; }

/* ---------------- Nav ---------------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled{
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px -12px rgba(0,0,0,0.15);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.brand img{ width: 32px; height: 32px; border-radius: 8px; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a{
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
}
.nav-toggle svg{ width: 20px; height: 20px; }

.mobile-panel{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}
.mobile-panel a{
  padding: 12px 4px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-panel a:last-child{ border-bottom: none; }
.mobile-panel.open{ display: flex; }

/* ---------------- Hero ---------------- */
.hero{
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo-wrap{
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 8px;
}
.hero-logo-glow{
  position: absolute;
  inset: -46px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
  opacity: .32;
  filter: blur(28px);
  border-radius: 50%;
  z-index: 0;
}
.hero-logo{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 44px -18px rgba(16,20,30,0.35);
}
.hero h1{
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
  margin-top: 22px;
  max-width: 780px;
}
.hero h1 span{ color: var(--accent); }
.hero-sub{
  margin-top: 20px;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-cta{
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-note{
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.hero-trust{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item svg{ width: 17px; height: 17px; color: var(--accent); flex-shrink:0; }

/* App Store badge */
.appstore-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 12px;
  padding: 9px 16px 9px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.appstore-badge svg{ width: 26px; height: 26px; }
.appstore-badge .lines{ display:flex; flex-direction:column; line-height:1.1; }
.appstore-badge .lines small{ font-size: 10.5px; font-weight: 500; opacity: .85; }
.appstore-badge .lines strong{ font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }

/* ---------------- Mockup: menu bar dashboard ---------------- */
.hero-visual{
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 640px;
  margin: 48px auto 0;
}
.floaters{ position:absolute; inset: -40px -30px; pointer-events:none; z-index: 0; }
.dot-bg{
  position:absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.dot-bg.a{ width: 260px; height:260px; background: var(--accent); top: -30px; right: 10%; }
.dot-bg.b{ width: 220px; height:220px; background: var(--green); bottom: -20px; left: 0; opacity:.22; }

.mockup{
  position: relative;
  z-index: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.mockup-titlebar{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--paper-alt);
}
.mockup-titlebar .tl{ width:11px; height:11px; border-radius:50%; }
.tl.r{ background:#ff5f57; } .tl.y{ background:#febc2e; } .tl.g{ background:#28c840; }
.mockup-titlebar .title{
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.mockup-body{ padding: 22px; }

.menu-pill{
  display:flex; align-items:center; justify-content:space-between;
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.menu-pill .left{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:14px; }
.status-dot{ width:10px; height:10px; border-radius:50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.menu-pill .cpu{ font-size: 13px; color: var(--ink-faint); font-weight:600; }

.tabbar{
  display:flex; gap: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.tabbar span{
  font-size: 13.5px; font-weight: 700; color: var(--ink-faint);
  padding-bottom: 10px; border-bottom: 2px solid transparent;
}
.tabbar span.active{ color: var(--ink); border-color: var(--accent); }

.gauge-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.gauge{ text-align:center; min-width: 0; }
.gauge svg{ width: 64px; height: 64px; }
.gauge .ring-bg{ fill:none; stroke: var(--border); stroke-width: 8; }
.gauge .ring-fg{ fill:none; stroke-width: 8; stroke-linecap: round; transform-origin: 50% 50%; transform: rotate(-90deg); }
.gauge .val{ font-size: 15px; font-weight: 800; fill: var(--ink); }
.gauge .label{
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.spark-card{
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.spark-card .head{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.spark-card .head span:first-child{ font-size:12.5px; font-weight:700; color:var(--ink-faint); text-transform:uppercase; letter-spacing:.03em;}
.spark-card .head span:last-child{ font-size:12.5px; font-weight:700; color: var(--ink-soft); }
.spark-card svg{ width:100%; height:44px; display:block; }

.banner{
  display:flex; align-items:flex-start; gap: 10px;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  line-height:1.4;
}
.banner.ok{ background: var(--green-soft); color: #0d7a3d; }
.banner.warn{ background: var(--red-soft); color: #b32323; }
@media (prefers-color-scheme: dark){
  .banner.ok{ color: #4fe08a; }
  .banner.warn{ color: #ff8383; }
}
.banner svg{ width:18px; height:18px; flex-shrink:0; margin-top:1px; }

/* ---------------- Problem cards ---------------- */
.problems{ padding: 88px 0; background: var(--paper-alt); }
.problem-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.problem-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.problem-card:hover{ transform: translateY(-4px); box-shadow: 0 4px 8px rgba(16,20,30,0.06), 0 24px 40px -20px rgba(16,20,30,0.22); }
.icon-badge{
  width: 52px; height: 52px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.icon-badge.red{ background: var(--red-soft); color: var(--red); }
.icon-badge.yellow{ background: var(--yellow-soft); color: var(--yellow); }
.icon-badge.green{ background: var(--green-soft); color: var(--green); }
.icon-badge svg{ width: 26px; height: 26px; }

.problem-card h3{ font-size: 19px; }
.problem-card .got-you{ display:block; font-size:17px; font-weight:800; color: var(--accent); margin-top: 3px; }
.problem-card p{ color: var(--ink-soft); font-size: 14.5px; margin-top: 12px; }

/* ---------------- Results (before/after) ---------------- */
.results{ padding: 88px 0; }
.results-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.result-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 34px 24px;
  text-align: center;
}
.result-icon{
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items:center; justify-content:center;
}
.result-icon svg{ width: 26px; height:26px; }
.result-flip{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.result-flip .before{ color: var(--red); opacity: .55; }
.result-flip .after{ color: var(--green); }
.result-flip svg{ width: 20px; height:20px; color: var(--ink-faint); flex-shrink:0; }
.result-label{
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------------- Showcase (alternating) ---------------- */
.showcase{ padding: 110px 0; }
.showcase-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
  margin-bottom: 110px;
}
.showcase-row:last-child{ margin-bottom: 0; }
.showcase-row.reverse .copy{ order: 2; }
.showcase-row.reverse .art{ order: 1; }
.showcase-row .copy, .showcase-row .art{ min-width: 0; }
.copy .eyebrow{ margin-bottom: 16px; }
.copy h3{ font-size: clamp(24px,3vw,32px); margin-bottom: 16px; }
.copy p.lead{ color: var(--ink-soft); font-size: 16.5px; margin-bottom: 22px; }
.feat-list{ display:flex; flex-direction:column; gap: 14px; }
.feat-list li{ display:flex; gap: 12px; align-items:flex-start; font-size:15px; color: var(--ink); }
.feat-list li svg{ width:19px; height:19px; color: var(--green); flex-shrink:0; margin-top:2px; }

/* process rows mockup */
.proc-row{
  display:flex; align-items:center; gap: 12px;
  padding: 10px 8px;
  border-radius: 12px;
}
.proc-row + .proc-row{ margin-top: 4px; }
.proc-row.flag{ background: var(--red-soft); }
.proc-avatar{
  width: 34px; height:34px; border-radius: 9px;
  background: var(--paper-alt);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size: 13px; font-weight: 800; color: var(--ink-soft);
  flex-shrink:0;
}
.proc-info{ flex:1; min-width:0; }
.proc-info .name{ font-size: 14px; font-weight:700; }
.proc-info .bar-bg{ height:5px; border-radius:3px; background: var(--border); margin-top:6px; overflow:hidden; }
.proc-info .bar-fg{ height:100%; border-radius:3px; background: var(--accent); }
.proc-row.flag .bar-fg{ background: var(--red); }
.proc-pct{ font-size:13px; font-weight:800; width:38px; text-align:right; flex-shrink:0; }
.proc-actions{ display:flex; gap:6px; flex-shrink:0; }
.chip-btn{
  font-size: 11.5px; font-weight:700;
  padding: 6px 10px; border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink-soft);
}
.chip-btn.danger{ color: var(--red); border-color: rgba(234,61,61,0.3); }

/* ask ai mockup */
.ask-bar{
  display:flex; align-items:center; gap:10px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  padding: 12px 16px;
  background: var(--paper-alt);
  margin-bottom: 16px;
}
.ask-bar svg{ width:20px; height:20px; color: var(--accent); flex-shrink:0; }
.ask-bar span{ font-size: 14.5px; color: var(--ink-soft); font-weight:600; }
.chat-answer{
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.chat-answer .tag{
  display:inline-flex; align-items:center; gap:6px;
  font-size: 11px; font-weight: 800; text-transform:uppercase; letter-spacing:.04em;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.chat-answer p{ font-size: 14.5px; color: var(--ink); line-height:1.55; }
.chat-answer .cta-row{ margin-top:14px; display:flex; gap:10px; }

/* storage bar mockup */
.storage-block{ margin-bottom: 18px; }
.storage-block .head{ display:flex; justify-content:space-between; font-size:13px; font-weight:700; color:var(--ink-soft); margin-bottom:8px; }
.storage-bar{ height: 14px; border-radius: 8px; background: var(--paper-alt); border:1px solid var(--border); overflow:hidden; display:flex; }
.storage-bar span{ height:100%; }
.storage-bar .used{ background: var(--accent); }
.storage-bar .junk{ background: var(--yellow); }
.storage-bar .free{ background: transparent; }
.storage-legend{ display:flex; gap:18px; margin-top:10px; flex-wrap:wrap; }
.storage-legend div{ display:flex; align-items:center; gap:7px; font-size:12.5px; font-weight:600; color:var(--ink-soft); }
.storage-legend i{ width:10px; height:10px; border-radius:3px; display:inline-block; }

.clean-list{ display:flex; flex-direction:column; gap:8px; }
.clean-item{
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
}
.clean-item .check{
  width:20px; height:20px; border-radius:6px;
  background: var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.clean-item .check svg{ width:13px; height:13px; }
.clean-item .name{ flex:1; font-size:13.5px; font-weight:700; }
.clean-item .size{ font-size:13px; font-weight:700; color: var(--ink-faint); }

/* ---------------- Feature grid ---------------- */
.features{ padding: 100px 0; background: var(--paper-alt); }
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.feature-card .icon-badge{ margin-bottom: 14px; width:44px; height:44px; border-radius:12px; }
.feature-card .icon-badge svg{ width:22px; height:22px; }
.feature-card h4{ font-size: 16px; margin-bottom: 8px; }
.feature-card p{ font-size: 14px; color: var(--ink-soft); }

/* ---------------- Privacy band ---------------- */
.privacy-band{ padding: 100px 0; }
.privacy-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
.privacy-points{ display:flex; flex-direction:column; gap: 22px; }
.privacy-point{ display:flex; gap:16px; }
.privacy-point .icon-badge{ flex-shrink:0; }
.privacy-point h4{ font-size:16px; margin-bottom:6px; }
.privacy-point p{ font-size: 14.5px; color: var(--ink-soft); }

.privacy-card{
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.privacy-card .icon-badge{ background: rgba(255,255,255,0.1); color:#fff; }
.privacy-card h3{ font-size: 24px; margin: 18px 0 10px; }
.privacy-card p{ color: rgba(255,255,255,0.72); font-size:15px; }
.privacy-card ul{ margin-top:20px; display:flex; flex-direction:column; gap:12px; }
.privacy-card ul li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color: rgba(255,255,255,0.88); }
.privacy-card ul li svg{ width:17px; height:17px; color:#5be08a; margin-top:2px; flex-shrink:0; }

/* ---------------- Pricing ---------------- */
.pricing{ padding: 100px 0; background: var(--paper-alt); }
.price-card{
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 44px 40px;
  text-align:center;
}
.price-card .badge-free{
  display:inline-flex; padding:6px 14px; border-radius:100px;
  background: var(--green-soft); color:#0d7a3d; font-weight:800; font-size:13px;
  margin-bottom: 18px;
}
@media (prefers-color-scheme: dark){ .price-card .badge-free{ color:#4fe08a; } }
.price-card .amount{ font-size: 52px; font-weight:900; letter-spacing:-0.02em; }
.price-card .amount sub{ font-size: 17px; font-weight:700; color: var(--ink-faint); }
.price-card .sub-line{ margin-top:6px; color: var(--ink-soft); font-size:14.5px; }
.price-list{ text-align:left; margin: 30px 0; display:flex; flex-direction:column; gap:13px; }
.price-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; }
.price-list li svg{ width:18px; height:18px; color: var(--accent); flex-shrink:0; margin-top:2px; }
.price-card .btn{ width:100%; }
.price-fine{ margin-top:16px; font-size:12.5px; color: var(--ink-faint); }

/* ---------------- FAQ ---------------- */
.faq{ padding: 100px 0; }
.faq-list{ max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--border); border-radius: var(--radius-md); background: var(--card); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding: 18px 22px; background:none; border:none; text-align:left;
  font-size:16px; font-weight:700; color: var(--ink);
}
.faq-q svg{ width:20px; height:20px; color: var(--ink-faint); transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q svg{ transform: rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a p{ padding: 0 22px 20px; color: var(--ink-soft); font-size:14.5px; line-height:1.6; }

/* ---------------- Final CTA ---------------- */
.final-cta{
  padding: 100px 0;
  text-align:center;
}
.final-cta-card{
  background: linear-gradient(135deg, var(--accent), #6f9bff);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  color:#fff;
}
.final-cta-card h2{ font-size: clamp(28px,4vw,40px); color:#fff; }
.final-cta-card p{ margin-top:14px; color: rgba(255,255,255,0.88); font-size:17px; }
.final-cta-card .hero-cta{ justify-content:center; margin-top:30px; }
.final-cta-card .btn-primary{ background:#fff; color: var(--accent-dark); box-shadow:none; }
.final-cta-card .btn-ghost{ border-color: rgba(255,255,255,0.4); color:#fff; }
.final-cta-card .appstore-badge{ background: rgba(0,0,0,0.28); }

/* ---------------- Footer ---------------- */
.site-footer{ border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand{ margin-bottom:14px; }
.footer-brand p{ color: var(--ink-soft); font-size: 14px; max-width: 320px; }
.footer-col h5{ font-size:13px; text-transform:uppercase; letter-spacing:.04em; color: var(--ink-faint); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; color: var(--ink-soft); }
.footer-col a:hover{ color: var(--ink); }
.footer-legal{
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-legal p{ font-size:13px; color: var(--ink-faint); }
.footer-legal .legal-links{ display:flex; gap:18px; }
.footer-legal .legal-links a{ font-size:13px; color: var(--ink-faint); }
.footer-legal .legal-links a:hover{ color: var(--ink-soft); }

/* ---------------- Reveal animation ---------------- */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------------- Simple legal page ---------------- */
.legal-page{ padding: 64px 0 100px; }
.legal-page .wrap{ max-width: 780px; }
.legal-page h1{ font-size: 34px; margin-bottom: 6px; }
.legal-page .updated{ color: var(--ink-faint); font-size:13.5px; margin-bottom:40px; display:block; }
.legal-page h2{ font-size: 19px; margin: 34px 0 12px; }
.legal-page p, .legal-page li{ color: var(--ink-soft); font-size:15px; line-height:1.7; }
.legal-page ul{ padding-left: 20px; list-style: disc; display:flex; flex-direction:column; gap:6px; }
.legal-page a.inline{ color: var(--accent); font-weight:600; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .problem-grid{ grid-template-columns: repeat(2,1fr); }
  .results-grid{ grid-template-columns: 1fr; }
  .showcase-row, .showcase-row.reverse{ grid-template-columns: 1fr; }
  .showcase-row .copy, .showcase-row.reverse .copy{ order:1; }
  .showcase-row .art, .showcase-row.reverse .art{ order:2; }
  .feature-grid{ grid-template-columns: repeat(2,1fr); }
  .privacy-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .gauge-row{ grid-template-columns: repeat(4,minmax(0,1fr)); gap:8px; }
  .gauge svg{ width:52px; height:52px; }
  .feature-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary{ display:none; }
}
.mobile-cta{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width: 560px){
  .problem-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
  .hero{ padding-top: 56px; }
  .hero-logo-wrap{ width: 96px; height: 96px; }
  .hero-logo-glow{ inset: -34px; }
  .mockup-body{ padding:16px; }
  .price-card{ padding: 34px 22px; }
}
