:root {
  --site-blue: #019AFF;
  --navy-950: #020b16;
  --navy-900: #03162c;
  --navy-800: #072447;
  --navy-700: #0a3768;
  --blue: #0f6db8;
  --red: #019AFF;
  --red-dark: #019AFF;
  --gold: #b9933f;
  --gold-dark: #856723;
  --ink: #07111f;
  --muted: #607083;
  --line: #dfe6ee;
  --soft: #019AFF;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 22, 44, .18);
  --shadow-dark: 0 24px 70px rgba(0, 5, 12, .38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 800;
}

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

.site-header {
  min-height: 82px;
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(22px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: rgba(1, 154, 255, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 5, 12, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: min(240px, 42vw);
  height: 62px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: #eef5fb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 100%;
  bottom: -13px;
  left: 0;
  background: var(--gold);
  border-radius: 999px;
  transition: right .22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 147, 63, .7);
  background: rgba(255, 255, 255, .07);
}

.header-cta,
.button-red {
  color: var(--white);
  background: var(--site-blue);
  box-shadow: 0 14px 28px rgba(1, 154, 255, .24);
}

.button-dark {
  color: var(--white);
  background: var(--site-blue);
  box-shadow: 0 14px 28px rgba(1, 154, 255, .24);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  margin-left: auto;
  display: none;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.menu-toggle > span:not(.sr-only) {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  display: block;
  background: currentColor;
  transition: opacity .2s ease, transform .2s 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);
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 20%, rgba(185, 147, 63, .28), transparent 28%),
    linear-gradient(135deg, var(--site-blue), var(--site-blue));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .24;
  background:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.hero::after {
  content: "";
  width: min(760px, 62vw);
  aspect-ratio: 1;
  position: absolute;
  right: -260px;
  bottom: -320px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 62px rgba(255, 255, 255, .03), inset 0 0 0 124px rgba(185, 147, 63, .09);
}

.hero-grid {
  min-height: 760px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 64px;
  padding: 56px 0;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffffff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 92px);
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .9;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: #c6d3e1;
  font-size: 18px;
  line-height: 1.72;
}

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

.hero-metrics {
  max-width: 620px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  min-height: 116px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.hero-metrics div:first-child {
  border-left: 0;
}

.hero-metrics strong {
  color: var(--white);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .85;
}

.hero-metrics span {
  margin-top: 10px;
  color: #9eb2c7;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 590px;
  position: relative;
  display: grid;
  align-items: center;
}

.screen-card {
  width: min(100%, 650px);
  height: 560px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 28px;
  background: var(--site-blue);
  box-shadow: var(--shadow-dark);
}

.screen-card::before {
  content: "";
  height: 42px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(1, 154, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.screen-card::after {
  content: "";
  width: 44px;
  height: 10px;
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4c55 0 10px, #ffc037 10px 22px, #31d17a 22px 34px);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(42px) scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.floating-card {
  width: min(260px, 45%);
  position: absolute;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(1, 154, 255, .86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.card-products {
  left: 0;
  bottom: 78px;
}

.card-digital {
  right: 24px;
  top: 74px;
}

.trust-strip {
  padding: 26px 0;
  color: var(--white);
  background: var(--site-blue);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  align-items: stretch;
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-radius: 20px;
  overflow: hidden;
}

.trust-intro,
.trust-grid article {
  min-height: 118px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--site-blue);
}

.trust-intro strong {
  color: var(--white);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.trust-intro span {
  color: #b7c8da;
  font-weight: 800;
}

.trust-grid article {
  align-items: center;
  text-align: center;
}

.trust-grid .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 147, 63, .58);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
}

.trust-grid article strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.visibility-copy h2,
.feature-copy h2,
.surf-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .96;
}

.section-heading p:last-child,
.visibility-copy p,
.feature-copy p,
.surf-copy p,
.contact-copy p {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.paths {
  background: var(--white);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.path-panel {
  min-height: 680px;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 16px 55px rgba(3, 22, 44, .08);
}

.panel-media {
  position: relative;
  overflow: hidden;
  background: var(--site-blue);
}

.apparel-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dde6ee;
}

.apparel-media span {
  min-height: 250px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.apparel-media span:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(1, 154, 255, .28), rgba(1, 154, 255, .72)),
    repeating-linear-gradient(45deg, #1a2e43 0 12px, #263c52 12px 24px);
}

.apparel-media span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(185, 147, 63, .22), rgba(1, 154, 255, .76)),
    repeating-linear-gradient(-35deg, #d8f4ff 0 8px, #0f6db8 8px 12px, #ffffff 12px 19px);
}

.apparel-media span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(1, 154, 255, .44), rgba(1, 154, 255, .8)),
    repeating-linear-gradient(90deg, #111 0 18px, #2b2b2b 18px 36px);
}

.digital-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(185, 147, 63, .36), transparent 28%),
    linear-gradient(135deg, var(--site-blue), var(--site-blue));
}

.digital-media span {
  position: absolute;
  border: 8px solid var(--site-blue);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0 28%, #e6eef6 28% 100%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.digital-media span:nth-child(1) {
  width: 250px;
  height: 150px;
  left: 11%;
  top: 54px;
}

.digital-media span:nth-child(2) {
  width: 110px;
  height: 185px;
  right: 15%;
  top: 34px;
  border-radius: 24px;
}

.digital-media span:nth-child(3) {
  width: 210px;
  height: 118px;
  right: 27%;
  bottom: 28px;
}

.panel-content {
  padding: 40px;
}

.panel-content h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 950;
  letter-spacing: -.06em;
  line-height: .98;
}

.panel-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-list,
.package-card ul,
.surf-column ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.package-card li,
.surf-column li {
  position: relative;
  margin: 11px 0;
  padding-left: 27px;
  color: #253447;
  font-weight: 760;
  line-height: 1.45;
}

.service-list li::before,
.package-card li::before,
.surf-column li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: .48em;
  left: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(10, 55, 104, .11);
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.visibility {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(15, 109, 184, .32), transparent 28%),
    linear-gradient(135deg, var(--site-blue), var(--site-blue));
}

.visibility-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.visibility-copy h2,
.surf-copy h2,
.contact-copy h2 {
  color: var(--white);
}

.visibility-copy p,
.surf-copy p,
.contact-copy p {
  color: #b6c7d8;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.journey article {
  min-height: 185px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
}

.journey span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.journey strong {
  font-size: 17px;
  line-height: 1.2;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
  align-items: center;
}

.feature-copy .button {
  margin-top: 30px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-cards article {
  min-height: 162px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 22, 44, .06);
  transition: transform .24s ease, box-shadow .24s ease;
}

.feature-cards article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-cards span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: rgba(10, 55, 104, .08);
  font-size: 11px;
  font-weight: 950;
}

.feature-cards strong {
  color: var(--navy-900);
  font-size: 14px;
  line-height: 1.25;
}

.surf-turf {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 154, 255, .96), rgba(1, 154, 255, .82)),
    radial-gradient(circle at 50% 50%, rgba(185, 147, 63, .28), transparent 28%),
    var(--site-blue);
}

.surf-grid {
  display: grid;
  grid-template-columns: .95fr .72fr 220px .72fr;
  gap: 34px;
  align-items: center;
}

.surf-column {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
}

.surf-column h3 {
  margin: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.surf-column li {
  color: #d8e5f0;
}

.authority-seal {
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 12px solid var(--site-blue);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle, var(--site-blue) 0 43%, var(--site-blue) 44% 100%);
  box-shadow: inset 0 0 0 2px var(--gold), inset 0 0 0 9px rgba(255, 255, 255, .08), 0 24px 55px rgba(0, 0, 0, .32);
  text-align: center;
  text-transform: uppercase;
}

.authority-seal span {
  color: var(--white);
  font-size: 27px;
  font-weight: 950;
  line-height: .9;
}

.authority-seal strong {
  margin-top: 4px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: .16em;
}

.audience-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-track {
  width: min(1180px, calc(100% - 30px));
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(10, minmax(92px, 1fr));
  align-items: stretch;
}

.audience-track span {
  min-height: 92px;
  padding: 16px 10px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.audience-track span:last-child {
  border-right: 1px solid var(--line);
}

.packages {
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  min-height: 470px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
  box-shadow: 0 14px 42px rgba(3, 22, 44, .06);
}

.featured-package {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(185, 147, 63, .32), transparent 28%),
    linear-gradient(135deg, var(--site-blue), var(--site-blue));
  transform: translateY(-14px);
}

.package-label {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(10, 55, 104, .08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-package .package-label {
  color: var(--navy-950);
  background: var(--gold);
}

.package-card h3 {
  margin: 30px 0 0;
  color: var(--navy-900);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.featured-package h3 {
  color: var(--white);
}

.package-card li {
  color: #314156;
}

.featured-package li {
  color: #dbe8f4;
}

.package-card .button {
  margin-top: auto;
}

.contact-section {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 16%, rgba(15, 109, 184, .42), transparent 34%),
    linear-gradient(135deg, var(--site-blue), var(--site-blue));
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow-dark);
}

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

.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form span {
  color: #d9e6f3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
  padding: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form option {
  color: var(--ink);
}

.contact-form ::placeholder {
  color: #8ea5bd;
}

.contact-form .button {
  border: 0;
}

.site-footer {
  padding: 34px 0 22px;
  color: var(--white);
  background: var(--site-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 460px;
  gap: 36px;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #b9cadc;
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #71879b;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

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

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

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .screen-card {
    margin-inline: auto;
  }

  .card-products {
    left: 5%;
  }

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

  .trust-intro {
    grid-column: 1 / -1;
    min-height: 94px;
    align-items: center;
    text-align: center;
  }

  .visibility-grid,
  .feature-grid,
  .surf-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .surf-grid {
    justify-items: stretch;
  }

  .authority-seal {
    margin-inline: auto;
  }

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

  .footer-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 74px;
    padding-inline: 18px;
  }

  .brand img {
    width: min(190px, 48vw);
    height: 52px;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0;
    display: block;
  }

  .header-phone {
    order: 2;
    margin-left: auto;
    min-height: 42px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    max-height: 0;
    margin: 0;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    color: var(--white);
    background: rgba(1, 154, 255, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: max-height .25s ease, padding .25s ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 74px);
    padding-block: 16px 24px;
  }

  .site-nav a {
    width: 100%;
    padding: 17px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .site-nav a::after {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    padding: 70px 0 86px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 74px);
  }

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

  .hero-metrics div,
  .hero-metrics div:first-child {
    min-height: 92px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-metrics div:first-child {
    border-top: 0;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 76px;
  }

  .screen-card {
    height: 430px;
  }

  .floating-card {
    width: calc(50% - 18px);
  }

  .card-products {
    left: 0;
    bottom: 0;
  }

  .card-digital {
    right: 0;
    top: auto;
    bottom: 0;
  }

  .path-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .path-panel {
    min-height: 0;
  }

  .featured-package {
    transform: none;
  }

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

  .audience-track {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .audience-track span {
    min-width: 150px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 30px);
  }

  .section {
    padding: 70px 0;
  }

  .hero-grid {
    padding-top: 52px;
  }

  .hero-lede,
  .section-heading p:last-child,
  .visibility-copy p,
  .feature-copy p,
  .surf-copy p,
  .contact-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .footer-actions {
    flex-direction: column;
  }

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

  .screen-card {
    height: 360px;
    border-radius: 20px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual {
    display: block;
    padding-bottom: 0;
  }

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

  .trust-grid article,
  .trust-intro {
    min-height: 96px;
  }

  .panel-content,
  .package-card {
    padding: 28px;
  }

  .apparel-media {
    grid-template-columns: 1fr;
  }

  .apparel-media span {
    min-height: 92px;
  }

  .digital-media span:nth-child(1) {
    width: 200px;
    left: 6%;
  }

  .digital-media span:nth-child(2) {
    right: 7%;
  }

  .journey,
  .feature-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4),
  .contact-form button {
    grid-column: auto;
  }

  .authority-seal {
    width: 190px;
  }

  .footer-contact {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: min(138px, 38vw);
    height: 46px;
  }

  .header-phone {
    padding-inline: 9px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .visibility-copy h2,
  .feature-copy h2,
  .surf-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .panel-media {
    min-height: 220px;
  }

  .digital-media span:nth-child(1) {
    width: 170px;
  }

  .digital-media span:nth-child(3) {
    width: 160px;
    right: 19%;
  }
}
