/* ===============================================================
   LVRD — v3 marketing surface
   Dark-first, product-led, Linear-grade. Rides on the LVRD
   foundation tokens (colors_and_type.css) under data-theme="dark".
   This file owns layout, the marketing components, the product
   frames, and motion. Product-mock internals live in v3-product.css.
   =============================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-top: 60px;
}
::selection { background: color-mix(in oklab, var(--accent) 40%, transparent); color: #fff; }

a { color: inherit; text-decoration: none; border-bottom: 0; }
img, svg, iframe { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* serif-italic pivot stays white on dark, with a faint glow of authority */
em, .serif { color: var(--fg-strong); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 14px; line-height: 1;
  padding: 11px 17px; border-radius: 9px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background var(--duration-fast) var(--easing-default),
              border-color var(--duration-fast) var(--easing-default),
              color var(--duration-fast) var(--easing-default),
              transform var(--duration-fast) var(--easing-default);
}
.btn:active { transform: translateY(0.5px); }
.btn .arr { transition: transform var(--duration-fast) var(--easing-default); }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--fg-on-accent); font-weight: 600; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--fg-strong); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--fg-subtle); background: color-mix(in oklab, var(--fg-strong) 6%, transparent); }
.btn-sm { padding: 8px 13px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 13px 22px; font-size: 15px; border-radius: 10px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint);
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px color-mix(in oklab, var(--accent) 80%, transparent);
  flex: 0 0 auto;
}
.dot.breathe { animation: lvrd-breath 2.6s var(--easing-breath) infinite; }

/* ---------- Section scaffolding ---------- */
section { padding: 120px 0; position: relative; }
.sec-head { max-width: 720px; margin: 0 0 64px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.title {
  font-size: clamp(30px, 3.9vw, 46px); line-height: 1.06; letter-spacing: -0.025em;
  font-weight: 600; color: var(--fg-strong); margin: 20px 0 0; text-wrap: balance;
}
.title em { font-style: italic; }
.lede {
  font-size: 18px; line-height: 1.6; color: var(--fg-muted);
  max-width: 58ch; margin: 20px 0 0;
}
.sec-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Ambient glow ---------- */
.glow { position: absolute; pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(50px); }
.glow-accent { background: radial-gradient(ellipse at center, color-mix(in oklab, var(--accent) 26%, transparent) 0%, transparent 62%); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}
.nav-in { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 60px; display: flex; align-items: center; gap: 36px; }
.nav .wordmark { font-family: var(--font-sans); font-weight: 900; font-size: 16px; letter-spacing: 0.16em; color: var(--fg-strong); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.nav-links > a { font-size: 13.5px; color: var(--fg-muted); padding: 7px 13px; border-radius: 999px; transition: color var(--duration-fast) var(--easing-default), background var(--duration-fast) var(--easing-default); }
.nav-links > a:hover { color: var(--fg-strong); background: var(--surface-2); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 13.5px; color: var(--fg-muted); white-space: nowrap; transition: color var(--duration-fast) var(--easing-default); }
.nav-signin:hover { color: var(--fg-strong); }
@media (max-width: 880px) { .nav-links, .nav-signin, .nav-right { display: none; } }

/* ---------- Mobile hamburger + overlay ---------- */
.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  width: 38px; height: 38px; padding: 0;
  background: transparent; border: 1px solid var(--border-strong); border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--fg-strong);
  margin: 2.5px 0; border-radius: 1px;
  transition: transform var(--duration-fast) var(--easing-default),
              opacity var(--duration-fast) var(--easing-default);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 880px) { .nav-toggle { display: inline-flex; margin-left: auto; } }

.nav-mobile { position: fixed; inset: 0; z-index: 150; }
.nav-mobile[hidden] { display: none; }
.nav-mobile-scrim {
  position: absolute; inset: 0;
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.nav-mobile-panel {
  position: absolute; top: 60px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  display: flex; flex-direction: column; gap: 2px;
  max-height: calc(100vh - 60px); overflow-y: auto;
}
.nav-mobile-panel a {
  display: block; padding: 16px 4px;
  font-size: 17px; color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: color var(--duration-fast) var(--easing-default);
}
.nav-mobile-panel a:hover { color: var(--fg-strong); }
.nav-mobile-panel a:last-child { border-bottom: 0; }
.nav-mobile-cta {
  margin-top: 18px; justify-content: center; padding: 14px 18px !important;
  border-bottom: 0 !important; color: var(--fg-on-accent) !important;
}
@media (min-width: 881px) { .nav-mobile { display: none !important; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 132px 0 0; text-align: center; overflow: hidden; }
.hero-glow { top: -260px; left: 50%; transform: translateX(-50%); width: 1200px; height: 820px; }
.hero-in { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(42px, 6.2vw, 82px); line-height: 1.1; letter-spacing: -0.035em;
  font-weight: 600; color: var(--fg-strong); margin: 0; text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.hero-sub { font-size: 20px; line-height: 1.5; color: var(--fg-muted); max-width: 48ch; margin: 26px auto 0; text-wrap: pretty; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-trust { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--fg-faint); }
.hero-shot-wrap { position: relative; z-index: 2; margin-top: 80px; padding-bottom: 0; }
.hero-shot-glow { top: 60px; left: 50%; transform: translateX(-50%); width: 1100px; height: 560px; opacity: 0.7; }
.hero-shot { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; }
/* fade the bottom of the hero shot into the canvas */
.hero-shot-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg)); z-index: 3; pointer-events: none;
}
/* The operator-desktop mock collapses below 780px and doesn't read well on
   phones — hide the whole hero shot at mobile widths. */
@media (max-width: 780px) {
  .hero { padding-bottom: 48px; }
  .hero-shot-wrap { display: none; }
}

/* ============================================================
   PRODUCT FRAME (browser chrome)
   ============================================================ */
.frame {
  border: 1px solid var(--border-strong); border-radius: 14px; overflow: hidden;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset,
              0 50px 130px -50px rgba(0,0,0,0.75),
              0 24px 60px -40px rgba(0,0,0,0.6);
}
.frame-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.frame-dots { display: flex; gap: 7px; }
.frame-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--smoke-700); display: block; }
.frame-url {
  margin: 0 auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint);
  background: var(--bg); border: 1px solid var(--border); padding: 4px 14px; border-radius: 7px;
}
.frame-spacer { width: 54px; flex: 0 0 auto; }

/* ============================================================
   FEATURE ROWS (alternating)
   ============================================================ */
.frows { display: flex; flex-direction: column; gap: 120px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.frow.rev .frow-media { order: -1; }
.frow-copy .eyebrow { margin-bottom: 18px; }
.frow-copy h3 { font-size: clamp(26px, 2.8vw, 34px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; color: var(--fg-strong); margin: 0; }
.frow-copy h3 em { font-style: italic; }
.frow-copy p { font-size: 17px; line-height: 1.6; color: var(--fg-muted); margin: 18px 0 0; max-width: 46ch; }
.frow-points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.frow-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--fg); }
.frow-points .pk { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; color: var(--accent); }
.frow-media { position: relative; }
.frow-media .glow { inset: 10% -6% 6% -6%; opacity: 0.5; }
@media (max-width: 900px) {
  .frow { grid-template-columns: 1fr; gap: 40px; }
  .frow.rev .frow-media { order: 0; }
  .frows { gap: 88px; }
}

/* ============================================================
   BENTO
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 184px; gap: 14px; }
.bento-card {
  position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 16px;
  background: var(--surface); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--duration-default) var(--easing-default), background var(--duration-default) var(--easing-default);
}
.bento-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.bento-card.lg { grid-column: span 2; grid-row: span 2; }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); display: inline-flex; align-items: center; gap: 8px; }
.bento-card h3 { font-size: 19px; line-height: 1.25; font-weight: 600; color: var(--fg-strong); margin: 0; }
.bento-card.lg h3 { font-size: 26px; letter-spacing: -0.02em; }
.bento-card p { font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.bento-card .spacer { flex: 1; }
.bento-stat { font-size: 52px; line-height: 1; font-weight: 700; letter-spacing: -0.03em; color: var(--fg-strong); }
.bento-stat .u { font-size: 18px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0; margin-left: 6px; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-card, .bento-card.lg, .bento-card.wide { grid-column: span 1; grid-row: span 1; } }

/* ============================================================
   NARRATIVE BEAT (the one emotional moment)
   ============================================================ */
.beat { position: relative; overflow: hidden; }
.beat-glow { bottom: -300px; left: 50%; transform: translateX(-50%); width: 1000px; height: 600px; opacity: 0.5; }
.beat-in { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; }
.beat h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.12; letter-spacing: -0.025em; font-weight: 600; color: var(--fg-strong); margin: 22px 0 0; text-wrap: balance; }
.beat h2 em { font-style: italic; }
.hats { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left; }
.hat { border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; background: var(--surface); position: relative; }
.hat .hn { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); }
.hat h4 { font-size: 18px; font-weight: 600; color: var(--fg-strong); margin: 14px 0 8px; }
.hat h4 em { font-style: italic; }
.hat p { font-size: 14px; line-height: 1.5; color: var(--fg-muted); margin: 0; }
.hat .tagline { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-faint); display: inline-flex; align-items: center; gap: 7px; }
.hat.yours { border-color: color-mix(in oklab, var(--accent) 45%, var(--border)); background: color-mix(in oklab, var(--accent) 9%, var(--surface)); }
.hat.yours .tagline { color: var(--accent); }
.beat-close { margin: 44px auto 0; font-size: 19px; line-height: 1.5; color: var(--fg-muted); max-width: 48ch; }
.beat-close em { font-style: italic; color: var(--fg-strong); }
@media (max-width: 760px) { .hats { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.price-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }
.price-card {
  border: 1px solid var(--border-strong); border-radius: 18px; background: var(--surface);
  padding: 36px; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.price-card.feature { border-color: color-mix(in oklab, var(--accent) 40%, var(--border-strong)); }
.price-card .glow { top: -160px; right: -120px; width: 360px; height: 360px; opacity: 0.5; }
.price-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 9px; color: var(--fg-strong); }
.price-amount .num { font-size: 56px; line-height: 1; font-weight: 700; letter-spacing: -0.035em; }
.price-amount .per { font-size: 15px; color: var(--fg-muted); font-weight: 500; }
.price-name { font-size: 17px; font-weight: 600; color: var(--fg-strong); margin: 18px 0 0; }
.price-desc { font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); margin: 8px 0 0; }
.price-usage { margin-top: 14px; font-family: var(--font-mono); font-size: 12px; line-height: 1.5; color: var(--fg-subtle); }
.price-incl { list-style: none; margin: 24px 0 0; padding: 24px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.price-incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; color: var(--fg); }
.price-incl .pk { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; color: var(--accent); }
.price-card .price-cta { margin-top: 28px; }
.price-card.feature .price-cta { margin-top: auto; padding-top: 28px; }
.price-foot { margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); }
.price-guars { display: flex; flex-direction: column; gap: 18px; margin-top: 22px; }
.price-guar .gl { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-strong); margin-bottom: 5px; }
.price-guar p { font-size: 13.5px; line-height: 1.5; color: var(--fg-muted); margin: 0; }
@media (max-width: 860px) { .price-wrap { grid-template-columns: 1fr; } }

/* ---------- One offer, two stages ---------- */
.plan { max-width: 1000px; margin: 0 auto; border: 1px solid var(--border-strong); border-radius: 20px; background: var(--surface); overflow: hidden; position: relative; }
.plan > * { position: relative; z-index: 1; }
.plan .glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 720px; height: 360px; opacity: 0.4; }
.plan-stages { display: grid; grid-template-columns: 1fr auto 1fr; }
.plan-stage { padding: 38px 38px 34px; display: flex; flex-direction: column; }
.plan-step { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 20px; }
.plan-step .i { width: 19px; height: 19px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--fg-strong); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.plan-mini { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan-mini li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.4; color: var(--fg-muted); }
.plan-mini li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.plan-then { display: flex; flex-direction: column; align-items: center; }
.plan-then .ln { flex: 1; width: 1px; background: var(--border); }
.plan-then span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px; background: var(--surface); margin: 12px 0; }
.plan-deck { border-top: 1px solid var(--border); padding: 32px 38px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; }
.plan-deck .price-incl { margin: 0; padding: 0; border-top: 0; }
.deck-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 18px; }
.price-incl.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.plan-cta { border-top: 1px solid var(--border); padding: 26px 38px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.plan-cta .price-cta-meta { max-width: 42ch; }
@media (max-width: 820px) {
  .plan-stages { grid-template-columns: 1fr; }
  .plan-stage { padding-bottom: 8px; }
  .plan-then + .plan-stage { padding-top: 8px; }
  .plan-then { flex-direction: row; padding: 4px 38px; }
  .plan-then .ln { width: auto; height: 1px; }
  .plan-then span { margin: 0 12px; }
  .plan-deck { grid-template-columns: 1fr; gap: 28px; }
  .price-incl.two { grid-template-columns: 1fr; }
  .plan-cta { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   SECURITY
   ============================================================ */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sec-card { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; }
.sec-ico { width: 30px; height: 30px; color: var(--accent); }
.sec-card h3 { font-size: 16px; font-weight: 600; color: var(--fg-strong); margin: 4px 0 0; line-height: 1.3; }
.sec-card p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.sec-infra { margin-top: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); padding: 22px 26px; display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; }
.sec-infra .il { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
.sec-infra p { margin: 0; font-size: 15px; color: var(--fg-muted); max-width: 72ch; }
.sec-infra em { font-style: italic; color: var(--fg-strong); }
@media (max-width: 920px) { .sec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sec-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.close { text-align: center; overflow: hidden; }
.close-glow { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1000px; height: 600px; opacity: 0.6; }
.close-in { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.close h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 600; color: var(--fg-strong); margin: 22px 0 0; text-wrap: balance; }
.close h2 em { font-style: italic; }
.close p { font-size: 19px; line-height: 1.55; color: var(--fg-muted); margin: 22px auto 0; max-width: 50ch; }
.close-cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.close-meta { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 72px 0 40px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .wordmark { font-family: var(--font-sans); font-weight: 900; font-size: 20px; letter-spacing: 0.16em; color: var(--fg-strong); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); max-width: 32ch; margin: 16px 0 0; }
.footer-status { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); font-weight: 500; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); transition: color var(--duration-fast) var(--easing-default); }
.footer-col a:hover { color: var(--fg-strong); }
.footer-base { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-base span { font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }

/* ============================================================
   MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--easing-default), transform 0.7s var(--easing-default); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .dot.breathe { animation: none; }
}
