/* ==========================================================================
   CHALLENGEATLAS — styles.css
   Visual DNA: Yinka Ilori Studio — blush paper canvas, ink hairlines,
   saturated flat pattern bands. No shadows, no gradients on UI, no radii.
   ========================================================================== */

:root {
  /* Colors — canvas & structure */
  --blush: #f5e5e5;
  --blush-deep: #efd9d9;
  --ink: #000000;
  --ink-soft: #4a4a4a;
  --hairline: #000000;

  /* Colors — accent (text-safe) and pattern fills */
  --rose-deep: #96114a;   /* text/accent, AA on blush (6.96:1) */
  --rose: #d9698c;        /* pattern fill only */
  --orange: #e8622a;      /* pattern fill only */
  --green: #2f6b30;       /* pattern fill only */

  /* Typography */
  --font-ui: 'Helvetica Neue', Inter, Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --font-mark: Georgia, 'Bodoni 72', Didot, 'Times New Roman', serif;

  --text-body: 0.9375rem;      /* 15px */
  --text-sub: 1.25rem;         /* 20px */
  --text-label: 0.75rem;       /* 12px, uppercase micro-label */
  --text-display: clamp(2.5rem, 8.2vw, 7.5rem);
  --text-display-sm: clamp(1.75rem, 4.6vw, 3.25rem);

  /* Spacing */
  --sp-15: 15px;
  --sp-30: 30px;
  --sp-80: 80px;
  --section-gap: clamp(72px, 9vw, 136px);
  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1440px;

  --radius: 0;
  --line: 1px solid var(--hairline);

  /* Flat pattern tile — wavy vertical stripes + grid circles (theme motif) */
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Crect width='240' height='240' fill='%23f5e5e5'/%3E%3Cg fill='none' stroke-width='16'%3E%3Cpath d='M20 0C44 40-4 80 20 120c24 40-24 80 0 120' stroke='%23d9698c'/%3E%3Cpath d='M80 0c24 40-24 80 0 120c24 40-24 80 0 120' stroke='%23e8622a'/%3E%3Cpath d='M140 0c24 40-24 80 0 120c24 40-24 80 0 120' stroke='%23d9698c'/%3E%3Cpath d='M200 0c24 40-24 80 0 120c24 40-24 80 0 120' stroke='%23e8622a'/%3E%3C/g%3E%3Ccircle cx='50' cy='58' r='22' fill='%232f6b30'/%3E%3Ccircle cx='170' cy='178' r='22' fill='%232f6b30'/%3E%3Ccircle cx='110' cy='118' r='14' fill='%23000000'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--text-body);
  line-height: 1.5;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; border: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--rose-deep);
  outline-offset: 3px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--blush);
  padding: 12px 18px; z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- Shared layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-gap); border-top: var(--line); }
.section--plain { border-top: 0; }

.section__label {
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: var(--sp-30);
}
.section__title {
  font-size: var(--text-display-sm);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 20ch;
}
.section__intro {
  margin-top: var(--sp-30);
  max-width: 62ch;
  font-size: var(--text-sub);
  line-height: 1.35;
}
.section__note { margin-top: var(--sp-30); max-width: 66ch; color: var(--ink-soft); }
.accent { color: var(--rose-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius);
  font-size: var(--text-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: var(--line);
  background: transparent;
  cursor: pointer;
  transition: background-color .18s linear, color .18s linear;
}
.btn--primary { background: var(--ink); color: var(--blush); }
.btn--primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--blush); }
.btn__icon { width: 16px; height: 16px; flex: none; }

/* ---------- 1. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blush);
  border-bottom: var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-30);
  min-height: 72px;
}
.header__logo {
  font-family: var(--font-mark);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.header__logo-accent { color: var(--rose-deep); }

.header__nav { display: flex; align-items: center; gap: var(--sp-30); }
.header__cluster { display: flex; align-items: center; gap: var(--sp-30); }
.header__link {
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.header__link:hover { border-bottom-color: var(--rose-deep); color: var(--rose-deep); }
.header__link--cta { color: var(--rose-deep); }

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: var(--line);
  background: transparent;
  cursor: pointer;
}
.header__burger-icon { width: 20px; height: 20px; }
.header__burger[aria-expanded="true"] { background: var(--ink); color: var(--blush); }

@media (max-width: 1080px) {
  .header__burger { display: inline-flex; }
  .header__nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--blush);
    border-bottom: var(--line);
    padding: var(--sp-30) var(--gutter) var(--sp-80);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    display: none;
  }
  .header__nav.is-open { display: flex; }
  .header__cluster { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .header__link { font-size: 1rem; padding: 16px 0; width: 100%; border-bottom: var(--line); }
}

/* ---------- 2. Hero ---------- */
.hero { border-bottom: var(--line); }
.hero__band {
  height: clamp(120px, 18vw, 220px);
  background-image: var(--pattern);
  background-size: clamp(150px, 18vw, 240px);
  border-bottom: var(--line);
}
.hero__inner { padding-block: clamp(48px, 7vw, 110px); }
.hero__label {
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
}
.hero__title {
  margin-top: var(--sp-30);
  font-size: var(--text-display);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 14ch;
}
.hero__lead {
  margin-top: var(--sp-30);
  max-width: 56ch;
  font-size: var(--text-sub);
  line-height: 1.35;
}
.hero__actions { margin-top: var(--sp-80); display: flex; flex-wrap: wrap; gap: var(--sp-15); }
.hero__meta {
  margin-top: var(--sp-30);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__showcase { border-top: var(--line); }
.hero__icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-left: var(--line);
}
.hero__icon-cell {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: var(--sp-15);
  background: var(--blush);
}
.hero__icon { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
@media (max-width: 900px) { .hero__icons { grid-template-columns: repeat(4, 1fr); } }

.hero__photo-wrap {
  border-bottom: var(--line);
  aspect-ratio: 16 / 5;
  overflow: hidden;
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .hero__photo-wrap { aspect-ratio: 16 / 9; } }

/* ---------- 3. Games ---------- */
.games__figure { margin-top: var(--sp-80); border: var(--line); }
.games__frame { aspect-ratio: 16 / 6; overflow: hidden; border-bottom: var(--line); }
@media (max-width: 700px) { .games__frame { aspect-ratio: 16 / 10; } }
.games__img { width: 100%; height: 100%; object-fit: cover; }
.games__caption {
  padding: var(--sp-15) var(--sp-30);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.games__grid {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}
@media (max-width: 1180px) { .games__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .games__grid { grid-template-columns: 1fr; } }

.game {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: var(--sp-30);
  display: flex;
  flex-direction: column;
  gap: var(--sp-15);
}
.game__head { display: flex; align-items: center; gap: var(--sp-15); }
.game__icon { width: 64px; height: 64px; flex: none; border: var(--line); object-fit: cover; }
.game__title { font-size: var(--text-sub); line-height: 1.2; font-weight: 500; }
.game__dev { font-size: var(--text-label); letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 4px; }
.game__rating { display: flex; align-items: center; gap: 10px; }
.game__score { font-size: var(--text-label); font-weight: 500; letter-spacing: 0.08em; }
.game__genre {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  border-top: var(--line);
  padding-top: var(--sp-15);
}
.game__text { color: var(--ink-soft); }
.game__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}
.game__btn:hover { color: var(--rose-deep); border-bottom-color: var(--rose-deep); }
.game__btn-icon { width: 14px; height: 14px; }

/* Star rating */
.stars { display: inline-flex; line-height: 0; }
.stars__svg { width: 104px; height: 20px; }
.stars__base { fill: rgba(0, 0, 0, 0.16); }

/* ---------- 4. Gallery ---------- */
.gallery__grid {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}
@media (max-width: 1180px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gallery__grid { grid-template-columns: 1fr; } }

.gallery__item { border-right: var(--line); border-bottom: var(--line); }
.gallery__frame { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: var(--line); }
.gallery__img { width: 100%; height: 100%; object-fit: cover; }
.gallery__caption { padding: var(--sp-15) var(--sp-30) var(--sp-30); }
.gallery__name { font-size: var(--text-sub); font-weight: 500; line-height: 1.2; }
.gallery__genre {
  margin-top: 6px;
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 5. Revenue / transparency ---------- */
.revenue__layout {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-80);
  align-items: start;
}
@media (max-width: 900px) { .revenue__layout { grid-template-columns: 1fr; gap: var(--sp-30); } }

.revenue__list { display: grid; gap: var(--sp-30); border-top: var(--line); }
.revenue__item { padding-top: var(--sp-30); border-bottom: var(--line); padding-bottom: var(--sp-30); }
.revenue__item-title {
  font-size: var(--text-sub);
  font-weight: 500;
  margin-bottom: 10px;
}
.revenue__item-text { color: var(--ink-soft); max-width: 56ch; }
.revenue__cta { margin-top: var(--sp-30); }
.revenue__figure { border: var(--line); }
.revenue__frame { aspect-ratio: 3 / 2; overflow: hidden; border-bottom: var(--line); }
.revenue__img { width: 100%; height: 100%; object-fit: cover; }
.revenue__caption {
  padding: var(--sp-15) var(--sp-30);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- 6. Method ---------- */
.method__grid {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}
@media (max-width: 980px) { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .method__grid { grid-template-columns: 1fr; } }

.method__item {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: var(--sp-30);
}
.method__icon { width: 32px; height: 32px; color: var(--rose-deep); }
.method__title { margin-top: var(--sp-15); font-size: var(--text-sub); font-weight: 500; line-height: 1.2; }
.method__text { margin-top: 10px; color: var(--ink-soft); }

.method__strip {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
}
@media (max-width: 760px) { .method__strip { grid-template-columns: 1fr; } }
.method__frame { aspect-ratio: 3 / 2; overflow: hidden; }
.method__frame + .method__frame { border-left: var(--line); }
@media (max-width: 760px) { .method__frame + .method__frame { border-left: 0; border-top: var(--line); } }
.method__img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 7. Reviews ---------- */
.reviews__grid {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

.reviews__item {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: var(--sp-30);
  display: flex;
  flex-direction: column;
  gap: var(--sp-15);
}
.reviews__quote { font-size: var(--text-sub); line-height: 1.35; }
.reviews__author { display: flex; align-items: center; gap: var(--sp-15); margin-top: auto; padding-top: var(--sp-15); border-top: var(--line); }
.reviews__avatar {
  width: 44px; height: 44px; flex: none;
  border: var(--line);
  display: grid; place-items: center;
  font-weight: 500; letter-spacing: 0.04em;
  background: var(--blush-deep);
}
.reviews__name { font-weight: 500; }
.reviews__role { font-size: var(--text-label); letter-spacing: 0.08em; color: var(--ink-soft); }
.reviews__figure { margin-top: var(--sp-80); border: var(--line); }
.reviews__frame { aspect-ratio: 16 / 6; overflow: hidden; }
@media (max-width: 700px) { .reviews__frame { aspect-ratio: 16 / 10; } }
.reviews__img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 8. FAQ ---------- */
.faq__layout {
  margin-top: var(--sp-80);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-80);
  align-items: start;
}
@media (max-width: 900px) { .faq__layout { grid-template-columns: 1fr; gap: var(--sp-30); } }
.faq__figure { border: var(--line); }
.faq__frame { aspect-ratio: 4 / 3; overflow: hidden; }
.faq__img { width: 100%; height: 100%; object-fit: cover; }

.faq__list { border-top: var(--line); }
.faq__item { border-bottom: var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-15);
  padding: var(--sp-30) 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: var(--text-sub);
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}
.faq__q:hover { color: var(--rose-deep); }
.faq__sign { width: 18px; height: 18px; flex: none; transition: transform .2s linear; }
.faq__item--open .faq__sign { transform: rotate(45deg); }
.faq__a { display: none; padding-bottom: var(--sp-30); max-width: 68ch; color: var(--ink-soft); }
.faq__item--open .faq__a { display: block; }

/* ---------- 9. Subscribe ---------- */
.subscribe { border-top: var(--line); }
.subscribe__band {
  height: clamp(90px, 12vw, 160px);
  background-image: var(--pattern);
  background-size: clamp(140px, 16vw, 220px);
  border-bottom: var(--line);
}
.subscribe__layout {
  padding-block: var(--section-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
  align-items: start;
}
@media (max-width: 900px) { .subscribe__layout { grid-template-columns: 1fr; gap: var(--sp-30); } }
.subscribe__figure { border: var(--line); margin-top: var(--sp-30); }
.subscribe__frame { aspect-ratio: 4 / 3; overflow: hidden; }
.subscribe__img { width: 100%; height: 100%; object-fit: cover; }

.form { display: grid; gap: var(--sp-30); border-top: var(--line); padding-top: var(--sp-30); }
.form__field { display: grid; gap: 8px; }
.form__label {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  border: var(--line);
  border-radius: var(--radius);
  background: var(--blush);
  color: var(--ink);
  font: inherit;
}
.form__input::placeholder { color: #7a7a7a; }
.form__consent { display: flex; align-items: flex-start; gap: 12px; }
.form__checkbox { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--rose-deep); }
.form__consent-text { font-size: var(--text-label); line-height: 1.6; color: var(--ink-soft); }
.form__consent-text a { color: var(--rose-deep); }
.form__error { display: none; color: var(--rose-deep); font-weight: 500; }
.form__error.is-visible { display: block; }
.form__success {
  display: none;
  border: var(--line);
  background: var(--ink);
  color: var(--blush);
  padding: var(--sp-30);
}
.form__success.is-visible { display: block; }
.form__success-title { font-size: var(--text-sub); font-weight: 500; margin-bottom: 8px; }

/* ---------- 10. Footer ---------- */
.footer { border-top: var(--line); padding-block: var(--sp-80) var(--sp-30); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-30);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: var(--font-mark);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.footer__tagline { margin-top: var(--sp-15); color: var(--ink-soft); max-width: 34ch; }
.footer__heading {
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: var(--sp-15);
}
.footer__list { display: grid; gap: 10px; }
.footer__link { text-decoration: none; color: var(--ink-soft); }
.footer__link:hover { color: var(--ink); text-decoration: underline; }
.footer__contact { text-decoration: none; color: var(--ink); font-weight: 500; word-break: break-all; }
.footer__contact:hover { color: var(--rose-deep); }
.footer__bottom {
  margin-top: var(--sp-80);
  padding-top: var(--sp-30);
  border-top: var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-15);
  justify-content: space-between;
  font-size: var(--text-label);
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ---------- Floating UI ---------- */
.totop {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  width: 52px; height: 52px;
  display: none;
  align-items: center; justify-content: center;
  border: var(--line);
  background: var(--blush);
  cursor: pointer;
  z-index: 90;
}
.totop.is-visible { display: inline-flex; }
.totop:hover { background: var(--ink); color: var(--blush); }
.totop__icon { width: 20px; height: 20px; }

.cookiebar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 120;
  display: none;
  background: var(--blush);
  border-top: var(--line);
  padding: var(--sp-30) 0;
}
.cookiebar.is-visible { display: block; }
.cookiebar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-15);
}
.cookiebar__text { max-width: 68ch; color: var(--ink-soft); }
.cookiebar__text a { color: var(--rose-deep); }
.cookiebar__actions { display: flex; gap: var(--sp-15); flex-wrap: wrap; }
.cookiebar__btn { padding: 12px 22px; font-size: var(--text-label); }

/* ---------- Legal pages ---------- */
.legal { padding-block: var(--section-gap); }
.legal__title {
  font-size: var(--text-display-sm);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 20ch;
}
.legal__meta {
  margin-top: var(--sp-15);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.legal__back { margin-top: var(--sp-30); }
.legal__body { margin-top: var(--sp-80); max-width: 76ch; border-top: var(--line); }
.legal__body h2 {
  font-size: var(--text-sub);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--sp-30);
  padding-top: var(--sp-30);
  border-top: var(--line);
}
.legal__body h2:first-child { border-top: 0; margin-top: var(--sp-30); padding-top: 0; }
.legal__body h3 { font-size: var(--text-body); font-weight: 500; margin-top: var(--sp-15); }
.legal__body p { margin-top: var(--sp-15); color: var(--ink-soft); }
.legal__body a { color: var(--rose-deep); }
.legal__body ul { margin-top: var(--sp-15); display: grid; gap: 10px; }
.legal__body li { padding-left: 20px; position: relative; color: var(--ink-soft); }
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--rose-deep);
}
.legal__table { margin-top: var(--sp-15); border-top: var(--line); }
.legal__row { border-bottom: var(--line); padding-block: var(--sp-15); }
.legal__row-title { font-weight: 500; }
.legal__row-text { color: var(--ink-soft); margin-top: 4px; }

/* ---------- Motion ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
