:root {
  --bg: #050706;
  --panel: rgba(18, 18, 18, 0.78);
  --panel-strong: rgba(22, 22, 22, 0.94);
  --green: #00e978;
  --green-soft: rgba(0, 233, 120, 0.18);
  --gold: #f5c94b;
  --red: #f20b4f;
  --white: #f7f7f1;
  --muted: rgba(247, 247, 241, 0.55);
  --line: rgba(0, 233, 120, 0.28);
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  --mono: 'Courier New', monospace;
  --sans:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--white);
  font-family: var(--sans);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(0, 233, 120, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(245, 201, 75, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(0, 233, 120, 0.12),
      transparent 32%
    ),
    #050706;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.035) 49%,
      transparent 50%
    ),
    linear-gradient(
      75deg,
      transparent 0 48%,
      rgba(0, 233, 120, 0.035) 49%,
      transparent 50%
    );
  background-size: 120px 260px;
  opacity: 0.36;
  z-index: -2;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, white 0 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, white 0 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: screen;
}

.neon-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: rgba(0, 233, 120, 0.28);
  animation: orb 12s ease-in-out infinite;
}

.orb-two {
  width: 520px;
  height: 520px;
  bottom: -200px;
  right: -160px;
  background: rgba(0, 233, 120, 0.18);
  animation: orb 16s ease-in-out infinite reverse;
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 34px));
  min-height: 76px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(26px);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

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

.logo-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #041007;
  box-shadow: 0 0 28px rgba(0, 233, 120, 0.75);
}

.logo b {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--green);
}

.logo small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s;
}

.nav a:hover {
  color: var(--green);
  background: rgba(0, 233, 120, 0.08);
}

.download-btn {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #041007;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(0, 233, 120, 0.65);
  transition: 0.25s;
}

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

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  width: min(1180px, calc(100% - 34px));
  min-height: 100vh;
  padding: 150px 0 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--green);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1,
.section-title h2,
.deep-card h2,
.final-box h2,
.privacy-hero h1 {
  font-size: clamp(45px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-desc {
  margin: 28px 0 34px;
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-actions.center {
  justify-content: center;
}

.btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  letter-spacing: 0.04em;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary {
  color: #031006;
  background: var(--green);
  box-shadow: 0 0 35px rgba(0, 233, 120, 0.68);
}

.secondary {
  color: var(--green);
  border: 1px solid var(--line);
  background: rgba(0, 233, 120, 0.06);
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

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

.hero-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 30px rgba(0, 233, 120, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: 36px;
}

.hero-stats span {
  color: var(--muted);
}

.hero-phone {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 390px;
  height: 620px;
  border-radius: 60px;
  background: rgba(0, 233, 120, 0.2);
  filter: blur(70px);
}

.phone {
  position: relative;
  width: min(365px, 84vw);
  padding: 12px;
  border-radius: 42px;
  border: 1px solid rgba(0, 233, 120, 0.32);
  background: linear-gradient(
    145deg,
    rgba(0, 233, 120, 0.16),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow:
    var(--shadow),
    0 0 60px rgba(0, 233, 120, 0.28);
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone img {
  border-radius: 32px;
}

.float-card {
  position: absolute;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 14, 10, 0.88);
  font-family: var(--mono);
  letter-spacing: 0.14em;
  color: var(--green);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

.float-card.left {
  left: -18px;
  top: 22%;
  animation: floatCard 4s ease-in-out infinite;
}

.float-card.right {
  right: -20px;
  bottom: 20%;
  animation: floatCard 4.8s ease-in-out infinite reverse;
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-title {
  max-width: 820px;
}

.section-title.center {
  text-align: center;
  margin: 0 auto 58px;
}

.title-desc {
  color: var(--muted);
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.75;
}

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

.glass-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid rgba(0, 233, 120, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 233, 120, 0.13),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.04);
  transition: 0.32s;
}

.glass-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 233, 120, 0.52);
  box-shadow: 0 0 55px rgba(0, 233, 120, 0.18);
}

.glass-card span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(0, 233, 120, 0.13);
  font-size: 34px;
  margin-bottom: 88px;
}

.glass-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.glass-card p {
  color: var(--muted);
  line-height: 1.7;
}

.carousel-wrap {
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  align-items: center;
  gap: 18px;
}

.arrow {
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 233, 120, 0.06);
  color: var(--green);
  font-size: 42px;
  cursor: pointer;
  transition: 0.25s;
}

.arrow:hover {
  background: var(--green);
  color: #031006;
  box-shadow: 0 0 34px rgba(0, 233, 120, 0.6);
}

.carousel {
  position: relative;
  height: 760px;
  border-radius: 46px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(0, 233, 120, 0.22),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.035);
  perspective: 1400px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px;
  opacity: 0;
  filter: blur(5px);
  transform: translate(-50%, -50%) scale(0.55);
  transition: 0.8s cubic-bezier(0.18, 0.82, 0.2, 1);
}

.shot img {
  width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.75);
}

.shot.active {
  opacity: 1;
  z-index: 5;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}

.shot.prev-card {
  opacity: 0.45;
  z-index: 3;
  transform: translate(-118%, -50%) scale(0.76) rotateY(26deg);
}

.shot.next-card {
  opacity: 0.45;
  z-index: 3;
  transform: translate(18%, -50%) scale(0.76) rotateY(-26deg);
}

.shot.far-prev {
  opacity: 0.14;
  transform: translate(-170%, -50%) scale(0.58) rotateY(38deg);
}

.shot.far-next {
  opacity: 0.14;
  transform: translate(70%, -50%) scale(0.58) rotateY(-38deg);
}

.carousel-info {
  width: min(680px, 100%);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.22em;
}

#current {
  color: var(--green);
}

.progress {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress i {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 233, 120, 0.8);
  transition: transform 0.55s;
}

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

.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.dots button.active {
  width: 34px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(0, 233, 120, 0.7);
}

.deep-card {
  padding: 58px;
  border-radius: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 233, 120, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  box-shadow: var(--shadow);
}

.deep-list {
  display: grid;
  gap: 16px;
}

.deep-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(0, 233, 120, 0.22);
  background: rgba(0, 0, 0, 0.22);
}

.deep-list b {
  color: var(--green);
  font-family: var(--mono);
}

.deep-list p {
  color: var(--muted);
  line-height: 1.65;
}

.final-box {
  padding: 76px 32px;
  text-align: center;
  border-radius: 46px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(0, 233, 120, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 65px rgba(0, 233, 120, 0.16);
}

.final-box p:not(.eyebrow) {
  margin: 20px auto 34px;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.footer {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

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

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

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

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

@keyframes orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -32px, 0) scale(1.12);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

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

@media (max-width: 980px) {
  .nav,
  .download-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav.open {
    display: grid;
    position: fixed;
    top: 92px;
    left: 17px;
    right: 17px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(4, 8, 6, 0.96);
    border: 1px solid var(--line);
  }

  .hero,
  .deep-card {
    grid-template-columns: 1fr;
  }

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

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

  .arrow {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .footer {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1,
  .section-title h2,
  .deep-card h2,
  .final-box h2,
  .privacy-hero h1 {
    font-size: 42px;
  }

  .hero-desc,
  .title-desc {
    font-size: 16px;
  }

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

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

  .phone {
    width: min(310px, 88vw);
  }

  .float-card {
    display: none;
  }

  .carousel {
    height: 590px;
    border-radius: 30px;
  }

  .shot {
    width: 245px;
  }

  .shot.prev-card,
  .shot.next-card,
  .shot.far-prev,
  .shot.far-next {
    opacity: 0;
  }

  .deep-card {
    padding: 30px;
  }

  .footer {
    flex-direction: column;
  }
}

/* privacy page */
.privacy-page {
  padding: 132px 0 70px;
}

.privacy-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.privacy-hero {
  position: relative;
  padding: 58px;
  border-radius: 44px;
  border: 1px solid rgba(0, 233, 120, 0.36);
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 233, 120, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(0, 233, 120, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.62),
    0 0 70px rgba(0, 233, 120, 0.13);
  overflow: hidden;
}

.privacy-hero::after {
  content: 'PRIVACY';
  position: absolute;
  right: -12px;
  bottom: -14px;
  font-family: var(--mono);
  font-size: clamp(70px, 13vw, 170px);
  letter-spacing: 0.12em;
  color: rgba(0, 233, 120, 0.045);
  pointer-events: none;
}

.privacy-hero p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.policy-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.policy-side {
  position: sticky;
  top: 112px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

.policy-side h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.policy-side a,
.policy-side span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.45;
}

.policy-side a:hover {
  color: var(--green);
}

.policy-document {
  padding: 44px;
  border-radius: 36px;
  border: 1px solid rgba(0, 233, 120, 0.24);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.52);
}

.policy-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0, 233, 120, 0.2);
}

.policy-chip {
  padding: 10px 14px;
  border: 1px solid rgba(0, 233, 120, 0.3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 233, 120, 0.08);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  font-size: 12px;
}

.policy-text {
  white-space: pre-line;
  color: rgba(247, 247, 241, 0.8);
  font-size: 18px;
  line-height: 1.88;
}

.policy-actions {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 233, 120, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .privacy-hero,
  .policy-document {
    padding: 28px;
  }

  .policy-text {
    font-size: 16px;
  }
}
