:root {
  --info-navy: #073e57;
  --info-ink: #092f41;
  --info-blue: #117fa4;
  --info-cyan: #78c7de;
  --info-mist: #edf5f7;
  --info-line: rgba(7, 62, 87, 0.15);
  --info-white: #fff;
  --info-body: "Satoshi", sans-serif;
  --info-heading: "Clash Display", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--info-ink);
  font-family: var(--info-body);
  background: var(--info-white);
}

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

p {
  text-wrap: pretty;
}

.info-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 16px;
  color: var(--info-white);
  background: var(--info-navy);
  border-radius: 999px;
  transform: translateY(-160%);
}

.info-skip-link:focus {
  transform: translateY(0);
}

.info-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.info-header {
  border-bottom: 1px solid var(--info-line);
}

.info-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.info-header img {
  width: 118px;
  height: auto;
}

.info-header span {
  padding: 9px 14px;
  color: var(--info-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--info-mist);
  border-radius: 999px;
}

.info-hero {
  padding: clamp(74px, 11vw, 150px) 0 clamp(64px, 9vw, 120px);
  background:
    radial-gradient(circle at 83% 20%, rgba(120, 199, 222, 0.28), transparent 28%),
    linear-gradient(135deg, #fff 0 54%, #edf5f7 54% 100%);
  border-bottom: 1px solid var(--info-line);
}

.info-hero__grid,
.info-two-columns {
  display: grid;
  gap: 44px;
}

.info-eyebrow,
.info-index {
  margin: 0 0 18px;
  color: var(--info-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-hero h1,
.info-section h2,
.info-source h2 {
  margin: 0;
  font-family: var(--info-heading);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.info-hero h1 {
  max-width: 800px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

.info-hero__summary {
  align-self: end;
}

.info-hero__summary > p,
.info-prose p,
.info-source > .info-shell > p:last-child {
  margin: 0;
  color: rgba(9, 47, 65, 0.75);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.info-hero__summary dl {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid var(--info-line);
}

.info-hero__summary dl div {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--info-line);
  justify-content: space-between;
  gap: 20px;
}

.info-hero__summary dt {
  color: rgba(9, 47, 65, 0.63);
}

.info-hero__summary dd {
  margin: 0;
  font-weight: 800;
}

.info-section {
  padding: clamp(72px, 10vw, 132px) 0;
  border-bottom: 1px solid var(--info-line);
}

.info-section--tint {
  background: var(--info-mist);
}

.info-section--dark {
  color: var(--info-white);
  background: var(--info-navy);
}

.info-section--dark .info-index {
  color: var(--info-cyan);
}

.info-section--dark .info-prose p {
  color: rgba(255, 255, 255, 0.74);
}

.info-section h2,
.info-source h2 {
  max-width: 580px;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.info-cards {
  display: grid;
  gap: 12px;
}

.info-cards article {
  display: grid;
  padding: 24px;
  background: rgba(237, 245, 247, 0.82);
  border: 1px solid var(--info-line);
  border-radius: 24px;
  grid-template-columns: 64px 1fr;
  gap: 18px;
}

.info-cards article > strong {
  color: var(--info-blue);
  font-family: var(--info-heading);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}

.info-cards h3 {
  margin: 0 0 6px;
  font-family: var(--info-heading);
  font-size: 1.35rem;
}

.info-cards p {
  margin: 0;
  color: rgba(9, 47, 65, 0.68);
}

.info-prose {
  display: grid;
  gap: 24px;
}

.info-source {
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at center, rgba(120, 199, 222, 0.4), transparent 50%);
}

.info-source h2 {
  margin-inline: auto;
}

.info-source > .info-shell > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
}

.info-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #042c3e;
}

.info-footer .info-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.info-footer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.info-footer a {
  display: inline-block;
  margin-top: 7px;
  color: var(--info-white);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.privacy-hero {
  padding: clamp(64px, 9vw, 116px) 0;
  background: var(--info-mist);
  border-bottom: 1px solid var(--info-line);
}

.privacy-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--info-heading);
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.privacy-hero__meta {
  margin: 24px 0 0;
  color: rgba(9, 47, 65, 0.67);
  font-size: 0.9rem;
}

.privacy-content {
  width: min(860px, calc(100% - 40px));
  padding: clamp(64px, 9vw, 110px) 0;
  margin-inline: auto;
}

.privacy-content section + section {
  padding-top: 46px;
  margin-top: 46px;
  border-top: 1px solid var(--info-line);
}

.privacy-content h2 {
  margin: 0 0 20px;
  font-family: var(--info-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.privacy-content p,
.privacy-content li,
.privacy-content address {
  color: rgba(9, 47, 65, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-content address {
  font-style: normal;
}

.privacy-content ul {
  padding-left: 22px;
}

.privacy-notice {
  padding: 20px 22px;
  color: var(--info-navy);
  background: rgba(120, 199, 222, 0.17);
  border: 1px solid rgba(17, 127, 164, 0.2);
  border-radius: 18px;
}

@media (min-width: 820px) {
  .info-hero__grid,
  .info-two-columns {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }
}

@media (max-width: 819px) {
  .info-hero {
    background:
      radial-gradient(circle at 83% 10%, rgba(120, 199, 222, 0.25), transparent 28%),
      var(--info-white);
  }

  .info-footer .info-shell {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .info-shell {
    width: min(100% - 28px, 1180px);
  }

  .info-header__inner {
    min-height: 74px;
  }

  .info-header img {
    width: 102px;
  }

  .info-header span {
    font-size: 0.61rem;
  }

  .info-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .info-cards article {
    padding: 20px;
    grid-template-columns: 50px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
