/* Pretty Serious Baseball — public homepage
   Palette is lifted from the in-game tokens:
     SubcultureUiTheme.Sky  = rgb(91,193,245)  -> UiDesignTokens.NeonAccent
     SubcultureUiTheme.Ink  = rgb(23,43,77)
   The cut-corner tiles echo the SCUI button/tile silhouette. */

:root {
  --ink-950: #05090F;
  --ink-900: #0B1220;
  --ink-850: #0E1728;
  --ink-800: #142035;
  --ink-line: rgba(255, 255, 255, 0.11);
  --ink-line-soft: rgba(255, 255, 255, 0.07);

  --sky: #5BC1F5;          /* NeonAccent */
  --sky-hi: #9BDCFF;
  --sky-deep: #2E90C7;
  --sky-wash: rgba(91, 193, 245, 0.13);

  --mint: #70E0BE;
  --sunny: #FFCF5C;
  --coral: #FF6E8E;

  --fg: #EDF4FC;
  --fg-muted: #A9BCD4;      /* 8.4:1 on --ink-900 */
  --fg-faint: #8FA5C0;      /* 6.2:1 on --ink-900 */

  --shell: min(1180px, 100% - 2.5rem);
  --cut: 14px;
  --radius: 4px;

  --display: "Chakra Petch", "Noto Sans KR", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: dark;
}

/* ---------------------------------------------------------------- reset */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--ink-950);
  color: var(--fg);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { color: var(--sky-hi); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

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

/* ------------------------------------------------- bilingual switching */
/* Both languages ship in the HTML; only the inactive one is hidden, so the
   page reads correctly with JavaScript switched off (html[lang="en"]). */

html[lang="en"] [data-lang="ko"] { display: none !important; }
html[lang="ko"] [data-lang="en"] { display: none !important; }

html[lang="ko"] { --display: "Noto Sans KR", "Chakra Petch", system-ui, sans-serif; }
html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3 { letter-spacing: -0.02em; }
/* Latin lockups keep the display face even in Korean mode. */
html[lang="ko"] .lockup, html[lang="ko"] .brandmark, html[lang="ko"] .eyebrow,
html[lang="ko"] .stat-figure, html[lang="ko"] .step-num { font-family: "Chakra Petch", "Noto Sans KR", sans-serif; }

/* JS-presence switches (the inline head script swaps .no-js for .js).
   The language toggle and the async form need scripting; without it the page
   stays on English and offers the e-mail fallback instead. */
html.js .nojs-only { display: none !important; }

/* ------------------------------------------------------------- layout */

.shell { width: var(--shell); margin-inline: auto; }

.section { padding: clamp(3.75rem, 8vw, 7rem) 0; position: relative; }
.section + .section { border-top: 1px solid var(--ink-line-soft); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem); }
.section-head .lede { color: var(--fg-muted); font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.18rem); }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--sky);
  flex: none;
}

.skip-link {
  position: absolute;
  left: 0.75rem; top: -100px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--sky);
  color: var(--ink-950);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 0.75rem; color: var(--ink-950); }

/* ------------------------------------------------------------ buttons */

.btn {
  --btn-edge: var(--sky-hi);
  --btn-fill: var(--sky);
  --btn-ink: #06121D;
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border: 0;
  background: transparent;
  color: var(--btn-ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), filter 0.18s var(--ease);
}
.btn::before,
.btn::after { content: ""; position: absolute; inset: 0; }
.btn::before {
  z-index: -2;
  background: var(--btn-edge);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.btn::after {
  z-index: -1;
  inset: 1.5px;
  background: var(--btn-fill);
  clip-path: polygon(calc(var(--cut) - 1.5px) 0, 100% 0, 100% calc(100% - var(--cut) + 1.5px), calc(100% - var(--cut) + 1.5px) 100%, 0 100%, 0 calc(var(--cut) - 1.5px));
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-edge: rgba(91, 193, 245, 0.6);
  --btn-fill: rgba(11, 18, 32, 0.72);
  --btn-ink: var(--sky-hi);
}
.btn--ghost:hover { --btn-fill: rgba(20, 32, 53, 0.9); }

.btn--block { width: 100%; }

/* --------------------------------------------------------------- tiles */
/* Cut-corner glass panel painted on a pseudo-element so nothing that needs a
   focus ring is ever clipped. */

.tile {
  position: relative;
  z-index: 0;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
}
.tile::before,
.tile::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.tile::before {
  z-index: -2;
  background: var(--ink-line);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.tile::after {
  z-index: -1;
  inset: 1px;
  background:
    linear-gradient(155deg, rgba(91, 193, 245, 0.10), rgba(91, 193, 245, 0) 46%),
    rgba(14, 23, 40, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: polygon(calc(var(--cut) - 1px) 0, 100% 0, 100% calc(100% - var(--cut) + 1px), calc(100% - var(--cut) + 1px) 100%, 0 100%, 0 calc(var(--cut) - 1px));
}
.tile--accent::before { background: rgba(91, 193, 245, 0.55); }
.tile--accent::after {
  background:
    linear-gradient(155deg, rgba(91, 193, 245, 0.18), rgba(91, 193, 245, 0.02) 55%),
    rgba(12, 26, 42, 0.92);
}

/* ---------------------------------------------------------- top header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 9, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line-soft);
}
.site-header .shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
  flex-wrap: wrap;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  margin-right: auto;
}
.brandmark img { width: 26px; height: 26px; }
.brandmark span { line-height: 1.15; }

.lang-switch {
  display: none;
  border: 1px solid var(--ink-line);
  background: rgba(20, 32, 53, 0.7);
}
html.js .lang-switch { display: inline-flex; }
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fg-faint);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.lang-switch button:hover { color: var(--fg); }
.lang-switch button[aria-pressed="true"] {
  background: var(--sky);
  color: #06121D;
}

.header-cta { display: none; }
@media (min-width: 46rem) { .header-cta { display: inline-flex; padding: 0.62rem 1.1rem; font-size: 0.82rem; --cut: 10px; } }

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 9vw, 7.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 34%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Narrow screens put the copy straight over the art, so the default scrim is
     the heavy one; wide screens relax it and let the key art breathe. */
  background:
    linear-gradient(to right, var(--ink-950) 2%, rgba(5, 9, 15, 0.88) 46%, rgba(5, 9, 15, 0.72) 100%),
    linear-gradient(to top, var(--ink-950) 2%, rgba(5, 9, 15, 0) 46%);
}
@media (min-width: 56rem) {
  .hero::after {
    background:
      linear-gradient(100deg, var(--ink-950) 4%, rgba(5, 9, 15, 0.92) 32%, rgba(5, 9, 15, 0.42) 62%, rgba(5, 9, 15, 0.68) 100%),
      linear-gradient(to top, var(--ink-950) 1%, rgba(5, 9, 15, 0) 42%);
  }
}
.hero-inner { max-width: 41rem; }

.lockup {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.1rem + 7.4vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.lockup .lockup-b {
  display: block;
  color: var(--sky);
  text-shadow: 0 0 38px rgba(91, 193, 245, 0.42);
}

.hero-pitch {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.6rem);
  letter-spacing: 0.03em;
  color: var(--fg);
  margin: 0 0 0.85rem;
}
.hero-copy {
  color: var(--fg-muted);
  font-size: clamp(1rem, 0.97rem + 0.28vw, 1.14rem);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  font-size: 0.86rem;
  color: var(--fg-faint);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-chips li { margin: 0; display: flex; align-items: center; gap: 0.45rem; }
.hero-chips li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--sky);
  transform: rotate(45deg);
  flex: none;
}

/* ------------------------------------------------------------ features */

.feature-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 44rem) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

.feature h3 {
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
}
.feature p { color: var(--fg-muted); font-size: 0.98rem; margin: 0; }
.feature .feature-num {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sky);
  display: block;
  margin-bottom: 0.7rem;
}

.roster-band {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}
.roster-card { position: relative; z-index: 0; padding: 0; overflow: hidden; }
.roster-card::before,
.roster-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.roster-card::before {
  z-index: 2;
  background: linear-gradient(to top, rgba(5, 9, 15, 0.96) 4%, rgba(5, 9, 15, 0.1) 46%, rgba(5, 9, 15, 0) 70%);
}
.roster-card::after {
  z-index: 3;
  border: 1px solid var(--ink-line);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.roster-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.roster-meta {
  position: absolute;
  z-index: 4;
  left: 1.1rem; right: 1.1rem; bottom: 1.05rem;
}
.roster-meta .grade {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sunny);
  display: block;
}
.roster-meta .name {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: block;
  line-height: 1.15;
}
.roster-meta .role { font-size: 0.85rem; color: var(--fg-muted); }

/* ------------------------------------------------------- closed beta */

.beta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.beta-art { position: absolute; inset: 0; z-index: -2; }
.beta-art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: 0.8; }
.beta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Heavier over the heading band so body copy keeps its contrast; lighter
     across the middle, where the tiles carry their own opaque ground. */
  background:
    radial-gradient(120% 80% at 30% 22%, rgba(91, 193, 245, 0.10), rgba(91, 193, 245, 0) 62%),
    linear-gradient(180deg, var(--ink-950) 0%, rgba(6, 12, 22, 0.92) 24%, rgba(6, 12, 22, 0.78) 58%, var(--ink-950) 100%);
}

.beta-columns {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 56rem) { .beta-columns { grid-template-columns: 1.05fr 1fr; } }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ink-line-soft);
  margin: 0;
}
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps li:first-child { padding-top: 0; }
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #06121D;
  background: var(--sky);
  width: 2.1rem; height: 2.1rem;
  display: grid;
  place-items: center;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.steps p { margin: 0; color: var(--fg-muted); font-size: 0.97rem; }
.steps strong { color: var(--fg); font-weight: 600; }

.promises { display: grid; gap: 1.1rem; margin-top: 1.1rem; }
.promise h3 {
  font-size: 1.05rem;
  color: var(--sky-hi);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.promise .stat-figure {
  font-family: var(--display);
  font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--sky);
  display: block;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 32px rgba(91, 193, 245, 0.35);
}
.promise p { color: var(--fg); font-size: 1rem; }

.caveats { margin-top: 1.1rem; }
.caveats h3 { font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sunny); }
.caveats ul { margin: 0; padding-left: 1.1em; color: var(--fg-muted); font-size: 0.94rem; }
.caveats li::marker { color: var(--sunny); }

/* ------------------------------------------------------------ sign-up */

.signup-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 56rem) { .signup-layout { grid-template-columns: 1fr 1fr; } }

.signup-form { display: grid; gap: 1.15rem; }

.field label,
.check label { display: block; }
.field > label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 0.5rem;
}
.field input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--fg);
  background: rgba(5, 9, 15, 0.72);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input[type="email"]::placeholder { color: #6E859F; }
.field input[type="email"]:hover { border-color: rgba(91, 193, 245, 0.45); }
.field input[type="email"]:focus-visible {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91, 193, 245, 0.28);
}

.consent-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin: 0;
  padding-left: 0.9rem;
  border-left: 2px solid var(--sky);
}

.check { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.check input[type="checkbox"] {
  width: 1.2rem; height: 1.2rem;
  margin: 0.18rem 0 0;
  accent-color: var(--sky);
  flex: none;
}
.check label { font-size: 0.93rem; color: var(--fg-muted); }

.signup-status {
  margin: 0;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.signup-status:empty { display: none; }
.signup-status[data-tone="ok"] {
  color: var(--mint);
  border-left: 2px solid var(--mint);
  padding-left: 0.8rem;
}
.signup-status[data-tone="error"] {
  color: var(--coral);
  border-left: 2px solid var(--coral);
  padding-left: 0.8rem;
}

.btn[aria-busy="true"] { opacity: 0.65; pointer-events: none; }

.fallback-note { font-size: 0.93rem; color: var(--fg-muted); }

.signup-aside h3 { font-size: 1.05rem; }
.signup-aside ul { color: var(--fg-muted); font-size: 0.95rem; padding-left: 1.1em; margin-bottom: 0; }
.signup-aside li::marker { color: var(--sky); }

/* -------------------------------------------------------- screenshots */

/* Two columns at most: these are 1280px-wide landscape device captures, and a
   third column shrinks the in-game text past legibility. */
.shots {
  display: grid;
  gap: clamp(1.15rem, 2.4vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 46rem) { .shots { grid-template-columns: repeat(2, 1fr); } }

.shot { margin: 0; position: relative; z-index: 0; }
.shot img {
  width: 100%;
  border: 1px solid var(--ink-line);
  background: var(--ink-900);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.shot figcaption b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.shot figcaption > span:not(.shot-tag) { display: block; }
.shot-tag {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-wash);
  border: 1px solid rgba(91, 193, 245, 0.3);
  padding: 0.16rem 0.5rem;
}

/* ---------------------------------------------------------------- FAQ */

.faq { max-width: 52rem; }
.faq details {
  border-bottom: 1px solid var(--ink-line-soft);
}
.faq details:first-of-type { border-top: 1px solid var(--ink-line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem);
  color: var(--fg);
  transition: color 0.15s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sky-hi); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.5rem; top: 50%;
  width: 9px; height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .answer { padding: 0 0 1.35rem; color: var(--fg-muted); font-size: 0.98rem; max-width: 62ch; }

/* ------------------------------------------------------------- footer */

.site-footer {
  border-top: 1px solid var(--ink-line-soft);
  background: var(--ink-950);
  padding: clamp(2.5rem, 5vw, 4rem) 0 3rem;
  font-size: 0.92rem;
  color: var(--fg-faint);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 46rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.85rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.legal-line {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line-soft);
  font-size: 0.84rem;
  color: #7D91AB;
}
.legal-line p { margin-bottom: 0.4rem; }

/* ------------------------------------------------------ scroll reveal */

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
