:root {
  --bg: #08142d;
  --bg-elev: #0e1f42;
  --card: rgba(14, 36, 78, 0.5);
  --text: #f5f8ff;
  --muted: #b6c3e6;
  --accent: #6ca4ff;
  --accent-strong: #4e8eff;
  --border: rgba(255, 255, 255, 0.18);
  --glass-gradient: linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.08) 100%);
  --glass-highlight: radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  --glass-shadow:
    0 14px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.landing-skip {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 1200;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1733;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

main:focus {
  outline: none;
}


.landing-page {
  min-height: 100vh;
  background:
          url("./images/bg_desktop_1440.png") top center / cover no-repeat fixed;
}

.landing-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.landing-section {
  padding: 72px 0;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px) saturate(145%);
  background: linear-gradient(180deg, rgba(11, 25, 52, 0.75) 0%, rgba(10, 23, 49, 0.6) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glass-shadow);
  isolation: isolate;
}

.landing-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass-gradient);
  pointer-events: none;
  opacity: 0.48;
  z-index: 0;
}

.landing-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-brand__logo {
  width: 40px;
  height: 40px;
}

.landing-brand__text {
  font-size: 1.15rem;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.landing-nav__link {
  position: relative;
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.landing-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.landing-nav__link:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.landing-nav__link:hover::after {
  transform: scaleX(1);
}

.landing-nav__link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

.landing-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

.landing-nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.landing-nav-toggle__bar + .landing-nav-toggle__bar {
  margin-top: 7px;
}

.landing-nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.landing-hero {
  padding-bottom: 28px;
}

.landing-hero__copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.landing-hero__copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero__subtitle {
  margin: 0 auto 28px;
  color: #e7efff;
  line-height: 1.6;
  max-width: 66ch;
}

.landing-hero__media {
  padding: 8px 0 72px;
}

.landing-hero__visual {
  max-width: 1120px;
  margin: 0 auto;
}

.landing-hero__visual picture {
  display: block;
}

.landing-hero__visual img {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.landing-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: #e4ecff;
  font-weight: 600;
}

h2 {
  margin: 10px 0 30px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

p {
  margin: 0;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.landing-faq-help-link {
  margin-top: 16px;
  color: var(--muted);
}

.landing-faq-help-link .landing-contact-link {
  color: inherit;
  font-weight: 600;
  border-bottom-color: currentColor;
}

.landing-faq-help-link .landing-contact-link:hover {
  color: inherit;
  text-shadow: none;
  border-bottom-color: currentColor;
}

.landing-card,
.landing-step,
.landing-stat,
.landing-cta__inner {
  position: relative;
  overflow: hidden;
  background:
    var(--glass-gradient),
    var(--card);
  border-radius: 18px;
  backdrop-filter: blur(12px) saturate(145%);
  box-shadow: var(--glass-shadow);
}

.landing-card {
  padding: 22px;
}

.landing-card p {
  color: var(--muted);
  line-height: 1.6;
}

.landing-sparkle {
  color: #dce5ff;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-step {
  padding: 22px;
}

.landing-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}

.landing-step p,
.landing-stat p {
  color: var(--muted);
  line-height: 1.6;
}

.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-stat {
  padding: 22px;
}

.landing-stat__value {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #f2f6ff;
}

.landing-stat.landing-reveal.landing-reveal--visible p {
  color: #dde7ff;
}

.landing-cta {
  padding-top: 30px;
}

.landing-cta__inner {
  text-align: center;
  padding: 40px 28px;
}

.landing-cta__inner h2 {
  margin: 0 0 10px;
  max-width: none;
}

.landing-cta__inner p {
  color: var(--muted);
}

.landing-cta__note {
  margin: 8px 0 22px;
}

.landing-footer {
  padding: 48px 0 30px;
}

.landing-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: center;
}

.landing-brand--footer {
  font-size: 1.1rem;
}

.landing-footer__nav {
  display: flex;
  gap: 18px;
}

.landing-footer__link {
  position: relative;
  display: inline-block;
  color: #e1eaff;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.landing-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.landing-footer__link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.landing-footer__link:hover::after {
  transform: scaleX(1);
}

.landing-footer__link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

.landing-footer__copyright {
  grid-column: 1 / -1;
  color: #d0dcff;
  font-size: 0.9rem;
}

.landing-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 0;
  text-shadow: none;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.landing-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.45),
    0 0 20px rgba(255, 255, 255, 0.2);
}

.landing-btn:focus-visible {
  outline-color: rgba(255, 255, 255, 0.8);
  outline-offset: 6px;
}

.landing-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #6ca4ff 0%, #4e8eff 100%);
  box-shadow: 0 12px 24px rgba(42, 107, 210, 0.3);
}

.landing-btn--nav {
  color: #fff;
  background: rgba(78, 142, 255, 0.2);
  border-color: rgba(128, 176, 255, 0.45);
  text-decoration: none;
}

.landing-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(10px);
  background: rgba(7, 15, 34, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.landing-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.landing-modal__content {
  width: min(500px, 100%);
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(77, 114, 177, 0.98) 0%, rgba(54, 85, 137, 0.98) 100%);
  border: 1px solid rgba(232, 240, 255, 0.28);
  border-radius: 22px;
  padding: 34px 26px 26px;
  box-shadow:
    0 24px 60px rgba(11, 25, 52, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.landing-modal--active .landing-modal__content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-modal__content::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.landing-modal__content h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
}

.landing-modal__content > p {
  margin-bottom: 22px;
  color: #e3ebff;
  line-height: 1.55;
}

.landing-modal__content--legal {
  width: min(980px, 100%);
  max-height: min(88vh, 920px);
  padding: 30px 28px 24px;
}

.landing-modal__content--legal::before {
  right: -90px;
  top: -90px;
}

.landing-modal__content--legal .landing-modal__close {
  right: 26px;
  top: 14px;
}

.landing-modal__scroll {
  max-height: calc(88vh - 64px);
  overflow-y: auto;
  padding-right: 2px;
  margin-right: -8px;
}

.landing-modal__scroll h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  max-width: none;
}

.landing-modal__scroll h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
  color: #f3f7ff;
}

.landing-modal__scroll h4 {
  margin: 14px 0 8px;
  font-size: 0.98rem;
  color: #e8efff;
}

.landing-modal__scroll p,
.landing-modal__scroll li {
  color: #d7e3ff;
  line-height: 1.58;
  font-size: 0.94rem;
}

.landing-modal__scroll ul,
.landing-modal__scroll ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.landing-modal__asof {
  margin-top: 18px;
  color: #f1f6ff;
  font-weight: 600;
}

.landing-modal__scroll::-webkit-scrollbar {
  width: 8px;
}

.landing-modal__scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.landing-modal__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.landing-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.landing-modal__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 8px;
}

.landing-cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: min(470px, calc(100vw - 24px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 18px;
  border: 1px solid rgba(233, 241, 255, 0.42);
  border-radius: 16px;
  background:
    var(--glass-gradient),
    linear-gradient(160deg, rgba(39, 67, 116, 0.9) 0%, rgba(27, 49, 89, 0.9) 100%);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px) saturate(150%);
  overflow: hidden;
}

.landing-cookie::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -28%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--glass-highlight);
  pointer-events: none;
  opacity: 0.5;
}

.landing-cookie[hidden] {
  display: none;
}

.landing-cookie__text {
  margin: 0;
  color: #e8f0ff;
  font-size: 0.92rem;
  line-height: 1.5;
}

.landing-cookie a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.62);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.25s ease, text-shadow 0.25s ease, text-decoration-color 0.25s ease;
}

.landing-cookie a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.landing-cookie a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 4px;
}

.landing-cookie__btn {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 12px;
  color: #f8fbff;
  background: linear-gradient(180deg, #79abff 0%, #5a8ee5 100%);
  box-shadow:
    0 8px 18px rgba(35, 79, 153, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  /* Uses the same hover animation as .landing-btn */
}

.landing-cookie__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.landing-form {
  display: grid;
  gap: 15px;
}

.landing-form__group {
  display: grid;
  gap: 6px;
}

.landing-form__group label {
  font-size: 0.85rem;
  color: #edf3ff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.landing-form__asterisk {
  color: #ffb3b3;
}

.landing-form__group input {
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(227, 236, 255, 0.32);
  background: rgba(13, 31, 62, 0.28);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-form__group input::placeholder {
  color: rgba(216, 227, 255, 0.72);
}

.landing-form__group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 31, 62, 0.4);
  box-shadow: 0 0 0 4px rgba(223, 234, 255, 0.2);
}

.landing-form__submit {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 13px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #7bb0ff 0%, #5a8fe7 100%);
  cursor: pointer;
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 0;
  text-shadow: none;
  box-shadow: 0 12px 24px rgba(32, 72, 136, 0.35);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.landing-form__submit:hover {
  border-color: rgba(255, 255, 255, 0.35);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  filter: brightness(1.03);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.45),
    0 0 20px rgba(255, 255, 255, 0.2),
    0 14px 28px rgba(32, 72, 136, 0.45);
}

.landing-form__submit:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.landing-form__submit:focus-visible {
  outline-color: rgba(255, 255, 255, 0.8);
  outline-offset: 6px;
}

.landing-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.landing-form__response {
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 0.9rem;
  line-height: 1.45;
}

#mce-error-response {
  color: #ffe7e7;
  background: rgba(255, 84, 84, 0.2);
  border: 1px solid rgba(255, 129, 129, 0.55);
}

#mce-success-response {
  color: #e9ffef;
  background: rgba(84, 255, 130, 0.18);
  border: 1px solid rgba(114, 255, 154, 0.5);
}

.landing-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.landing-legal-page {
  padding: 48px 0 72px;
}

.landing-legal {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    var(--glass-gradient),
    rgba(14, 36, 78, 0.56);
  backdrop-filter: blur(14px) saturate(145%);
  box-shadow: var(--glass-shadow);
}

.landing-legal h1 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.landing-legal h2 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
  max-width: none;
}

.landing-legal p,
.landing-legal li {
  color: #d9e5ff;
  line-height: 1.6;
}

.landing-legal ul,
.landing-legal ol {
  margin: 0 0 12px;
  padding-left: 22px;
}

.landing-legal__meta {
  color: #c9d7fb;
  margin-bottom: 20px;
}

.landing-support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.landing-support-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    var(--glass-gradient),
    rgba(18, 43, 89, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.landing-support-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  max-width: none;
}

.landing-support-card p {
  color: #dbe7ff;
  line-height: 1.55;
}

.landing-support-card__list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.landing-contact-link {
  display: inline-block;
  color: #f7fbff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 2px;
  transition: color 0.25s ease, text-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-contact-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.9);
}

.landing-contact-link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .landing-page {
    background:
      url("./images/bg_tablet_800.png") top center / cover no-repeat fixed;
  }

  .landing-hero__visual {
    max-width: 720px;
  }

  h2 {
    max-width: none;
  }

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

@media (max-width: 768px) {
  .landing-page {
    background:
      url("./images/bg_mobile_375.png") top center / cover no-repeat fixed;
  }

  .landing-section {
    padding: 58px 0;
  }

  .landing-hero {
    padding-bottom: 20px;
  }

  .landing-hero__media {
    padding: 6px 0 58px;
  }

  .landing-modal__content--legal {
    padding: 24px 20px 18px;
  }

  .landing-modal__content--legal .landing-modal__close {
    right: 18px;
    top: 12px;
  }

  .landing-modal__scroll {
    max-height: calc(86vh - 58px);
    padding-right: 1px;
    margin-right: -6px;
  }

  .landing-modal__scroll h2 {
    font-size: 1.45rem;
  }

  .landing-modal__scroll h3 {
    font-size: 1rem;
  }

  .landing-nav-toggle {
    display: block;
  }

  .landing-nav {
    display: flex;
    position: absolute;
    top: 74px;
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: -50vw;
    background:
      var(--glass-gradient),
      rgba(8, 20, 45, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 4vw;
    flex-direction: column;
    align-items: flex-start;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    box-shadow:
      0 18px 30px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
      max-height 0.34s ease,
      opacity 0.24s ease,
      transform 0.28s ease,
      visibility 0s linear 0.34s,
      padding 0.34s ease;
  }

  .landing-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      var(--glass-gradient),
      rgba(8, 20, 45, 0.38);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    z-index: 0;
    pointer-events: none;
  }

  .landing-nav__link,
  .landing-nav .landing-btn--nav {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.24s ease;
  }

  .landing-nav--open {
    max-height: 360px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    padding: 14px 4vw 18px;
    transition-delay: 0s, 0s, 0s, 0s, 0s;
  }

  .landing-nav--open .landing-nav__link,
  .landing-nav--open .landing-btn--nav {
    opacity: 1;
    transform: translateY(0);
  }

  .landing-nav--open .landing-nav__link:nth-child(1) {
    transition-delay: 0.06s;
  }

  .landing-nav--open .landing-nav__link:nth-child(2) {
    transition-delay: 0.1s;
  }

  .landing-nav--open .landing-nav__link:nth-child(3) {
    transition-delay: 0.14s;
  }

  .landing-nav--open .landing-nav__link:nth-child(4) {
    transition-delay: 0.18s;
  }

  .landing-nav--open .landing-btn--nav {
    transition-delay: 0.22s;
  }

  .landing-nav-toggle--active .landing-nav-toggle__bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .landing-nav-toggle--active .landing-nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .landing-nav-toggle--active .landing-nav-toggle__bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.landing-body--nav-open {
    overflow: hidden;
  }

  .landing-cards,
  .landing-steps,
  .landing-stats {
    grid-template-columns: 1fr;
  }

  .landing-footer__inner {
    grid-template-columns: 1fr;
  }

  .landing-footer__nav {
    flex-wrap: wrap;
  }

  .landing-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }

  .landing-cookie__btn {
    width: 100%;
  }

  .landing-support__grid {
    grid-template-columns: 1fr;
  }

  .landing-legal {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-nav,
  .landing-nav__link,
  .landing-nav .landing-btn--nav,
  .landing-nav-toggle__bar {
    transition: none !important;
  }
}
