:root {
  --terms-ink: #080808;
  --terms-muted: #5d5d5d;
  --terms-paper: #ffffff;
  --terms-soft: #f1f1f1;
  --terms-yellow: #fff200;
  --terms-line: #d6d6d6;
  --terms-dark: #080808;
  --terms-radius: 1.5rem;
  --terms-content: 1560px;
}

html,
body {
  background: var(--terms-paper);
  color: var(--terms-ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.terms-page {
  min-width: 320px;
}

.terms-critical {
  isolation: isolate;
}

.terms-site-header {
  position: relative;
  z-index: 5;
  min-height: 171px;
  background: var(--terms-paper) !important;
  box-shadow: 0 1px 0 var(--terms-line);
}

.terms-main {
  width: 100%;
  overflow: visible;
}

.terms-section {
  width: min(100% - 48px, var(--terms-content));
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.terms-section h1,
.terms-section h2,
.terms-section h3,
.terms-section p {
  margin-top: 0;
}

.terms-section h1,
.terms-section h2,
.terms-section h3 {
  letter-spacing: -.045em;
}

.terms-section h2 {
  max-width: 47rem;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  font-weight: 700;
  line-height: .98;
}

.terms-section h3 {
  margin-bottom: .85rem;
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  line-height: 1.05;
}

.terms-section p,
.terms-section li {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.35;
}

.terms-eyebrow {
  margin-bottom: 1.4rem !important;
  color: var(--terms-muted);
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.terms-hero {
  width: 100%;
  max-width: none;
  padding: clamp(3.5rem, 7vw, 7rem) max(24px, calc((100% - var(--terms-content)) / 2)) clamp(2.5rem, 5vw, 5rem);
  background: var(--terms-paper);
}

.terms-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: center;
  max-width: var(--terms-content);
  margin-inline: auto;
}

.terms-hero__copy {
  min-width: 0;
}

.terms-hero h1 {
  max-width: 48rem;
  margin-bottom: 2rem;
  font-size: clamp(3.6rem, 8.4vw, 9rem);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .86;
}

.terms-hero__lede {
  max-width: 38rem;
  margin-bottom: 2.5rem !important;
  font-size: clamp(1.15rem, 1.65vw, 1.7rem) !important;
  line-height: 1.25 !important;
}

.terms-hero__actions,
.terms-contact__card .terms-button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.terms-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 3.5rem;
  padding: .85rem 1.25rem;
  border: 1px solid var(--terms-ink);
  border-radius: 999px;
  color: var(--terms-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.terms-button:hover,
.terms-button:focus-visible {
  transform: translateY(-2px);
}

.terms-button--dark {
  background: var(--terms-dark);
  color: #fff;
}

.terms-button--yellow {
  border-color: var(--terms-yellow);
  background: var(--terms-yellow);
  color: var(--terms-ink);
}

.terms-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--terms-ink);
}

.terms-text-link,
.terms-advertising__link {
  color: inherit;
  font-weight: 700;
  text-underline-offset: .25rem;
}

.terms-text-link {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.terms-text-link:hover,
.terms-text-link:focus-visible,
.terms-advertising__link:hover,
.terms-advertising__link:focus-visible {
  color: #555;
}

.terms-hero__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  border-radius: var(--terms-radius);
  background: var(--terms-dark);
  overflow: hidden;
}

.terms-hero__visual::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: calc(var(--terms-radius) - .65rem);
  content: "";
  pointer-events: none;
}

.terms-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  opacity: .88;
}

.terms-hero__visual figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.terms-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--terms-content);
  margin: clamp(3.5rem, 8vw, 8rem) auto 0;
  border-block: 1px solid var(--terms-line);
}

.terms-hero__fact {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-height: 5rem;
  padding: 1.4rem 1rem 1.4rem 0;
  border-right: 1px solid var(--terms-line);
}

.terms-hero__fact:last-child {
  border-right: 0;
  padding-left: 1rem;
}

.terms-hero__fact strong {
  color: var(--terms-muted);
  font-size: .85rem;
}

.terms-hero__fact span {
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 700;
}

.terms-section__heading {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.terms-section__heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 25rem);
  align-items: end;
}

.terms-section__summary {
  max-width: 25rem;
  margin-bottom: .3rem !important;
  color: var(--terms-muted);
}

.terms-scope {
  border-top: 1px solid var(--terms-line);
}

.terms-scope__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 10rem);
}

.terms-lead {
  max-width: 41rem;
  margin-bottom: 0 !important;
  font-size: clamp(1.45rem, 2.3vw, 2.5rem) !important;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.08 !important;
}

.terms-copy {
  max-width: 38rem;
}

.terms-copy p + p {
  margin-top: 1.5rem;
}

.terms-comparison {
  max-width: none;
  padding-inline: max(24px, calc((100% - var(--terms-content)) / 2));
  background: var(--terms-soft);
}

.terms-comparison__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--terms-content);
  margin-inline: auto;
}

.terms-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  min-height: 18rem;
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  border-radius: var(--terms-radius);
}

.terms-card h3 {
  margin-top: 3.8rem;
}

.terms-card p {
  margin-bottom: 0;
}

.terms-card__number {
  font-size: .95rem;
  font-weight: 700;
}

.terms-card--yellow {
  background: var(--terms-yellow);
}

.terms-card--light {
  background: #fff;
}

.terms-card--dark {
  background: var(--terms-dark);
  color: #fff;
}

.terms-use__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr);
  gap: clamp(2.5rem, 9vw, 11rem);
  align-items: start;
}

.terms-use__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: use;
}

.terms-use__list li {
  display: grid;
  grid-template-columns: minmax(10rem, .7fr) 1fr;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--terms-line);
  counter-increment: use;
}

.terms-use__list li::before {
  color: var(--terms-muted);
  content: "0" counter(use);
  font-size: .85rem;
  font-weight: 700;
}

.terms-use__list strong {
  grid-column: 1;
  grid-row: 1;
}

.terms-use__list span {
  grid-column: 2;
  grid-row: 1;
}

.terms-callout {
  padding: 2rem;
  border-radius: var(--terms-radius);
  background: var(--terms-yellow);
}

.terms-callout__label {
  margin-bottom: 4rem !important;
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.terms-callout p:last-child {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.terms-advertising {
  max-width: none;
  padding-inline: max(24px, calc((100% - var(--terms-content)) / 2));
  background: var(--terms-dark);
  color: #fff;
}

.terms-advertising__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 10vw, 13rem);
  max-width: var(--terms-content);
  margin-inline: auto;
}

.terms-advertising__copy {
  max-width: 39rem;
  padding-top: 2.5rem;
}

.terms-advertising__copy p + p {
  margin-top: 1.5rem;
}

.terms-advertising__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.terms-advertising__note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: var(--terms-content);
  margin: clamp(3.5rem, 7vw, 7rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 35%);
}

.terms-advertising__note span {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--terms-yellow);
  border-radius: 50%;
  color: var(--terms-yellow);
  font-weight: 700;
}

.terms-advertising__note p {
  max-width: 46rem;
  margin-bottom: 0;
  color: #fff;
}

.terms-section__mark {
  align-self: center;
  justify-self: end;
  color: var(--terms-muted);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.terms-editorial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 8vw, 10rem);
  padding-top: 2rem;
  border-top: 1px solid var(--terms-line);
}

.terms-editorial__grid p {
  max-width: 38rem;
  margin-bottom: 0;
}

.terms-rights {
  max-width: none;
  padding-inline: max(24px, calc((100% - var(--terms-content)) / 2));
  background: var(--terms-yellow);
}

.terms-rights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--terms-content);
  margin-inline: auto;
  border-top: 1px solid var(--terms-ink);
}

.terms-rights__item {
  padding: 2rem 2rem 0 0;
}

.terms-rights__item + .terms-rights__item {
  padding-left: 2rem;
  border-left: 1px solid var(--terms-ink);
}

.terms-rights__item p {
  max-width: 35rem;
  margin-bottom: 0;
}

.terms-responsibility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .5fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: center;
}

.terms-responsibility__panel {
  max-width: 47rem;
}

.terms-responsibility__panel h2 {
  margin-bottom: 2rem;
}

.terms-responsibility__panel > p:not(.terms-eyebrow) {
  max-width: 39rem;
  margin-bottom: 2.5rem;
}

.terms-responsibility__stamp {
  display: grid;
  width: min(100%, 21rem);
  aspect-ratio: 1;
  place-content: center;
  justify-self: end;
  border: 1px solid var(--terms-ink);
  border-radius: 50%;
  transform: rotate(8deg);
  text-align: center;
}

.terms-responsibility__stamp span,
.terms-responsibility__stamp strong {
  display: block;
}

.terms-responsibility__stamp span {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.terms-responsibility__stamp strong {
  margin: .5rem 0;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  letter-spacing: -.08em;
}

.terms-contact {
  max-width: none;
  padding-inline: max(24px, calc((100% - var(--terms-content)) / 2));
  background: var(--terms-soft);
}

.terms-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, .7fr);
  gap: clamp(2.5rem, 9vw, 12rem);
  max-width: var(--terms-content);
  margin-inline: auto;
  align-items: end;
}

.terms-contact__intro {
  max-width: 37rem;
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
}

.terms-contact__card {
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: var(--terms-radius);
  background: var(--terms-dark);
  color: #fff;
}

.terms-contact__label {
  margin-bottom: 2rem !important;
  color: var(--terms-yellow);
  font-weight: 700;
}

.terms-contact__detail {
  margin-bottom: 2.5rem !important;
}

.terms-updated {
  max-width: var(--terms-content);
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--terms-line);
  color: var(--terms-muted);
  font-size: .9rem !important;
}

.terms-site-footer {
  position: relative;
}

.terms-site-footer .site-footer__nav a,
.terms-site-footer .site-footer__link {
  color: #fff;
  text-decoration: none;
}

.terms-site-footer .site-footer__nav a:hover,
.terms-site-footer .site-footer__nav a:focus-visible,
.terms-site-footer .site-footer__link:hover,
.terms-site-footer .site-footer__link:focus-visible {
  color: var(--terms-yellow);
}

.terms-footer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin-top: 2.5rem;
}

.terms-footer__controls button {
  min-height: 2.75rem;
  padding: .65rem 1rem;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
}

.terms-footer__controls button:hover,
.terms-footer__controls button:focus-visible {
  border-color: var(--terms-yellow);
  color: var(--terms-yellow);
}

.terms-site-footer .site-footer__utility-link {
  font-size: .95rem;
}

.terms-consent-preferences {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgb(0 0 0 / 58%);
}

.terms-consent-preferences[hidden] {
  display: none;
}

.terms-consent-preferences__panel {
  width: min(100%, 36rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: var(--terms-radius);
  background: var(--terms-paper);
  color: var(--terms-ink);
  box-shadow: 0 1rem 4rem rgb(0 0 0 / 35%);
}

.terms-consent-preferences__panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.terms-consent-preferences__panel > p:not(.terms-eyebrow) {
  font-size: 1rem;
}

.terms-consent-preferences__option {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 1rem;
}

.terms-consent-preferences__option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--terms-ink);
}

.terms-consent-preferences__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

html[data-terms-theme="dark"] body,
html[data-terms-theme="dark"] .terms-hero,
html[data-terms-theme="dark"] .terms-site-header {
  background: #111 !important;
  color: #fff;
}

html[data-terms-theme="dark"] .terms-section:not(.terms-comparison):not(.terms-advertising):not(.terms-rights):not(.terms-contact),
html[data-terms-theme="dark"] .terms-hero {
  --terms-paper: #111;
  --terms-ink: #fff;
  --terms-muted: #c6c6c6;
  --terms-soft: #202020;
  --terms-line: #454545;
}

html[data-terms-theme="dark"] .terms-scope,
html[data-terms-theme="dark"] .terms-editorial,
html[data-terms-theme="dark"] .terms-use,
html[data-terms-theme="dark"] .terms-responsibility {
  background: #111;
}

html[data-terms-theme="dark"] .terms-card--light {
  background: #2a2a2a;
}

html[data-terms-theme="dark"] .terms-consent-preferences__panel {
  background: #202020;
  color: #fff;
}

@media (max-width: 900px) {
  .terms-hero__layout,
  .terms-scope__grid,
  .terms-advertising__layout,
  .terms-editorial__grid,
  .terms-contact__layout {
    grid-template-columns: 1fr;
  }

  .terms-hero__visual {
    max-width: 42rem;
  }

  .terms-section__heading--split {
    grid-template-columns: 1fr;
  }

  .terms-section__summary {
    margin-bottom: 0 !important;
  }

  .terms-comparison__cards {
    grid-template-columns: 1fr;
  }

  .terms-card {
    min-height: 13rem;
  }

  .terms-use__columns,
  .terms-responsibility {
    grid-template-columns: 1fr;
  }

  .terms-callout {
    max-width: 32rem;
  }

  .terms-advertising__copy {
    padding-top: 0;
  }

  .terms-responsibility__stamp {
    justify-self: start;
  }

  .terms-contact__card {
    max-width: 34rem;
  }
}

@media (max-width: 600px) {
  .terms-hero__layout { min-width: 0; }
  .terms-hero h1 { max-width: 100%; overflow-wrap: anywhere; }
  .terms-responsibility__panel { min-width: 0; }
  .terms-section,
  .terms-comparison,
  .terms-advertising,
  .terms-rights,
  .terms-contact {
    width: 100%;
    padding-inline: 1rem;
  }

  .terms-hero {
    padding-top: 3.5rem;
  }

  .terms-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .terms-hero__facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3.5rem;
  }

  .terms-hero__fact,
  .terms-hero__fact:last-child {
    min-height: 0;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--terms-line);
  }

  .terms-hero__fact:last-child {
    border-bottom: 0;
  }

  .terms-scope__grid,
  .terms-editorial__grid,
  .terms-rights__grid {
    gap: 2rem;
  }

  .terms-use__list li {
    grid-template-columns: 2.5rem 1fr;
    gap: .75rem;
  }

  .terms-use__list li::before {
    grid-column: 1;
    grid-row: 1;
  }

  .terms-use__list strong,
  .terms-use__list span {
    grid-column: 2;
    grid-row: auto;
  }

  .terms-use__list span {
    margin-top: -.5rem;
  }

  .terms-rights__grid {
    grid-template-columns: 1fr;
  }

  .terms-rights__item,
  .terms-rights__item + .terms-rights__item {
    padding: 1.5rem 0 0;
    border-left: 0;
  }

  .terms-rights__item + .terms-rights__item {
    border-top: 1px solid var(--terms-ink);
  }

  .terms-section__mark {
    justify-self: start;
    text-align: left;
  }

  .terms-responsibility__stamp {
    width: min(100%, 16rem);
  }

  .terms-footer__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .terms-footer__controls button,
  .terms-footer__controls .site-footer__utility-link {
    width: 100%;
    text-align: center;
  }
}
