:root {
  --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-num: "Pretendard", ui-monospace, monospace;
  --brand-500: #f5c400;
  --brand-600: #e6b000;
  --fg-main: #1b1d1f;
  --fg-body-2: #6b7684;
  --fg-caption: #8b95a1;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-cta: 0 4px 14px rgba(0, 0, 0, 0.14);
  --wrap: 1120px;
  --nav-h: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--fg-main);
  background: #fff;
  line-height: 1.6;
}

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

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

.mp-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* —— Nav —— */
.mp-nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, backdrop-filter 0.2s;
}

.mp-nav-shell.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: #e5e8eb;
}

.mp-nav {
  max-width: var(--wrap);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.mp-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.mp-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.mp-nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--fg-body-2);
}

.mp-nav-links a:hover {
  color: var(--fg-main);
}

.mp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--fg-main);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-cta);
}

.mp-cta:hover {
  filter: brightness(1.05);
}

.mp-cta-lg {
  height: 56px;
  padding: 0 28px;
  font-size: 17px;
}

.mp-cta-dark {
  background: var(--fg-main);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.mp-cta-white {
  background: #fff;
  color: var(--fg-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .mp-nav-links {
    display: none;
  }
}

/* —— Hero —— */
.mp-hero {
  position: relative;
  padding: calc(var(--nav-h) + 20px) 24px 64px;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 70%);
  overflow: hidden;
  text-align: center;
}

.mp-orb-pink {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 229, 0, 0.35), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}

.mp-orb-gold {
  position: absolute;
  top: 60px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.4), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}

.mp-hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}

.mp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-600);
  margin-bottom: 28px;
}

.mp-hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
}

.mp-h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--fg-main);
  text-wrap: balance;
}

.mp-h1 .accent {
  color: var(--brand-600);
}

.mp-sub {
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--fg-body-2);
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  white-space: pre-line;
}

.mp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}

/* —— Counter band —— */
.mp-counter-section {
  background: #f5f6f8;
  padding: 56px 24px 72px;
  text-align: center;
}

.mp-counter-kicker {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-caption);
  margin-bottom: 12px;
}

.mp-counter {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  color: var(--fg-main);
  line-height: 1;
}

.mp-counter-unit {
  margin-left: 0.06em;
  color: var(--brand-600);
}

.mp-counter.is-animating .mp-counter-value {
  display: inline-block;
  min-width: 5ch;
}

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

.mp-counter-note {
  font-size: 14px;
  color: var(--fg-caption);
  margin-top: 12px;
}

/* —— Metrics —— */
.mp-metrics {
  background: #f5f6f8;
  padding: 0 24px 72px;
}

.mp-metrics-head {
  text-align: center;
  margin-bottom: 44px;
}

.mp-eyebrow {
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-caption);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.mp-eyebrow-brand {
  color: var(--brand-600);
}

.mp-section-h {
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: pre-line;
  text-wrap: balance;
}

.mp-section-copy {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-body-2);
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.mp-grid-4 {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mp-metric {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.mp-metric-num {
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--brand-600);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}

.mp-metric-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--fg-body-2);
  margin-top: 14px;
}

@media (max-width: 900px) {
  .mp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mp-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* —— Diff —— */
.mp-diff {
  background: #fff;
  padding: 96px 24px;
}

.mp-diff-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.mp-grid-3 {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mp-diff-card {
  border-radius: 32px;
  padding: 40px 32px 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.mp-diff-card.crew {
  background: #fff9e6;
}

.mp-diff-card.honest {
  background: #f5f6f8;
}

.mp-diff-card.trust {
  background: #f3faff;
}

.mp-diff-tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.mp-diff-card.crew .mp-diff-tag {
  color: var(--brand-600);
}

.mp-diff-card.honest .mp-diff-tag {
  color: #ffaf03;
}

.mp-diff-card.trust .mp-diff-tag {
  color: #3b8fe2;
}

.mp-diff-card h3 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-top: 24px;
  white-space: pre-line;
}

.mp-diff-card p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-body-2);
  margin-top: 14px;
}

@media (max-width: 900px) {
  .mp-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* —— Features —— */
.mp-features {
  background: #fff;
  padding: 32px 24px 56px;
}

.mp-features-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 16px;
}

.mp-feature-h-lg {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: pre-line;
}

.mp-feature-row {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 68px 0;
}

.mp-feature-row.reverse {
  direction: rtl;
}

.mp-feature-row.reverse > * {
  direction: ltr;
}

.mp-feature-eyebrow {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.mp-feature-eyebrow.crew {
  color: var(--brand-600);
}

.mp-feature-eyebrow.game {
  color: #ffaf03;
}

.mp-feature-eyebrow.shop {
  color: var(--brand-600);
}

.mp-feature-eyebrow.bonus {
  color: #3b8fe2;
}

.mp-feature-h {
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  white-space: pre-line;
}

.mp-feature-copy {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-body-2);
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.mp-feature-visual {
  height: 480px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.mp-feature-visual.crew-bg {
  background: #fff9e6;
}

.mp-feature-visual.game-bg {
  background: #f3faff;
}

.mp-feature-visual.shop-bg {
  background: #ffedf3;
}

.mp-feature-visual.bonus-bg {
  background: #f5f6f8;
}

/* crew visual */
.mp-crew-panel {
  width: 340px;
  padding: 24px;
}

.mp-crew-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.mp-crew-row.muted {
  font-weight: 500;
  color: var(--fg-body-2);
  background: rgba(255, 255, 255, 0.7);
}

.mp-crew-row strong {
  margin-left: auto;
  color: #3182f6;
}

/* game visual */
.mp-doni-wrap {
  position: relative;
  width: 380px;
  height: 360px;
  display: grid;
  place-items: center;
}

.mp-doni-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(254, 229, 0, 0.35), transparent 65%);
}

.mp-doni-wrap img {
  width: 260px;
  position: relative;
}

.mp-pop {
  position: absolute;
  animation: mp-float 2.4s ease-in-out infinite;
}

.mp-pop-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-500);
  color: var(--fg-main);
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-card);
}

.mp-pop:nth-child(2) {
  top: 18%;
  left: 8%;
  animation-delay: 0.1s;
}

.mp-pop:nth-child(3) {
  top: 16%;
  right: 6%;
  animation-delay: 0.5s;
}

.mp-pop:nth-child(4) {
  bottom: 32%;
  left: 4%;
  animation-delay: 0.9s;
}

.mp-pop:nth-child(5) {
  bottom: 28%;
  right: 8%;
  animation-delay: 1.3s;
}

@keyframes mp-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* shop visual */
.mp-shop-panel {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-shop-item {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.mp-shop-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff9e6;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.mp-shop-item strong {
  display: block;
  font-size: 15px;
}

.mp-shop-item span {
  font-size: 12px;
  color: var(--fg-caption);
}

.mp-shop-reward {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff4e0;
  color: #bf6f00;
  font-weight: 700;
  font-size: 12px;
}

/* bonus visual */
.mp-bonus-hero {
  width: 340px;
  padding: 24px;
}

.mp-bonus-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f5c400 0%, #e6a800 100%);
  color: var(--fg-main);
  box-shadow: var(--shadow-cta);
}

.mp-bonus-card small {
  font-weight: 700;
  font-size: 13px;
  opacity: 0.85;
}

.mp-bonus-card h4 {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.mp-mission {
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.mp-mission-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff9e6;
}

.mp-mission-body {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.mp-mission-body span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--fg-caption);
  margin-top: 4px;
}

.mp-mission-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--fg-main);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 880px) {
  .mp-feature-row,
  .mp-feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 48px 0;
    gap: 32px;
  }

  .mp-feature-visual {
    height: 400px;
  }
}

/* —— Trust —— */
.mp-trust {
  background: #1b1d1f;
  padding: 84px 24px;
  color: #fff;
}

.mp-trust-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.mp-trust .mp-eyebrow {
  color: #ffe46b;
}

.mp-trust h2 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  white-space: pre-line;
}

.mp-trust-copy {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  max-width: 480px;
}

.mp-trust-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mp-trust-card {
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-trust-card h4 {
  font-weight: 700;
  font-size: 18px;
}

.mp-trust-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .mp-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Reviews —— */
.mp-reviews {
  background: #fffbeb;
  padding: 84px 24px;
}

.mp-reviews-head {
  text-align: center;
  margin-bottom: 44px;
}

.mp-grid-2 {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mp-review {
  background: #fff;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
}

.mp-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #fdce04;
  font-size: 18px;
  letter-spacing: 1px;
}

.mp-review p {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: #26282b;
  letter-spacing: -0.01em;
}

.mp-review cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-caption);
  margin-top: 18px;
}

@media (max-width: 768px) {
  .mp-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* —— Download —— */
.mp-download {
  background: #fff;
  padding: 96px 24px;
}

.mp-dl-card {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 60px 56px;
  background: linear-gradient(135deg, #f5c400 0%, #e6a800 100%);
  color: var(--fg-main);
  box-shadow: 0 30px 80px rgba(230, 168, 0, 0.35);
}

.mp-dl-orb1 {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(8px);
}

.mp-dl-orb2 {
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mp-dl-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 200px;
  gap: 40px;
  align-items: center;
}

.mp-dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
}

.mp-dl-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-main);
}

.mp-dl-card h2 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  white-space: pre-line;
}

.mp-dl-card .mp-dl-sub {
  font-weight: 600;
  font-size: 17px;
  margin-top: 18px;
  opacity: 0.85;
}

.mp-dl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.mp-cta.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.mp-qr-box {
  width: 100%;
  max-width: 188px;
  margin: 0 auto;
  padding: 14px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.mp-qr-box img {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  border-radius: 14px;
}

.mp-qr-title {
  font-weight: 800;
  font-size: 13px;
  margin-top: 12px;
}

.mp-qr-sub {
  font-weight: 600;
  font-size: 12px;
  color: var(--fg-caption);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .mp-dl-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mp-dl-btns {
    justify-content: center;
  }

  .mp-dl-card {
    padding: 40px 28px;
  }
}

/* —— Footer —— */
.mp-footer {
  background: #0e0e10;
  color: #fff;
  padding: 56px 24px 32px;
}

.mp-footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.mp-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.mp-footer-brand img {
  width: 36px;
  border-radius: 10px;
}

.mp-footer-info {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.mp-footer-col h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.mp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-footer-col a {
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255,  255, 0.5);
}

.mp-footer-col a:hover {
  color: #fff;
}

.mp-footer-copy {
  max-width: var(--wrap);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: left;
}

@media (max-width: 768px) {
  .mp-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* —— Legal —— */
.page-legal .mp-nav-shell {
  position: sticky;
}

.page-legal .legal-doc {
  max-width: 720px;
  margin: 24px auto 64px;
  padding: 32px 28px 48px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e8eb;
  box-shadow: var(--shadow-card);
}

.legal-doc h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.legal-doc h2 {
  font-size: 1.05rem;
  margin: 28px 0 12px;
  padding-top: 8px;
  border-top: 1px solid #e5e8eb;
}

.legal-doc h3 {
  font-size: 0.95rem;
  margin: 16px 0 8px;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
}

.legal-doc hr {
  border: none;
  border-top: 1px solid #e5e8eb;
  margin: 24px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 12px 0 16px;
}

.legal-table th,
.legal-table td {
  border: 1px solid #e5e8eb;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f5f6f8;
  width: 32%;
}

.legal-doc a {
  color: #3182f6;
}

/* —— Scroll reveal —— */
html.mp-js .mp-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

html.mp-js .mp-reveal.mp-reveal-left {
  transform: translate3d(-28px, 28px, 0);
}

html.mp-js .mp-reveal.mp-reveal-right {
  transform: translate3d(28px, 28px, 0);
}

html.mp-js .mp-reveal.mp-reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

html.mp-js .mp-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.mp-js .mp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
