:root {
  --bg: #090712;
  --bg-2: #120b25;
  --card: rgba(255, 255, 255, 0.07);
  --card-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f8f5ff;
  --muted: #b6aeca;
  --muted-2: #8f85a8;
  --violet: #8b5cff;
  --violet-2: #b176ff;
  --cyan: #37e4ff;
  --pink: #ff4da6;
  --orange: #ff9f43;
  --green: #35e69f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1240px;
  --transition: 0.32s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(139, 92, 255, 0.24),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(55, 228, 255, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at 70% 88%,
      rgba(255, 77, 166, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #070611 0%, #0c0718 50%, #080611 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.page-bg,
.noise,
.orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  z-index: -4;
  background:
    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: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.noise {
  z-index: -3;
  opacity: 0.05;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.9) 0.8px,
    transparent 0.8px
  );
  background-size: 18px 18px;
}

.orb {
  z-index: -2;
  filter: blur(65px);
  opacity: 0.6;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -90px;
  background: rgba(139, 92, 255, 0.45);
  border-radius: 50%;
}

.orb-two {
  width: 380px;
  height: 380px;
  top: 140px;
  right: -120px;
  background: rgba(55, 228, 255, 0.26);
  border-radius: 50%;
}

.section {
  padding: 110px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 6, 18, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 18px 38px rgba(139, 92, 255, 0.32);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: #e9e2ff;
  font-weight: 700;
  transition: var(--transition);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.burger {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  cursor: pointer;
}

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

.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid transparent;
  transition: var(--transition);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 18px 44px rgba(139, 92, 255, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: #fff;
}

.hero {
  padding: 78px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(139, 92, 255, 0.14);
  border: 1px solid rgba(139, 92, 255, 0.28);
  color: #d9c6ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero p,
.section-head p,
.rewards-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.hero-stats div {
  padding: 20px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.phone-composition {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 255, 0.32),
    transparent 70%
  );
  filter: blur(20px);
}

.phone {
  position: absolute;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #120b25;
}

.phone-main {
  width: 330px;
  z-index: 3;
  animation: floatMain 6s ease-in-out infinite;
}

.phone-left {
  width: 220px;
  left: 0;
  top: 165px;
  z-index: 2;
  transform: rotate(-13deg);
}

.phone-right {
  width: 220px;
  right: 0;
  bottom: 90px;
  z-index: 1;
  transform: rotate(12deg);
}

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

.floating-chip {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(12, 8, 25, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  z-index: 4;
}

.floating-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.floating-chip strong {
  font-size: 1.1rem;
}

.chip-one {
  top: 90px;
  right: 10px;
}

.chip-two {
  left: 20px;
  bottom: 100px;
}

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

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 18px 0;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.section-head h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

.feature-card {
  padding: 28px;
  min-height: 260px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 255, 0.45);
}

.feature-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.screen-lab {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.screen-lab-copy h3 {
  margin: 10px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.small-label {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.screen-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.screen-tab.active {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border-color: transparent;
}

.screen-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.screen-phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.screen-aura {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(55, 228, 255, 0.22),
    transparent 70%
  );
  filter: blur(20px);
}

#mainScreen {
  position: relative;
  width: min(100%, 330px);
  border-radius: 34px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mini-screen-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mini-screen {
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-screen img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
}

.mini-screen div {
  padding: 18px;
}

.mini-screen span {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mini-screen strong {
  line-height: 1.45;
}

.rewards-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.rewards-copy h2,
.cta-card h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #eee9ff;
  font-weight: 700;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(55, 228, 255, 0.5);
}

.reward-stack {
  display: grid;
  gap: 16px;
}

.reward-card {
  padding: 26px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.reward-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reward-card strong {
  display: block;
  font-size: 1.4rem;
  margin: 8px 0;
}

.reward-card p {
  margin: 0;
  color: var(--muted);
}

.main-reward {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 255, 0.22),
    rgba(255, 77, 166, 0.16)
  );
}

.cta-card {
  padding: 40px;
  border-radius: 34px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 77, 166, 0.18),
      transparent 24%
    ),
    linear-gradient(135deg, rgba(139, 92, 255, 0.24), rgba(55, 228, 255, 0.1));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* privacy */
.privacy-main {
  padding: 72px 0 100px;
}

.privacy-hero {
  max-width: 850px;
  margin-bottom: 34px;
}

.privacy-hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.privacy-hero p {
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.75;
}

.privacy-grid {
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.privacy-card h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.privacy-card p {
  margin: 0;
  color: #e8e2f6;
  line-height: 1.9;
}

.privacy-card p + p {
  margin-top: 14px;
}

.privacy-card a {
  color: var(--cyan);
  word-break: break-word;
  font-weight: 800;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .hero-grid,
  .screen-lab,
  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .phone-composition {
    min-height: 720px;
  }

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

  .screen-phone-wrap {
    min-height: 620px;
  }
}

@media (max-width: 920px) {
  .burger {
    display: block;
  }

  .header-download {
    display: none;
  }

  .nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(11, 7, 24, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .nav-download {
    margin-top: 8px;
  }

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

  .cta-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .logo-text small {
    display: none;
  }

  .hero h1,
  .section-head h2,
  .rewards-copy h2,
  .cta-card h2,
  .privacy-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .phone-composition {
    min-height: 560px;
  }

  .phone-main {
    width: 250px;
  }

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

  .phone-left {
    left: 5px;
    top: 145px;
  }

  .phone-right {
    right: 5px;
    bottom: 80px;
  }

  .floating-chip {
    display: none;
  }

  .feature-grid,
  .mini-screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-lab,
  .cta-card {
    padding: 22px;
    border-radius: 26px;
  }

  .screen-phone-wrap {
    min-height: 500px;
  }

  #mainScreen {
    width: 270px;
  }

  .btn,
  .cta-buttons {
    width: 100%;
  }

  .hero-actions,
  .cta-buttons,
  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
