*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(25, 185, 255, 0.14), transparent 32rem),
    radial-gradient(circle at 12% 42%, rgba(255, 138, 42, 0.1), transparent 24rem),
    var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
}

body.intro-active {
  overflow: hidden;
}

body.intro-dismissed .intro {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:not(.btn):hover {
  color: var(--color-blue);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  outline: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.16rem;
}

p {
  color: var(--color-text-muted);
}

ul {
  padding-left: 1.1rem;
}

li {
  margin: 0.42rem 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  clip-path: none;
  overflow: visible;
  white-space: normal;
  top: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--color-text);
  color: var(--color-background);
}

.section,
.hero-section,
.page-hero {
  position: relative;
  width: 100%;
  max-width: calc(var(--container) + 2rem);
  margin-inline: auto;
  padding-inline: 1rem;
}

.hero-copy,
.section-head,
.page-hero,
.media-card,
.service-card,
.plan-card,
.chart-card,
.reason-card,
.contact-card,
.detail-card,
.legal-block {
  min-width: 0;
}

.hero-copy h2,
.hero-copy p,
.section-head h2,
.section-head p,
.page-hero h1,
.page-hero p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.page-hero h1 {
  max-width: 1040px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  max-width: 1040px;
  margin-bottom: 2rem;
}

.section-head p:last-child {
  font-size: 1.06rem;
}

.small-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 38px, 0) scale(0.96);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, filter, transform;
}

.js .reveal-left {
  transform: translate3d(-34px, 24px, 0) rotate(-0.6deg) scale(0.97);
}

.js .reveal-right {
  transform: translate3d(34px, 24px, 0) rotate(0.6deg) scale(0.97);
}

.js .reveal-pop {
  transform: translate3d(0, 28px, 0) scale(0.92);
}

.js .reveal-media {
  transform: translate3d(0, 44px, 0) scale(0.94);
}

.js .section::after,
.js .hero-section::after,
.js .page-hero::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.25rem;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(25, 185, 255, 0.64), rgba(255, 138, 42, 0.42), transparent);
  transform: scaleX(0.24);
  transform-origin: center;
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .section.section-in-view::after,
.js .hero-section.section-in-view::after,
.js .page-hero.section-in-view::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body.intro-active {
    overflow: auto;
  }

  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js .section::after,
  .js .hero-section::after,
  .js .page-hero::after {
    display: none;
  }
}
