:root {
  --black: #0b0d10;
  --coal: #151a21;
  --steel: #222a34;
  --white: #f5f3f0;
  --orange: #ff4d1f;
  --red: #ff2b2b;
  --sand: #f6c9a0;
  --mint: #7bf0d8;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1a1f28 0%, #0b0d10 45%, #050607 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  background: rgba(6, 8, 10, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  text-transform: none;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(255, 77, 31, 0.35);
}

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

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 243, 240, 0.8);
  font-size: 15px;
  transition: color 0.3s ease;
}

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

button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

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

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(245, 243, 240, 0.6);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.lang-btn.is-active {
  background: rgba(255, 77, 31, 0.2);
  color: var(--white);
}

.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 243, 240, 0.3);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}


.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 90px 64px 60px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 2px;
  margin: 18px 0;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 243, 240, 0.8);
  max-width: 500px;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 77, 31, 0.15);
  color: var(--sand);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0;
  position: relative;
}

.primary {
  background: linear-gradient(130deg, var(--orange), var(--red));
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(255, 77, 31, 0.3);
  font-size: 15px;
  font-weight: 600;
}

.appstore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  position: relative;
  z-index: 1;
}

.appstore img {
  height: 46px;
  width: auto;
  display: block;
}

.cta-note {
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  z-index: 0;
  text-align: left;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}


.appstore.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.secondary {
  background: rgba(245, 243, 240, 0.08);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stats strong {
  font-size: 22px;
  display: block;
}

.stats span {
  font-size: 13px;
  color: rgba(245, 243, 240, 0.6);
}

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

.media-frame {
  position: relative;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: min(480px, 90vw);
  display: block;
  border-radius: 20px;
}

.glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 70% 40%, rgba(255, 77, 31, 0.3), transparent 60%);
  z-index: -1;
}

.section {
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}

.section-header {
  max-width: 520px;
  margin-bottom: 40px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(245, 243, 240, 0.6);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--coal);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: rgba(245, 243, 240, 0.7);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.split ol {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.split ol li {
  list-style: none;
  padding-left: 56px;
  position: relative;
  line-height: 1.6;
}

.split ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(123, 240, 216, 0.15);
  color: var(--mint);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.split-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-card h3 {
  margin-bottom: 10px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.story {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story span {
  color: rgba(245, 243, 240, 0.6);
  font-size: 13px;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(255, 77, 31, 0.18), rgba(123, 240, 216, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.download-meta {
  color: rgba(245, 243, 240, 0.6);
  font-size: 13px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 64px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer a {
  color: rgba(245, 243, 240, 0.6);
  text-decoration: none;
  font-size: 14px;
}

.policy {
  max-width: 960px;
  margin: 0 auto;
  padding: 90px 64px 120px;
  position: relative;
  z-index: 2;
}

.policy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.policy h2 {
  font-size: 22px;
  margin: 32px 0 12px;
}

.policy h3 {
  font-size: 18px;
  margin: 22px 0 10px;
}

.policy p,
.policy li {
  color: rgba(245, 243, 240, 0.78);
  line-height: 1.7;
  font-size: 16px;
}

.md-content {
  white-space: pre-wrap;
  color: rgba(245, 243, 240, 0.78);
  line-height: 1.7;
  font-size: 16px;
}

.policy ul {
  padding-left: 20px;
  margin: 12px 0;
}

.policy .updated {
  color: rgba(245, 243, 240, 0.55);
  font-size: 14px;
  margin-bottom: 24px;
}

.policy a {
  color: var(--sand);
  text-decoration: none;
}

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

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

@media (max-width: 900px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section,
  .footer,
  .policy {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 26px;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
