/* FileForge landing — polished dark theme with bento grid + asymmetric hero */

:root {
  --bg-primary: #0b0e14;
  --bg-secondary: #11161f;
  --bg-tertiary: #1a2030;
  --bg-card: #161b24;
  --border-default: #242a37;
  --border-muted: #1a1f29;
  --text-primary: #e6edf3;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;
  --text-faint: #5b6472;
  --accent-blue: #58a6ff;
  --accent-purple: #a371f7;
  --accent-green: #3fb950;
  --accent-orange: #e6a23c;
  --accent-red: #f47068;
  --accent-cyan: #39d2c0;
  --gradient-brand: linear-gradient(135deg, #58a6ff 0%, #a371f7 100%);
  --container-max: 1120px;
  --container-narrow: 760px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle grain overlay for depth */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 10%, rgba(88,166,255,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(163,113,247,0.05) 0%, transparent 50%);
  z-index: -1;
}

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

a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
p { color: var(--text-secondary); }
code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  color: var(--accent-blue);
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border-muted);
}
.nav-inner {
  display: flex; align-items: center;
  padding: 0 24px;
  height: 56px;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 18px;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-mark {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0 0 0 auto;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-ctas { display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600; font-size: 13px;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  border: none; cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 4px 20px rgba(88,166,255,0.25);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(88,166,255,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--accent-blue); }
.btn-sm { padding: 7px 12px; font-size: 12px; }
.btn-lg { padding: 12px 22px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   HERO — asymmetric layout
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: 60px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(88,166,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { padding-right: 8px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(163,113,247,0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(163,113,247,0.25);
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 20px;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 0 0 rgba(163,113,247,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(163,113,247,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(163,113,247,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,113,247,0); }
}
.hero-title {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-subtitle em { color: var(--text-primary); font-style: normal; font-weight: 600; }
.hero-ctas {
  display: flex; gap: 10px;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 500;
}
.hero-screenshot-wrap {
  position: relative;
  transform: perspective(1800px) rotateY(-5deg) rotateX(3deg);
  min-height: 320px;
}
.hero-screenshot-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(163,113,247,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-default);
  background: linear-gradient(135deg, rgba(88,166,255,0.05), rgba(163,113,247,0.05));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder.hidden { display: none; }
.hero-img-placeholder img {
  width: 56px; height: 56px;
  opacity: 0.85;
}
.hero-img-placeholder span {
  color: var(--text-faint);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
  background: linear-gradient(to bottom, rgba(17,22,31,0.6), transparent);
}
.trust-items {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-size: 22px; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 600;
}
.trust-divider {
  width: 1px; height: 32px;
  background: var(--border-default);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 72px 0; position: relative; }
/* Collapse the joint between adjacent sections — halves the gap */
.section + .section { padding-top: 24px; }
.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-muted);
  border-bottom: 1px solid var(--border-muted);
}
.section-heading {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading.compact { margin-bottom: 32px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-blue);
  margin-bottom: 14px;
}
.section-heading h2 {
  font-size: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   BENTO GRID — 4-column, Duplicate Finder is 2×2 hero
   ═══════════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-rows: minmax(150px, auto);
}
.bento-hero { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-tile { grid-column: span 1; }

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}
.bento-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  position: relative;
}
.bento-icon svg { width: 20px; height: 20px; }
.bento-icon::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 9px;
  opacity: 0.15;
}
.bento-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.bento-hero { padding: 28px; }
.bento-hero .bento-icon { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px; }
.bento-hero .bento-icon svg { width: 24px; height: 24px; }
.bento-hero h3 { font-size: 22px; margin-bottom: 10px; }
.bento-hero p { font-size: 14px; max-width: 420px; }

.bento-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.bento-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-muted);
  border-radius: 8px;
}
.bento-bullets li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  flex-shrink: 0;
}

/* Accent colors applied per-card */
.accent-blue   .bento-icon { color: var(--accent-blue); }
.accent-blue   .bento-icon::before { background: var(--accent-blue); }
.accent-purple .bento-icon { color: var(--accent-purple); }
.accent-purple .bento-icon::before { background: var(--accent-purple); }
.accent-orange .bento-icon { color: var(--accent-orange); }
.accent-orange .bento-icon::before { background: var(--accent-orange); }
.accent-red    .bento-icon { color: var(--accent-red); }
.accent-red    .bento-icon::before { background: var(--accent-red); }
.accent-green  .bento-icon { color: var(--accent-green); }
.accent-green  .bento-icon::before { background: var(--accent-green); }
.accent-cyan   .bento-icon { color: var(--accent-cyan); }
.accent-cyan   .bento-icon::before { background: var(--accent-cyan); }

/* ═══════════════════════════════════════════════════════════════
   STEPS — how it works
   ═══════════════════════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 40px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.step.reversed {
  grid-template-columns: 60px 1.2fr 1fr;
}
.step.reversed .step-content { order: 3; }
.step.reversed .step-img     { order: 2; }
.step-num {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}
.step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-img img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-card);
}
.step-img-missing {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px dashed var(--border-default);
  background:
    linear-gradient(135deg, rgba(88,166,255,0.04), rgba(163,113,247,0.04)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,0.015) 8px 16px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.step-img-missing::before {
  content: "Screenshot";
}
.inline-pill {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.inline-pill.safe   { color: var(--accent-green);  background: rgba(63,185,80,0.12); }
.inline-pill.review { color: var(--accent-red);    background: rgba(244,112,104,0.12); }

/* ═══════════════════════════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════════════════════════ */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-muted);
}
.compare-table thead th {
  background: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
  padding: 18px;
}
.compare-head {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 4px;
}
.compare-logo { width: 18px; height: 18px; border-radius: 5px; }
.compare-sub {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}
.compare-table th.highlight, .compare-table td.highlight {
  background: rgba(88,166,255,0.06);
  color: var(--accent-blue);
  font-weight: 700;
}
.compare-table th.highlight .compare-sub { color: var(--accent-blue); opacity: 0.7; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.compare-by-design {
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(230, 162, 60, 0.08);
  border: 1px solid rgba(230, 162, 60, 0.2);
  transition: background 0.15s, border-color 0.15s;
}
.compare-by-design:hover {
  background: rgba(230, 162, 60, 0.15);
  border-color: rgba(230, 162, 60, 0.4);
  text-decoration: none;
}
.compare-footer-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 18px;
}
.compare-footer-note a { color: var(--accent-blue); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(to bottom, rgba(88,166,255,0.08), var(--bg-card) 60%);
  box-shadow: 0 10px 40px rgba(88,166,255,0.1);
}
.price-badge {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: white;
  font-size: 10px; font-weight: 800;
  padding: 4px 12px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(163,113,247,0.3);
}
.price-head { margin-bottom: 22px; }
.price-head h3 { font-size: 17px; font-weight: 700; }
.price-hint {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}
.price { margin-bottom: 20px; }
.price-original {
  font-size: 16px;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-right: 8px;
}
.price-amount {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-per {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
/* Approximate localized price — populated by JS on non-US visitors.
   Empty by default so US visitors see nothing extra. */
.price-local {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-style: italic;
  color: var(--text-faint);
  letter-spacing: 0.2px;
}
.price-local:empty { display: none; }
.price-local::before { content: "≈ "; }

/* Inline variant for the final CTA — reads as a parenthetical aside */
.price-local-inline {
  display: inline;
  font-size: 12px;
  color: var(--text-faint);
}
.price-local-inline:empty { display: none; }
.price-local-inline::before { content: " (≈ "; }
.price-local-inline::after { content: ")"; }

.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 22px;
}
.price-features li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-item[open] { border-color: var(--accent-blue); }
.faq-item summary {
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  list-style: none;
  position: relative;
  padding-right: 44px;
  letter-spacing: -0.01em;
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--border-muted);
  background: rgba(255,255,255,0.015);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-weight: 300; font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent-blue);
}
.faq-item p {
  padding: 14px 20px 16px 36px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
}
.faq-item p::before {
  content: "";
  position: absolute;
  left: 20px; top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 2px;
  background: var(--accent-blue);
  opacity: 0.5;
}
.faq-item a { color: var(--accent-blue); }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta { padding: 40px 0 72px; }
.final-cta-card {
  background: linear-gradient(135deg, rgba(88,166,255,0.08), rgba(163,113,247,0.08));
  border: 1px solid rgba(88,166,255,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(163,113,247,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta-copy h2 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.final-cta-copy p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-muted);
  background: var(--bg-secondary);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-faint);
  margin-bottom: 12px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 13px; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--text-primary); text-decoration: none; }
.muted { color: var(--text-muted); font-size: 13px; max-width: 300px; }
.copyright {
  padding-top: 20px;
  border-top: 1px solid var(--border-muted);
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   COMING-SOON ROADMAP
   ═══════════════════════════════════════════════════════════════ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.roadmap-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.roadmap-card .roadmap-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-purple);
  background: rgba(163,113,247,0.12);
  padding: 3px 8px;
  border-radius: 10px;
}
.roadmap-card .roadmap-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(88,166,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 12px;
}
.roadmap-card .roadmap-icon svg { width: 16px; height: 16px; }
.roadmap-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.roadmap-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.roadmap-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-faint);
}
.roadmap-footer a { color: var(--accent-blue); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   "WON'T DO" / ANTI-FEATURES SECTION
   Positions omitted competitor features as principled trust signals.
   ═══════════════════════════════════════════════════════════════ */
.wont-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.wont-do-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.wont-do-card:hover {
  border-color: rgba(230, 162, 60, 0.3);
  transform: translateY(-2px);
}
.wont-do-card::before {
  content: "✗";
  position: absolute;
  top: 18px; right: 20px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(244, 112, 104, 0.1);
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.wont-do-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  padding-right: 32px;
}
.wont-do-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.wont-do-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-faint);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL / PROSE PAGES (privacy, terms, refunds)
   ═══════════════════════════════════════════════════════════════ */
.legal {
  padding: 56px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-muted);
}
.legal-header h1 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.legal-header .legal-meta {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.legal p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  margin: 8px 0 18px 24px;
  padding: 0;
}
.legal li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.legal strong { color: var(--text-primary); font-weight: 700; }
.legal a { color: var(--accent-blue); }
.legal code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.88em;
  padding: 1px 6px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  color: var(--accent-blue);
}
.legal .callout {
  margin: 20px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent-blue);
  background: rgba(88,166,255,0.04);
  border-radius: 0 6px 6px 0;
}
.legal .callout p { margin: 0; font-size: 14px; }
.legal .callout.warn {
  border-left-color: var(--accent-orange);
  background: rgba(230,162,60,0.04);
}
.legal .callout.warn strong { color: var(--accent-orange); }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX — click any .zoomable screenshot to enlarge
   ═══════════════════════════════════════════════════════════════ */
.zoomable { cursor: zoom-in; }
.zoomable:hover { outline: 2px solid rgba(88,166,255,0.4); outline-offset: 4px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.lightbox-hint {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero > .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { padding-right: 0; text-align: center; }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-title { font-size: 36px; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-screenshot-wrap { transform: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-hero, .bento-wide, .bento-tile { grid-column: span 2; grid-row: auto; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .wont-do-grid { grid-template-columns: 1fr 1fr; }
  .step, .step.reversed {
    grid-template-columns: 50px 1fr;
    gap: 16px 20px;
  }
  .step-img, .step.reversed .step-img { grid-column: span 2; order: 3; }
  .step-content, .step.reversed .step-content { order: 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .final-cta-card { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; }
  .trust-items { gap: 14px; }
  .trust-divider { display: none; }
}
@media (max-width: 520px) {
  .hero-title { font-size: 28px; }
  .section-heading h2 { font-size: 24px; }
  .section { padding: 48px 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .wont-do-grid { grid-template-columns: 1fr; }
  .legal-header h1 { font-size: 28px; }
}
