/* ==========================================================================
   Optive - site styles
   Design tokens + component classes extracted from the original page.
   Add new pages by reusing these tokens and the shared component classes.
   ========================================================================== */

/* ---- Self-hosted fonts --------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:          #010102;
  --surface:     #0f1011;
  --surface-alt: #010102;

  /* Borders */
  --border:      #23252a;
  --border-2:    #34343a;
  --border-3:    #1b1c20;

  /* Text */
  --text:        #f7f8f8;
  --text-2:      #d0d6e0;
  --muted:       #8a8f98;
  --muted-2:     #62666d;

  /* Accents */
  --accent:      #08c5d3;
  --accent-2:    #1dd9aa;
  --accent-cyan: #58d6e4;
  --accent-mint: #6fe6c4;
  --error:       #eb5757;
  --grad-accent: linear-gradient(90deg, #08c5d3, #1dd9aa);

  /* Type */
  --font-sans: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --pad-x:       clamp(20px, 4vw, 40px);
  --section-y:   clamp(64px, 10vw, 120px);
  --radius:      16px;
  --radius-sm:   8px;
}

/* ---- Reset / base -------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a { color: var(--accent-cyan); text-decoration: none; }
a:hover { color: var(--accent-mint); }

input, textarea, select, button { font-family: inherit; }
::selection { background: rgba(8, 197, 211, 0.35); }
input::placeholder, textarea::placeholder { color: var(--muted); }

img { max-width: 100%; }

/* ---- Animation ----------------------------------------------------------- */
@keyframes optFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes optDash { to { stroke-dashoffset: -20; } }

.opt-fade {
  opacity: 0;
  animation: optFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.opt-fade.delay-1 { animation-delay: 0.06s; }
.opt-fade.delay-2 { animation-delay: 0.12s; }
.opt-fade.delay-3 { animation-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .opt-fade { animation: none; opacity: 1; }
  .opt-dash { animation: none !important; }
}

/* ---- Layout helpers ------------------------------------------------------ */
.wrap        { margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--760   { max-width: 760px; }
.wrap--940   { max-width: 940px; }
.wrap--1080  { max-width: 1080px; }
.wrap--1180  { max-width: 1180px; }
.wrap--1200  { max-width: 1200px; }

.section {
  border-top: 1px solid var(--border);
  padding: var(--section-y) var(--pad-x);
}
.section--flush { padding-left: 0; padding-right: 0; } /* when child .wrap sets x-pad */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

/* ---- Buttons ------------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-accent);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: filter 0.15s ease;
}
.btn-primary:hover { filter: brightness(1.06); color: #fff; }

.btn-outline {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.btn-outline:hover { color: #fff; border-color: #3e3e44; background: var(--surface); }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 1, 2, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.site-nav__logo { height: 26px; width: auto; display: block; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) var(--pad-x) clamp(36px, 5vw, 56px);
  text-align: center;
}
.badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 28px;
  max-width: 100%;
}
.badge__logo { height: 15px; width: auto; vertical-align: middle; }

.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.032em;
  margin: 0 auto 28px;
  max-width: 19ch;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
}
.contact-lead {
  margin-bottom: 32px;
}

/* ==========================================================================
   PRODUCT STAGE + signup card
   ========================================================================== */
.stage {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(28px, 4vw, 52px);
}
.stage__grid {
  position: relative;
  display: grid;
  grid-template-areas: 'stack';
}
.stage__imgwrap {
  grid-area: stack;
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.stage__img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.85);
  transform: scale(1.03);
}
.stage__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1,1,2,0.5) 0%, transparent 20%, transparent 68%, rgba(1,1,2,0.9) 90%, #010102 100%);
}
.stage__card {
  grid-area: stack;
  justify-self: center;
  align-self: start;
  margin-top: clamp(18px, 4vw, 52px);
  width: min(500px, 92%);
  z-index: 2;
  scroll-margin-top: 88px;
}

.signup {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent), var(--surface);
  border: 1px solid rgba(8, 197, 211, 0.45);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 0 0 1px rgba(8,197,211,0.16), 0 24px 70px rgba(0,0,0,0.55), 0 12px 40px rgba(8,197,211,0.16);
}
.signup__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}
.signup__title {
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.signup__fineprint {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted-2);
  margin: 14px 0 0;
  text-align: center;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { display: flex; flex-direction: column; gap: 10px; }
.form--gap-12 { gap: 12px; }

.field {
  min-width: 0;
  font-size: 15px;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(8, 197, 211, 0.35);
}
.field--textarea { resize: vertical; line-height: 1.5; }

.field--select {
  color: var(--muted);
  appearance: none;
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='3' 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 9px center;
  background-size: 9px;
}
.field--select.field--selected { color: var(--text); }
.field--select option { background: var(--surface); }

/* Follow-form name row: Title | First | Last */
.name-row {
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  gap: 10px;
}
.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
/* Magnet-form top row: Title | First */
.magnet-top {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
}

.form__error { font-size: 13px; color: var(--error); }

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.consent input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-note {
  font-size: 12px;
  color: var(--muted-2);
  margin: 0;
  text-align: center;
}

/* Success state (hidden until a form is submitted) */
.form-success { text-align: center; padding: 16px 4px; }
.form-success--lg { padding: 24px 8px; }
.form-success__badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(8, 197, 211, 0.22);
}
.form-success--lg .form-success__badge { width: 56px; height: 56px; margin-bottom: 20px; }
.form-success__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.form-success--lg .form-success__title { font-size: 22px; margin-bottom: 12px; }
.form-success__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto;
  max-width: 36ch;
}
.form-success--lg .form-success__text { font-size: 15px; max-width: 40ch; }

[hidden] { display: none !important; }

/* ==========================================================================
   SECTION HEADINGS + generic type
   ========================================================================== */
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(40px, 6vw, 64px);
  max-width: 24ch;
}
.section-title--center {
  max-width: none;
  text-align: center;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: clamp(40px, 6vw, 56px);
}

/* ==========================================================================
   PROBLEM GRID (section 3)
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.problem-cell {
  background: var(--bg);
  padding: clamp(28px, 4vw, 40px);
}
.problem-cell__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--text);
}
.problem-cell__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.problem-wave {
  grid-column: span 2;
  background: var(--bg) url('../img/mom-wave.svg') center / cover no-repeat;
  overflow: hidden;
  min-height: 180px;
}
@media (max-width: 640px) {
  .problem-wave { display: none !important; }
}

/* ==========================================================================
   FEATURE (section 4) — text + media split
   ========================================================================== */
.feature {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.feature__text { flex: 1 1 340px; min-width: 0; }
.feature__title {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
}
.feature__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.feature__media { flex: 1 1 480px; min-width: 0; position: relative; overflow: hidden; }
.feature__glow {
  position: absolute;
  inset: -10% -6% -6% -4%;
  pointer-events: none;
  background: radial-gradient(60% 45% at 32% 30%, rgba(88,214,228,0.16), transparent 70%),
              radial-gradient(50% 40% at 70% 78%, rgba(88,214,228,0.08), transparent 72%);
  filter: blur(8px);
}
.feature__img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  position: relative;
}
.feature__edgefade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to left, #010102 8%, transparent 42%),
              linear-gradient(to bottom, #010102 4%, transparent 12%),
              linear-gradient(to top, #010102 4%, transparent 15%),
              linear-gradient(to right, #010102, transparent 9%);
}
.feature__spine {
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 16%;
  width: 2px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(88,214,228,0.55), rgba(88,214,228,0.15), transparent);
}

/* ==========================================================================
   CHANGES (section 5) — intro split + three points
   ========================================================================== */
.changes-intro {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.5vw, 24px);
  align-items: center;
  margin: 0 0 clamp(44px, 6vw, 64px);
}
.changes-intro__text { flex: 1 1 380px; min-width: 0; max-width: 460px; }
.changes-intro__text h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.changes-intro__text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 16px;
}
.changes-intro__text p.muted { color: var(--muted); margin-bottom: 0; }
.changes-intro__media {
  flex: 1 1 320px;
  min-width: 0;
  position: relative;
  align-self: stretch;
  min-height: 260px;
}
.changes-intro__orbital {
  position: absolute;
  top: 50%;
  right: -14%;
  transform: translateY(-50%);
  width: 132%;
  max-width: none;
  height: auto;
  opacity: 0.95;
}
.changes-intro__orbitalfade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #010102 0%, transparent 14%),
              linear-gradient(to left, #010102, transparent 16%),
              linear-gradient(to bottom, #010102, transparent 16%),
              linear-gradient(to top, #010102, transparent 16%);
}
.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.point {
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
}
.point__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.point__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   DUO (section 6) — OptimalDX + Optive cards
   ========================================================================== */
.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.duo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
}
.duo-card__logo { width: auto; display: block; }
.duo-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}
.duo-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.link-inline { color: var(--accent-cyan); white-space: nowrap; }
.link-inline:hover { text-decoration: underline; }

/* ==========================================================================
   ASSESSMENT (optional module) — centered CTA
   ========================================================================== */
.assessment { max-width: 760px; margin: 0 auto; text-align: center; }
.assessment .eyebrow { display: block; margin-bottom: 20px; }
.assessment__title {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
}
.assessment__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
  margin: 0 auto 32px;
}

/* ==========================================================================
   CONTRIBUTE (magnet section)
   ========================================================================== */
.contribute {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contribute__lead h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.contribute__lead p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.contribute__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 36px);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.contact-lead__title {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.contact-lead__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 36px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 64px) var(--pad-x);
}
.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__divider { width: 1px; height: 20px; background: var(--border-2); }
.site-footer__by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer__disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted-2);
  max-width: 70ch;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: clamp(16px, 2.5vw, 22px);
  border-top: 1px solid var(--border-3);
}
.site-footer__copy { font-size: 12px; color: var(--muted-2); }
.site-footer__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.site-footer__dot { width: 2px; height: 2px; border-radius: 50%; background: var(--muted-2); }
.site-footer__links a { color: var(--muted-2); text-decoration: none; }
.site-footer__links a:hover { color: var(--text); }

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.legal-wrap h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
}
.legal-wrap p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0 0 16px; }
.legal-wrap .legal-effective { margin-bottom: 32px; }
.legal-wrap h2 { font-size: 22px; font-weight: 600; margin: 40px 0 16px; }
.legal-wrap h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 24px; font-size: 14px; line-height: 1.6; color: var(--text-2); }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--accent-cyan); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }

@media (max-width: 384px) {
  .name-row { grid-template-columns: 1fr !important; }
}
