/**
 * Dashoo Marketing Site — Redesign
 * Token-faithful. Punchy. Built for conversion.
 */

/* ─── Tokens ─── */
:root {
  --ink-0: #08090A; --ink-1: #0B0E13; --ink-2: #11151C; --ink-3: #1A1F28;
  --line: #232932; --line-2: #2E353F;
  --text: #F4F5F7; --text-2: #B4B8C1; --text-3: #6B7280;
  --navy: #0B1F3A;
  --brand: #3B82F6; --brand-2: #60A5FA; --brand-3: #93C5FD;
  --paper: #F8FAFC;
  --rec: #FF3B30;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --nav-h: 64px;
  --r: 18px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink-1); color: var(--text);
  font-family: var(--font); -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em; line-height: 1.55; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ─── Layout ─── */
.shell { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .shell { padding: 0 20px; } }

/* ─── Typography ─── */
.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px;
  background: var(--brand); box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
}

/* ─── Wordmark ─── */
.wordmark {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-weight: 600;
  letter-spacing: -0.04em; white-space: nowrap; line-height: 1;
}
.wordmark .lens {
  display: inline-grid; place-items: center;
  border-radius: 99px; border: 0.14em solid currentColor;
  width: 0.8em; height: 0.8em;
  margin-left: 0.05em; margin-right: 0.02em;
  position: relative; transform: translateY(0.04em);
}
.wordmark .lens::after {
  content: ""; width: 0.32em; height: 0.32em; border-radius: 99px; background: currentColor;
}
.wordmark.rec .lens:first-of-type::after { background: var(--rec); }
.wordmark .lens + .lens { margin-left: 0.04em; }

/* ─── Buttons ─── */
.btn {
  padding: 13px 22px; border-radius: 99px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn.primary { background: white; color: var(--ink-0); }
.btn.primary:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn.ghost:hover { border-color: var(--brand-2); color: var(--brand-2); }

/* ─── Section head ─── */
.section-head { text-align: center; max-width: 58ch; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px); line-height: 1.08;
  letter-spacing: -0.025em; font-weight: 600; margin-bottom: 16px;
}
.section-head p { color: var(--text-2); font-size: 17px; line-height: 1.55; }

/* ─── Nav ─── */
nav.top {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(11,14,19,0.55);
  backdrop-filter: saturate(1.8) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.top.scrolled {
  background: rgba(11,14,19,0.85);
  border-bottom-color: var(--line);
}
nav.top .inner {
  height: 100%; max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 720px) { nav.top .inner { padding: 0 20px; } }
nav.top .brand { display: flex; align-items: center; gap: 10px; }
nav.top .brand .wordmark { font-size: 18px; color: var(--text); }
nav.top .links { display: flex; gap: 24px; font-size: 13px; color: var(--text-2); }
nav.top .links a { transition: color 0.15s; }
nav.top .links a:hover { color: var(--text); }
nav.top .nav-cta {
  background: var(--brand); color: white; padding: 8px 16px; border-radius: 99px;
  font-size: 13px; font-weight: 500; transition: background 0.15s; white-space: nowrap;
}
nav.top .nav-cta:hover { background: #2D6FE0; }
@media (max-width: 720px) { nav.top .links { display: none; } }

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  background:
    radial-gradient(55% 70% at 80% 30%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(35% 50% at 5% 95%, rgba(11,31,58,0.6), transparent 60%),
    var(--ink-0);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(65% 65% at 50% 40%, #000 30%, transparent 80%);
}
.hero-inner {
  position: relative; width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 0 20px; } }

.hero .copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(46px, 6.5vw, 80px); line-height: 0.98;
  letter-spacing: -0.038em; font-weight: 600; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--brand-2); }
.hero .lede {
  font-size: 18px; line-height: 1.55; color: var(--text-2);
  max-width: 44ch; margin-bottom: 36px; letter-spacing: -0.012em;
}
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero .meta-row {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
}
.hero .meta-row span b { color: var(--text-2); font-weight: 500; margin-right: 4px; }

/* ─── Phone (shared) ─── */
.phone {
  width: 280px; aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1c1f26, #0d0f13);
  border-radius: 42px; padding: 5px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone .screen {
  width: 100%; height: 100%; background: #0A0D12;
  border-radius: 38px; position: relative; overflow: hidden;
}
.phone .notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 24px; background: #000; border-radius: 99px; z-index: 10;
}

/* ─── Record screen ─── */
.s-record { position: absolute; inset: 0; overflow: hidden; }
.s-record .feed {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 46%, rgba(0,0,0,0.9) 100%),
    url("assets/dashcam-frame.jpg") center/cover no-repeat;
}
.s-record .rec-pill {
  position: absolute; top: 50px; left: 14px; z-index: 5;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,59,48,0.4);
  padding: 5px 12px 5px 9px; border-radius: 99px;
  font-size: 10px; font-weight: 600; color: #FF6E66;
  display: flex; align-items: center; gap: 7px;
  backdrop-filter: blur(8px); font-family: var(--mono); letter-spacing: 0.04em;
}
.s-record .rec-pill .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--rec);
  box-shadow: 0 0 0 3px rgba(255,59,48,0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
.s-record .gear-btn {
  position: absolute; top: 47px; right: 14px; z-index: 5;
  width: 30px; height: 30px; border-radius: 99px;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: #fff;
}
.s-record .info {
  position: absolute; left: 16px; bottom: 80px; z-index: 5; color: white;
}
.s-record .info .road {
  font-family: var(--mono); font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.58); margin-bottom: 4px;
}
.s-record .info .speed {
  display: flex; align-items: baseline; gap: 4px; font-family: var(--mono); font-weight: 600;
}
.s-record .info .speed .num { font-size: 44px; line-height: 1; letter-spacing: -0.03em; }
.s-record .info .speed .unit { font-size: 13px; color: var(--brand-2); }
.s-record .controls {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px; z-index: 5;
}
.s-record .ibtn {
  width: 38px; height: 38px; border-radius: 99px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center; color: #fff;
}
.s-record .stopbtn {
  width: 56px; height: 56px; border-radius: 99px;
  border: 3.5px solid white; display: grid; place-items: center;
  box-shadow: 0 0 18px rgba(255,59,48,0.4);
}
.s-record .stopbtn .sq { width: 20px; height: 20px; border-radius: 6px; background: var(--rec); }

/* ─── Gallery screen ─── */
.s-gallery {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--ink-1); display: flex; flex-direction: column;
}
.g-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 52px 16px 10px;
}
.g-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.g-count { font-family: var(--mono); font-size: 10px; color: var(--text-3); }
.g-tabs {
  display: flex; gap: 6px; padding: 0 16px 12px;
}
.g-tab {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  color: var(--text-3); background: var(--ink-3); border: 1px solid var(--line);
  cursor: pointer;
}
.g-tab.active { color: var(--brand-2); background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); }
.g-tab.crash-tab { color: #FF6E66; background: rgba(255,59,48,0.08); border-color: rgba(255,59,48,0.2); }
.g-list { flex: 1; overflow: hidden; }
.g-clip {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.g-clip.dim-clip { opacity: 0.5; }
.g-thumb {
  width: 60px; height: 40px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(180deg, #3a5a7a 0%, #5a6a7a 45%, #2a3a4a 100%);
}
.crash-thumb {
  background: linear-gradient(180deg, #5a2020 0%, #7a3030 45%, #3a1010 100%);
}
.flag-thumb {
  background: linear-gradient(180deg, #4a4020 0%, #6a5a30 45%, #3a3010 100%);
}
.dim-thumb {
  background: linear-gradient(180deg, #1a2a3a 0%, #2a3a4a 45%, #1a1a2a 100%);
}
.g-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.g-badge {
  font-family: var(--mono); font-size: 8px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px;
  display: inline-block; padding: 1px 5px;
}
.crash-badge { color: #FF6E66; background: rgba(255,59,48,0.12); }
.flag-badge { color: #F59E0B; background: rgba(245,158,11,0.12); }
.g-time { font-size: 11px; font-weight: 500; color: var(--text); }
.g-road { font-family: var(--mono); font-size: 9px; color: var(--text-3); }
.g-dur { font-family: var(--mono); font-size: 9px; color: var(--text-3); margin-top: 1px; }

/* ─── Hero phone ─── */
.hero .visual { display: grid; place-items: center; }
.hero-phone {
  animation: phoneIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes phoneIn {
  from { opacity: 0; transform: translateY(48px) rotate(-1deg); }
  to   { opacity: 1; transform: translateY(0)   rotate(0deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ─── Proof strip ─── */
.proof {
  background: var(--ink-0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.proof .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; align-items: center; flex: 1; }
.proof-val { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--text); }
.proof-lbl { font-family: var(--mono); font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.proof-div { width: 1px; height: 32px; background: var(--line); flex-shrink: 0; }
@media (max-width: 640px) { .proof-div { display: none; } .proof-item { min-width: 45%; } }

/* ─── How it works ─── */
.hiw { background: var(--ink-0); padding: 96px 0; }
.hiw .section-head { margin-bottom: 64px; }
.hiw .section-head h2 { font-size: clamp(32px, 4vw, 52px); }
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 820px; margin: 0 auto;
}
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; gap: 14px;
}
.step-n {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--brand-2);
}
.step-ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--ink-2); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--brand-2);
}
.step h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.step p { font-size: 14px; color: var(--text-2); line-height: 1.55; max-width: 22ch; }
.step-arrow {
  color: var(--line-2); flex-shrink: 0; margin-top: 36px; padding: 0 4px;
}
@media (max-width: 680px) {
  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-arrow { transform: rotate(90deg); }
}

/* ─── Features ─── */
.features { background: var(--ink-1); padding: 96px 0; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 920px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, border-color 0.25s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.feature-card .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.18);
  display: grid; place-items: center; color: var(--brand-2);
}
.feature-card .ico.pro-ico {
  background: rgba(96,165,250,0.08); border-color: rgba(96,165,250,0.15);
}
.feature-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.feature-card p { color: var(--text-2); font-size: 14px; line-height: 1.55; }
.pro-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--brand-2);
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  padding: 2px 6px; border-radius: 4px;
}

/* ─── Showcase ─── */
.showcase { background: var(--ink-0); padding: 96px 0; }
.showcase-phones {
  display: flex; justify-content: center; gap: 40px; align-items: flex-start; flex-wrap: wrap;
}
.sc-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.sc-phone-wrap:first-child { transform: translateY(-20px); }
.sc-phone-wrap:last-child { transform: translateY(20px); }
.sc-phone { width: 230px; }
.sc-phone .notch { width: 70px; height: 20px; top: 6px; }
.sc-label { text-align: center; }
.sc-label-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-2);
  display: block; margin-bottom: 6px;
}
.sc-label p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ─── Pricing ─── */
.pricing { background: var(--ink-1); padding: 96px 0; position: relative; overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(55% 45% at 50% 0%, rgba(59,130,246,0.12), transparent 70%);
}
.pricing-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

.price-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, var(--ink-2) 60%, rgba(59,130,246,0.06) 100%);
}
.feat-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: white;
  padding: 4px 12px; border-radius: 99px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.tier-name {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-3);
  margin-bottom: 16px;
}
.price {
  font-size: 42px; font-weight: 600; letter-spacing: -0.025em; line-height: 1;
  margin-bottom: 4px;
}
.price .mo { font-size: 14px; color: var(--text-3); font-weight: 400; font-family: var(--mono); }
.price-sub {
  font-family: var(--mono); font-size: 10px; color: var(--text-3);
  letter-spacing: 0.06em; margin-bottom: 24px; text-transform: uppercase;
}
.perks { list-style: none; flex: 1; margin-bottom: 24px; }
.perks li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--line);
}
.perks li:last-child { border-bottom: 0; }
.perks li.off { opacity: 0.45; }
.perks li b { color: var(--text); font-weight: 600; }
.chk {
  width: 16px; height: 16px; border-radius: 99px; flex-shrink: 0; margin-top: 1px;
  background: rgba(59,130,246,0.14); border: 1px solid rgba(59,130,246,0.22);
  display: grid; place-items: center;
}
.chk::before {
  content: ""; width: 5px; height: 5px;
  background: var(--brand-2); border-radius: 99px;
}
.xmark {
  width: 16px; height: 16px; border-radius: 99px; flex-shrink: 0; margin-top: 1px;
  background: var(--ink-3); display: grid; place-items: center; color: var(--text-3);
  font-size: 10px; line-height: 1;
}
.xmark::before { content: "×"; }
.price-btn {
  display: block; text-align: center; padding: 13px;
  border-radius: 14px; font-size: 14px; font-weight: 600;
  background: var(--ink-3); color: var(--text); border: 1px solid var(--line);
  transition: background 0.15s, border-color 0.15s;
}
.price-btn:hover { background: var(--ink-1); border-color: var(--line-2); }
.featured-btn { background: var(--brand); color: white; border-color: transparent; }
.featured-btn:hover { background: #2D6FE0; }

/* ─── Final CTA ─── */
.final-cta {
  background: var(--ink-0); padding: 112px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 99px;
  background: radial-gradient(circle, rgba(59,130,246,0.14), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative; text-align: center; max-width: 540px; margin: 0 auto;
}
.cta-inner .eyebrow { margin-bottom: 20px; }
.cta-inner h2 {
  font-size: clamp(34px, 5vw, 58px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.04; margin-bottom: 18px;
}
.cta-inner p { font-size: 17px; color: var(--text-2); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ ─── */
.faq { background: var(--ink-1); padding: 96px 0; }
.faq-shell { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  font-size: 17px; font-weight: 500; letter-spacing: -0.012em;
  padding: 22px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text); transition: color 0.15s; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--mono); font-size: 22px;
  color: var(--text-3); transition: transform 0.3s, color 0.15s;
  line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--brand-2); }
.faq-item summary:hover { color: var(--brand-2); }
.faq-body { padding: 0 40px 22px 0; }
.faq-body p { color: var(--text-2); font-size: 15px; line-height: 1.6; }
.faq-body b { color: var(--text); }

/* ─── Footer ─── */
footer { background: var(--ink-0); padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .wordmark { font-size: 22px; color: var(--text); }
.brand-col p { color: var(--text-3); font-size: 13px; line-height: 1.6; max-width: 34ch; }
.fcol h4 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-3); margin-bottom: 14px;
}
.fcol ul { list-style: none; display: grid; gap: 10px; }
.fcol a { font-size: 13px; color: var(--text-2); transition: color 0.15s; }
.fcol a:hover { color: var(--brand-2); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ─── Scroll reveal animations ─── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition:
    opacity 0.55s calc(var(--i, 0) * 90ms) ease,
    transform 0.55s calc(var(--i, 0) * 90ms) ease;
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ─── Keyframes ─── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
