:root {
  --bg: #0b0b0d;
  --bg-soft: #111114;
  --surface: rgba(23, 23, 27, 0.85);
  --surface-2: rgba(31, 31, 36, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text-main: #f5f5f7;
  --text-soft: rgba(245, 245, 247, 0.72);
  --text-dim: rgba(245, 245, 247, 0.48);
  --orange: #ff8a00;
  --orange-2: #ff6a00;
  --purple-soft: rgba(143, 106, 255, 0.2);
  --shadow-main: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

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

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 138, 0, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 138, 0, 0.04),
      transparent 30%
    ),
    #0b0b0d;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.65;
}

.bg-orb-one {
  top: -80px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(255, 123, 0, 0.16);
}

.bg-orb-two {
  left: -120px;
  bottom: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 138, 0, 0.12);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  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: 32px 32px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0a0a0d;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.35);
}

.brand-text {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text-main);
}

.nav-download,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  font-weight: 700;
}

.nav-download,
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0a0a0d;
  box-shadow: 0 14px 28px rgba(255, 138, 0, 0.22);
}

.nav-download:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 138, 0, 0.28);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.4);
  background: rgba(255, 138, 0, 0.05);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 0;
  margin-left: auto;
  cursor: pointer;
}

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

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

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

.section {
  padding: 110px 0;
}

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

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.1);
  color: #ffae52;
  border: 1px solid rgba(255, 138, 0, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 640px;
}

.hero-text {
  max-width: 600px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

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

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

.stat-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 6px;
}

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

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

.hero-phone-stack {
  position: relative;
  width: min(100%, 560px);
  min-height: 640px;
}

.floating-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  background: #131317;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

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

.floating-card-a {
  width: 310px;
  top: 10px;
  left: 0;
  transform: rotate(-8deg);
}

.floating-card-b {
  width: 290px;
  right: 20px;
  top: 120px;
  transform: rotate(8deg);
}

.floating-card-c {
  width: 270px;
  left: 120px;
  bottom: 10px;
  transform: rotate(-3deg);
}

.ticker-section {
  overflow: hidden;
  padding: 20px 0 40px;
}

.ticker-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

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

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

.section-head h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

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

.feature-card,
.review-card,
.screen-card,
.download-box,
.privacy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(16px);
}

.feature-card {
  padding: 28px;
  border-radius: 26px;
  min-height: 250px;
  transition: 0.35s ease;
}

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

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0a0a0d;
  font-weight: 800;
  margin-bottom: 18px;
}

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

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.story-grid,
.spotlight-grid,
.path-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.phone-frame,
.spotlight-panel {
  border-radius: 34px;
  overflow: hidden;
  background: #121216;
  border: 1px solid var(--line);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.48);
}

.phone-frame img,
.spotlight-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-frame {
  max-width: 340px;
}

.story-copy h2,
.spotlight-copy h2,
.path-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.story-copy p,
.spotlight-copy p,
.path-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1.05rem;
}

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

.story-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-main);
}

.story-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

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

.screen-card {
  border-radius: 24px;
  padding: 16px;
  transition: 0.35s ease;
}

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

.screen-thumb {
  max-width: 170px;
  margin: 0 auto 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.screen-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.screen-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

.mini-points {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-points div {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text-main);
}

.path-steps {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.path-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
}

.path-step span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0a0a0d;
  font-weight: 800;
}

.path-step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.path-step p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-soft);
}

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

.review-card {
  border-radius: 24px;
  padding: 28px;
}

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

.review-card strong {
  font-size: 0.98rem;
}

.download-box {
  border-radius: 34px;
  padding: 54px;
  text-align: center;
}

.download-box h2 {
  margin: 18px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.download-box p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.8;
}

.big-download {
  margin-top: 28px;
  min-width: 250px;
}

.footer {
  padding: 28px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-copy {
  max-width: 520px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-top: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 14px 28px;
  justify-content: end;
}

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

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

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

.privacy-card {
  border-radius: 34px;
  padding: 42px;
  max-width: 900px;
}

.privacy-card h1 {
  margin: 18px 0 26px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

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

.privacy-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0a0a0d;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(255, 138, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 50;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

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

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

  .hero-grid,
  .story-grid,
  .spotlight-grid,
  .path-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone-stack {
    min-height: 580px;
    margin-top: 20px;
  }

  .footer-links {
    justify-content: start;
  }
}

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

  .burger {
    display: inline-block;
  }

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

  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 64px 0 54px;
  }

  .hero-stats,
  .reviews-grid,
  .feature-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone-stack {
    min-height: 520px;
  }

  .floating-card-a {
    width: 220px;
    left: 0;
  }

  .floating-card-b {
    width: 210px;
    right: 0;
    top: 100px;
  }

  .floating-card-c {
    width: 200px;
    left: 70px;
    bottom: 0;
  }

  .download-box,
  .privacy-card {
    padding: 28px;
  }
}

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

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

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-phone-stack {
    min-height: 450px;
  }

  .floating-card-a {
    width: 180px;
  }

  .floating-card-b {
    width: 175px;
    top: 84px;
  }

  .floating-card-c {
    width: 165px;
    left: 48px;
  }

  .screen-thumb {
    max-width: 145px;
  }

  .section-head h2,
  .story-copy h2,
  .spotlight-copy h2,
  .path-copy h2,
  .download-box h2,
  .privacy-card h1 {
    font-size: 2rem;
  }
}
