/* =========================================================================
   VOID PC CLUB — styles
   LAYOUT SYSTEM (fixed):
     Container scheme  = B — narrow-880 (.wrap max-width 880px, centered)
     Spacing scale     = airy (128px / 72px sections; 64px mobile)
   Do not mix container schemes or spacing scales within this site.
   ========================================================================= */

:root {
  /* palette */
  --c-bg:        #e8e8e6;           /* light — used point-wise only        */
  --c-bg-dark:   #0d0d0e;           /* near-black — main background        */
  --c-ink:       rgba(232,232,230,0.85); /* text on dark                    */
  --c-ink-soft:  rgba(232,232,230,0.45);
  --c-ink-line:  rgba(232,232,230,0.15); /* hairline borders               */
  --c-ink-inv:   #0d0d0e;           /* text on light                       */
  --c-a1:        #22d3ee;           /* the one cyan point                  */

  /* type */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;

  /* radius */
  --r-card: 10px;

  /* spacing — 8px step */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* airy section rhythm */
  --sp-section: 128px;
  --sp-block:   72px;

  /* container scheme B */
  --w-container: 880px;
  --w-bleed:     1080px;
}

@media (max-width: 768px) {
  :root { --sp-section: 64px; --sp-block: 48px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-bg-dark);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(34px, 5vw, 68px); }
h2 { font-size: clamp(24px, 3.5vw, 42px); margin-bottom: var(--s-4); }
h3 { font-size: 20px; }

p { margin: 0 0 var(--s-3); }

a { color: inherit; text-decoration: none; }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* the trailing cyan dot after headings */
.h1dot { color: var(--c-a1); }

/* ---- container ---- */
.wrap {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}

/* ---- sections rhythm ---- */
.s-block { padding-block: var(--sp-section); }

.eyebrow {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: var(--s-2);
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 62ch;
}

.note { color: var(--c-ink-soft); font-size: 15px; }

/* =========================================================================
   Cursor dot
   ========================================================================= */
.dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 999px;
  background: var(--c-a1);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: width .25s ease, height .25s ease, background-color .25s ease, border-color .25s ease, margin .25s ease;
}
.dot.is-visible { opacity: 0.5; }
.dot.is-ring {
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  background: transparent;
  border: 1px solid var(--c-a1);
}

/* =========================================================================
   Navigation — nav-hamburger-first
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3);
  background: linear-gradient(to bottom, rgba(13,13,14,0.85), rgba(13,13,14,0));
}
.nav__logo { display: flex; align-items: center; gap: var(--s-3); }

.lockup { display: inline-flex; flex-direction: column; line-height: 1; }
.lockup__main {
  font-family: var(--f-display); font-size: 20px; letter-spacing: 0.02em;
}
.lockup__dot { color: var(--c-a1); }
.lockup__sub {
  font-family: var(--f-display); font-size: 11px; letter-spacing: 0.28em;
  color: var(--c-ink-soft); margin-top: 3px;
}
.lockup--footer .lockup__main { font-size: 24px; }

.nav__badge {
  font-size: 12px; letter-spacing: 0.02em;
  color: var(--c-ink-soft);
  padding-left: var(--s-3);
  border-left: 1px solid var(--c-ink-line);
}
@media (max-width: 640px) { .nav__badge { display: none; } }

.nav__toggle, .nav__close {
  font-family: var(--f-display); font-size: 14px; letter-spacing: 0.1em;
  color: var(--c-ink); background: none;
  border: 1px solid var(--c-ink-line);
  border-radius: var(--r-card);
  padding: 10px 18px; cursor: pointer;
  transition: border-color .3s ease;
}
.nav__toggle:hover, .nav__close:hover { border-color: var(--c-a1); }

.nav__overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,13,14,0.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transform: scale(1.02);
  transition: opacity .4s ease, transform .4s ease;
}
.nav__overlay[hidden] { display: none; }
.nav__overlay.is-open { opacity: 1; transform: scale(1); }
.nav__close { position: absolute; top: var(--s-3); right: var(--s-3); }
.nav__overlay-links { display: flex; flex-direction: column; gap: var(--s-4); text-align: center; }
.nav__overlay-links a {
  font-family: var(--f-display);
  font-size: clamp(28px, 6vw, 44px);
  color: var(--c-ink);
  position: relative;
  transition: color .3s ease;
}
.nav__overlay-links a::before {
  content: "."; position: absolute; left: -0.7em; color: var(--c-a1);
  opacity: 0; transition: opacity .3s ease;
}
.nav__overlay-links a:hover { color: #e8e8e6; }
.nav__overlay-links a:hover::before { opacity: 1; }

/* =========================================================================
   Hero
   ========================================================================= */
.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px var(--s-3) var(--sp-block);
  overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  z-index: 0;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(13,13,14,0.35), rgba(13,13,14,0.9) 78%),
    linear-gradient(to bottom, rgba(13,13,14,0.4), rgba(13,13,14,0.95));
}
.hero__inner { position: relative; z-index: 2; max-width: var(--w-container); margin-inline: auto; width: 100%; }
.hero__lead { font-size: clamp(16px, 1.8vw, 20px); max-width: 54ch; color: var(--c-ink); margin-top: var(--s-4); }
.hero__actions { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; margin-top: var(--s-5); }
.eyebrow.reveal { margin-bottom: var(--s-3); }

/* =========================================================================
   Buttons & links (motif: point → ring)
   ========================================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-size: 15px; letter-spacing: 0.04em;
  color: #e8e8e6;
  padding: 14px 26px;
  border: 1px solid var(--c-ink-line);
  border-radius: var(--r-card);
  background: none;
  cursor: pointer;
  transition: border-color .3s ease, color .3s ease;
}
.btn-primary__dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--c-a1);
  box-shadow: 0 0 0 0 rgba(34,211,238,0);
  transition: box-shadow .3s ease, background-color .3s ease;
}
.btn-primary:hover { border-color: var(--c-a1); }
.btn-primary:hover .btn-primary__dot {
  background: transparent;
  box-shadow: 0 0 0 4px var(--c-a1);
}
.s-light .btn-primary { color: var(--c-ink-inv); border-color: rgba(13,13,14,0.2); }

.link-dot {
  font-family: var(--f-display); font-size: 15px; letter-spacing: 0.03em;
  color: var(--c-ink); position: relative; padding-left: 0;
  transition: padding-left .3s ease, color .3s ease;
}
.link-dot::before {
  content: "."; position: absolute; left: -0.7em; color: var(--c-a1);
  opacity: 0; transition: opacity .3s ease;
}
.link-dot:hover { padding-left: 0.8em; }
.link-dot:hover::before { opacity: 1; left: 0; }

/* =========================================================================
   Light contrast section
   ========================================================================= */
.s-light { background: var(--c-bg); color: var(--c-ink-inv); }
.s-light .eyebrow { color: rgba(13,13,14,0.5); }
.s-light .lead, .s-light p { color: rgba(13,13,14,0.82); }
.s-light .spec__num { color: var(--c-ink-inv); }

/* =========================================================================
   Rows (stations / null log)
   ========================================================================= */
.rows { display: flex; flex-direction: column; }
.row {
  display: flex; gap: var(--s-3);
  padding-block: var(--s-5);
  border-top: 1px solid var(--c-ink-line);
}
.row:last-child { border-bottom: 1px solid var(--c-ink-line); }
.row__mark {
  flex: none; width: 7px; height: 7px; margin-top: 10px;
  border-radius: 999px; background: var(--c-a1); opacity: 0.85;
}
.row__title { margin-bottom: 6px; }
.row__meta {
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.06em;
  color: var(--c-ink-soft); margin-bottom: var(--s-2);
}
.row__text { margin: 0; max-width: 60ch; }

/* =========================================================================
   Manifesto
   ========================================================================= */
.manifesto {
  display: flex; flex-direction: column; gap: var(--s-2);
  font-family: var(--f-display);
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.2;
  margin: var(--s-6) 0;
  padding: var(--s-6) 0;
  border-block: 1px solid var(--c-ink-line);
}
.manifesto span:last-child { color: var(--c-ink-soft); }

/* =========================================================================
   Figures
   ========================================================================= */
.figure { margin: var(--s-6) 0 0; }
.figure img { border-radius: var(--r-card); border: 1px solid var(--c-ink-line); }
.figure--sq img { max-width: 420px; }

/* =========================================================================
   Hardware specs
   ========================================================================= */
.specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin: var(--s-6) 0;
}
.spec__num {
  display: block; font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 64px); font-weight: 500; line-height: 1;
}
.spec__unit { font-size: 0.4em; margin-left: 4px; color: rgba(13,13,14,0.45); }
.spec__label { font-size: 15px; margin: var(--s-2) 0 0; }
@media (max-width: 640px) { .specs { grid-template-columns: 1fr; gap: var(--s-4); } }

/* =========================================================================
   Games
   ========================================================================= */
/* accent word inside the games heading */
.h2accent { color: var(--c-a1); }

.games { list-style: none; margin: var(--s-5) 0 0; padding: 0; }
.game {
  display: grid;
  grid-template-columns: 24px 200px 1fr;
  gap: var(--s-3);
  align-items: center;
  padding-block: var(--s-3);
  border-top: 1px solid var(--c-ink-line);
}
.game:last-child { border-bottom: 1px solid var(--c-ink-line); }
.game__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--c-a1);
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(34,211,238,0.35));
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.game__ico svg { width: 24px; height: 24px; display: block; }
.game:hover .game__ico { opacity: 1; filter: drop-shadow(0 0 7px rgba(34,211,238,0.55)); }
.game__name { font-family: var(--f-display); letter-spacing: 0.01em; }
.game__desc { color: var(--c-ink-soft); font-size: 15px; }
@media (max-width: 640px) {
  .game { grid-template-columns: 24px 1fr; align-items: center; }
  .game__desc { grid-column: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .game__ico { transition: none; }
}

/* =========================================================================
   Rates table
   ========================================================================= */
.rates { width: 100%; border-collapse: collapse; margin: var(--s-5) 0 var(--s-4); }
.rates th, .rates td {
  text-align: left; padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--c-ink-line);
  font-weight: 400;
}
.rates thead th {
  font-family: var(--f-display); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-ink-soft);
}
.rates tbody th { font-family: var(--f-display); }
.rates td:last-child, .rates th:last-child { text-align: right; color: #e8e8e6; }

/* =========================================================================
   Dark frames
   ========================================================================= */
.frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); margin-top: var(--s-5); }
.frame { margin: 0; }
.frame img { border-radius: var(--r-card); border: 1px solid var(--c-ink-line); filter: brightness(0.85); }
.frame figcaption {
  display: flex; align-items: center; gap: 8px;
  margin-top: var(--s-2);
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em;
  color: var(--c-ink-soft);
}
.cap__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--c-a1); }
@media (max-width: 640px) { .frames { grid-template-columns: 1fr; } }

/* =========================================================================
   Divider — a single point
   ========================================================================= */
.divider { display: flex; justify-content: center; padding: var(--s-4) 0; }
.divider__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--c-a1);
  opacity: 0; transform: scale(0.4);
  transition: opacity .6s ease, transform .6s ease;
}
.divider.is-lit .divider__dot { opacity: 0.9; transform: scale(1); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { margin-top: var(--s-5); }
.faq__item { border-top: 1px solid var(--c-ink-line); padding-block: var(--s-3); }
.faq__item:last-child { border-bottom: 1px solid var(--c-ink-line); }
.faq__item summary {
  font-family: var(--f-display); font-size: 18px;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-ink-soft); transition: background-color .3s ease;
}
.faq__item[open] summary::before { background: var(--c-a1); }
.faq__item p { margin: var(--s-3) 0 0 18px; max-width: 60ch; }

/* =========================================================================
   Form
   ========================================================================= */
.form { margin-top: var(--s-6); max-width: 560px; }
.field { margin-bottom: var(--s-5); }
.field label {
  display: block; font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(13,13,14,0.55);
  margin-bottom: var(--s-1);
  position: relative; padding-left: 0;
  transition: padding-left .25s ease;
}
.field label::before {
  content: "."; position: absolute; left: -0.6em; color: var(--c-a1);
  opacity: 0; transition: opacity .25s ease;
}
.field input, .field select {
  width: 100%;
  font-family: var(--f-body); font-size: 16px;
  color: var(--c-ink-inv);
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(13,13,14,0.15);
  border-radius: 0;
  padding: 10px 0;
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--c-ink-inv); }
.field:focus-within label { padding-left: 0.7em; }
.field:focus-within label::before { opacity: 1; left: 0; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-ink-inv) 50%),
                    linear-gradient(135deg, var(--c-ink-inv) 50%, transparent 50%);
  background-position: right 4px center, right 0px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-primary--submit { margin-top: var(--s-2); }

.form__status { margin-top: var(--s-3); font-family: var(--f-display); font-size: 15px; min-height: 1.4em; }
.form__status.success { color: #0d7a86; }
.form__status.error { color: #b4231f; }

/* success dot orbit around submit button */
.btn-primary--submit { position: relative; }
.btn-primary--submit .orbit-dot {
  position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px; margin: -3px; border-radius: 999px;
  background: var(--c-a1); pointer-events: none;
}

/* =========================================================================
   Footer — footer-cta-repeat
   ========================================================================= */
.footer { border-top: 1px solid var(--c-ink-line); }
.footer__cta-band {
  text-align: center;
  padding: var(--sp-section) var(--s-3);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-5);
}
.footer__cta-band h2 { margin: 0; }
.footer__body {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  padding-block: var(--sp-block);
  border-top: 1px solid var(--c-ink-line);
}
.footer__col { display: flex; flex-direction: column; gap: var(--s-2); }
.footer__hours { color: var(--c-ink-soft); font-size: 14px; margin: 0; }
.footer__nav a {
  color: var(--c-ink-soft); font-size: 15px;
  position: relative; transition: color .3s ease; width: fit-content;
}
.footer__nav a::before {
  content: "."; position: absolute; left: -0.7em; color: var(--c-a1);
  opacity: 0; transition: opacity .3s ease;
}
.footer__nav a:hover { color: #e8e8e6; }
.footer__nav a:hover::before { opacity: 1; }
.footer__disclaimer {
  text-align: center;
  padding: var(--s-5) var(--s-3);
  border-top: 1px solid var(--c-ink-line);
  color: var(--c-ink-soft); font-size: 14px; letter-spacing: 0.02em;
  margin: 0;
}

/* =========================================================================
   Reveal animation (fade only, no shift per site spec)
   ========================================================================= */
.reveal { opacity: 0; transition: opacity .7s ease; }
.reveal.is-in { opacity: 1; }
.h1dot { opacity: 0; transition: opacity .5s ease .3s; }
.reveal.is-in .h1dot, h1.is-in .h1dot, h2.is-in .h1dot { opacity: 1; }

/* =========================================================================
   Legal pages
   ========================================================================= */
.legal { padding: 140px var(--s-3) var(--sp-block); }
.legal .wrap { max-width: 720px; }
.legal h1 { font-size: clamp(30px, 4vw, 48px); margin-bottom: var(--s-5); }
.legal h2 { font-size: clamp(20px, 2.5vw, 28px); margin: var(--s-6) 0 var(--s-3); }
.legal__num { color: var(--c-a1); margin-right: 10px; }
.legal p, .legal li { color: var(--c-ink); }
.legal ul { padding-left: var(--s-3); }
.legal li { margin-bottom: var(--s-1); }
.legal__back { display: inline-block; margin-bottom: var(--s-6); color: var(--c-ink-soft); }
.legal__back:hover { color: var(--c-a1); }

/* =========================================================================
   Reduced motion — kill everything, keep functionality
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .dot { display: none !important; }
  .reveal { opacity: 1 !important; }
  .h1dot { opacity: 1 !important; }
  .divider__dot { opacity: 0.9 !important; transform: none !important; }
}

/* pages added */
.footer__address{font-style:normal;text-align:center;max-width:64ch;margin:1.75rem auto 0;
  padding-top:1.25rem;border-top:1px solid currentColor;line-height:1.6;font-size:.82rem;opacity:.75}
.footer__address strong{display:block;margin-bottom:.35rem;letter-spacing:.02em;opacity:.95}
.footer__address a{color:inherit;text-decoration:underline}
.legal__nav{display:flex;flex-wrap:wrap;gap:.6rem 1.15rem;margin:2.75rem 0 0;padding-top:1.4rem;
  border-top:1px solid currentColor;font-size:.9rem;line-height:1.4}
.legal__nav a{color:inherit;text-decoration:underline;opacity:.85}
.legal__nav a:hover{opacity:1}

/* legal2 */
.lg__kicker{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;opacity:.6;margin:0 0 .4rem}
.lg__lead{font-size:1.18rem;line-height:1.6;max-width:60ch;margin:0 0 2.4rem}
.lg h2,.lg h3{line-height:1.25}
.lg p{line-height:1.65;max-width:66ch}
/* list */
.lg--list .lg-list__sec{margin:0 0 2rem}
.lg--list h2{display:flex;align-items:baseline;gap:.6rem;font-size:1.25rem;margin:0 0 .8rem}
.lg-list__n{font-size:.8rem;opacity:.5;font-variant-numeric:tabular-nums}
.lg-list__ul{list-style:none;padding:0;margin:0;border-top:1px solid currentColor}
.lg-list__ul li{padding:.7rem 0 .7rem 1.4rem;border-bottom:1px solid;border-color:color-mix(in srgb,currentColor 18%,transparent);position:relative;line-height:1.6}
.lg-list__ul li::before{content:"";position:absolute;left:0;top:1.05rem;width:.5rem;height:.5rem;border:1px solid currentColor}
/* tiles */
.lg-tiles__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.lg-tile{border:1px solid currentColor;padding:1.25rem 1.35rem}
.lg-tile h3{margin:0 0 .6rem;font-size:1.08rem}
.lg-tile p{margin:.5rem 0;font-size:.95rem}
@media(max-width:640px){.lg-tiles__grid{grid-template-columns:1fr}}
/* cards */
.lg--cards{display:flex;flex-direction:column;gap:1rem}
.lg-card{display:flex;gap:1.1rem;border:1px solid color-mix(in srgb,currentColor 30%,transparent);border-left:3px solid currentColor;padding:1.1rem 1.25rem}
.lg-card__badge{flex:0 0 auto;font-weight:700;font-size:.85rem;opacity:.6;padding-top:.15rem;white-space:nowrap}
.lg-card__body h3{margin:0 0 .5rem;font-size:1.1rem}
.lg-card__body p{margin:.4rem 0}
/* rules */
.lg--rules .lg-rule{padding:1.4rem 0;border-top:1px solid currentColor}
.lg--rules .lg-rule:first-child{border-top:2px solid currentColor}
.lg--rules h2{font-size:1.2rem;margin:0 0 .7rem;padding-left:1rem;border-left:4px solid currentColor}
.lg--rules p{margin:.5rem 0 .5rem 1rem}
/* panels */
.lg--panels{display:flex;flex-direction:column;gap:.6rem}
.lg-panel{display:flex;gap:1.4rem;align-items:flex-start;padding:1.5rem;background:color-mix(in srgb,currentColor 5%,transparent)}
.lg-panel__num{font-size:2.4rem;font-weight:800;line-height:1;opacity:.28;font-variant-numeric:tabular-nums}
.lg-panel__body h2{margin:0 0 .6rem;font-size:1.2rem}
.lg-panel__body p{margin:.45rem 0}
@media(max-width:560px){.lg-panel{flex-direction:column;gap:.5rem}}
/* def */
.lg--def .lg-def__row{display:grid;grid-template-columns:1fr 2fr;gap:1.5rem;padding:1.5rem 0;border-top:1px solid currentColor}
.lg--def h2{position:sticky;top:1rem;font-size:1.15rem;margin:0}
.lg--def .lg-def__desc p{margin:.4rem 0}
@media(max-width:640px){.lg--def .lg-def__row{grid-template-columns:1fr;gap:.5rem}.lg--def h2{position:static}}
