/* ==========================================================================
   Oplogica — Launch Core design system
   Matte black / graphite / deep navy, blue→green neon accents, glass cards.
   ========================================================================== */

:root {
  --bg-0: #07090d;          /* matte black base */
  --bg-1: #0b0f16;          /* page background */
  --bg-2: #0f141d;          /* raised panel */
  --bg-3: #131a25;          /* card */
  --navy: #0a1830;          /* deep navy wash */
  --graphite: #1a2230;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --ink: #eef3fa;           /* primary text */
  --muted: #9fb0c4;         /* secondary text */
  --faint: #6c7c91;         /* tertiary text */

  --cyan: #34d6e8;          /* blue accent */
  --teal: #2fe3a8;          /* green accent */
  --blue: #4b8cff;

  --accent-grad: linear-gradient(100deg, #34d6e8 0%, #2fe3a8 100%);
  --accent-grad-soft: linear-gradient(100deg, rgba(52,214,232,0.16), rgba(47,227,168,0.16));

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,0.75);
  --shadow-soft: 0 10px 30px -16px rgba(0,0,0,0.6);
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-1);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Constellation / network field — fixed, subtle, behind everything */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(47,227,168,0.10), transparent 60%),
    radial-gradient(1000px 620px at 10% 4%, rgba(52,214,232,0.10), transparent 58%),
    radial-gradient(900px 700px at 50% 110%, rgba(75,140,255,0.08), transparent 60%),
    var(--bg-1);
}
.bg-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255,255,255,0.55) 0, rgba(255,255,255,0) 1.4px),
    radial-gradient(circle at center, rgba(255,255,255,0.35) 0, rgba(255,255,255,0) 1.1px);
  background-size: 140px 140px, 220px 220px;
  background-position: 0 0, 70px 90px;
  opacity: 0.10;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.2) 70%, transparent);
}

a { color: var(--cyan); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal); }

img { max-width: 100%; display: block; }

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

/* Accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--bg-3); color: var(--ink); padding: 12px 18px;
  border: 1px solid var(--line-strong); border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8,11,16,0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); font-size: 1.18rem; }
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent-grad);
  display: grid; place-items: center;
  color: #04110d; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 6px 18px -6px rgba(47,227,168,0.6);
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  padding: 9px 13px; border-radius: 9px; transition: all .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-cta {
  margin-left: 8px;
  background: var(--accent-grad); color: #04110d !important;
  font-weight: 700 !important; padding: 10px 18px !important;
  border-radius: 10px !important; white-space: nowrap;
  box-shadow: 0 8px 22px -10px rgba(47,227,168,0.7);
}
.nav-cta:hover { background: var(--accent-grad) !important; filter: brightness(1.07); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  border-radius: 9px; width: 42px; height: 42px; cursor: pointer; color: var(--ink);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px auto; border-radius: 2px; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(9,12,18,0.98); border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; transform: translateY(-130%);
    transition: transform .32s var(--ease); max-height: calc(100vh - 70px); overflow:auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; font-size: 1rem; }
  .nav-cta { margin: 6px 0 0; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: 0.98rem; padding: 14px 24px;
  border-radius: 11px; cursor: pointer; border: 1px solid transparent;
  transition: all .22s var(--ease); white-space: nowrap; line-height: 1;
}
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--accent-grad); color: #04110d;
  box-shadow: 0 12px 30px -12px rgba(47,227,168,0.65);
}
.btn-primary:hover { color: #04110d; filter: brightness(1.07); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--teal); background: rgba(47,227,168,0.06); }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }

/* ---------- Sections & type ---------- */
section { position: relative; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 18px; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); }
.text-ink { color: var(--ink); }
.measure { max-width: 720px; }
.measure-sm { max-width: 600px; }
.center { text-align: center; }
.center .eyebrow, .center .measure { margin-left: auto; margin-right: auto; }

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

.section-head { margin-bottom: 50px; }

/* ---------- Glass cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.98rem; }
.card .num {
  font-size: 0.8rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.12em; margin-bottom: 14px; display: block;
}
.card-accent { border-color: rgba(47,227,168,0.25); }
.card-accent::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px; background: var(--accent-grad-soft);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.hero { padding: 78px 0 72px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center;
}
.hero h1 { margin-top: 18px; }
.hero .lead { margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 0 1px rgba(52,214,232,0.06);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,9,13,0.35));
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-glow {
  position: absolute; z-index: -1; width: 70%; height: 70%;
  right: -6%; top: 6%; background: var(--accent-grad);
  filter: blur(120px); opacity: 0.16; border-radius: 50%;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 50px 0 56px; }
}

/* Inner page hero (no image) */
.page-hero { padding: 76px 0 18px; }
.page-hero h1 { max-width: 880px; }
.page-hero .lead { max-width: 720px; }

/* ---------- Lists ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); }
.check-list li::before {
  content: ""; flex: 0 0 auto; margin-top: 7px; width: 16px; height: 16px;
  border-radius: 5px; background: var(--accent-grad-soft);
  border: 1px solid rgba(47,227,168,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232fe3a8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.feature-list li strong { display: block; color: var(--ink); margin-bottom: 3px; font-weight: 650; }
.feature-list li span { color: var(--muted); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .dot {
  flex: 0 0 auto; counter-increment: step;
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(47,227,168,0.10); border: 1px solid rgba(47,227,168,0.3);
  display: grid; place-items: center; font-weight: 700; color: var(--teal);
}
.step .dot::before { content: counter(step); }
.step h3 { margin-bottom: 4px; font-size: 1.08rem; }
.step p { margin: 0; font-size: 0.97rem; }

/* ---------- Banded sections ---------- */
.band { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-navy { background: linear-gradient(180deg, rgba(10,24,48,0.6), rgba(11,15,22,0.4)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Offer / pricing cards ---------- */
.offer { display: flex; flex-direction: column; }
.offer .price { font-size: 1rem; font-weight: 650; color: var(--teal); margin: 14px 0 6px; }
.offer .btn { margin-top: auto; align-self: flex-start; }
.offer ul { margin: 16px 0 20px; }

/* ---------- Placeholder visual blocks (future assets) ---------- */
.media-placeholder {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-strong); min-height: 240px;
  background:
    radial-gradient(700px 300px at 70% 10%, rgba(52,214,232,0.10), transparent 60%),
    radial-gradient(600px 280px at 10% 90%, rgba(47,227,168,0.10), transparent 60%),
    var(--bg-2);
  display: grid; place-items: center; text-align: center;
}
.media-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px; opacity: 0.6;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}
.media-placeholder .ph-label {
  position: relative; z-index: 1; padding: 18px;
  color: var(--faint); font-size: 0.85rem; letter-spacing: 0.06em;
}
.media-placeholder .ph-label strong { display:block; color: var(--muted); font-size: 0.95rem; margin-bottom: 4px; letter-spacing: 0; }

/* ---------- Conceptual workflow diagram (CSS-only) ---------- */
.flow-card {
  border-radius: var(--radius); border: 1px solid var(--line-strong); padding: 28px 26px;
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(52,214,232,0.08), transparent 60%),
    linear-gradient(180deg, rgba(10,24,48,0.45), var(--bg-2));
}
.flow-card-title { color: var(--ink); font-weight: 650; font-size: 1.02rem; margin: 0 0 24px; letter-spacing: -0.01em; }
.flow-steps { list-style: none; margin: 0; padding: 0; }
.flow-step {
  position: relative; display: flex; gap: 15px; align-items: flex-start;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.02);
}
.flow-step + .flow-step { margin-top: 30px; }
/* connector line between steps */
.flow-step + .flow-step::before {
  content: ""; position: absolute; left: 32px; top: -27px; width: 2px; height: 20px;
  background: linear-gradient(180deg, rgba(47,227,168,0.18), rgba(47,227,168,0.55));
}
/* downward chevron between steps */
.flow-step + .flow-step::after {
  content: ""; position: absolute; left: 28px; top: -11px; width: 9px; height: 9px;
  border-right: 2px solid rgba(47,227,168,0.6); border-bottom: 2px solid rgba(47,227,168,0.6);
  transform: rotate(45deg);
}
.flow-num {
  flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 700; color: var(--teal);
  background: rgba(47,227,168,0.10); border: 1px solid rgba(47,227,168,0.28);
}
.flow-text { display: flex; flex-direction: column; gap: 3px; }
.flow-text strong { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.flow-text span { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }
.flow-step-gate { border-color: rgba(47,227,168,0.30); background: rgba(47,227,168,0.05); }
.flow-card-foot { margin: 22px 0 0; color: var(--faint); font-size: 0.82rem; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.trust-item::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-grad); }

/* ---------- Callout / trust boundary ---------- */
.callout {
  border-radius: var(--radius); padding: 36px;
  background: linear-gradient(180deg, rgba(10,24,48,0.55), rgba(15,20,29,0.4));
  border: 1px solid var(--line-strong);
}
.callout-accent { border-color: rgba(47,227,168,0.28); }

.tagline-band {
  display: inline-block; padding: 12px 18px; border-radius: 11px;
  background: rgba(47,227,168,0.07); border: 1px solid rgba(47,227,168,0.22);
  color: var(--ink); font-size: 0.96rem;
}

/* ---------- Forms ---------- */
.form-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field .req { color: var(--teal); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-1); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; font-family: inherit; font-size: 0.98rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(47,227,168,0.14);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239fb0c4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field-check { display: flex; align-items: flex-start; gap: 11px; }
.field-check input { width: auto; margin-top: 4px; }
.field-check label { margin: 0; font-weight: 500; color: var(--muted); font-size: 0.92rem; }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.86rem; color: var(--faint); margin-top: 14px; }
.form-alert {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 15px 16px 15px 48px;
  margin-bottom: 22px;
  font-size: 0.93rem; line-height: 1.5;
  display: none;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(52,214,232,0.08), rgba(47,227,168,0.06));
  border: 1px solid rgba(47,227,168,0.34);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.7), inset 3px 0 0 rgba(47,227,168,0.65);
}
.form-alert.show { display: block; }
.form-alert a { color: var(--teal); }
.form-alert a:hover { color: var(--cyan); }
.form-alert::before {
  content: ""; position: absolute; left: 16px; top: 15px;
  width: 20px; height: 20px; background-repeat: no-repeat; background-position: center; background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232fe3a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}
.form-alert.info { background: linear-gradient(180deg, rgba(52,214,232,0.08), rgba(75,140,255,0.05)); border-color: rgba(52,214,232,0.32); box-shadow: 0 12px 30px -18px rgba(0,0,0,0.7), inset 3px 0 0 rgba(52,214,232,0.65); }
.form-alert.info::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2334d6e8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E");
}
/* Field-level invalid cue (subtle, paired with the alert panel) */
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: rgba(255,120,120,0.7);
  box-shadow: 0 0 0 3px rgba(255,120,120,0.12);
}
.field-check input.invalid { outline: 2px solid rgba(255,120,120,0.7); outline-offset: 2px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose .eff-date { color: var(--faint); font-size: 0.9rem; }
.legal-note { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.85rem; font-style: italic; }

/* ---------- Final CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .callout { max-width: 760px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-0); padding: 60px 0 34px; margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-tag { color: var(--muted); font-size: 0.9rem; }
.footer-tag strong { color: var(--ink); font-weight: 600; }
.footer-legal { color: var(--faint); font-size: 0.84rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Misc ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.pill { display:inline-block; padding:5px 12px; border-radius:999px; background:rgba(255,255,255,0.04); border:1px solid var(--line); font-size:0.78rem; color:var(--muted); letter-spacing:0.04em; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: 22px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
