:root {
  --blue-975: #051328;
  --blue-950: #081c3a;
  --blue-900: #0e2d57;
  --blue-800: #174175;
  --blue-700: #215796;
  --blue-200: #c7daf5;
  --blue-100: #e9f1fb;
  --cyan: #5ab0ff;
  --cyan-strong: #3d97eb;
  --gold: #f2b84b;
  --white: #ffffff;
  --ink: #132238;
  --ink-soft: #53657d;
  --surface: #f5f8fc;
  --surface-2: #edf3fb;
  --line: #dbe5f2;
  --success: #22c55e;
  --error: #dc2626;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px rgba(8, 28, 58, 0.12);
  --shadow-lg: 0 30px 70px rgba(8, 28, 58, 0.22);
  --nav-height: 76px;
  --max-width: 1200px;
  --gutter: 1.25rem;
  --t: 0.25s ease;
}

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

html {
  background: var(--blue-950);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--blue-950);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  margin-top: 0;
  color: var(--ink-soft);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section {
  padding-block: 4.5rem;
}

.section--sky {
  background: linear-gradient(180deg, var(--blue-950) 0%, var(--blue-800) 45%, var(--blue-950) 100%);
  color: var(--white);
}

.section--dark {
  background: linear-gradient(180deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-800) 100%);
  color: var(--white);
}

#our-games {
  background: linear-gradient(180deg, var(--blue-950) 0%, var(--blue-975) 50%, var(--blue-950) 100%);
}

.game-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.game-showcase__text {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.game-showcase__text .game-showcase__title {
  margin-bottom: 0;
  color: var(--white);
}

.game-showcase__sub {
  margin: 0;
  max-width: 48ch;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
}

.game-showcase__cta {
  width: fit-content;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.game-showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: transform var(--t);
}

.game-showcase__image:hover,
.game-showcase__image:focus-visible {
  transform: translateY(-4px);
}

.game-showcase__image:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}

.game-showcase__image img {
  width: 100%;
  max-width: 640px;
  height: auto;
}

@media (min-width: 900px) {
  .game-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 12, 26, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 640px);
  max-height: 86vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__title {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox__counter {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.lightbox__close,
.lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 0.5rem;
}

.lightbox__nav--next {
  right: 0.5rem;
}

@media (min-width: 640px) {
  .lightbox__nav--prev {
    left: 1.5rem;
  }

  .lightbox__nav--next {
    right: 1.5rem;
  }
}

#why-level4 {
  padding-bottom: 6.5rem;
}

#level4e-platform {
  padding-bottom: 6.5rem;
}

.section--purple {
  background:
    radial-gradient(ellipse 70% 45% at 50% 42%, rgba(90, 176, 255, 0.16), transparent 70%),
    linear-gradient(180deg, var(--blue-800) 0%, var(--blue-700) 35%, var(--blue-700) 65%, var(--blue-900) 100%);
  color: var(--white);
}

.section-header {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header--left {
  margin-inline: 0;
  justify-items: start;
  text-align: left;
}

.section-eyebrow {
  margin-bottom: 0.8rem;
  color: var(--cyan-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.level4e-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.level4e-heading__logo {
  height: 0.95em;
  width: auto;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 64ch;
  margin-inline: auto;
  text-align: center;
}

.section-header--left .section-sub {
  margin-inline: 0;
  text-align: left;
}

.section-header--dark .section-title,
.section-header--dark .section-sub,
.section-header--dark .section-kicker {
  color: var(--white);
}

.section-header--dark .section-sub {
  color: rgba(255, 255, 255, 0.76);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.875rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform var(--t),
    background var(--t),
    border-color var(--t),
    color var(--t),
    box-shadow var(--t);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--cyan);
  color: var(--blue-950);
  box-shadow: 0 18px 40px rgba(61, 151, 235, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #7dbfff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-height);
  z-index: 100;
  background: transparent;
  transition: background var(--t), box-shadow var(--t);
}

.nav.scrolled {
  background: rgba(8, 28, 58, 0.92);
  box-shadow: 0 12px 30px rgba(8, 28, 58, 0.24);
  backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.nav__toggle:hover,
.nav__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.nav__toggle-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--t), opacity var(--t);
}

.nav__logo-mark,
.footer__logo {
  width: 104px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--white);
}

.nav__cta {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(90, 176, 255, 0.18);
  color: var(--white) !important;
  border: 1px solid rgba(90, 176, 255, 0.34);
}

.nav.is-open .nav__toggle-line:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}

.nav.is-open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle-line:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--blue-950);
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background: url("../assets/two_gamers.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* transform: translate(16%, -2%); */
  transform-origin: center top;
}

.hero__overlay {
  background: linear-gradient(rgba(8, 18, 78, 0.2), rgba(8, 28, 78, 0.92));
  mask: radial-gradient(circle at right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 1) 70%);
  backdrop-filter: blur(7px);
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 3rem;
}

.hero__layout {
  width: 100%;
}

.hero__text {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.35rem;
  margin-inline: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(90, 176, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero__headline {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  margin-inline: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
}

.hero__accent {
  color: var(--cyan);
}

.hero__sub {
  max-width: 42ch;
  margin-bottom: 2rem;
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2.1vw, 1.15rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero__photo {
  display: none;
}

.hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(3, 10, 24, 0.45);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 700px;
}

.hero__highlights li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.hero__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__panel::before {
  content: none;
}

.hero__panel-image {
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto -1rem;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(5, 15, 32, 0.45));
}

.hero__panel-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(8, 28, 58, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__panel-card h3 {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: 1.25rem;
}

.hero__panel-card p {
  color: rgba(255, 255, 255, 0.76);
}

.hero__mini-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.hero__mini-list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__mini-list li::before,
.feature-list li::before,
.contact__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--cyan);
}

.hero__stats {
  position: relative;
  z-index: 1;
  padding: 1.4rem 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--blue-950) 100%),
    rgba(3, 14, 30, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 1rem;
  height: 1rem;
}

.hero__stat-copy {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  margin-bottom: 0.15rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  line-height: 1;
}

.hero__stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.split-layout,
.proof-layout,
.cta__inner {
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
}

.proof-panel,
.proof-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
}

.feature-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel {
  padding: 1.5rem;
}

.feature-panel__eyebrow,
.proof-panel__eyebrow {
  margin-bottom: 0.8rem;
  color: var(--cyan-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hiw__steps,
.value-grid,
.metrics-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.value-grid,
.metrics-grid {
  margin-top: 1.5rem;
}

.hiw__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hiw__step h3 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.2rem;
}

.hiw__step p {
  color: rgba(255, 255, 255, 0.78);
}

.hiw__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--blue-950);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.feature-list,
.contact__perks {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.feature-list li,
.contact__perks li {
  position: relative;
  padding-left: 1.2rem;
}

.feature-panel__summary {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel__cta {
  margin-top: 1.35rem;
}

.fit-note {
  margin: 1.5rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.image-frame img {
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(8, 28, 58, 0.18));
}

.image-frame--wide img {
  width: min(100%, 560px);
}

.split-layout--wide-media .image-frame img {
  width: min(100%, 720px);
}

.split-layout--wide-media .feature-panel {
  align-self: center;
  padding-bottom: 2rem;
}

.section-kicker {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

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

.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.25rem 0 0.75rem;
}

.metric-card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metric-card__value {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.metric-card__label {
  color: rgba(255, 255, 255, 0.72);
}

.value-card {
  height: 100%;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.value-card h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.25rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-layout {
  align-items: start;
}

.proof-panel {
  padding: 1.5rem;
}

.proof-card {
  padding: 1.4rem;
}

.proof-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.proof-card__logo {
  max-height: 72px;
  width: auto;
}

.proof-card__logo--poster {
  max-height: 96px;
  border-radius: 12px;
}

.proof-card h3 {
  margin-bottom: 0.55rem;
  color: var(--blue-950);
  font-size: 1.2rem;
}

.contact {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

.cta__inner {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
}

.cta__title {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
}

.cta__sub {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact__perks li {
  color: rgba(255, 255, 255, 0.8);
}

.cta__form-wrap {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  align-self: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form__label {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.contact-form__input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
}

.contact-form__input:focus-visible {
  outline: 2px solid rgba(90, 176, 255, 0.3);
  border-color: var(--cyan);
}

.contact-form__button {
  width: 100%;
  margin-top: 0.35rem;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__message {
  min-height: 1.5rem;
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.contact-form__message.is-error {
  color: var(--error);
}

.contact-form__message.is-success {
  color: var(--success);
}

.footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.8);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
}

.footer__brand p {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1rem 0 1.4rem;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.imprint-section {
  background: linear-gradient(180deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-800) 100%);
  color: var(--white);
  padding-block: calc(var(--nav-height) + 3.5rem) 5rem;
  min-height: calc(100vh - var(--nav-height) - 220px);
}

.imprint-title {
  margin-bottom: 2.5rem;
  color: var(--white);
}

.imprint-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.imprint-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  color: var(--cyan);
}

.imprint-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 640px) {
  :root {
    --gutter: 1.75rem;
  }

  .contact-form__button {
    width: min(100%, 280px);
    min-width: 250px;
  }

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

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

@media (min-width: 900px) {
  .split-layout,
  .proof-layout,
  .cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .split-layout--wide-media {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  }
}

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: 0;
    background:
      radial-gradient(circle at 20% -10%, rgba(90, 176, 255, 0.22), transparent 55%),
      linear-gradient(165deg, var(--blue-900) 0%, var(--blue-950) 55%, var(--blue-975) 140%);
  }

  .hero__bg,
  .hero__overlay {
    display: none;
  }

  .hero__photo {
    display: block;
    margin-bottom: 1.75rem;
  }

  .nav {
    height: auto;
    background: rgba(8, 28, 58, var(--mobile-nav-opacity, 0));
    box-shadow: 0 12px 30px rgba(8, 28, 58, var(--mobile-nav-shadow-opacity, 0));
  }

  .nav.scrolled,
  .nav.is-open {
    background: rgba(8, 28, 58, var(--mobile-nav-opacity, 0));
    box-shadow: 0 12px 30px rgba(8, 28, 58, var(--mobile-nav-shadow-opacity, 0));
    backdrop-filter: none;
  }

  .nav.is-open {
    background: #081c3a;
    box-shadow: 0 12px 30px rgba(8, 28, 58, 0.24);
  }

  .nav__inner {
    position: relative;
    align-items: center;
    padding-block: 0.55rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 1rem;
  }

  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: auto;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    padding-inline: var(--gutter);
    background: #081c3a;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: max-height var(--t), opacity var(--t), transform var(--t), padding-top var(--t), padding-bottom var(--t);
  }

  .nav.is-open .nav__links {
    max-height: 24rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a {
    width: fit-content;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + 2.5rem);
  }

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

  .split-layout {
    gap: 1.1rem;
  }

  .image-frame img {
    width: min(48%, 200px);
  }

  .feature-panel {
    padding: 1.25rem;
  }

  .hiw__steps {
    gap: 0.65rem;
  }

  .hiw__step {
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
  }

  .hiw__step-num {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.85rem;
  }

  .hiw__step h3 {
    margin-bottom: 0.25rem;
    font-size: 1.02rem;
  }

  .hiw__step p {
    font-size: 0.9rem;
  }

  .feature-panel__summary {
    margin-top: 1rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 4rem;
  }

  .cta__title {
    margin-top: 3rem;
    max-width: none;
  }

  .hero__headline,
  .section-title {
    max-width: none;
  }

  .hero__actions {
    display: grid;
    margin-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .cta__inner,
  .cta__form-wrap,
  .feature-panel,
  .proof-panel,
  .proof-card {
    padding: 1.2rem;
  }
}
