.legal-page {
  background:
    linear-gradient(180deg, #0b1118 0 72px, transparent 72px),
    repeating-linear-gradient(90deg, rgba(12, 18, 24, 0.025) 0 1px, transparent 1px 88px),
    var(--page);
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 38px 36px;
  color: #fff;
  background:
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 32px 33px),
    linear-gradient(110deg, #06392c 0%, #0c5138 68%, #14252b 100%);
  border-bottom: 4px solid var(--yellow);
}

.legal-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: #10d35f;
}

.legal-hero .eyebrow {
  color: var(--yellow);
}

.legal-hero h1 {
  margin-top: 6px;
  font-size: 62px;
  line-height: 0.94;
}

.legal-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.legal-effective {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
  font-family: "Roboto Condensed", Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document {
  padding: 10px 38px 0;
  background: var(--panel);
  border-top: 3px solid rgba(12, 18, 24, 0.86);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  font-family: "Roboto Condensed", Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  color: #313b39;
  font-size: 14px;
  line-height: 1.62;
}

.legal-copy h3 {
  margin: 8px 0 -4px;
  color: var(--ink);
  font-size: 15px;
}

.legal-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.legal-copy a {
  color: var(--green-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-callout {
  padding: 14px 16px;
  color: var(--ink);
  background: #edf5e8;
  border-left: 4px solid var(--good);
  font-weight: 700;
}

@media (max-width: 980px) {
  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .legal-shell {
    width: min(100% - 24px, 940px);
    padding-top: 12px;
    padding-bottom: 28px;
  }

  .legal-hero {
    padding: 26px 22px 28px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-document {
    padding: 4px 22px 0;
  }

  .legal-section {
    padding: 22px 0;
  }
}
