* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(180deg, #f8fdff 0%, #f2fbfd 42%, #fff 100%);
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
input,
select,
textarea {
  border: 1px solid var(--line);
}
:focus-visible {
  outline: 3px solid rgba(70, 195, 198, 0.6);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.section--mist {
  background: linear-gradient(
    180deg,
    rgba(232, 248, 251, 0.82),
    rgba(255, 255, 255, 0.95)
  );
}
.display,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--navy-deep);
}
.display {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  max-width: 10ch;
}
.section-title {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  max-width: 14ch;
}
.lead,
.section-copy {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  background: rgba(121, 217, 219, 0.22);
  border: 1px solid rgba(70, 195, 198, 0.26);
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(229, 122, 93, 0.12);
}
.glass-card,
.glass-panel {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 36px rgba(10, 54, 92, 0.12);
  border-radius: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    0.24s transform,
    0.24s box-shadow;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-deep);
}
.pill {
  display: inline-flex;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy-deep);
  box-shadow: 0 8px 18px rgba(15, 76, 129, 0.06);
}
.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
ul {
  padding-left: 1.1rem;
}
