:root {
  --blue-950: #04365f;
  --blue-900: #085793;
  --blue-800: #09649f;
  --blue-700: #0b76bd;
  --sky-600: #2f9fe0;
  --sky-500: #52b9ee;
  --sky-300: #a6dcf8;
  --blue-100: #eaf7fb;
  --white: #ffffff;
  --text: #082033;
  --muted: #3f5f73;
  --border: #cfe8f6;
  --shadow: 0 10px 24px rgba(4, 54, 95, 0.1);
  --radius: 10px;
  --radius-sm: 6px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fbfdff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue-950);
  color: var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(4, 54, 95, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-size: 1.16rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-950);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: 74px 16px auto 16px;
  display: none;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 32px rgba(4, 54, 95, 0.12);
}

.nav.is-open {
  display: block;
  animation: menuReveal 180ms ease both;
}

.nav-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--blue-950);
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue-950);
  background: var(--blue-100);
}

.nav-cta {
  margin-top: 12px;
}

.site-header .button {
  background: var(--blue-100);
  color: var(--blue-950);
  box-shadow: none;
  border: 1px solid var(--border);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--blue-900);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(8, 87, 147, 0.16);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.25) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  background: var(--blue-700);
  box-shadow: 0 12px 22px rgba(8, 87, 147, 0.2);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-secondary {
  background: var(--white);
  color: var(--blue-950);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  color: var(--blue-950);
  border: 1px solid rgba(4, 54, 95, 0.32);
  box-shadow: none;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.button-link::after {
  content: "->";
  transition: transform 160ms ease;
}

.button-link:hover::after {
  transform: translateX(4px);
}

.form a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: clamp(500px, 68svh, 610px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(4, 54, 95, 0.88), rgba(8, 87, 147, 0.66) 48%, rgba(82, 185, 238, 0.14)), var(--hero-image);
  background-position: center;
  background-size: cover;
  animation: heroImageFloat 16s ease-in-out infinite alternate;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 0 84px;
}

.hero-content {
  width: 100%;
  max-width: 720px;
}

.hero-content > * {
  animation: heroRise 620ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 320ms;
}

.glass-squeegee {
  position: absolute;
  left: 0;
  bottom: calc(clamp(24px, 5vh, 48px) - 1cm);
  z-index: 0;
  width: 2cm;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(4, 54, 95, 0.34));
  transform-origin: 50% 55%;
  animation: squeegeeAcross 7.2s cubic-bezier(0.55, 0, 0.2, 1) 350ms infinite;
}

.glass-squeegee img {
  display: block;
  width: 100%;
  height: auto;
}

.glass-hero {
  min-height: calc(clamp(500px, 68svh, 610px) + 1cm);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--sky-300);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--sky-300);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 100%;
  font-size: 2.2rem;
}

h2 {
  font-size: 1.82rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.hero-text {
  margin-top: 20px;
  max-width: 700px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: break-word;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero .button-ghost,
.cta-band .button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: var(--blue-100);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: var(--blue-700);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3,
.grid-4,
.grid-2 {
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 16px rgba(4, 54, 95, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.border-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
}

.border-frame path {
  fill: none;
  stroke: url(#nc-border-gradient);
  stroke-width: 2;
  stroke-linecap: butt;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 560ms cubic-bezier(0.65, 0, 0.35, 1);
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.service-card img,
.feature-image,
.page-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: transform 360ms ease, filter 360ms ease;
}

.service-card .button-link {
  margin-top: 4px;
}

.icon-pill,
.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--sky-300);
  font-weight: 900;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-grid li {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-950);
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, color 180ms ease;
}

.steps {
  counter-reset: step;
}

.step-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.step-card .step-number {
  background: var(--blue-900);
  color: var(--white);
}

.two-column {
  display: grid;
  gap: 28px;
  align-items: center;
}

.feature-panel {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 50%, var(--white) 0 26%, var(--sky-500) 28% 100%);
  box-shadow: inset 0 0 0 1px rgba(47, 159, 224, 0.28);
}

.career-proof {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-proof li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.career-proof li:first-child {
  padding-top: 0;
}

.career-proof li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.career-proof strong {
  color: var(--blue-950);
  font-size: 1.02rem;
}

.career-proof span {
  color: var(--muted);
}

.application-aside {
  display: grid;
  gap: 18px;
}

.application-aside .card-body {
  gap: 16px;
}

.form-help {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item:focus-within {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(82, 185, 238, 0.18);
}

.faq-question:focus-visible {
  outline: 0;
}

.faq-item:hover {
  border-color: var(--sky-500);
  box-shadow: 0 10px 22px rgba(4, 54, 95, 0.1);
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--sky-300);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(4, 54, 95, 0.1);
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 120px;
  right: -42px;
  bottom: -52px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 34px;
}

.cta-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  gap: 22px;
}

.contact-card {
  padding: 22px;
}

.contact-card strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.05rem;
}

.form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form label,
.checkbox-label {
  color: var(--text);
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #7892a3;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form input[aria-invalid="true"],
.form select[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.field-error {
  min-height: 20px;
  color: #b42318;
  font-size: 0.92rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-note,
.form-success {
  border-radius: var(--radius-sm);
  padding: 13px 14px;
}

.form-note {
  background: var(--blue-100);
  color: var(--muted);
}

.form-success {
  display: none;
  background: #ecfdf3;
  color: #05603a;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.legal-content {
  display: grid;
  gap: 26px;
  max-width: 880px;
}

.notice {
  padding: 18px;
  border-left: 5px solid var(--sky-500);
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  color: var(--text);
  font-weight: 800;
}

.legal-section {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.15rem;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h2,
.footer-column h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  display: inline-flex;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .menu-toggle:hover {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(82, 185, 238, 0.14);
  }

  .has-border-frame:hover,
  .has-border-frame:focus-within {
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(4, 54, 95, 0.13);
    transform: translateY(-4px);
  }

  .has-border-frame:hover .border-frame path,
  .has-border-frame:focus-within .border-frame path {
    stroke-dashoffset: 0;
  }

  .service-card:hover img {
    filter: saturate(1) contrast(1.03);
    transform: scale(1.035);
  }

  .pill-grid li:hover {
    color: var(--blue-700);
  }

  .hero-badges li:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(166, 220, 248, 0.85);
    transform: translateY(-2px);
  }

  .faq-question:hover::after {
    background: var(--blue-700);
    color: var(--white);
  }

  .form input:hover,
  .form select:hover,
  .form textarea:hover {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(82, 185, 238, 0.16);
    transform: translateY(-1px);
  }

  .back-to-top:hover {
    background: var(--blue-700);
    box-shadow: 0 12px 22px rgba(8, 87, 147, 0.2);
    transform: translateY(-3px);
  }
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(82, 185, 238, 0.22);
  outline: 0;
}

.form input[aria-invalid="true"]:focus,
.form select[aria-invalid="true"]:focus,
.form textarea[aria-invalid="true"]:focus {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageFloat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes squeegeeAcross {
  0% {
    opacity: 0;
    transform: translate3d(-2.6cm, 0, 0) rotate(-13deg);
  }
  9% {
    opacity: 0.96;
  }
  88% {
    opacity: 0.96;
    transform: translate3d(calc(100vw + 1.1cm), -6px, 0) rotate(-13deg);
  }
  96%,
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 1.7cm), -6px, 0) rotate(-13deg);
  }
}

@media (min-width: 720px) {
  .container {
    width: calc(100% - 48px);
  }

  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 1.18rem;
  }

  .hero-inner {
    width: calc(100% - 48px);
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .form {
    padding: 28px;
  }

  .form-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }
}

@media (min-width: 1120px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-link {
    background: transparent;
    padding: 8px 2px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: transparent;
    color: var(--blue-950);
    border-bottom-color: var(--sky-500);
  }

  .nav-cta {
    margin-top: 0;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: clamp(530px, 68svh, 620px);
  }

  .glass-hero {
    min-height: calc(clamp(530px, 68svh, 620px) + 1cm);
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .cta-content {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 42px 46px;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .glass-hero {
    min-height: calc(500px + 1cm);
  }

  .hero-inner {
    padding-top: 78px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .hero-content {
    max-width: 340px;
  }

  .section-head {
    max-width: 340px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
  }

  .eyebrow::before {
    flex: 0 0 34px;
    margin-top: 0.55em;
  }

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

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

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

  .glass-squeegee {
    animation: none !important;
    opacity: 0.86;
    transform: translate3d(calc(100vw - 3.4cm), 1cm, 0) rotate(-13deg);
  }
}
