@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
  --bg-deep: #0c1222;
  --bg-mid: #141d33;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --accent: #2563eb;
  --accent-light: #dbeafe;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --warn: #dc2626;
  --warn-bg: #fef2f2;
  --warn-line: #fecaca;
  --ok: #059669;
  --tag: #eff6ff;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --maxw: 920px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245, 158, 11, 0.08), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, #111827 40%, #1e293b 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  font-size: 16px;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: rgba(12, 18, 34, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: #fff; }
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  display: block; border-radius: 10px;
  box-shadow: 0 4px 14px var(--gold-glow);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='6' y1='4' x2='34' y2='36' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fbbf24'/%3E%3Cstop offset='1' stop-color='%23d97706'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='40' height='40' rx='10' fill='url(%23g)'/%3E%3Cpath fill='%230c1222' d='M10.5 28V15.2L20 24.5 29.5 15.2V28h-2.8v-9.1L20 26.8l-6.7-7.9V28h-2.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.entry-gate__brand .logo-mark {
  width: 28px; height: 28px; box-shadow: none;
}
.brand .brand-accent { color: var(--gold); }
.brand span:last-child { line-height: 1.2; }
.brand small { display: block; font-weight: 500; color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 2px; }
.nav { display: flex; gap: 20px; font-size: 14px; font-weight: 600; }
.nav a { color: rgba(255,255,255,0.75); }
.nav a:hover { color: #fff; text-decoration: none; }

/* Main content panel */
main.wrap {
  background: var(--surface-soft);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 0;
  padding-bottom: 40px;
  box-shadow: var(--shadow-lg);
  min-height: 60vh;
}

/* Hero */
.hero-band {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 50%, #0c1222 100%);
  color: #fff;
  padding: 48px 0 56px;
  margin-bottom: -24px;
}
.hero-band .wrap { max-width: var(--maxw); }
.hero-band h1 {
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-band p.sub {
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
  font-size: 17px;
  max-width: 640px;
  line-height: 1.6;
}
.hero-band .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero { padding: 32px 0 12px; }
.hero h1 { font-size: clamp(22px, 4vw, 28px); line-height: 1.25; margin: 0 0 8px; font-weight: 800; color: var(--ink); }
.hero p.sub { color: var(--muted); margin: 0 0 16px; font-size: 15px; }
.crumbs { font-size: 13px; color: var(--muted); margin: 24px 0 0; padding-top: 8px; }
.crumbs a { color: var(--muted); }

.section-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin: 28px 0 12px;
}

.alert {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  color: #991b1b;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin: 16px 0;
}
.alert strong { color: var(--warn); }
.alert.neutral {
  background: #f0f9ff;
  border-color: #bae6fd;
  color: #0c4a6e;
}
.alert.neutral strong { color: #0369a1; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0; }
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat .n { font-size: 17px; font-weight: 800; color: var(--warn); }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Buttons */
.btn-buy {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0c1222;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 4px 20px var(--gold-glow);
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-buy:hover { transform: translateY(-1px); box-shadow: 0 6px 28px var(--gold-glow); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); text-decoration: none; }
.btn-ghost.dark {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}
.btn-ghost.dark:hover { border-color: var(--accent); background: var(--accent-light); }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin: 14px 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #cbd5e1; }
.card.featured { border: 2px solid var(--gold); background: linear-gradient(180deg, #fffbeb 0%, #fff 40%); }
.card h3 { margin: 0; font-size: 17px; font-weight: 800; }
.card h3 a { color: var(--ink); }
.card .loc { font-size: 13px; color: var(--muted); }
.card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.card .desc { font-size: 14px; color: #475569; margin: 0; line-height: 1.5; }
.card .row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); }
.card .price { font-weight: 800; color: var(--ok); }

.card.closed { background: #f8fafc; border-color: #e2e8f0; cursor: default; }
.card.closed:hover { transform: none; box-shadow: var(--shadow); border-color: #e2e8f0; }
.card.closed h3 { color: #64748b; font-size: 16px; }
.closed-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.badge.closed { background: #e2e8f0; color: #64748b; }

.pill { display: inline-block; background: var(--tag); color: #1d4ed8; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pill.red { background: var(--warn-bg); color: var(--warn); }
.badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.03em; }
.badge.free { background: #d1fae5; color: var(--ok); }
.badge.paid { background: #fef3c7; color: #b45309; }
.badge.soon { background: #f1f5f9; color: var(--muted); }

/* Tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 16px 0; align-items: start; }
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.tier.featured {
  border: 2px solid #1e3a5f;
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.15);
  transform: scale(1.02);
}
.tier.featured .ribbon {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0c1222;
  font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 999px;
}
.tier { position: relative; }
.tier h3 { margin: 0; font-size: 18px; font-weight: 800; }
.tier .who { font-size: 13px; color: var(--muted); margin: 4px 0 12px; }
.tier .amt { font-size: 32px; font-weight: 900; color: #1e3a5f; }
.tier .amt span { font-size: 14px; font-weight: 600; color: var(--muted); }
.tier ul { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
.tier ul li { font-size: 13px; padding-left: 26px; position: relative; line-height: 1.4; }
.tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.tier ul li.no { color: #94a3b8; }
.tier ul li.no::before { content: "–"; color: #cbd5e1; }
.tier .pick { margin-top: auto; padding-top: 8px; }
.tier .pick a { display: block; text-align: center; }
.tier .diy-compare {
  font-size: 12px; color: var(--muted); background: #f8fafc;
  border: 1px dashed var(--line); border-radius: 8px;
  padding: 10px 12px; margin: 12px 0 0; line-height: 1.45;
}
.tier .diy-compare strong { color: var(--ok); display: block; margin-top: 4px; }

/* Value / why-us section */
.about-block { background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-bottom: 8px; }
.about-block p { margin: 0 0 10px; color: #475569; font-size: 14px; line-height: 1.55; }
.about-block p:last-child { margin-bottom: 0; }
.about-note { font-size: 13px !important; }
.expect-steps { margin: 0 0 18px; padding-left: 1.2rem; color: rgba(255,255,255,0.82); font-size: 13px; line-height: 1.5; }
.expect-steps li { margin-bottom: 6px; }
.expect-steps li:last-child { margin-bottom: 0; }

.value-intro {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 28px 24px; margin: 24px 0;
}
.value-intro h2 { margin: 0 0 8px; font-size: 22px; font-weight: 800; }
.value-intro p { margin: 0; color: rgba(255,255,255,0.78); font-size: 15px; max-width: 680px; line-height: 1.55; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0 8px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
}
.value-card h3 { margin: 0 0 8px; font-size: 15px; font-weight: 800; }
.value-card .vs { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.value-card .vs s { color: #94a3b8; }
.value-card .ease { font-size: 13px; color: #0f766e; font-weight: 600; line-height: 1.45; }
.value-card ul { margin: 8px 0 0; padding-left: 16px; font-size: 13px; color: #475569; }
.value-card ul li { margin-bottom: 4px; }

@media (max-width: 720px) {
  .value-grid { grid-template-columns: 1fr; }
}

.capture.highlight {
  animation: notifyPulse 2.5s ease;
}
@keyframes notifyPulse {
  0%, 100% { box-shadow: none; }
  15%, 45% { box-shadow: 0 0 0 3px var(--gold), 0 8px 32px var(--gold-glow); }
}

/* Entry gate modal */
body.gate-open { overflow: hidden; }
.entry-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12, 18, 34, 0.88);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: gateFadeIn 0.35s ease;
}
@keyframes gateFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.entry-gate__panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  border: 2px solid var(--gold);
  animation: gateSlideUp 0.4s ease;
}
@keyframes gateSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.entry-gate__brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-dark); margin: 0 0 14px;
}
.entry-gate__panel h2 {
  margin: 0 0 14px; font-size: clamp(20px, 4vw, 24px);
  line-height: 1.3; font-weight: 800; color: var(--ink);
}
.entry-gate__body {
  margin: 0 0 12px; font-size: 15px; line-height: 1.55; color: #475569;
}
.entry-gate__sub {
  margin: 0 0 22px; font-size: 14px; font-weight: 700;
  color: #b42318; line-height: 1.45;
}
.entry-gate__btn {
  width: 100%; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0c1222; font-weight: 800; font-size: 16px;
  padding: 14px 20px; border-radius: 10px;
  font-family: inherit;
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: filter 0.15s, transform 0.15s;
}
.entry-gate__btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.step .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #0f2744);
  color: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: 14px; margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.step p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Discussion */
.discussion { margin: 28px 0; }
.discussion h2 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.discussion .lead { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.comment {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
.comment .meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.comment .meta b { color: var(--ink); font-weight: 700; }
.comment .verified { background: #dbeafe; color: #1d4ed8; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }
.comment .body { font-size: 14.5px; line-height: 1.55; }
.comment.admin-reply { margin-left: 24px; border-left: 3px solid var(--gold); background: #fffbeb; }
.empty-note {
  background: #f8fafc;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

/* Report */
.report {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin: 20px 0 28px;
}
.report h2 { font-size: 20px; font-weight: 800; margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.report h2:first-child { margin-top: 0; }
.report h3 { font-size: 15px; font-weight: 700; margin: 18px 0 6px; }
.report p, .report li { font-size: 14.5px; line-height: 1.6; }
.report .legend { font-size: 12px; color: var(--muted); background: #f8fafc; padding: 10px 12px; border-radius: 8px; }
.sample-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
  color: #92400e;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14px;
  margin: 16px 0;
}
.sample-banner strong { color: #b45309; }

/* Sample report — tier coverage highlights */
.tier-legend {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  background: #f8fafc; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 20px; font-size: 13px;
}
.tier-legend .label { font-weight: 700; color: var(--ink); margin-right: 4px; }
.tier-tag {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.tier-tag.fact { background: #dbeafe; color: #1d4ed8; }
.tier-tag.complete { background: #e0e7ff; color: #3730a3; border: 1px solid #a5b4fc; }
.tier-tag.expert { background: #fef3c7; color: #b45309; border: 1px solid #fcd34d; }
.tier-tag.all { background: #f1f5f9; color: #475569; }

.report h2 {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.report h2 .tier-tag { font-size: 9px; padding: 4px 10px; }

.report .sec-fact {
  border-left: 4px solid #2563eb;
  padding-left: 18px; margin-left: -4px;
  background: linear-gradient(90deg, rgba(37,99,235,0.04) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
  padding-top: 4px; padding-bottom: 4px; margin-bottom: 8px;
}
.report .sec-complete {
  border-left: 4px solid #4338ca;
  padding-left: 18px; margin-left: -4px;
  background: linear-gradient(90deg, rgba(67,56,202,0.06) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
  padding-top: 4px; padding-bottom: 4px; margin-bottom: 8px;
}
.report .sec-expert {
  border-left: 4px solid #f59e0b;
  padding-left: 18px; margin-left: -4px;
  background: linear-gradient(90deg, rgba(245,158,11,0.08) 0%, transparent 100%);
  border-radius: 0 8px 8px 0;
  padding-top: 4px; padding-bottom: 4px; margin-bottom: 8px;
}

.report ul.tier-list { list-style: none; padding: 0; margin: 10px 0; }
.report ul.tier-list li {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px;
  padding: 10px 12px; margin-bottom: 6px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; line-height: 1.5;
}
.report ul.tier-list li .item-text { flex: 1; min-width: 200px; }
.report ul.tier-list li.li-fact { border-color: #bfdbfe; background: #f8fbff; }
.report ul.tier-list li.li-complete { border-color: #c7d2fe; background: #f5f7ff; }
.report ul.tier-list li.li-expert { border-color: #fde68a; background: #fffdf5; }

.report .tier-note {
  font-size: 12px; color: var(--muted); font-style: italic;
  margin: -4px 0 12px; padding-left: 4px;
}

/* Capture */
.capture {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-lg);
}
.capture h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.capture p { margin: 0 0 18px; color: rgba(255,255,255,0.75); font-size: 14px; }
.capture form { display: grid; gap: 12px; }
.capture .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.capture input, .capture select, .capture textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25); color: #fff; font-size: 14px; font-family: inherit;
}
.capture input::placeholder, .capture textarea::placeholder { color: rgba(255,255,255,0.45); }
.capture button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0c1222; border: 0; padding: 14px 20px;
  border-radius: 10px; font-weight: 800; font-size: 15px; cursor: pointer;
}
.capture button:hover { filter: brightness(1.05); }
.capture .fineprint { font-size: 11px; color: rgba(255,255,255,0.5); margin: 4px 0 0; }
.capture .ok { display: none; background: rgba(5,150,105,0.3); padding: 14px; border-radius: 10px; font-size: 14px; }

.property-intro { font-size: 14px; color: #475569; margin: 0 0 16px; }
.property-intro p { margin: 0 0 10px; }

.faq { margin: 28px 0; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq details p { color: #475569; font-size: 14px; margin: 10px 0 0; }

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 24px 0;
  line-height: 1.5;
}

.site-footer {
  background: rgba(12, 18, 34, 0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}
.site-footer .wrap { padding: 24px 20px; font-size: 13px; }
.site-footer a { color: rgba(255,255,255,0.7); }

@media (max-width: 720px) {
  .stats, .steps, .cards, .tiers { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .capture .fields { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hero-band { padding: 32px 0 40px; }
}
