:root {
  color-scheme: light;
  --deep-arctic: #0f464b;
  --deep-arctic-strong: #0a3337;
  --glacier-mint: #c9e0da;
  --glacier-mint-soft: #e9f3f0;
  --sunlight-haze: #f4ec9b;
  --ink: #122528;
  --muted: #53686a;
  --line: #b7cfca;
  --paper: #f7fbfa;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 70, 75, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --shell: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 76% 8%, rgba(201, 224, 218, 0.72), transparent 28rem),
    var(--paper);
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 0.2rem solid var(--sunlight-haze);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--deep-arctic);
  border-radius: 0.75rem;
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid rgba(15, 70, 75, 0.12);
  background: rgba(247, 251, 250, 0.88);
  backdrop-filter: blur(1rem);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-inner {
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--deep-arctic-strong);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--deep-arctic);
}

.brand-icon svg {
  width: 1.8rem;
  fill: none;
  stroke: var(--glacier-mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a,
.site-footer a {
  color: var(--deep-arctic-strong);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.site-nav a[aria-current="page"],
.site-footer a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--sunlight-haze);
  text-decoration-thickness: 0.24rem;
  text-underline-offset: 0.28rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.hero-copy {
  padding-top: clamp(1rem, 4vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--deep-arctic);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--deep-arctic-strong);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin: 0;
  font-size: 1.45rem;
}

.hero-lede {
  max-width: 36rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--deep-arctic);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-0.12rem);
}

.button-primary {
  background: var(--deep-arctic);
  color: var(--white);
}

.button-primary:hover {
  background: var(--deep-arctic-strong);
}

.button-secondary {
  background: transparent;
  color: var(--deep-arctic);
}

.button-secondary:hover {
  background: var(--glacier-mint-soft);
}

.hero-mark {
  position: relative;
  width: min(100%, 31rem);
  justify-self: end;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(15, 70, 75, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.3rem;
  object-fit: cover;
}

.hero-mark p {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  color: var(--deep-arctic);
  font-weight: 700;
  text-align: center;
}

.mark-halo {
  position: absolute;
  z-index: 0;
  top: -20%;
  right: -18%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--sunlight-haze);
  filter: blur(0.2rem);
  opacity: 0.82;
}

.feature-band {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: var(--deep-arctic);
  color: var(--white);
}

.feature-band .eyebrow,
.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.section-heading {
  max-width: 45rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.feature-grid article {
  min-height: 16rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 224, 218, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.feature-grid p {
  color: var(--glacier-mint);
}

.feature-number {
  display: inline-block;
  margin-bottom: 3.5rem;
  color: var(--sunlight-haze);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.legal-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.legal-links {
  border-block: 1px solid var(--line);
}

.legal-links a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.2rem;
  color: var(--deep-arctic-strong);
  font-weight: 800;
  text-decoration: none;
}

.legal-links a + a {
  border-top: 1px solid var(--line);
}

.legal-links a:hover {
  color: var(--deep-arctic);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--glacier-mint-soft);
}

.footer-inner {
  min-height: 6rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.document-shell {
  max-width: 58rem;
  padding-block: clamp(2.5rem, 7vw, 5rem) clamp(5rem, 10vw, 8rem);
}

.legal-document {
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(15, 70, 75, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(15, 70, 75, 0.09);
}

.document-header {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.document-header h1 {
  max-width: none;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.document-intro {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.document-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin: 2rem 0 0;
}

.document-meta div {
  min-width: 10rem;
}

.document-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-meta dd {
  margin: 0.15rem 0 0;
  color: var(--deep-arctic-strong);
  font-weight: 700;
}

.legal-document section {
  padding-top: 2.5rem;
}

.legal-document section + section {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-document section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.legal-document section p,
.legal-document section ul {
  color: #31494c;
}

.legal-document section p:last-child,
.legal-document section ul:last-child {
  margin-bottom: 0;
}

.legal-document li + li {
  margin-top: 0.55rem;
}

@media (max-width: 52rem) {
  .hero,
  .legal-callout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    max-width: 44rem;
    padding-top: 0;
  }

  .hero-mark {
    width: min(100%, 32rem);
    justify-self: start;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 2rem;
  }
}

@media (max-width: 34rem) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    padding-block: 1rem;
  }

  .site-nav,
  .site-footer nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .footer-inner {
    padding-block: 1.5rem;
  }

  .document-meta {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
