@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap");

:root {
  --ink: #101827;
  --body: #526073;
  --muted: #8491a3;
  --line: #e5ebf2;
  --surface: #f5f8fc;
  --surface-blue: #eef8ff;
  /* ONE accent for the whole site: brand blue #009fe3. The legacy multi-colour
     tokens below are kept as names so existing rules keep working, but they all
     resolve to the same blue family — no rainbow icon chips. */
  --blue: #009fe3;
  --teal: #4cc4f0;
  --green: #009fe3;
  --orange: #009fe3;
  --pink: #009fe3;
  --yellow: #009fe3;
  --navy: #12233b;
  --white: #ffffff;
  --radius-sm: 0.9rem;
  --radius-md: 1.35rem;
  --radius-lg: 2rem;
  --radius-xl: 2.6rem;
  --shadow-soft: 0 1.2rem 3.2rem rgba(26, 48, 79, 0.1);
  --shadow-card: 0 0.8rem 2.2rem rgba(26, 48, 79, 0.08);
  /* Grows with the viewport on large displays instead of stopping at a fixed
     centre column. Below ~110rem wide it resolves to 92rem, so laptops and
     tablets keep the exact layout they had before. */
  --container: clamp(92rem, 84vw, 124rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 7%, rgba(0, 159, 227, 0.06), transparent 22rem),
    var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 50;
  padding-top: 1.25rem;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 6.4rem;
  padding: 0.8rem 1.45rem 0.8rem 1.7rem;
  border: 1px solid rgba(229, 235, 242, 0.8);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(1rem);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
}

.brand-lockup__mark {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
}

.brand-lockup__copy {
  display: grid;
  gap: 0.12rem;
}

.brand-lockup__name {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand-lockup__tagline {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(1.35rem, 2.4vw, 3.1rem);
}

.nav-actions {
  justify-content: flex-end;
  gap: 0.8rem;
}

.nav-link {
  position: relative;
  padding: 0.65rem 0;
  color: #313b4d;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 0.14rem;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-login {
  color: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 1.25rem;
  height: 0.13rem;
  border-radius: 999px;
  background: currentColor;
}

.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
}

.menu-button::before {
  transform: translateY(-0.4rem);
}

.menu-button::after {
  transform: translateY(0.4rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1.05rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease;
}

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

.button:active {
  transform: translateY(0.05rem) scale(0.98);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(105deg, var(--blue), var(--teal));
  box-shadow: 0 0.8rem 1.8rem rgba(0, 159, 227, 0.24);
}

.button--primary:hover {
  box-shadow: 0 1rem 2.2rem rgba(0, 159, 227, 0.34);
}

.button--secondary {
  border-color: rgba(229, 235, 242, 0.9);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.button--large {
  min-height: 4.15rem;
  padding-inline: 2rem;
  border-radius: 1.4rem;
  font-size: 1.02rem;
}

.button__arrow {
  font-size: 1.4em;
  line-height: 0;
  transition: transform 220ms var(--ease);
}

.button:hover .button__arrow {
  transform: translateX(0.25rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(34rem, 1.04fr);
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
  min-height: auto;
  padding: clamp(2.75rem, 4.5vw, 4.5rem) 1.5rem clamp(4rem, 6vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  top: 9%;
  left: -14%;
  width: 27rem;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 159, 227, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 47rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.hero h1,
.section-title,
.final-cta h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 46rem;
  font-size: clamp(4.1rem, 5.7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: #39b92f;
}

.hero__lead {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--body);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.hero__benefits {
  min-height: 1.75rem;
  margin: 0.85rem 0 0;
  color: var(--blue);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero__benefit {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero__benefit.is-changing {
  opacity: 0;
  transform: translateY(0.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  margin-top: 2.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__trust strong {
  color: var(--ink);
}

.trust-dots {
  display: flex;
  padding-left: 0.45rem;
}

.trust-dot {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-left: -0.45rem;
  place-items: center;
  border: 0.13rem solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 900;
}

.trust-dot:nth-child(1) { background: var(--blue); }
.trust-dot:nth-child(2) { background: var(--green); }
.trust-dot:nth-child(3) { background: var(--pink); }

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8 / 7;
  border: 1px solid rgba(229, 235, 242, 0.92);
  border-radius: clamp(1.5rem, 3vw, 2.6rem);
  background: var(--white);
  box-shadow:
    1.1rem 1.1rem 2.4rem rgba(166, 177, 192, 0.28),
    -1.1rem -1.1rem 2.4rem rgba(255, 255, 255, 0.96);
  isolation: isolate;
}

.hero__poster,
.hero__video {
  width: 100%;
  height: 100%;
}

.hero__poster {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: right center;
}

.hero__video {
  position: relative;
  z-index: 1;
  display: block;
  background: var(--white);
  object-fit: cover;
  object-position: right center;
}

.is-reduced-motion .hero__video {
  visibility: hidden;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 1.5rem;
}

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

.section--blue {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(22rem, 1.25fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.section-intro {
  max-width: 43rem;
  margin: 0;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: 1.2rem;
}

.service-feature {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  padding: 2.4rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 12rem),
    linear-gradient(145deg, #0a9ef1, #087eea 62%, #056cc9);
  box-shadow: 0 1.6rem 3rem rgba(0, 159, 227, 0.2);
}

.service-feature::after {
  content: "A";
  position: absolute;
  right: -1rem;
  bottom: -7rem;
  color: rgba(255, 255, 255, 0.09);
  font-family: "Outfit", sans-serif;
  font-size: 24rem;
  font-weight: 900;
  line-height: 1;
}

.service-feature__icon,
.service-row__icon,
.process-step__number {
  display: grid;
  place-items: center;
}

.service-feature__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.7rem;
}

.service-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 23rem;
  margin: 8rem 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-feature p {
  position: relative;
  z-index: 1;
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.service-feature a {
  position: absolute;
  z-index: 2;
  bottom: 2.4rem;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.service-list {
  display: grid;
  gap: 1.2rem;
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 10rem;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 240ms var(--ease), box-shadow 240ms ease, border-color 240ms ease;
}

.service-row:hover {
  transform: translateX(0.4rem);
  border-color: rgba(0, 159, 227, 0.25);
  box-shadow: var(--shadow-card);
}

.service-row__icon {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 1.25rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.service-row:nth-child(1) .service-row__icon { background: var(--green); }
.service-row:nth-child(2) .service-row__icon { background: var(--orange); }
.service-row:nth-child(3) .service-row__icon { background: var(--pink); }

.service-row h3 {
  margin: 0 0 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.service-row p {
  margin: 0;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-row__arrow {
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
}

.assurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.45rem 1.65rem;
  border: 1px solid #ffdf91;
  border-radius: var(--radius-md);
  background: #fff9ea;
}

.assurance__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 1.05rem;
  color: var(--white);
  background: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
}

.assurance h3 {
  margin: 0 0 0.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
}

.assurance p {
  margin: 0;
  color: #735c2d;
  font-size: 0.88rem;
  line-height: 1.6;
}

.assurance a {
  color: #9b6500;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 23rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.process-step:nth-child(2) {
  margin-top: 2.4rem;
}

.process-step:nth-child(3) {
  margin-top: 4.8rem;
}

.process-step__number {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1.05rem;
  color: var(--white);
  background: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.process-step:nth-child(2) .process-step__number { background: var(--teal); }
.process-step:nth-child(3) .process-step__number { background: var(--orange); }

.process-step h3 {
  margin: 6.5rem 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 0;
  color: var(--body);
  line-height: 1.75;
}

.program-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.program {
  position: relative;
  padding: 2.1rem;
  text-decoration: none;
}

.program + .program {
  border-left: 1px solid var(--line);
}

.program__field {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.program__accent {
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 0.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  transition: transform 220ms var(--ease);
}

.program:nth-child(2) .program__accent { background: var(--green); }
.program:nth-child(3) .program__accent { background: var(--orange); }
.program:nth-child(4) .program__accent { background: var(--pink); }
.program:hover .program__accent { transform: scale(1.8); }

.proof-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.proof-statement {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.proof-statement .section-title {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.proof-statement p {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.quote-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.testimonial {
  min-height: 19rem;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(0.4rem);
}

.testimonial:nth-child(2),
.testimonial:nth-child(4) {
  transform: translateY(2.4rem);
}

.testimonial__stars {
  color: var(--yellow);
  letter-spacing: 0.14em;
}

.testimonial blockquote {
  margin: 4.5rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 0.9rem;
  color: var(--navy);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.testimonial__person strong,
.testimonial__person span {
  display: block;
}

.testimonial__person span {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(76, 196, 240, 0.7), transparent 11rem),
    radial-gradient(circle at 92% 90%, rgba(0, 122, 184, 0.75), transparent 18rem),
    linear-gradient(120deg, var(--blue), var(--teal));
  box-shadow: 0 1.8rem 3.5rem rgba(0, 159, 227, 0.22);
}

.final-cta h2 {
  max-width: 55rem;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.final-cta p {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.final-cta .button {
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.16);
}

.site-footer {
  padding: 5rem 1.5rem 2rem;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(18rem, 1.35fr) repeat(3, 0.65fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding-bottom: 3.5rem;
}

.footer-brand {
  max-width: 26rem;
}

.footer-brand p {
  color: var(--body);
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 1.1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
}

.footer-column ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-social a,
.footer-legal a {
  color: var(--body);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-social a:hover,
.footer-legal a:hover {
  color: var(--blue);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-social,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 76rem) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: fixed;
    inset: 6.8rem 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 0.8rem;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    background: var(--surface-blue);
  }

  .nav-link::after,
  .nav-login {
    display: none;
  }

  .menu-button {
    position: relative;
    display: inline-flex;
  }

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

  .hero h1 {
    font-size: clamp(3.3rem, 6vw, 5rem);
  }

  .hero__visual {
    align-self: center;
  }

  .service-feature h3 {
    margin-top: 5rem;
  }
}

@media (max-width: 58rem) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    min-height: auto;
    padding-top: 2.25rem;
    padding-bottom: 4.5rem;
    padding-inline: 0.35rem;
  }

  .hero__copy {
    max-width: 46rem;
    padding-top: 0.75rem;
  }

  .hero__visual {
    width: min(100%, 50rem);
    margin-inline: auto;
  }

  .hero__media {
    aspect-ratio: 4 / 3;
  }

  .section-heading,
  .service-layout,
  .proof-layout,
  .final-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

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

  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    min-height: 18rem;
    margin-top: 0;
  }

  .process-step h3 {
    margin-top: 4rem;
  }

  .program-strip {
    grid-template-columns: 1fr 1fr;
  }

  .program:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .program:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .proof-statement {
    position: static;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 42rem) {
  /* One 20px gutter for the whole page: the shell owns it, sections and the
     footer stop adding their own so every edge lines up. */
  .site-shell {
    width: min(calc(100% - 2.5rem), var(--container));
  }

  .site-header {
    padding-top: 0.5rem;
  }

  .site-nav {
    min-height: 4.9rem;
    padding: 0.55rem 0.65rem 0.55rem 0.8rem;
    border-radius: 1.3rem;
  }

  .brand-lockup {
    gap: 0.5rem;
  }

  .brand-lockup__mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-lockup__name {
    font-size: 1rem;
  }

  .brand-lockup__tagline {
    font-size: 0.4rem;
  }

  .nav-actions .button {
    display: none;
  }

  .nav-links {
    inset: 5.7rem 0.5rem auto;
  }

  .hero {
    min-height: auto;
    gap: 1.9rem;
    padding-top: 1.4rem;
    padding-bottom: 3rem;
    padding-inline: 0;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .eyebrow::before {
    width: 1.7rem;
  }

  /* Was 13vw: the headline alone filled a whole phone screen and pushed the
     lead copy and both CTAs below the fold. */
  .hero h1 {
    font-size: clamp(2.4rem, 10.2vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.042em;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    margin-top: 1.15rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.6rem;
  }

  .button--large {
    width: 100%;
    min-height: 3.6rem;
    font-size: 0.98rem;
  }

  .hero__trust {
    margin-top: 1.5rem;
  }

  .hero__visual {
    margin-top: 0.5rem;
  }

  .hero__media {
    border-radius: 1.3rem;
  }

  .section {
    padding: 3.9rem 0;
  }

  .section-heading {
    gap: 1.1rem;
    margin-bottom: 2rem;
  }

  .section-kicker {
    margin-bottom: 0.6rem;
    font-size: 0.68rem;
  }

  .section-title,
  .proof-statement .section-title,
  .final-cta h2 {
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
    line-height: 1.04;
  }

  .section-intro {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .service-layout {
    gap: 0.9rem;
  }

  .service-feature {
    min-height: 21rem;
    padding: 1.5rem 1.5rem 4.5rem;
  }

  .service-feature__icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1.05rem;
    font-size: 1.4rem;
  }

  .service-feature h3 {
    margin-top: 3.25rem;
    font-size: 2.05rem;
  }

  .service-feature::after {
    right: -1.5rem;
    bottom: -4.5rem;
    font-size: 15rem;
  }

  .service-feature a {
    bottom: 1.7rem;
  }

  .service-list {
    gap: 0.9rem;
  }

  .service-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    min-height: 0;
    padding: 1.15rem 1.2rem;
  }

  .service-row__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    font-size: 1.15rem;
  }

  .service-row h3 {
    font-size: 1.22rem;
  }

  .service-row__arrow {
    display: none;
  }

  .assurance {
    grid-template-columns: auto 1fr;
    gap: 0.9rem 1rem;
    padding: 1.15rem;
  }

  .assurance__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.9rem;
    font-size: 1.15rem;
  }

  .assurance a {
    grid-column: 2;
  }

  .process-grid {
    gap: 0.9rem;
  }

  .process-step {
    min-height: 0;
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .process-step h3 {
    margin-top: 2.6rem;
    font-size: 1.7rem;
  }

  .process-step p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .program {
    padding: 1.35rem 1.4rem;
  }

  .program-strip,
  .quote-wall {
    grid-template-columns: 1fr;
  }

  .program + .program,
  .program:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .testimonial:nth-child(2),
  .testimonial:nth-child(4) {
    transform: none;
  }

  .final-cta {
    gap: 1.5rem;
    padding: 2rem 1.5rem 2.2rem;
    border-radius: var(--radius-lg);
  }

  .final-cta p {
    margin-top: 0.9rem;
    font-size: 0.97rem;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-main {
    gap: 2.1rem;
    padding-bottom: 2.4rem;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
