:root {
  --bg-1: #050505;
  --bg-2: #0a0a0c;
  --bg-3: #111114;
  --panel-1: rgba(14, 14, 18, 0.88);
  --panel-2: rgba(24, 24, 30, 0.76);
  --panel-3: rgba(255, 255, 255, 0.045);

  --white: #f7f7f8;
  --white-soft: rgba(247, 247, 248, 0.78);
  --white-dim: rgba(247, 247, 248, 0.54);

  --gold: #e4ff00;
  --gold-soft: #f1ff64;
  --gold-deep: #c8da00;
  --purple: #6d43c8;
  --purple-soft: #8c61ea;

  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(228, 255, 0, 0.24);

  --shadow-1: 0 14px 32px rgba(0, 0, 0, 0.24);
  --shadow-2: 0 22px 52px rgba(0, 0, 0, 0.38);
  --shadow-3: 0 30px 85px rgba(0, 0, 0, 0.52);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --container: 1220px;

  --transition-fast: 0.22s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.55s ease;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: linear-gradient(180deg, #050505 0%, #09090b 44%, #060607 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  border: none;
  background: none;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top left,
      rgba(228, 255, 0, 0.05),
      transparent 18%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(109, 67, 200, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #050505 0%, #0a0a0c 50%, #060607 100%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.8) 0.5px,
      transparent 0.6px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.6) 0.5px,
      transparent 0.6px
    );
  background-size:
    24px 24px,
    30px 30px;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ambient-1 {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 100px;
  background: rgba(228, 255, 0, 0.08);
}

.ambient-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 180px;
  background: rgba(109, 67, 200, 0.12);
}

.ambient-3 {
  width: 280px;
  height: 280px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(228, 255, 0, 0.05);
}

.gold-lines {
  position: absolute;
  width: 170%;
  height: 220px;
  left: -20%;
  transform: rotate(-18deg);
  opacity: 0.16;
  background: repeating-linear-gradient(
    to right,
    transparent 0 18px,
    rgba(228, 255, 0, 0.14) 18px 36px,
    transparent 36px 70px
  );
  filter: blur(14px);
}

.gold-lines-1 {
  top: 12%;
  animation: driftA 18s linear infinite;
}

.gold-lines-2 {
  bottom: 12%;
  animation: driftB 24s linear infinite reverse;
}

@keyframes driftA {
  0% {
    transform: translateX(0) rotate(-18deg);
  }
  100% {
    transform: translateX(-8%) rotate(-18deg);
  }
}

@keyframes driftB {
  0% {
    transform: translateX(-8%) rotate(-18deg);
  }
  100% {
    transform: translateX(0) rotate(-18deg);
  }
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 84%);
  opacity: 0.35;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 9, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(228, 255, 0, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--white-dim);
  font-size: 0.76rem;
}

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

.desktop-nav a {
  position: relative;
  color: var(--white-soft);
  transition: var(--transition-base);
}

.desktop-nav a:hover,
.desktop-nav a.active-link {
  color: var(--white);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple-soft));
  transition: var(--transition-base);
}

.desktop-nav a:hover::after,
.desktop-nav a.active-link::after {
  width: 100%;
}

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

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

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

.btn-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.btn-lg {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #171707;
  box-shadow: 0 18px 40px rgba(228, 255, 0, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.burger {
  width: 48px;
  height: 48px;
  display: none;
  position: relative;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: var(--transition-base);
}

.burger span:first-child {
  top: 18px;
}

.burger span:last-child {
  top: 28px;
}

.burger.active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.burger.active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 8, 10, 0.95);
}

.mobile-menu a {
  color: var(--white-soft);
  padding: 8px 0;
}

.mobile-menu.active {
  display: flex;
}

.mobile-btn {
  margin-top: 10px;
}

.hero {
  padding-top: 74px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 50px;
  align-items: center;
}

.eyebrow,
.section-label,
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(228, 255, 0, 0.08);
  border: 1px solid rgba(228, 255, 0, 0.16);
  color: #f2ff86;
  font-size: 0.84rem;
  font-weight: 700;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(228, 255, 0, 0.7);
}

.hero-copy h1,
.section-head h2,
.intro-head h2,
.showcase-copy h2,
.spotlight-copy h2,
.community-copy h2,
.carousel-copy h3,
.cta-copy h2,
.privacy-card h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.hero-text {
  max-width: 630px;
  margin: 0;
  color: var(--white-soft);
  font-size: 1.08rem;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span,
.community-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-soft);
  font-size: 0.92rem;
}

.hero-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.mini-card,
.spotlight-pill {
  min-width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.026)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-1);
}

.mini-card span,
.spotlight-pill small {
  display: block;
  color: var(--white-dim);
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.mini-card strong,
.spotlight-pill strong {
  color: #fbffc1;
  font-size: 1.12rem;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phones-cluster {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(228, 255, 0, 0.14) 0%,
    rgba(109, 67, 200, 0.1) 45%,
    transparent 72%
  );
  filter: blur(4px);
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.97);
  }
  50% {
    transform: scale(1.04);
  }
}

.phone-frame,
.showcase-phone,
.small-phone {
  position: relative;
  padding: 12px;
  background: linear-gradient(180deg, #17181c, #070708);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 26px 70px rgba(0, 0, 0, 0.5);
  transition: var(--transition-base);
}

.phone-frame:hover,
.showcase-phone:hover,
.small-phone:hover {
  transform: translateY(-8px);
}

.phone-front,
.phone-back,
.showcase-phone,
.small-phone {
  border-radius: 32px;
}

.phone-front img,
.phone-back img,
.showcase-phone img,
.small-phone img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: #101114;
}

.phone-front {
  width: 300px;
  z-index: 3;
  transform: rotate(6deg) translateX(55px);
}

.phone-front img {
  height: 610px;
}

.phone-back {
  position: absolute;
  left: 30px;
  top: 90px;
  width: 272px;
  z-index: 2;
  transform: rotate(-9deg);
  opacity: 0.94;
}

.phone-back img {
  height: 550px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #0b0b0d;
  z-index: 2;
}

.visual-pill {
  position: absolute;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 15, 18, 0.86);
  border: 1px solid rgba(228, 255, 0, 0.16);
  box-shadow: var(--shadow-2);
  z-index: 4;
}

.visual-pill span {
  display: block;
  color: var(--white-dim);
  font-size: 0.82rem;
  margin-bottom: 5px;
}

.visual-pill strong {
  color: #f8ffad;
}

.pill-left {
  left: 0;
  top: 110px;
}

.pill-right {
  right: 0;
  bottom: 130px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  padding: 24px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.026)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-1);
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.stat-number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  color: var(--white-soft);
  font-size: 0.94rem;
}

.intro-strip {
  padding-top: 24px;
  padding-bottom: 24px;
}

.intro-card,
.community-block,
.cta-panel,
.privacy-card,
.showcase-row,
.ranking-card,
.feature-card,
.review-card,
.carousel-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-2);
}

.intro-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: end;
  padding: 30px 32px;
  border-radius: 28px;
}

.intro-head h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.intro-card p {
  margin: 0;
  color: var(--white-soft);
  font-size: 1.02rem;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.96;
}

.section-head p {
  margin: 0;
  color: var(--white-soft);
  font-size: 1.03rem;
}

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

.feature-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  transition: var(--transition-base);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 255, 0, 0.18);
}

.feature-line {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(228, 255, 0, 0.1);
  color: #f2ff86;
  border: 1px solid rgba(228, 255, 0, 0.16);
  font-weight: 800;
  margin-bottom: 20px;
}

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

.feature-card p {
  margin: 0;
  color: var(--white-soft);
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 40px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
}

.showcase-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.showcase-copy p {
  margin: 0;
  color: var(--white-soft);
  max-width: 650px;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.showcase-list li {
  position: relative;
  padding-left: 22px;
  color: var(--white-soft);
}

.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.showcase-phone-wrap {
  display: flex;
  justify-content: center;
}

.showcase-phone {
  width: 275px;
}

.showcase-phone img {
  height: 570px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 38px;
  align-items: center;
}

.spotlight-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.spotlight-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--white-soft);
}

.spotlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.spotlight-visual {
  display: flex;
  justify-content: center;
}

.alt-phone {
  width: 320px;
}

.alt-phone img {
  height: 650px;
}

.ranking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ranking-card {
  padding: 28px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: center;
  transition: var(--transition-base);
}

.ranking-card:hover {
  transform: translateY(-8px);
}

.ranking-card-copy h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.ranking-card-copy p {
  margin: 0;
  color: var(--white-soft);
}

.ranking-card-phone {
  display: flex;
  justify-content: center;
}

.small-phone {
  width: 176px;
}

.small-phone img {
  height: 370px;
}

.community-block {
  padding: 36px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: center;
}

.community-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.community-copy p {
  margin: 0;
  max-width: 630px;
  color: var(--white-soft);
}

.community-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.community-phone {
  display: flex;
  justify-content: center;
}

.screens-section {
  position: relative;
}

.carousel-shell {
  display: flex;
  align-items: center;
  gap: 18px;
}

.carousel-arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 255, 0, 0.2);
}

.carousel-stage {
  width: 100%;
  min-height: 560px;
  position: relative;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transform: translateY(18px);
}

.carousel-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: slideIn 0.45s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
}

.carousel-image {
  display: flex;
  justify-content: center;
}

.carousel-image img {
  width: 100%;
  max-width: 290px;
  border-radius: 28px;
}

.carousel-copy h3 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.96;
}

.carousel-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--white-soft);
  font-size: 1.03rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-base);
}

.carousel-dot.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--purple-soft));
}

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

.review-card {
  padding: 28px;
  border-radius: 24px;
  transition: var(--transition-base);
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-stars {
  color: #f2ff86;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card p {
  margin: 0 0 22px;
  color: var(--white);
}

.review-author strong {
  display: block;
  margin-bottom: 2px;
}

.review-author span {
  color: var(--white-dim);
  font-size: 0.92rem;
}

.cta-panel {
  padding: 42px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: center;
}

.cta-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.cta-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--white-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  padding: 30px 0 20px;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.5fr;
  gap: 30px;
  padding-bottom: 24px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 520px;
  color: var(--white-soft);
}

.footer-links h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--white-soft);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: var(--white-dim);
  font-size: 0.92rem;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 14, 0.84);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

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

.privacy-main {
  min-height: 100vh;
}

.privacy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 34px;
}

.privacy-card h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.privacy-note {
  margin: 0 0 30px;
  color: var(--white-soft);
}

.privacy-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 42px 24px;
  border-radius: 24px;
  background: rgba(10, 10, 12, 0.8);
  border: 1px dashed rgba(228, 255, 0, 0.28);
}

.privacy-placeholder p {
  margin: 0;
  color: #f6ff9e;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.privacy-actions {
  margin-top: 30px;
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

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

.active-link {
  color: var(--gold) !important;
}

@media (max-width: 1180px) {
  .hero-grid,
  .intro-card,
  .showcase-row,
  .spotlight-grid,
  .community-block,
  .cta-panel,
  .footer-grid,
  .carousel-card {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }

  .showcase-phone-wrap,
  .spotlight-visual,
  .community-phone {
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .nav-actions .btn-sm {
    display: none;
  }

  .burger {
    display: block;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .stats-row,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .phone-front {
    width: 260px;
    transform: rotate(4deg) translateX(20px);
  }

  .phone-front img {
    height: 540px;
  }

  .phone-back {
    width: 228px;
    left: 12px;
    top: 60px;
  }

  .phone-back img {
    height: 470px;
  }

  .halo {
    width: 380px;
    height: 380px;
  }

  .visual-pill {
    position: static;
    margin-top: 14px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-stats-grid,
  .spotlight-pills {
    flex-direction: column;
  }

  .showcase-row,
  .community-block,
  .cta-panel,
  .privacy-card,
  .carousel-card,
  .ranking-card,
  .feature-card,
  .review-card,
  .intro-card {
    padding: 24px;
  }

  .carousel-shell {
    gap: 10px;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .carousel-stage {
    min-height: 620px;
  }

  .ranking-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .hero-text,
  .section-head p,
  .showcase-copy p,
  .spotlight-copy p,
  .community-copy p,
  .carousel-copy p,
  .cta-copy p,
  .intro-card p {
    font-size: 0.98rem;
  }

  .phone-front {
    width: 240px;
    transform: rotate(3deg) translateX(8px);
  }

  .phone-front img {
    height: 500px;
  }

  .phone-back {
    width: 210px;
    left: 0;
    top: 45px;
  }

  .phone-back img {
    height: 430px;
  }

  .showcase-phone {
    width: 240px;
  }

  .showcase-phone img,
  .alt-phone img {
    height: 500px;
  }

  .alt-phone {
    width: 250px;
  }

  .small-phone {
    width: 160px;
  }

  .small-phone img {
    height: 330px;
  }

  .carousel-card {
    grid-template-columns: 1fr;
  }

  .carousel-image img {
    max-width: 220px;
  }

  .privacy-placeholder {
    min-height: 250px;
  }
}
