:root {
  --bg: #06111f;
  --bg-deep: #091a30;
  --bg-soft: #0e223f;
  --card: rgba(15, 38, 74, 0.72);
  --card-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);

  --text: #f7fbff;
  --muted: #b4c2d6;
  --muted-2: #8ca2bc;

  --blue: #1f74d9;
  --blue-2: #52a6ff;
  --blue-3: #9fd6ff;
  --ice: #d8f0ff;
  --gold: #f0c34c;
  --green: #75d58e;

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  --shadow-big: 0 40px 120px rgba(0, 0, 0, 0.42);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-xl: 48px;

  --container: 1220px;
  --header-height: 84px;
  --transition: 0.35s ease;
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(82, 166, 255, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(31, 116, 217, 0.16),
      transparent 20%
    ),
    linear-gradient(180deg, #061120 0%, #0a1730 45%, #081221 100%);
  overflow-x: hidden;
}

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

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

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

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

.site-bg-grid,
.site-noise,
.site-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-bg-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 86%);
}

.site-noise {
  opacity: 0.06;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px
    );
  background-size: 180px 180px;
}

.site-glow {
  filter: blur(80px);
  opacity: 0.38;
}

.glow-one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 100px;
  background: radial-gradient(circle, rgba(31, 116, 217, 0.5), transparent 72%);
}

.glow-two {
  width: 380px;
  height: 380px;
  right: -100px;
  top: 340px;
  background: radial-gradient(
    circle,
    rgba(82, 166, 255, 0.35),
    transparent 72%
  );
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(5, 17, 33, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(5, 17, 33, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

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

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

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 35px rgba(31, 116, 217, 0.35);
  font-weight: 900;
}

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

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: var(--transition);
}

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

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

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

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

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

.btn-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(31, 116, 217, 0.32);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero {
  padding: 54px 0 40px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 36px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ice);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow-soft {
  color: #d8ecff;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 14px rgba(82, 166, 255, 0.9);
}

.hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  max-width: 780px;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #ffffff, #cae9ff 45%, #71c0ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 30px;
}

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

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

.stat-card,
.feature-card,
.journey-card,
.metric-card,
.privacy-block,
.privacy-sidebar-card,
.privacy-hero-card,
.premium-panel,
.download-box {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(9, 28, 56, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
  border-radius: 24px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.hero-radial {
  position: absolute;
  inset: 60px 30px 80px;
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(82, 166, 255, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(31, 116, 217, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  filter: blur(14px);
}

.floating-phone,
.stack-card,
.carousel-screen,
.carousel-content,
.gallery-box {
  border-radius: 30px;
  overflow: hidden;
}

.floating-phone {
  position: absolute;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-big);
}

.floating-phone img,
.stack-card img,
.carousel-slide img {
  border-radius: 22px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.floating-main {
  width: 330px;
  right: 80px;
  top: 70px;
  transform: rotate(-6deg);
  animation: floatMain 8s ease-in-out infinite;
}

.floating-left {
  width: 220px;
  left: 0;
  top: 26px;
  transform: rotate(-10deg);
  animation: floatLeft 9s ease-in-out infinite;
}

.floating-right {
  width: 220px;
  left: 36px;
  bottom: 60px;
  transform: rotate(9deg);
  animation: floatRight 8.5s ease-in-out infinite;
}

.hero-strip {
  margin-top: 16px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.hero-strip-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 30s linear infinite;
}

.hero-strip-track span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

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

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(180deg, rgba(9, 20, 38, 0.88), rgba(7, 17, 32, 0.96));
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-copy h2,
.section-heading h2,
.premium-copy h2,
.download-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.split-copy p,
.section-heading p,
.feature-card p,
.journey-card p,
.premium-copy p,
.download-copy p,
.privacy-block p,
.privacy-lead,
.privacy-sidebar-card li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 12px rgba(82, 166, 255, 0.5);
}

.visual-stack {
  position: relative;
  min-height: 740px;
}

.stack-card {
  position: absolute;
  width: 280px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-big);
}

.stack-card-a {
  top: 20px;
  left: 20px;
  transform: rotate(-10deg);
}

.stack-card-b {
  right: 10px;
  top: 180px;
  transform: rotate(8deg);
}

.stack-card-c {
  left: 90px;
  bottom: 20px;
  transform: rotate(-4deg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.feature-card {
  padding: 28px;
  border-radius: 28px;
  min-height: 250px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(31, 116, 217, 0.22),
    rgba(82, 166, 255, 0.12)
  );
  color: #fff;
  font-weight: 900;
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.feature-card h3,
.journey-card h3,
.metric-card strong {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.feature-card h3 {
  font-size: 1.32rem;
}

.carousel-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.carousel-screen {
  min-height: 740px;
  position: relative;
  background: rgba(7, 20, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-big);
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 18px;
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.carousel-content {
  padding: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(10, 28, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-kicker {
  color: #d6ecff;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.carousel-content h3 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.carousel-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.02rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.control-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

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

.carousel-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

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

.journey-card {
  border-radius: 28px;
  padding: 28px;
  min-height: 240px;
}

.journey-step {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.premium-panel {
  border-radius: 34px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.premium-metrics {
  display: grid;
  gap: 16px;
}

.metric-card {
  padding: 22px;
  border-radius: 22px;
  min-height: 108px;
}

.metric-card strong {
  display: block;
  font-size: 1.2rem;
}

.metric-card span {
  color: var(--muted);
}

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

.download-box {
  border-radius: 34px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

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

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

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

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

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

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

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

/* PRIVACY */
.privacy-body {
  background:
    radial-gradient(
      circle at top left,
      rgba(82, 166, 255, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #071221 0%, #0a1831 42%, #07111e 100%);
}

.privacy-main {
  padding-bottom: 90px;
}

.privacy-hero {
  padding: 56px 0 26px;
}

.privacy-hero-card {
  padding: 42px;
  border-radius: 32px;
}

.privacy-hero-card h1 {
  margin: 16px 0 10px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.privacy-date {
  margin: 0 0 16px;
  color: var(--ice);
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.privacy-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
}

.privacy-sidebar-card,
.privacy-block {
  border-radius: 28px;
  padding: 28px;
}

.privacy-sidebar-card h3,
.privacy-block h2 {
  margin-top: 0;
}

.privacy-sidebar-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.privacy-block h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.privacy-block a {
  color: #d8f0ff;
}

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

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

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

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

.tilt-card:hover {
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

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

@keyframes floatLeft {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0px);
  }
  50% {
    transform: rotate(-10deg) translateY(-10px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: rotate(9deg) translateY(0px);
  }
  50% {
    transform: rotate(9deg) translateY(-12px);
  }
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .split-layout,
  .carousel-wrap,
  .premium-panel,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

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

  .privacy-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(6, 17, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-big);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn-small {
    display: none;
  }

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

  .download-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero {
    padding-top: 34px;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-text,
  .split-copy p,
  .section-heading p,
  .feature-card p,
  .journey-card p,
  .premium-copy p,
  .download-copy p,
  .privacy-block p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

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

  .floating-phone {
    padding: 10px;
    border-radius: 22px;
  }

  .floating-phone img,
  .stack-card img,
  .carousel-slide img {
    border-radius: 16px;
  }

  .floating-main {
    width: 220px;
    right: 4px;
    top: 90px;
  }

  .floating-left {
    width: 150px;
    left: 0;
    top: 24px;
  }

  .floating-right {
    width: 150px;
    left: 0;
    bottom: 20px;
  }

  .visual-stack {
    min-height: 500px;
  }

  .stack-card {
    width: 180px;
    padding: 10px;
    border-radius: 22px;
  }

  .stack-card-a {
    left: 0;
    top: 0;
  }

  .stack-card-b {
    right: 0;
    top: 140px;
  }

  .stack-card-c {
    left: 30px;
    bottom: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .carousel-screen {
    min-height: 460px;
  }

  .feature-card,
  .journey-card,
  .premium-panel,
  .download-box,
  .privacy-block,
  .privacy-sidebar-card,
  .privacy-hero-card,
  .carousel-content {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-actions,
  .download-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .download-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ===== PRIVACY PAGE ===== */

.privacy-page-body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', sans-serif;
  color: #f7fbff;
  background:
    radial-gradient(
      circle at top left,
      rgba(82, 166, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(31, 116, 217, 0.12),
      transparent 22%
    ),
    linear-gradient(180deg, #061120 0%, #0a1831 44%, #07111e 100%);
  overflow-x: hidden;
  position: relative;
}

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

.privacy-page-bg {
  z-index: -3;
}

.privacy-page-grid {
  z-index: -2;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

.privacy-page-orb {
  z-index: -1;
  filter: blur(90px);
  opacity: 0.34;
}

.privacy-page-orb--one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 80px;
  background: radial-gradient(
    circle,
    rgba(31, 116, 217, 0.48),
    transparent 72%
  );
}

.privacy-page-orb--two {
  width: 380px;
  height: 380px;
  right: -100px;
  top: 300px;
  background: radial-gradient(
    circle,
    rgba(82, 166, 255, 0.34),
    transparent 72%
  );
}

.privacy-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(5, 17, 33, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d6ebff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.25s ease;
}

.privacy-back-link:hover {
  opacity: 0.8;
}

.privacy-page-main {
  padding: 42px 0 90px;
}

.privacy-page-hero {
  padding-bottom: 22px;
}

.privacy-page-hero-card {
  border-radius: 32px;
  padding: 36px 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(9, 28, 56, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.privacy-page-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8f0ff;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.privacy-page-hero-card h1 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.privacy-page-section {
  padding-top: 8px;
}

.privacy-page-card {
  border-radius: 30px;
  padding: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(10, 24, 48, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.privacy-page-text {
  max-width: 860px;
}

.privacy-page-text p {
  margin: 0 0 26px;
  color: #d7e1ee;
  font-size: 1.02rem;
  line-height: 1.9;
  word-break: break-word;
}

.privacy-page-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy-topbar__inner {
    min-height: 70px;
  }

  .privacy-page-main {
    padding: 28px 0 70px;
  }

  .privacy-page-hero-card,
  .privacy-page-card {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .privacy-page-text p {
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }
}
