:root {
  --brand-blue: #1e29bd;
  --brand-orange: #ff7425;
  --brand-peach: #ff8a4c;
  --brand-sand: #ff7425;
  --ink-900: #0b0d12;
  --ink-800: #111521;
  --ink-700: #171b2a;
  --ink-600: #22283d;
  --text: #f5f6ff;
  --muted: #c1c6dd;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.18);
  --gradient: linear-gradient(120deg, #1e29bd 0%, #ff7425 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --shadow: 0 24px 60px rgba(5, 8, 20, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background-color: var(--ink-900);
  line-height: 1.6;
  background-image:
    radial-gradient(1400px 800px at 5% -15%, rgba(30, 41, 189, 0.85) 0%, transparent 65%),
    radial-gradient(1400px 800px at 95% -10%, rgba(255, 116, 37, 0.75) 0%, transparent 65%),
    linear-gradient(125deg, rgba(30, 41, 189, 0.78) 0%, rgba(255, 116, 37, 0.7) 55%, rgba(11, 13, 18, 0.92) 100%);
  background-repeat: no-repeat;
  background-position: top left, top right, top center;
  background-size: cover;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(30, 41, 189, 0.3) 0%, transparent 70%),
    radial-gradient(900px 520px at 85% 5%, rgba(255, 116, 37, 0.25) 0%, transparent 70%);
  background-repeat: no-repeat;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  letter-spacing: 0.8px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 48px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 13, 18, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1;
}

.brand img {
  width: auto;
  height: 38px;
}

.brand span {
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: transparent;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(30, 41, 189, 0.14);
  border: 0;
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  transform: translateZ(0);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(30, 41, 189, 0.2);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 90px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(30, 41, 189, 0.25) 0%, transparent 65%),
    radial-gradient(900px 600px at 80% 15%, rgba(255, 116, 37, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-sand);
  margin: 0 0 12px;
}

.hero-content h1 {
  font-size: clamp(48px, 6vw, 86px);
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.store-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.store-row.compact {
  margin-top: 16px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  min-width: 0;
  transition: transform 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-badge {
  height: 51px;
  width: auto;
  max-width: 100%;
  display: block;
}

.store-badge-google {
  height: 68px;
}

.store-button {
  flex: 0 1 auto;
}

@media (max-width: 560px) {
  .store-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .store-row {
    gap: 8px;
  }

  .store-badge {
    height: 40px;
  }

  .store-badge-google {
    height: 57px;
  }

}

.hero-note {
  color: var(--muted);
  margin: 0 0 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: var(--muted);
}

.pill.solid {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  transform: translate(90px, -40px);
}

.screen {
  background: rgba(14, 18, 32, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.screen-title {
  font-weight: 600;
  font-size: 16px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.metric strong {
  font-size: 15px;
}

.screen-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.list-item span {
  font-size: 12px;
  color: var(--muted);
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(9, 12, 20, 0.35);
  animation: float 6s ease-in-out infinite;
}

.card-one {
  top: -18px;
  right: 40px;
}

.card-two {
  bottom: 40px;
  left: -20px;
  animation-delay: 1.2s;
}

.card-title {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 4px;
}

.card-value {
  margin: 0;
  font-weight: 600;
}

.stats {
  padding: 20px 0 80px;
}

.stats-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.features {
  padding: 90px 0 110px;
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 14px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  min-height: 160px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.story {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(17, 21, 33, 0.8) 0%, rgba(11, 13, 18, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.story-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
  padding: 40px 0;
}

.story-row.reverse {
  direction: rtl;
}

.story-row.reverse > * {
  direction: ltr;
}

.story-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.story-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.story-text ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.story-visual {
  position: relative;
  min-height: 280px;
}

.visual-card,
.agreement-card,
.timeline-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(12, 16, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.visual-card {
  display: grid;
  gap: 16px;
}

.visual-bar {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(30, 41, 189, 0.8), rgba(255, 116, 37, 0.6));
}

.visual-bar.warm {
  width: 70%;
}

.visual-bar.soft {
  width: 45%;
  opacity: 0.7;
}

.visual-callout {
  margin-top: 12px;
  font-weight: 600;
}

.agreement-card {
  display: grid;
  gap: 14px;
}

.agreement-row {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.agreement-row.short {
  width: 65%;
}

.agreement-sign {
  margin-top: 6px;
  font-weight: 600;
  color: var(--brand-sand);
}

.timeline-card {
  display: grid;
  gap: 10px;
}

.timeline-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.steps {
  padding: 90px 0 110px;
  background: var(--gradient);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--brand-sand);
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  padding: 100px 0 120px;
  background: var(--gradient);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(11, 13, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 50px);
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}

.cta-actions {
  display: grid;
  gap: 16px;
}

.footer {
  padding: 40px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 16, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer strong {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 22px;
}

.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-note {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(193, 198, 221, 0.7);
}

.privacy-page {
  padding: 90px 0 120px;
}

.privacy-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(12, 16, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.privacy-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
}

.privacy-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.privacy-note {
  margin: 0;
  color: rgba(193, 198, 221, 0.85);
  font-size: 14px;
}


.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

body.animations-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  --delay: 0.1s;
}

.delay-2 {
  --delay: 0.2s;
}

.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5,
.stagger-6,
.stagger-7 {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .stagger-1,
body.animations-enabled .stagger-2,
body.animations-enabled .stagger-3,
body.animations-enabled .stagger-4,
body.animations-enabled .stagger-5,
body.animations-enabled .stagger-6,
body.animations-enabled .stagger-7 {
  opacity: 0;
  transform: translateY(18px);
}

body.animations-enabled .stagger-1 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.05s;
}

body.animations-enabled .stagger-2 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.15s;
}

body.animations-enabled .stagger-3 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.25s;
}

body.animations-enabled .stagger-4 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.35s;
}

body.animations-enabled .stagger-5 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.45s;
}

body.animations-enabled .stagger-6 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.55s;
}

body.animations-enabled .stagger-7 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.65s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .story-row {
    grid-template-columns: 1fr;
  }

  .story-row.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav {
    padding: 18px 24px;
  }

  .cta-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }

}

@media (max-width: 600px) {
  .hero {
    padding: 50px 0 90px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .card-two {
    left: 0;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  body.animations-enabled .reveal,
  body.animations-enabled .stagger-1,
  body.animations-enabled .stagger-2,
  body.animations-enabled .stagger-3,
  body.animations-enabled .stagger-4,
  body.animations-enabled .stagger-5,
  body.animations-enabled .stagger-6,
  body.animations-enabled .stagger-7 {
    opacity: 1;
    transform: none;
  }
}
