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

:root {
  --bg-main: #2d008f;
  --bg-dark: #12003d;
  --bg-deep: #090021;
  --surface: rgba(8, 0, 28, 0.72);
  --surface-strong: rgba(11, 0, 33, 0.86);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 170, 0, 0.18);
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.48);
  --accent: #f5a300;
  --accent-soft: #ffbe3a;
  --purple-glow: #7232ff;
  --shadow-main: 0 24px 80px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.18);
  --container: 1220px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(114, 50, 255, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 163, 0, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #2e0090 0%, #1e0066 40%, #110035 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobMove 16s ease-in-out infinite;
}

.blur-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255, 163, 0, 0.18) 0%,
    rgba(255, 163, 0, 0) 70%
  );
  top: -120px;
  right: -60px;
}

.blur-two {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(114, 50, 255, 0.34) 0%,
    rgba(114, 50, 255, 0) 72%
  );
  left: -120px;
  top: 380px;
  animation-delay: -6s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.6) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.6) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.6) 0 1px,
      transparent 1px
    );
  background-size: 180px 180px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: 0.3s ease;
}

.header.is-scrolled {
  background: rgba(11, 0, 33, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffcb60);
  box-shadow: 0 0 0 8px rgba(245, 163, 0, 0.12);
}

.logo__text {
  font-size: 1.06rem;
}

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

.nav a {
  color: var(--text-soft);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

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

.burger {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: linear-gradient(135deg, #ff9f00, #f5a300 48%, #ffcb60 100%);
  color: #180036;
  box-shadow: 0 14px 36px rgba(245, 163, 0, 0.26);
}

.btn--small {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.94rem;
  border-radius: 14px;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn--light {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 44px 0 18px;
  position: relative;
}

.hero__grid {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 163, 0, 0.12);
  border: 1px solid rgba(245, 163, 0, 0.16);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #ffcb60 60%, #ff9f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text,
.section-head p,
.feature-card p,
.info-card p,
.timeline-card p,
.cta p,
.footer p,
.stats-list__item span {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero__text {
  max-width: 640px;
  font-size: 1.06rem;
  margin: 0 0 30px;
}

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

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.metric-card {
  min-width: 160px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(7, 0, 26, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.metric-card span {
  color: var(--text-soft);
  font-weight: 600;
}

.hero-stage {
  position: relative;
  min-height: 780px;
}

.hero-stage__glow {
  position: absolute;
  inset: 120px 40px 80px 40px;
  border-radius: 42px;
  background:
    radial-gradient(circle at center, rgba(255, 163, 0, 0.12), transparent 55%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  filter: blur(2px);
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(14px);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone--main {
  width: clamp(240px, 32vw, 340px);
  right: 10%;
  top: 120px;
  z-index: 3;
}

.phone--left {
  width: clamp(180px, 22vw, 250px);
  left: 2%;
  bottom: 90px;
  z-index: 2;
}

.phone--right {
  width: clamp(180px, 22vw, 250px);
  right: -1%;
  top: 0;
  z-index: 1;
}

.hero__ticker {
  padding-top: 12px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.ticker__track span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 163, 0, 0.12);
  border: 1px solid rgba(255, 163, 0, 0.16);
  color: #ffd487;
  font-size: 0.95rem;
  font-weight: 700;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--features {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0));
}

.section--showcase {
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.2),
    rgba(8, 0, 28, 0.05)
  );
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head h2,
.cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.feature-card {
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.72),
    rgba(8, 0, 28, 0.56)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(245, 163, 0, 0.16),
    rgba(255, 255, 255, 0.08)
  );
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
}

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

.screen-card {
  padding: 14px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.76),
    rgba(8, 0, 28, 0.58)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  border-radius: 18px;
}

.screen-card span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.98rem;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.stats-panel {
  border-radius: 32px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(8, 0, 28, 0.9), rgba(25, 0, 70, 0.8)),
    radial-gradient(
      circle at top right,
      rgba(255, 163, 0, 0.12),
      transparent 30%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-main);
}

.stats-panel__top {
  margin-bottom: 28px;
}

.mini-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.stats-panel h3 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.1;
}

.signal-bars {
  height: 240px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 16px 0 10px;
}

.signal-bars span {
  flex: 1;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #ffbe3a 0%, #ff9900 55%, #7d2dff 100%);
  box-shadow: 0 12px 34px rgba(255, 163, 0, 0.18);
  animation: pulseBars 4s ease-in-out infinite;
}

.signal-bars span:nth-child(2) {
  animation-delay: 0.3s;
}

.signal-bars span:nth-child(3) {
  animation-delay: 0.6s;
}

.signal-bars span:nth-child(4) {
  animation-delay: 0.9s;
}

.signal-bars span:nth-child(5) {
  animation-delay: 1.2s;
}

.stats-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.stats-list__item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-list__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.stats-side {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.76),
    rgba(8, 0, 28, 0.56)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-card__number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(255, 163, 0, 0.16);
  color: var(--accent);
  font-weight: 900;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

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

.timeline-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.72),
    rgba(8, 0, 28, 0.56)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.timeline-card__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffcd66);
  box-shadow: 0 0 0 10px rgba(255, 163, 0, 0.08);
  margin-bottom: 18px;
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.section--download {
  padding-top: 90px;
}

.cta {
  padding: 38px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 190, 58, 0.14),
      transparent 22%
    ),
    linear-gradient(135deg, rgba(9, 0, 33, 0.96), rgba(37, 0, 104, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.footer {
  padding: 28px 0 54px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox__dialog {
  position: relative;
  width: min(430px, 92vw);
  z-index: 1;
  animation: popup 0.24s ease;
}

.lightbox__dialog img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

.lightbox__close {
  position: absolute;
  top: -18px;
  right: -6px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #170038;
  font-size: 1.8rem;
  cursor: pointer;
}

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

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.float {
  animation: floatY 6s ease-in-out infinite;
}

.float--slow {
  animation-duration: 8s;
}

.float--reverse {
  animation-duration: 7s;
  animation-direction: reverse;
}

.privacy-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.privacy-card {
  max-width: 860px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(8, 0, 28, 0.86),
    rgba(8, 0, 28, 0.68)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-main);
}

.privacy-back {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-soft);
  font-weight: 700;
}

.privacy-card h1 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.privacy-date {
  color: var(--text-dim);
  margin-bottom: 20px;
}

.privacy-card p {
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0 0 16px;
}

.privacy-card a {
  color: #ffd487;
  font-weight: 700;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes blobMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -25px, 0) scale(1.08);
  }
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseBars {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.14);
  }
}

@media (max-width: 1180px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 660px;
  }

  .phone--main {
    right: 18%;
  }

  .phone--left {
    left: 4%;
  }

  .nav {
    display: none;
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(11, 0, 33, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-main);
  }

  .nav.is-open {
    display: flex;
  }

  .burger {
    display: inline-block;
  }

  .header__actions .btn--small {
    display: none;
  }

  .cta,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stage {
    min-height: 540px;
  }

  .phone--main {
    width: 220px;
    right: 18%;
    top: 140px;
  }

  .phone--left,
  .phone--right {
    width: 150px;
  }

  .phone--left {
    bottom: 54px;
  }

  .features-grid,
  .showcase-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 82px 0;
  }

  .metric-card {
    flex: 1 1 100%;
  }

  .cta {
    padding: 28px 20px;
  }
}
