/* =========================================================
   Pilimo — landing page styles
   Pure CSS. No frameworks, no build step.
   ========================================================= */

:root {
  --bg:        #0b0b10;
  --bg-soft:   #121219;
  --panel:     #16161f;
  --panel-2:   #1c1c27;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --text:      #ececf1;
  --muted:     #a0a0b0;
  --faint:     #6f6f82;

  --indigo:    #6c63ff;
  --indigo-2:  #8b84ff;
  --pink:      #ff6584;
  --cyan:      #22d3ee;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --glow:      0 0 40px rgba(108, 99, 255, 0.45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

::selection { background: var(--indigo); color: #fff; }

.grad {
  background: linear-gradient(100deg, var(--indigo-2), var(--pink) 60%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   ambient background
   ========================================================= */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 22s var(--ease) infinite alternate;
}
.blob-1 { width: 46vw; height: 46vw; left: -10vw; top: -12vw; background: var(--indigo); }
.blob-2 { width: 40vw; height: 40vw; right: -12vw; top: 8vw; background: var(--pink); animation-delay: -7s; }
.blob-3 { width: 38vw; height: 38vw; left: 28vw; bottom: -16vw; background: var(--cyan); opacity: 0.35; animation-delay: -13s; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vw, 6vh) scale(1.15); }
}

/* =========================================================
   layout helpers
   ========================================================= */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 1.5rem;
}
.section-alt {
  max-width: none;
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(108,99,255,0.08), transparent 70%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * { max-width: var(--maxw); margin-inline: auto; }

.section-head { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); margin-bottom: 0.9rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-2);
  margin-bottom: 0.9rem;
}

/* =========================================================
   buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1.02rem; }

.btn-primary {
  background: linear-gradient(120deg, var(--indigo), var(--indigo-2));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(108, 99, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(108, 99, 255, 0.85); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }

/* =========================================================
   nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 16, 0.6);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(#000, #000);
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 800; font-size: 1.25rem; }
.brand-mark { height: 1.8rem; width: auto; filter: drop-shadow(0 0 10px rgba(108,99,255,0.45)); }
.brand-name {
  background: linear-gradient(100deg, #fff, var(--indigo-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > a:not(.btn) { color: var(--muted); font-weight: 500; font-size: 0.96rem; transition: color 0.2s; }
.nav-links > a:not(.btn):hover { color: var(--text); }

.nav-toggle, .nav-burger { display: none; }

/* =========================================================
   hero
   ========================================================= */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.5rem;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2dd47f;
  box-shadow: 0 0 0 0 rgba(45, 212, 127, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45, 212, 127, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(45, 212, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 127, 0); }
}

.hero-title { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 900; margin-bottom: 1.2rem; }
.hero-sub { color: var(--muted); font-size: 1.13rem; max-width: 32rem; margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.stats { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-size: 1.7rem; font-weight: 800; }
.stats span { color: var(--faint); font-size: 0.86rem; }

/* hero art — floating game cards */
.hero-art { position: relative; height: 420px; }
.card-stack { position: absolute; inset: 0; perspective: 1200px; }

.game-card {
  position: absolute;
  width: 230px;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  animation: float 6s var(--ease) infinite alternate;
}
.gc-1 { top: 8%;  left: 8%;  z-index: 3; }
.gc-2 { top: 34%; right: 2%; z-index: 2; animation-delay: -2s; }
.gc-3 { bottom: 4%; left: 22%; z-index: 1; animation-delay: -4s; }

@keyframes float {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-18px) rotate(2deg); }
}

.gc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.gc-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem; border-radius: 999px;
  background: rgba(45, 212, 127, 0.15); color: #2dd47f;
}
.gc-tag-warm { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.gc-tag-cool { background: rgba(34, 211, 238, 0.15); color: var(--cyan); }
.gc-players { font-size: 0.8rem; color: var(--faint); font-family: "Space Grotesk", monospace; }
.gc-emoji { font-size: 2.4rem; margin: 0.3rem 0 0.6rem; }
.gc-name { font-weight: 700; font-size: 1.1rem; }
.gc-meta { color: var(--faint); font-size: 0.84rem; }

/* =========================================================
   marquee
   ========================================================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  font-family: "Space Grotesk", monospace;
  font-size: 1.05rem;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   features
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel), var(--bg-soft));
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}
.feature-ico {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  font-size: 1.6rem;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================
   games grid
   ========================================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.games-foot { text-align: center; color: var(--faint); margin-top: 2rem; font-size: 0.98rem; }
.tile {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s;
  isolation: isolate;
}
.tile::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px 160px at 80% -20%, color-mix(in srgb, var(--tint) 35%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tile:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--tint) 50%, var(--line)); }
.tile:hover::before { opacity: 1; }
.tile-emoji {
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--tint) 60%, transparent));
}
.tile h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.tile p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.tile-cta { font-weight: 600; font-size: 0.92rem; color: var(--tint); }

/* =========================================================
   steps
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel), var(--bg-soft));
  border: 1px solid var(--line);
}
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: "Space Grotesk", monospace;
  font-weight: 700; font-size: 1.2rem;
  background: linear-gradient(120deg, var(--indigo), var(--pink));
  color: #fff;
  box-shadow: var(--glow);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); }
.step em { color: var(--indigo-2); font-style: normal; font-weight: 600; }

/* =========================================================
   social spotlight (text + roster mockup)
   ========================================================= */
.dev-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.dev-copy h2, .spotlight-h { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.dev-copy > p { color: var(--muted); font-size: 1.08rem; margin-bottom: 1.5rem; max-width: 30rem; }

.checks { display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.checks li { position: relative; padding-left: 1.9rem; color: var(--text); }
.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center;
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  font-size: 0.8rem; font-weight: 800;
  background: rgba(45, 212, 127, 0.15);
  color: #2dd47f;
}

/* friends / nearby roster mockup */
.roster {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.roster-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}
.roster-title { font-weight: 700; }
.roster-count {
  font-family: "Space Grotesk", monospace;
  font-size: 0.8rem; color: #2dd47f;
  padding: 0.2rem 0.6rem; border-radius: 999px;
  background: rgba(45, 212, 127, 0.12);
}
.roster-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.roster-row:last-child { border-bottom: 0; }
.roster-row:hover { background: rgba(255, 255, 255, 0.025); }
.avatar {
  flex: none;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-weight: 700; color: #fff;
  background: color-mix(in srgb, var(--a) 85%, #000);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--a) 35%, transparent);
}
.r-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.r-name { font-weight: 600; }
.r-meta { color: var(--faint); font-size: 0.82rem; }
.r-action {
  flex: none;
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.8rem; border-radius: 999px;
  border: 1px solid var(--line-2);
}
.r-invite { color: var(--indigo-2); border-color: rgba(108, 99, 255, 0.4); background: rgba(108, 99, 255, 0.08); }
.r-turn   { color: #2dd47f;       border-color: rgba(45, 212, 127, 0.4); background: rgba(45, 212, 127, 0.1); }
.r-match  { color: #fff; border-color: transparent; background: linear-gradient(120deg, var(--indigo), var(--indigo-2)); }

/* nearby matchmaking row — visually set apart from the friends list */
.roster-nearby {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-top: 1px dashed var(--line-2);
  background: rgba(108, 99, 255, 0.06);
}
.nearby-ico {
  flex: none;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.2rem;
  background: rgba(108, 99, 255, 0.14);
  border: 1px solid rgba(108, 99, 255, 0.3);
}

/* =========================================================
   CTA
   ========================================================= */
.cta { padding: 6rem 1.5rem; }
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: 28px;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(108, 99, 255, 0.22), transparent 70%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.7rem; }
.cta-inner > p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.8rem; }

.cta-form {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
  max-width: 460px; margin: 0 auto 1rem;
}
.cta-form input {
  flex: 1 1 240px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}
.cta-form input::placeholder { color: var(--faint); }
.cta-form input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.25); }
.cta-fine { color: var(--faint); font-size: 0.85rem; }

/* =========================================================
   footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 3.5rem 1.5rem 2rem;
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2rem;
}
.foot-brand p { color: var(--muted); margin-top: 0.8rem; max-width: 22rem; font-size: 0.95rem; }
.foot-col h4 { font-size: 0.95rem; margin-bottom: 0.9rem; }
.foot-col a { display: block; color: var(--muted); font-size: 0.93rem; padding: 0.3rem 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }

.foot-base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  color: var(--faint); font-size: 0.88rem;
}
.foot-social { display: flex; gap: 1.2rem; }
.foot-social a:hover { color: var(--text); }

/* =========================================================
   responsive
   ========================================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-art { height: 340px; order: -1; }
  .dev-split { grid-template-columns: 1fr; }
  .features-grid, .games-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }

  /* mobile nav */
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px;
    border: 1px solid var(--line-2); border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
  }
  .nav-burger span {
    display: block; height: 2px; width: 20px; margin: 0 auto;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
  }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(11, 11, 16, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  }
  .nav-links > a:not(.btn) { padding: 0.6rem 0.2rem; }
  .nav-links .btn { width: 100%; margin-top: 0.3rem; }

  .nav-toggle:checked ~ .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .section { padding: 4.5rem 1.25rem; }
  .features-grid, .games-grid, .steps, .foot-grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .stats strong { font-size: 1.4rem; }
  .game-card { width: 200px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .cta-inner { padding: 2.5rem 1.3rem; }
  .foot-base { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   motion & accessibility
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* =========================================================
   legal / info pages (privacy, terms, about, contact)
   ========================================================= */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.1; margin: 0 0 0.4rem; }
.legal .legal-meta { color: var(--muted); font-size: 0.9rem; margin: 0 0 2rem; }
.legal h2 { font-size: 1.35rem; margin: 2.2rem 0 0.6rem; }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }
.legal ul { padding-left: 1.2rem; margin: 0.6rem 0; }
.legal li { margin: 0.35rem 0; }
.legal a { color: var(--indigo-2); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); }
