/*
//  styles.css
//  Bleek Vision Website
//
//  Created by Shabaka Malik Banks on 5/29/26.
//  Copyright © 2026 Bleek Vision LLC. All rights reserved.
*/

/* ──────────────────────────  TOKENS  ────────────────────────── */
:root {
  --bg: #121418;
  --bg-soft: #161922;
  --panel: #171A20;
  --panel-hi: #1C2028;
  --ink: #D6DBE3;
  --silver: #C8CDD7;
  --mute: #7A8493;
  --mute-deep: #4E5A6B;
  --rule: rgba(214, 219, 227, 0.08);
  --rule-hi: rgba(214, 219, 227, 0.14);
  --accent: #89A1C3;
  --accent-deep: #5C7090;
  --accent-soft: rgba(137, 161, 195, 0.18);
  --live: #7EC8A0;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: ui-serif, "New York", "Charter", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.shell {
  position: relative;
  overflow: hidden;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ──────────────────────────  KEYFRAMES  ────────────────────────── */
@keyframes v5-aurora-1 { 0%, 100% { transform: translate3d(-10%, -6%, 0) scale(1); } 50% { transform: translate3d(8%, 6%, 0) scale(1.15); } }
@keyframes v5-aurora-2 { 0%, 100% { transform: translate3d(12%, 8%, 0) scale(1.1); } 50% { transform: translate3d(-6%, -8%, 0) scale(.95); } }
@keyframes v5-pulse { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes v5-pulse-ring { 0% { transform: scale(.8); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }
@keyframes v5-fadeup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.v5-fadeup { animation: v5-fadeup .9s cubic-bezier(.2, .7, .2, 1) both; }
.v5-d1 { animation-delay: .05s; }
.v5-d2 { animation-delay: .18s; }
.v5-d3 { animation-delay: .32s; }
.v5-d4 { animation-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ──────────────────────────  STATUS DOT  ────────────────────────── */
.dot {
  position: relative;
  width: 6px;
  height: 6px;
  display: inline-block;
  flex: 0 0 auto;
}
.dot .core {
  position: absolute;
  inset: 0;
  border-radius: 980px;
}
.dot--live .core { background: var(--live); animation: v5-pulse 1.8s ease-in-out infinite; }
.dot--work .core { background: var(--accent); }
.dot--mute .core { background: var(--mute-deep); }
.dot--live .ring {
  position: absolute;
  inset: 0;
  border-radius: 980px;
  border: 1px solid var(--live);
  animation: v5-pulse-ring 2.4s ease-out infinite;
}
/* a card-local "work" dot uses the card's own accent */
.card .dot--work .core { background: var(--w-accent); }

/* ──────────────────────────  CTA  ────────────────────────── */
.cta {
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.cta:hover { transform: translateY(-1px); }

/* ──────────────────────────  NAV  ────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--rule);
  background: rgba(18, 20, 24, 0.88);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.nav__logo img { height: 72px; width: auto; display: block; }
.nav__right { display: flex; align-items: center; gap: 28px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: -0.005em;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-width .45s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
}
.nav__links a { color: inherit; text-decoration: none; white-space: nowrap; transition: color .25s; }
.nav__links a:hover { color: var(--ink); }
.nav.is-open .nav__links { max-width: 360px; opacity: 1; pointer-events: auto; }

.nav__toggle {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  align-items: flex-end;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
  transition: transform .35s ease, opacity .2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────  ANIMATED WORDMARK  ────────────────────────── */
@keyframes wm-letter-in {
  from { opacity: 0; transform: translateY(28px) scale(0.93); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0);    }
}
@keyframes wm-vision-in {
  from { opacity: 0; letter-spacing: 0.72em; filter: blur(6px); }
  to   { opacity: 1; letter-spacing: 0.52em; filter: blur(0);   }
}
@keyframes wm-vision-pulse {
  0%, 100% { text-shadow: none;                                       opacity: 1;   }
  50%       { text-shadow: 0 0 28px rgba(137,161,195,0.55);           opacity: 0.82; }
}

.hero__wordmark {
  margin-bottom: 40px;
}
.hero__wm-bleek {
  font-family: 'Outfit', var(--font);
  font-weight: 800;
  font-size: clamp(72px, 10vw, 148px);
  color: var(--silver);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.hero__wm-bleek span {
  display: inline-block;
  animation: wm-letter-in 0.75s cubic-bezier(.15,.7,.2,1) both;
}
.hero__wm-bleek span:nth-child(1) { animation-delay: 0.00s; }
.hero__wm-bleek span:nth-child(2) { animation-delay: 0.07s; }
.hero__wm-bleek span:nth-child(3) { animation-delay: 0.14s; }
.hero__wm-bleek span:nth-child(4) { animation-delay: 0.21s; }
.hero__wm-bleek span:nth-child(5) { animation-delay: 0.28s; }

.hero__wm-vision {
  font-family: 'Outfit', var(--font);
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 34px);
  color: var(--accent);
  letter-spacing: 0.52em;
  text-indent: 0.52em; /* offset trailing letter-spacing so it appears visually centred */
  text-align: center;
  margin-top: 8px;
  animation:
    wm-vision-in 0.9s cubic-bezier(.2,.7,.2,1) 0.38s both,
    wm-vision-pulse 3.5s ease-in-out 1.4s infinite;
}

/* ──────────────────────────  HERO  ────────────────────────── */
.hero {
  position: relative;
  padding: 140px 32px 150px;
  text-align: center;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 35%, transparent 75%);
          mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, #000 35%, transparent 75%);
  opacity: .5;
}
.hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(52px, 7.2vw, 104px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--silver);
}
.hero h1 .accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--mute);
  max-width: 720px;
  margin: 36px auto 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__actions {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  appearance: none;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn--solid { border: none; background: var(--silver); color: var(--bg); padding: 14px 28px; }
.btn--solid:hover { background: #fff; }
.btn--ghost { border: 1px solid var(--rule-hi); background: transparent; color: var(--ink); padding: 14px 26px; }
.btn--ghost:hover { border-color: var(--accent); }

/* ──────────────────────────  AURORA  ────────────────────────── */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.aurora .b1 { left: 14%; top: 12%; width: 560px; height: 560px; background: rgba(137, 161, 195, 0.32); animation: v5-aurora-1 26s ease-in-out infinite; }
.aurora .b2 { left: 68%; top: 8%;  width: 460px; height: 460px; background: rgba(137, 161, 195, 0.20); animation: v5-aurora-2 34s ease-in-out infinite; }
.aurora .b3 { left: 40%; top: 60%; width: 620px; height: 620px; background: rgba(92, 112, 144, 0.22); animation: v5-aurora-1 30s ease-in-out infinite; }

/* ──────────────────────────  WORK / SLATE  ────────────────────────── */
.work { padding: 120px 32px; border-top: 1px solid var(--rule); }
.work__head { margin-bottom: 56px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-bottom: 22px;
}
.work h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
  color: var(--silver);
  max-width: 820px;
}
.slate { display: flex; flex-direction: column; gap: 24px; }

/* ──────────────────────────  PRODUCT CARD  ────────────────────────── */
.card {
  position: relative;
  overflow: hidden;
  background: var(--w-bg);
  color: var(--w-text);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* copy | mount (image right) */
  gap: 56px;
  align-items: stretch;
  min-height: 620px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.card:hover { transform: translateY(-2px); }
.card--img-left { grid-template-columns: 0.85fr 1.15fr; } /* mount | copy */

/* faint accent dot-grid texture */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--w-accent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.07;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}

.card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--w-accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.card__title {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  color: var(--w-text);
}
.card--mono .card__title { font-family: var(--font-mono); }
.card__subtitle {
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--w-accent);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 10px;
  margin-bottom: 22px;
}
.card__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--w-muted);
  margin-bottom: 28px;
  max-width: 480px;
  text-align: justify;
}
.card__meta {
  font-size: 12px;
  color: var(--w-muted);
  font-family: var(--font-mono);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 980px;
  background: var(--w-cta-bg);
  color: var(--w-cta-text);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
}

.card__mount {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__glow {
  position: absolute;
  width: 360px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--w-accent) 15%, transparent), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.card__frame {
  position: relative;
  height: 560px;
  border-radius: 28px;
  background: var(--w-mount);
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: inline-block;
}
.card__frame img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* ── product worlds ── */
.card--madweather {
  --w-bg: #0F1B2D; --w-surface: #172538; --w-text: #FFFFFF; --w-muted: rgba(255,255,255,0.62);
  --w-accent: #FFB142; --w-accent-deep: #A86A1B; --w-mount: #0B1422; --w-cta-bg: #FFB142; --w-cta-text: #1A0F00;
}
.card--focusdeck {
  --w-bg: #0A0907; --w-surface: #15120C; --w-text: #E8C772; --w-muted: rgba(232,199,114,0.55);
  --w-accent: #F2D27A; --w-accent-deep: #A88A3E; --w-mount: #050402; --w-cta-bg: #E8C772; --w-cta-text: #0A0907;
}
.card--uncontained {
  --w-bg: #0B0805; --w-surface: #151008; --w-text: #FFFFFF; --w-muted: rgba(255,255,255,0.62);
  --w-accent: #FF7A1A; --w-accent-deep: #A84A0A; --w-mount: #050302; --w-cta-bg: #FF7A1A; --w-cta-text: #0A0805;
}
.card--momknows {
  --w-bg: #F5EDE3; --w-surface: #FFF8EF; --w-text: #2A1A12; --w-muted: rgba(42,26,18,0.6);
  --w-accent: #C5532A; --w-accent-deep: #7A2E14; --w-mount: #E8DDD0; --w-cta-bg: #C5532A; --w-cta-text: #FFFFFF;
}
.card--cipher {
  --w-bg: #04100A; --w-surface: #0A1A12; --w-text: #5BF08C; --w-muted: rgba(91,240,140,0.58);
  --w-accent: #36F07A; --w-accent-deep: #1B9E4E; --w-mount: #020805; --w-cta-bg: #36F07A; --w-cta-text: #03130A;
}

/* ──────────────────────────  FOUNDER  ────────────────────────── */
.founder {
  position: relative;
  overflow: hidden;
  padding: 140px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.founder__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(137, 161, 195, 0.14), transparent 70%);
  filter: blur(90px);
  animation: v5-aurora-1 32s ease-in-out infinite;
  pointer-events: none;
}
.founder__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.founder__kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder h2 {
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
  color: var(--silver);
}
.founder__facts {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--mute);
  letter-spacing: 0.06em;
}
.founder__facts .row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; }
.founder__facts .k { color: var(--mute); }
.founder__facts .v { color: var(--silver); }
.founder__portrait {
  position: relative;
  margin: 40px 0 0;
  max-width: 260px;
}
.founder__portrait::before {
  /* periwinkle halo behind the figure */
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 80%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--accent-soft), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.founder__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.97)
          drop-shadow(0 10px 34px rgba(137, 161, 195, 0.22));
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

.founder__lead {
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--silver);
  margin: 0;
  letter-spacing: -0.015em;
  text-align: justify;
}
.founder__body {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--mute);
  margin-top: 22px;
  letter-spacing: -0.01em;
  max-width: 640px;
  text-align: justify;
}
.founder__sig {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--mute);
}
.founder__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--silver);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 980px;
  border: 1px solid var(--rule-hi);
}
.founder__link:hover { border-color: var(--accent); }

/* ──────────────────────────  FOOTER  ────────────────────────── */
.footer { background: var(--bg); }
.footer__cols {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer__brand img { height: 80px; width: auto; display: block; margin-left: -8px; }
.footer__wordmark {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}
.footer__wm-bleek {
  display: block;
  font-family: 'Outfit', var(--font);
  font-weight: 800;
  font-size: 30px;
  color: var(--silver);
  letter-spacing: 0.08em;
  line-height: 1;
}
.footer__wm-vision {
  display: block;
  font-family: 'Outfit', var(--font);
  font-weight: 300;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  margin-top: 4px;
}
.footer__tagline {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin-top: 18px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col .links { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .25s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 32px 64px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--mute);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* ──────────────────────────  RESPONSIVE  ────────────────────────── */

/* Desktop — always show nav links, hide hamburger */
@media (min-width: 769px) {
  .nav__links {
    max-width: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    transition: none;
  }
  .nav__toggle { display: none; }
}

@media (max-width: 920px) {
  .card,
  .card--img-left {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    min-height: 0;
  }
  /* image always below copy on small screens */
  .card__copy { order: 1; }
  .card__mount { order: 2; }
  .card__frame { height: 460px; }
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .hero { padding: 96px 24px 100px; }
  .work { padding: 88px 24px; }
  .founder { padding: 96px 24px; }
  .wrap, .nav__inner, .work, .founder__inner, .footer__cols, .footer__bar { padding-left: 24px; padding-right: 24px; }
  .card, .card--img-left { padding: 32px 24px; }
  .card__frame { height: 380px; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .nav__logo img { height: 56px; }
}

/* ──────────────────────────  LEGAL PAGES  ────────────────────────── */
.legal-header {
  padding: 100px 32px 64px;
  border-bottom: 1px solid var(--rule);
}
.legal-header .eyebrow { margin-bottom: 20px; }
.legal-header h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--silver);
  margin: 0 0 12px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.legal-body {
  padding: 72px 32px 120px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--silver);
  margin: 52px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.005em;
  margin: 28px 0 8px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mute);
  margin: 0 0 16px;
  text-align: justify;
}
.legal-body ul, .legal-body ol {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mute);
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-body li { margin-bottom: 5px; }
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mute);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  transition: color .2s;
}
.legal-back:hover { color: var(--silver); }
.legal-divider {
  border: none;
  border-top: 1px solid var(--rule-hi);
  margin: 64px 0;
  position: relative;
}
.legal-divider::after {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--bg);
  padding-right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mute-deep);
}
.legal-app-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--rule-hi);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 0 6px 8px 0;
}

/* ──────────────────────────  GHOST CTA (coming-soon cards)  ────────────────────────── */
.card__cta--ghost {
  background: transparent;
  border: 1.5px solid var(--w-accent);
  color: var(--w-accent);
}
.card__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ──────────────────────────  FOCUS RING (accessibility)  ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.card__cta:focus-visible,
.nav__logo:focus-visible,
.nav__links a:focus-visible,
.founder__link:focus-visible,
.footer__col a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ──────────────────────────  SCROLL CUE  ────────────────────────── */
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}
.hero__scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--mute);
  animation: hero-bounce 2.2s ease-in-out infinite;
  line-height: 0;
}
