:root {
  --blue: #08245c;
  --green: #00ca80;
  --black: #050505;
  --white: #ffffff;
  --ink: rgba(5, 5, 5, .74);
  --line: rgba(8, 36, 92, .16);
  --soft: #f6fbff;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 202, 128, .18), transparent 28vw),
    linear-gradient(90deg, rgba(8,36,92,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8,36,92,.05) 1px, transparent 1px),
    var(--white);
  background-size: auto, 56px 56px, 56px 56px, auto;
  overflow-x: hidden;
  cursor: auto;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .cursor {
  opacity: 0 !important;
}

a { color: inherit; text-decoration: none; }
button,
a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }

.svg-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mr-icon-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

::selection {
  background: var(--green);
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
  border-radius: 8px;
}

.cursor {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border: 2.5px solid var(--white);
  border-radius: 999px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  box-shadow:
    0 0 0 .5px rgba(0, 0, 0, .28),
    0 4px 12px rgba(0, 0, 0, .20);
  transition:
    width .22s ease,
    height .22s ease,
    border-color .22s ease,
    opacity .16s ease;
}

.cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(0, 0, 0, .55);
  border-radius: 999px;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, .18);
  transition:
    width .22s ease,
    height .22s ease,
    background .22s ease;
}

.cursor.is-active {
  width: 54px;
  height: 54px;
}

.cursor.is-active::after {
  width: 9px;
  height: 9px;
}

.cursor.is-on-dark {
  border-color: var(--white);
  box-shadow:
    0 0 0 .5px rgba(0, 0, 0, .36),
    0 4px 12px rgba(0, 0, 0, .22);
}

.cursor.is-on-dark::after {
  background: var(--green);
  border-color: rgba(0, 0, 0, .55);
  box-shadow: 0 0 10px rgba(0, 202, 128, .44);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
  will-change: transform;
}

.tilt-card.reveal {
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.spotlight-section {
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 202, 128, .14), transparent 34vw);
  opacity: .75;
}

.spotlight-section > .container {
  position: relative;
  z-index: 1;
}

.magnetic {
  will-change: transform;
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.header.is-scrolled {
  background: rgba(255, 255, 255, .94);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  line-height: 1;
}

.brand img { width: clamp(150px, 13vw, 190px); height: auto; }
.brand-logo { display: block; width: clamp(164px, 13.6vw, 204px); height: auto; }
.footer .brand { width: fit-content; padding: 8px 10px; border-radius: 14px; background: var(--white); }
.footer .brand-logo { width: 184px; }

.nav {
  justify-self: center;
  display: inline-flex;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(5, 5, 5, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.nav a { padding: 10px 11px; border-radius: 999px; white-space: nowrap; }
.nav a:hover { background: rgba(0, 202, 128, .12); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid rgba(8, 36, 92, .18);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(5, 5, 5, .14);
}

.btn.primary { border-color: var(--green); background: var(--green); color: var(--blue); }
.btn.ghost { background: var(--white); border-color: rgba(5, 5, 5, .16); }
.btn.dark { border-color: var(--blue); background: var(--blue); color: var(--white); }

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

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

.menu-toggle i {
  position: relative;
  width: 19px;
  height: 2px;
  display: block;
  background: var(--blue);
  transition: background .25s ease;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--blue);
  transition: transform .25s ease;
}

.menu-toggle i::before { transform: translateY(-7px); }
.menu-toggle i::after { transform: translateY(7px); }
.menu-open .menu-toggle i { background: transparent; }
.menu-open .menu-toggle i::before { transform: rotate(45deg); }
.menu-open .menu-toggle i::after { transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 76px 14px auto 14px;
  z-index: 950;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 10px;
  max-height: calc(100svh - 90px);
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 80px rgba(5, 5, 5, .14);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  overscroll-behavior: contain;
  transition: opacity .3s ease, transform .3s ease;
}

.mobile-panel a {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(5, 5, 5, .08);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.mobile-panel a span {
  color: var(--blue);
  font-size: 16px;
  font-weight: 950;
  opacity: .9;
}

.mobile-panel a:not(.mobile-panel-action):nth-of-type(8) {
  border-bottom: 0;
}

.mobile-panel-action {
  grid-column: auto !important;
  justify-content: center !important;
  min-height: 48px !important;
  margin-top: 14px;
  padding: 12px 10px !important;
  border: 1px solid var(--black) !important;
  border-radius: 999px;
  font-size: 15px !important;
  text-align: center;
}

.mobile-panel-action span {
  display: none;
}

.mobile-panel-action.primary-action {
  border-color: var(--green) !important;
  background: var(--green);
  color: var(--blue);
}

.mobile-panel-action.secondary-action {
  background: var(--white);
  color: var(--blue);
}

.menu-open .mobile-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero {
  padding: 84px 0 76px;
  color: var(--blue);
  overflow: hidden;
}

.hero.spotlight-section {
  background: radial-gradient(circle at var(--mx, 72%) var(--my, 18%), rgba(0, 202, 128, .18), transparent 24vw);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(0, 202, 128, .12);
}

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

h1 {
  max-width: 950px;
  margin: 0 0 26px;
  font-size: clamp(54px, 7vw, 106px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 980;
  text-wrap: balance;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-copy {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.4;
}

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

.module-card {
  padding: clamp(24px, 3.8vw, 40px);
  border-radius: var(--radius-xl);
  background: var(--blue);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--green);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, var(--module-shift, 0px), 0);
}

.hero-image-card {
  border: 1px solid rgba(5, 31, 78, .16);
  border-radius: var(--radius-xl);
  background: var(--blue);
  box-shadow: 18px 18px 0 var(--green);
  overflow: hidden;
  align-self: center;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-card {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--black);
  border-radius: var(--radius-xl);
  background: var(--blue);
  color: var(--white);
  box-shadow: 20px 20px 0 var(--green);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
}

.hero-card h2 {
  max-width: 13.8ch;
  margin: 28px auto 0;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: .92;
  font-weight: 980;
  text-align: center;
  text-wrap: balance;
}

.hero-card p {
  max-width: 39ch;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
  text-align: center;
}

.mock-ui {
  display: grid;
  gap: 14px;
  transform: translate3d(0, var(--mock-shift, 0px), 0);
  transition: transform .22s ease-out;
}

.mock-head,
.mock-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.mock-row { grid-template-columns: 42px 1fr auto; padding: 14px; background: rgba(255,255,255,.10); }
.mock-row {
  transform: translate3d(0, calc(var(--row-shift, 0px) * var(--row-depth, 1)), 0);
  transition: transform .22s ease-out, background .22s ease, border-color .22s ease;
}
.mock-row:nth-child(2) { --row-depth: .75; }
.mock-row:nth-child(3) { --row-depth: 1; }
.mock-row:nth-child(4) { --row-depth: 1.25; }
.scroll-section.is-in-view .mock-row,
.module-card.is-scroll-active .mock-row {
  border-color: rgba(0, 202, 128, .28);
}
.mock-row svg { width: 42px; height: 42px; padding: 10px; border-radius: 14px; background: rgba(0,202,128,.18); color: var(--green); }
.mock-head small, .mock-row small { display: block; color: rgba(255,255,255,.58); font-weight: 850; text-transform: uppercase; font-size: 11px; }
.mock-head strong { display: block; margin-top: 6px; font-size: clamp(24px, 3vw, 38px); line-height: 1; }
.mock-row b { color: var(--white); font-size: 15px; }
.mock-row span, .mock-head .pill { color: var(--green); font-weight: 950; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.09); color: rgba(255,255,255,.72); font-weight: 850; }
.day.active { background: var(--green); color: var(--blue); }
.stars { color: var(--green); font-size: 20px; letter-spacing: 2px; }
.avatar { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--green); color: var(--blue); font-weight: 950; font-size: 22px; }

.section {
  position: relative;
  padding: clamp(66px, 8vw, 118px) 0;
  overflow: clip;
}

.control-section {
  padding: 52px 0 clamp(66px, 8vw, 118px);
}

.feature-band {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(0, 202, 128, .22), transparent 18vw),
    radial-gradient(circle at 12% 16%, rgba(0, 202, 128, .16), transparent 28vw),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .10), transparent 24vw),
    var(--blue);
  color: var(--white);
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.feature-band .container {
  position: relative;
  z-index: 1;
}

.feature-band .eyebrow,
.feature-band .section-title {
  color: var(--white);
}

.feature-band .section-copy {
  color: rgba(255, 255, 255, .76);
  margin-left: auto;
  margin-right: auto;
  max-width: 64ch;
}

.feature-band .cards {
  align-items: stretch;
}

.feature-band .card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .075);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.feature-band .card:nth-child(2) {
  background: rgba(0, 202, 128, .95);
  color: var(--blue);
  transform: translateY(-18px);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .20);
}

.feature-band .card .icon {
  margin-bottom: 30px;
}

.feature-band .card p,
.feature-band .card .check-list li {
  color: rgba(255, 255, 255, .86);
  opacity: 1;
  font-weight: 560;
}

.feature-band .card:nth-child(2) p,
.feature-band .card:nth-child(2) .check-list li {
  color: rgba(8, 36, 92, .84);
}

.feature-band .card .check-list li::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 202, 128, .12);
}

.feature-band .card:nth-child(2) .check-list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 36, 92, .12);
}

.feature-band .card small {
  margin-bottom: 0;
}

.feature-band .card h3 {
  max-width: 14ch;
}

.section.dark { background: var(--blue); color: var(--white); }
.section.alt { background: var(--soft); }

.section-head { max-width: 820px; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.control-section .section-head,
.feature-band .section-head {
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
}

.control-section .section-head .eyebrow,
.feature-band .section-head .eyebrow {
  justify-content: center;
}

.section-title {
  margin-top: 12px;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: .94;
  color: currentColor;
  font-weight: 980;
  text-wrap: balance;
  transform: translate3d(0, var(--title-shift, 0px), 0);
  transition: transform .24s ease-out;
}

.section-copy {
  margin-top: 18px;
  max-width: 70ch;
  color: var(--ink);
  font-size: clamp(16px, 1.42vw, 20px);
  line-height: 1.58;
}

.control-section .module-control-head {
  max-width: 1120px;
}

.module-control-head .section-title,
.module-control-head h2 {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.module-control-head .section-copy,
.module-control-head p {
  width: min(100%, 760px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section.dark .section-copy { color: rgba(255,255,255,.76); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transform: translate3d(0, var(--cards-shift, 0px), 0);
  transition: transform .22s ease-out;
}

.card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--blue);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: var(--white); }
.card.green { border-color: var(--green); background: var(--green); color: var(--blue); }

.function-icon {
  width: 76px;
  height: 76px;
  display: block;
  flex: 0 0 auto;
  margin-bottom: 8px;
  transform: rotate(-3deg);
  transition: transform .28s ease, filter .28s ease;
}

.module-function-icon {
  filter: drop-shadow(0 16px 28px rgba(8, 36, 92, .14));
}

.tilt-card:hover .module-function-icon {
  transform: rotate(-3deg) translateY(-4px) scale(1.035);
  filter: drop-shadow(0 20px 34px rgba(8, 36, 92, .20));
}

.icon {
  width: 64px;
  height: 64px;
  padding: 13px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, #ffffff, #e8fff7 48%, #eaf3ff);
  color: var(--blue);
  transform: rotate(-4deg);
  box-shadow:
    0 16px 32px rgba(8, 36, 92, .14),
    inset 0 0 0 1px rgba(8, 36, 92, .08);
}

.card.dark .icon {
  background:
    linear-gradient(145deg, #ffffff, #e8fff7 48%, #eaf3ff);
  color: var(--blue);
}

.card.green .icon {
  background:
    linear-gradient(145deg, #ffffff, #e8fff7 48%, #eaf3ff);
  color: var(--blue);
}

.card small {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  opacity: .72;
}

.card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  font-weight: 980;
  text-wrap: balance;
}

.card p,
.check-list li {
  color: var(--ink);
  line-height: 1.56;
}

.card.dark p,
.card.dark .check-list li { color: rgba(255,255,255,.76); }
.card.green p,
.card.green .check-list li { color: rgba(8,36,92,.74); }

.feature-band .section-copy {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.feature-band .card.dark p,
.feature-band .card.dark .check-list li {
  color: rgba(255, 255, 255, .9);
  opacity: 1;
  font-weight: 600;
}

.feature-band .feature-card-highlight,
.feature-band .card.feature-card-highlight {
  background: var(--green);
  color: var(--blue);
}

.feature-band .feature-card-highlight h3,
.feature-band .feature-card-highlight p,
.feature-band .feature-card-highlight .check-list li {
  color: var(--blue);
  opacity: 1;
}

.feature-band .card .check-list li::before {
  width: 9px;
  height: 9px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 202, 128, .14);
}

.feature-band .feature-card-highlight .check-list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 36, 92, .16);
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.card.green .check-list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 36, 92, .14);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--blue);
}

.panel h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  font-weight: 980;
  text-wrap: balance;
}

.panel p { margin-top: 16px; color: var(--ink); line-height: 1.58; }

.cta {
  padding: 36px 0 84px;
  background: var(--white);
  color: var(--blue);
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 24px;
  padding: clamp(34px, 5.5vw, 54px) clamp(24px, 6vw, 80px);
  border: 1px solid var(--black);
  border-radius: var(--radius-xl);
  background: var(--green);
  color: var(--blue);
  text-align: center;
}

.cta-box h2 {
  margin: 0;
  max-width: 930px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: .92;
  font-weight: 980;
  text-wrap: balance;
}

.cta-box p {
  margin: 0;
  max-width: 62ch;
  color: rgba(8,36,92,.76);
  font-size: 18px;
  line-height: 1.55;
}

.cta-box .btn {
  min-height: 48px;
  padding: 13px 24px;
  border-color: var(--black);
  background: transparent;
  color: var(--blue);
  font-weight: 950;
}

.cta-box .btn:hover {
  box-shadow: 0 16px 36px rgba(5, 5, 5, .14);
}

.cta-actions {
  margin-top: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer { padding: 70px 0 34px; background: #071F57; color: var(--white); border-top: 1px solid rgba(255,255,255,.16); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 36px; }
.footer p { margin: 18px 0 0; color: rgba(255,255,255,.62); line-height: 1.45; max-width: 360px; }
.footer a {
  display: block;
  width: fit-content;
  color: rgba(255,255,255,.62);
  padding: 7px 0;
  font-size: 14px;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer a:hover {
  color: var(--green);
  transform: translateX(4px);
}
.footer h3 { margin: 0 0 16px; color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.footer-links { display: block; }
.footer-contact-list { display: grid; gap: 6px; }
.footer-contact-list a,
.footer-contact-list span { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.4; }
.footer-contact-list a { padding: 0; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-legal-links a { display: inline; padding: 0; }
.footer-legal-links span { opacity: .4; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.footer-social a { padding: 0; color: var(--green); font-weight: 850; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-bottom a { display: inline; width: auto; color: inherit; white-space: nowrap; padding: 0; }
.footer-bottom a:hover { transform: none; }

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; padding: 14px 0; }
  .nav,
  .header-actions .btn.ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions { justify-self: end; }
  .cards { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; box-shadow: 12px 12px 0 var(--green); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --container: min(calc(100vw - 34px), 420px); }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: var(--container);
    max-width: calc(100vw - 34px);
  }

  .brand img { width: 136px; }

  .header-actions .btn.primary {
    display: none;
  }

  .hero {
    padding-top: 46px;
    text-align: center;
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    justify-items: center;
    justify-content: center;
    gap: 38px;
  }

  .hero .reveal:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
    text-align: center;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 10.8vw, 48px);
    line-height: .96;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 36ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.48;
    text-align: center;
  }

  .hero-actions {
    width: min(100%, 360px);
    max-width: calc(100vw - 34px);
    margin: 30px auto 0;
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 48px;
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    max-width: calc(50% - 5px);
    padding: 13px 10px;
    font-size: clamp(12px, 3.35vw, 13px);
    white-space: nowrap;
  }

  .hero-card {
    width: calc(100% - 18px);
    max-width: 384px;
    margin-inline: auto;
    padding: 16px 16px 26px;
    box-shadow: 8px 10px 0 var(--green);
    text-align: center;
  }

  .hero-card img {
    height: min(58vw, 250px);
    border-radius: 18px;
  }

  .hero-card h2 {
    max-width: 13.6ch;
    margin: 24px auto 0;
    font-size: clamp(34px, 10.6vw, 44px);
    line-height: .94;
    text-align: center;
  }

  .hero-card p {
    max-width: 30ch;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .module-card,
  .hero-image-card { box-shadow: 8px 8px 0 var(--green); }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .feature-band .card:nth-child(2) { transform: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
  .footer-bottom { flex-direction: column; }

  .cta-box {
    padding: 30px 22px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .reveal {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .module-card,
  .mock-ui,
  .mock-row,
  .section-title,
  .cards {
    transform: none;
    transition: none;
  }

  .tilt-card {
    transition: none;
  }
}
