
:root {
  --bg: #152c49;
  --bg-deep: #0d1e35;
  --bg-soft: #1a3757;
  --bg-lift: rgba(244, 239, 220, 0.045);
  --navy-600: #27507f;
  --blue: #3a76c4;
  --blue-deep: #2d5f9e;
  --blue-bright: #6ba3e6;
  --cream: #f4efdc;
  --cream-dim: rgba(244, 239, 220, 0.72);
  --cream-faint: rgba(244, 239, 220, 0.6);
  --line: rgba(244, 239, 220, 0.12);
  --line-soft: rgba(244, 239, 220, 0.07);
  --ink: #1c3556;
  --gold: #cfa94e;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-lg: 0 34px 90px rgba(4, 12, 26, 0.6);
  --shadow-md: 0 18px 44px rgba(4, 12, 26, 0.4);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: "Rubik", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(1100px 700px at 88% -8%, rgba(58, 118, 196, 0.22), transparent 62%),
    radial-gradient(900px 700px at -10% 38%, rgba(58, 118, 196, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 18%, var(--bg) 72%, var(--bg-deep) 100%);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible,
.screens__arrow:focus-visible,
.header__toggle:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

.skip-link {
  position: fixed;
  top: -60px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus-visible {
  top: 0;
}

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

.ico {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.ripple {
  position: absolute;
  width: var(--size, 1400px);
  height: var(--size, 1400px);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 32%, rgba(13, 30, 53, 0.6) 70%, transparent 76%),
    repeating-radial-gradient(
      circle,
      var(--blue) 0 var(--ring, 100px),
      var(--blue-deep) var(--ring, 100px) calc(var(--ring, 100px) * 2)
    );
  opacity: var(--opacity, 0.4);
  z-index: 0;
}

.ripple--security {
  --size: 1100px;
  --opacity: 0.18;
  top: -320px;
  inset-inline-end: -400px;
}

.ripple--download {
  --size: 1250px;
  --opacity: 0.3;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.phone {
  position: relative;
  width: 100%;
  border-radius: 46px;
  padding: 8px;
  background: linear-gradient(160deg, #2a3c55, #0c1828 70%);
  border: 1px solid rgba(244, 239, 220, 0.14);
  box-shadow:
    inset 0 0 0 2px rgba(5, 12, 24, 0.9),
    var(--shadow-lg);
}

.phone img {
  border-radius: 38px;
  width: 100%;
}

.phone--sm { border-radius: 36px; padding: 6px; }
.phone--sm img { border-radius: 30px; }

.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 16px;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header--scrolled {
  background: rgba(13, 30, 53, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 10px;
  box-shadow: 0 10px 34px rgba(4, 12, 26, 0.4);
  border-bottom: 1px solid var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(4, 12, 26, 0.45);
}

.brand__name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav__link {
  color: var(--cream-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--cream);
  background: var(--bg-lift);
}

.nav__cta { margin-inline-start: 10px; }

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn--primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(244, 239, 220, 0.16);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(244, 239, 220, 0.26);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badges--center { justify-content: center; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(4, 12, 26, 0.55);
}

.store-badge__logo {
  width: 26px;
  height: 26px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.store-badge__text small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.75;
}

.store-badge__text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 150px 0;
  overflow: hidden;
  background:
    radial-gradient(1100px 720px at 80% -12%, rgba(58, 118, 196, 0.22), transparent 62%),
    linear-gradient(180deg, #1d3f66 0%, #17324f 55%, #122741 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  width: 1550px;
  height: 1550px;
  left: -13%;
  top: 48%;
  translate: 0 -50%;
  background: repeating-radial-gradient(
    circle at center,
    rgba(88, 150, 220, 0.5) 0 105px,
    rgba(45, 92, 152, 0.22) 105px 215px
  );
  -webkit-mask-image: radial-gradient(circle, #000 0 30%, transparent 69%);
  mask-image: radial-gradient(circle, #000 0 30%, transparent 69%);
  opacity: 0.85;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  width: 1050px;
  height: 1050px;
  left: -9%;
  top: 44%;
  translate: 0 -50%;
  background: radial-gradient(
    circle,
    rgba(99, 160, 228, 0.38) 0%,
    rgba(99, 160, 228, 0.12) 42%,
    transparent 68%
  );
  filter: blur(28px);
}

.hero__ring {
  position: absolute;
  border: 1.5px solid rgba(244, 239, 220, 0.06);
  border-radius: 50%;
}

.hero__ring--a {
  width: 580px;
  height: 580px;
  top: -220px;
  right: -150px;
  border-color: rgba(107, 163, 230, 0.16);
}

.hero__ring--b {
  width: 940px;
  height: 940px;
  top: -370px;
  right: -290px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.hero__kicker {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  padding-block: 6px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(207, 169, 78, 0.35);
}

.hero__title {
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero__highlight {
  position: relative;
  color: var(--blue-bright);
  display: inline-block;
}

.hero__highlight::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.06em;
  height: 0.09em;
  background: var(--blue-bright);
  opacity: 0.55;
  border-radius: 999px;
}

.hero__subtitle {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 32rem;
  margin-bottom: 34px;
}

.hero__platforms {
  font-size: 0.98rem;
  color: var(--cream-faint);
}

.hero__platforms a {
  color: var(--cream);
  font-weight: 600;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.hero__platforms a:hover { color: var(--blue-bright); }

.hero__note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.95rem;
  color: var(--cream-faint);
  max-width: 30rem;
}

.hero__note a {
  color: var(--cream);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--blue);
  text-underline-offset: 4px;
}

.hero__note a:hover { color: var(--blue-bright); }

.hero__phone {
  justify-self: center;
  align-self: end;
  position: relative;
  width: min(480px, 94%);
  margin-bottom: -200px;
}

.hero__phone::before {
  content: "";
  position: absolute;
  inset: -8% -14%;
  background: radial-gradient(circle at 50% 40%, rgba(99, 160, 228, 0.3), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.stats {
  position: relative;
  padding-block: 80px 96px;
}

.stats__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-lift);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 239, 220, 0.24);
  background: rgba(244, 239, 220, 0.08);
}

.stat-card__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--cream);
  border-radius: 15px;
  font-size: 1.45rem;
  box-shadow: 0 10px 26px rgba(58, 118, 196, 0.35);
}

.stat-card__text strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.stat-card__text span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cream-dim);
  display: block;
}

.section-head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 60px;
  text-align: center;
}

.section-head--start {
  margin-inline: 0;
  text-align: start;
}

.section-head__kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head__kicker::before {
  content: "— ";
  color: var(--cream-faint);
}

.section-head__title {
  font-size: clamp(1.9rem, 3.9vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-head__sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
}

.video {
  position: relative;
  padding-block: 96px;
}

.video__frame {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--bg-deep);
}

.video__frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.player {
  --plyr-color-main: var(--blue-bright);
  --plyr-video-background: var(--bg-deep);
  --plyr-video-control-color: var(--cream);
  --plyr-video-control-color-hover: #fff;
  --plyr-video-control-background-hover: var(--blue);
  --plyr-audio-control-background-hover: var(--blue);
  --plyr-range-thumb-background: var(--cream);
  --plyr-range-thumb-shadow: 0 1px 4px rgba(4, 12, 26, 0.5);
  --plyr-tooltip-background: rgba(8, 20, 38, 0.95);
  --plyr-tooltip-color: var(--cream);
  --plyr-tooltip-radius: 10px;
  --plyr-badge-background: var(--blue);
  --plyr-control-radius: 10px;
  --plyr-control-icon-size: 20px;
  --plyr-range-track-height: 6px;
  --plyr-font-family: "Rubik", ui-sans-serif, system-ui, sans-serif;
}

.plyr:fullscreen video,
.plyr:-webkit-full-screen video,
.plyr--fullscreen video,
.plyr--fullscreen-fallback video {
  object-fit: contain;
}

.features {
  position: relative;
  padding-block: 100px;
}

.features__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-soft);
}

.feature {
  display: flex;
  gap: 22px;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.3s;
}

.feature:nth-child(odd) { border-inline-end: 1px solid var(--line-soft); }

.feature:hover { background: var(--bg-lift); }

.feature__num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-bright);
  font-variant-numeric: tabular-nums;
  padding-top: 6px;
}

.feature__body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature__body p {
  font-size: 0.95rem;
  color: var(--cream-dim);
}

.screens {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
  background: rgba(13, 30, 53, 0.3);
  border-block: 1px solid var(--line-soft);
}

.screens__rail-wrap { position: relative; }

.screens__rail {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 26px max(calc((100% - var(--container)) / 2), 1.5rem) 34px;
  scrollbar-width: none;
  cursor: grab;
}

.screens__rail::-webkit-scrollbar { display: none; }
.screens__rail.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.screens__rail img { -webkit-user-drag: none; }

.screens__item {
  flex: 0 0 auto;
  width: 344px;
  scroll-snap-align: center;
}

.screens__item .phone {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.screens__item:hover .phone {
  transform: translateY(-10px);
  box-shadow:
    inset 0 0 0 2px rgba(5, 12, 24, 0.9),
    0 44px 90px rgba(4, 12, 26, 0.65);
}

.screens__item figcaption {
  margin-top: 18px;
  padding-inline: 4px;
}

.screens__item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.screens__item span {
  font-size: 0.86rem;
  color: var(--cream-faint);
  line-height: 1.55;
  display: block;
}

.screens__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.screens__arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.screens__arrow:hover {
  background: var(--bg-lift);
  border-color: rgba(244, 239, 220, 0.3);
  transform: scale(1.06);
}

.audiences {
  position: relative;
  padding-block: 110px;
}

.aud-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 4.5rem;
  padding-block: 56px;
  border-top: 1px solid var(--line-soft);
}

.aud-row:last-child { border-bottom: 1px solid var(--line-soft); }

.aud-row--flip .aud-row__content { order: 2; }
.aud-row--flip .aud-row__phone { order: 1; }

.aud-row__num {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.aud-row__content h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.aud-row__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.aud-row__content > p:not(.aud-row__lead) {
  color: var(--cream-dim);
  max-width: 30rem;
}

.aud-row__phone {
  justify-self: end;
  width: min(400px, 100%);
}

.aud-row--flip .aud-row__phone { justify-self: start; }

.aud-row__phone .phone { transition: transform 0.35s var(--ease); }

.aud-row__phone .phone:hover { transform: rotate(-1.2deg) scale(1.015); }

.aud-row--flip .aud-row__phone .phone:hover { transform: rotate(1.2deg) scale(1.015); }

.security {
  position: relative;
  padding-block: 110px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: rgba(13, 30, 53, 0.3);
}

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

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

.sec-point {
  background: var(--bg-lift);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.sec-point:hover {
  border-color: rgba(244, 239, 220, 0.22);
  transform: translateY(-4px);
}

.sec-point__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--cream);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(58, 118, 196, 0.35);
}

.sec-point h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.sec-point p {
  font-size: 0.92rem;
  color: var(--cream-dim);
}

.faq {
  position: relative;
  padding-block: 100px;
}

.faq__list {
  max-width: 46rem;
  margin-inline: auto;
}

.faq__item {
  background: var(--bg-lift);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.faq__item[open] {
  border-color: rgba(244, 239, 220, 0.22);
}

.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--blue-bright); }

.faq__chevron {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--blue-bright);
  transition: rotate 0.3s var(--ease);
}

.faq__item[open] .faq__chevron { rotate: 180deg; }

.faq__item > p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--cream-dim);
  font-size: 0.97rem;
}

.download {
  position: relative;
  padding-block: 140px;
  overflow: hidden;
  text-align: center;
}

.download__inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.download__icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-inline: auto;
  margin-bottom: 26px;
  box-shadow: var(--shadow-lg);
}

.download h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.download p {
  color: var(--cream-dim);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.contact {
  position: relative;
  padding-block: 30px 120px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__intro h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact__intro > p {
  color: var(--cream-dim);
  margin-bottom: 30px;
  max-width: 26rem;
}

.contact__channels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-lift);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
  width: fit-content;
  min-width: 240px;
}

.contact__channel:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 239, 220, 0.28);
  background: rgba(244, 239, 220, 0.08);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 12px;
  font-size: 1.3rem;
}

.contact__channel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact__channel-text small {
  font-size: 0.74rem;
  color: var(--cream-faint);
  font-weight: 600;
}

.contact__channel-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.contact__form {
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
}

.contact__honey {
  position: absolute;
  inset-inline-start: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact__field { margin-bottom: 14px; }

.contact__field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(13, 30, 53, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23f4efdc' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}

.contact__field select:invalid {
  color: rgba(244, 239, 220, 0.55);
}

.contact__field select option {
  color: var(--cream);
  background: var(--bg-deep);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(244, 239, 220, 0.55);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(107, 163, 230, 0.18);
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__submit { width: 100%; margin-top: 4px; }

.contact__form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--cream-faint);
  text-align: center;
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 20, 38, 0.55);
  padding-block: 40px 30px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand .brand__icon { width: 38px; height: 38px; }

.footer__name {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.3;
}

.footer__tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--cream-faint);
}

.footer__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__nav a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--cream); }

.footer__copy {
  font-size: 0.82rem;
  color: var(--cream-faint);
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--delay { transition-delay: 0.16s; }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .aud-row { gap: 2.8rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__intro > p { max-width: none; }
}

@media (max-width: 860px) {
  .hero { padding-block: 130px 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }

  .hero__subtitle { margin-inline: auto; }
  .hero__note { margin-inline: auto; }
  .hero__phone { width: min(380px, 90%); margin-bottom: -160px; }

  .section-head--start {
    margin-inline: auto;
    text-align: center;
  }

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

  .features__list { grid-template-columns: 1fr; }
  .feature:nth-child(odd) { border-inline-end: none; }

  .aud-row {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
    padding-block: 44px;
  }

  .aud-row--flip .aud-row__content { order: 1; }
  .aud-row--flip .aud-row__phone { order: 2; }

  .aud-row__content > p:not(.aud-row__lead) { margin-inline: auto; }
  .aud-row__phone,
  .aud-row--flip .aud-row__phone { width: min(250px, 80%); justify-self: center; }

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

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 72px;
    inset-inline: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13, 30, 53, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav--open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }

  .nav__link { padding: 12px 16px; }
  .nav__cta { margin: 8px 0 0; justify-content: center; }

  .header__toggle { display: flex; }
}

@media (max-width: 640px) {
  .screens__item { width: 280px; }
  .screens__rail { gap: 24px; }

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

  .contact__row { grid-template-columns: 1fr; gap: 0; }

  .contact__channels { flex-direction: column; }
  .contact__channel { width: 100%; }

  .footer__top { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; }
  .footer__nav { justify-content: center; }
}

.policy {
  padding-block: 140px 100px;
}

.policy__container {
  max-width: 50rem;
}

.policy h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.policy__updated {
  color: var(--cream-faint);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.policy__intro {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 26px;
  margin-bottom: 10px;
}

.policy__container > p,
.policy__intro p,
.policy section p {
  color: var(--cream-dim);
  margin-bottom: 14px;
}

.policy__intro strong,
.policy section strong { color: var(--cream); }

.policy__num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-bottom: 4px !important;
  font-variant-numeric: tabular-nums;
}

.policy section {
  margin-top: 46px;
}

.policy section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.policy section h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy section ul {
  margin-inline-start: 22px;
  margin-bottom: 14px;
  color: var(--cream-dim);
}

.policy section li { margin-bottom: 9px; }

.policy section a {
  color: var(--cream);
  text-decoration-thickness: 2px;
  text-decoration-color: var(--blue);
  text-underline-offset: 4px;
}

.policy section a:hover { color: var(--blue-bright); }

.policy__note {
  background: var(--bg-lift);
  border: 1px solid var(--line-soft);
  border-inline-start: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
}

.policy__note p { margin: 0; color: var(--cream-dim); font-size: 0.95rem; }

.policy__back {
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.policy__back a {
  color: var(--cream-dim);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.policy__back a:hover { color: var(--cream); }

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

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

  .screens__item .phone,
  .aud-row__phone .phone { transition: none; }
}
