:root {
  color-scheme: light;
  --brand-navy: #102034;
  --brand-deep: #071d31;
  --brand-deeper: #061725;
  --brand-teal: #0f7a80;
  --brand-aqua: #00a99e;
  --brand-aqua-soft: #65d6d1;
  --canvas: #f4f8fa;
  --surface: #ffffff;
  --surface-muted: #eef4f7;
  --ink: #112a3d;
  --ink-strong: #0a2237;
  --ink-muted: #526778;
  --line: #d8e1df;
  --line-on-brand: rgb(255 255 255 / 25%);
  --focus: #007f80;
  --on-brand: #f7fbfd;
  --on-brand-muted: #c5d9e5;
  --shadow: 0 16px 40px rgb(6 23 37 / 7%);
  --content-width: 74rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --display: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.3rem;
  background: var(--surface);
  color: var(--brand-navy);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  color: var(--on-brand);
}

.header-inner,
.section-inner,
.site-footer-inner {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  flex: 0 1 auto;
}

.brand-link img {
  width: min(10.75rem, 44vw);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 3vw, 2rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-nav a:not(.nav-cta) {
  color: var(--on-brand-muted);
}

.header-nav a:not(.nav-cta):hover {
  color: var(--on-brand);
}

.nav-cta {
  padding: 0.62rem 1rem;
  border: 1px solid var(--brand-aqua-soft);
  border-radius: 999px;
  color: var(--on-brand);
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--brand-aqua-soft);
  color: var(--brand-deeper);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(52rem, 100svh);
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  background: var(--brand-deep);
  color: var(--on-brand);
}

.hero::before,
.hero::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.hero::before {
  width: min(52rem, 80vw);
  height: min(52rem, 80vw);
  right: -23rem;
  bottom: -27rem;
  border: 1px solid var(--line-on-brand);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgb(255 255 255 / 3%), 0 0 0 16rem rgb(255 255 255 / 2%);
}

.hero::after {
  width: 1px;
  height: 20rem;
  right: 13%;
  top: 12rem;
  background: var(--line-on-brand);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow,
.section-kicker,
.feature-index,
.footer-kicker {
  margin: 0;
  color: var(--brand-aqua-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 1.25rem 0 1.75rem;
  color: var(--on-brand);
  font-family: var(--display);
  font-size: clamp(3.3rem, 7.5vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 38rem;
  margin: 0;
  color: var(--on-brand-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.875rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand-aqua-soft);
  color: var(--brand-deeper);
}

.button-primary:hover {
  background: var(--on-brand);
}

.button-quiet {
  border-color: var(--line-on-brand);
  color: var(--on-brand);
}

.button-quiet:hover {
  border-color: var(--brand-aqua-soft);
  color: var(--brand-aqua-soft);
}

.hero-aside {
  align-self: center;
  max-width: 20rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 1px solid var(--brand-aqua);
}

.hero-aside-number {
  margin: 0 0 2rem;
  color: var(--on-brand-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero-aside h2 {
  margin: 0 0 0.85rem;
  color: var(--on-brand);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero-aside p {
  margin: 0;
  color: var(--on-brand-muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.section-kicker {
  color: var(--brand-teal);
}

.section h2 {
  max-width: 16ch;
  margin: 0 0 1.3rem;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-intro p {
  max-width: 39rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.72;
}

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

.feature {
  display: grid;
  grid-template-columns: minmax(4.5rem, 0.25fr) minmax(12rem, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  padding-top: 0.3rem;
  color: var(--brand-teal);
}

.feature h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.feature p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-muted);
}

.statement {
  background: var(--surface-muted);
}

.statement-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.statement h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.statement-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--brand-teal);
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.closing {
  position: relative;
  overflow: hidden;
  background: var(--brand-navy);
  color: var(--on-brand);
}

.closing::after {
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -9rem;
  border: 1px solid var(--line-on-brand);
  border-radius: 50%;
  content: '';
}

.closing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.closing h2 {
  max-width: 12ch;
  margin: 1rem 0 0;
  color: var(--on-brand);
}

.closing p {
  max-width: 31rem;
  margin: 0;
  color: var(--on-brand-muted);
}

.closing .button {
  flex: 0 0 auto;
}

.site-footer {
  background: var(--brand-deeper);
  color: var(--on-brand-muted);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  min-height: 2.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 7.5rem;
  height: auto;
}

.footer-copy {
  max-width: 22rem;
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  font-size: 0.88rem;
}

.footer-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--on-brand);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-aqua-soft);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-brand);
  color: var(--on-brand-muted);
  font-size: 0.75rem;
}

@media (max-width: 48rem) {
  .header-inner {
    min-height: 4.75rem;
  }

  .header-nav {
    gap: 0.55rem;
    font-size: 0.7rem;
  }

  .header-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3.5rem;
  }

  .hero-inner,
  .section-intro,
  .statement-inner,
  .closing-inner {
    grid-template-columns: 1fr;
    display: grid;
    gap: 2.75rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1.06;
  }

  .hero-aside {
    max-width: 26rem;
  }

  .feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.75rem 0;
  }

  .feature p {
    grid-column: 1;
  }

  .feature h3 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section h2 {
    max-width: 100%;
    font-size: clamp(2rem, 6.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .section-intro {
    padding-bottom: 2rem;
  }

  .hero-aside {
    padding: 1rem 0 1rem 1rem;
  }

  .hero::after,
  .closing::after {
    display: none;
  }

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

  .closing .button {
    justify-self: start;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 23rem) {
  :root {
    --gutter: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero-actions .button {
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .hero,
  .closing,
  .site-footer {
    background: Canvas;
    color: CanvasText;
  }

  .hero h1,
  .hero-aside h2,
  .closing h2,
  .site-footer,
  .footer-links a,
  .button-quiet {
    color: CanvasText;
  }

  .hero-lede,
  .hero-aside p,
  .closing p,
  .footer-copy,
  .footer-legal,
  .header-nav a:not(.nav-cta) {
    color: CanvasText;
  }

  .hero::before,
  .hero::after,
  .closing::after {
    border-color: CanvasText;
    background: CanvasText;
  }

  .button,
  .nav-cta {
    border: 1px solid ButtonText;
    background: ButtonFace;
    color: ButtonText;
  }
}
