*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #FF6D00;
  --orange-dim: rgba(255, 109, 0, 0.12);
  --orange-border: rgba(255, 109, 0, 0.3);
  --bg: #0D0D0D;
  --surface: #141414;
  --surface2: #1A1A1A;
  --border: rgba(255, 255, 255, 0.07);
  --border-orange: rgba(255, 109, 0, 0.25);
  --text: #E8E8E8;
  --text-dim: rgba(232, 232, 232, 0.45);
  --text-muted: rgba(232, 232, 232, 0.25);
  --mono: 'IBM Plex Mono', monospace;
  --display: 'Rajdhani', sans-serif;
  --body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

/* ── DOT INDICATOR ── */
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
}

.highlight {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.2s;
  font-family: var(--mono);
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-btn {
  border: 1px solid var(--border-orange) !important;
  color: var(--orange) !important;
  border-radius: 4px;
}

.nav-btn:hover {
  background: var(--orange-dim);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 110px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 109, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 109, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 109, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border-orange);
  background: var(--orange-dim);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-label-icon {
  width: 12px;
  height: 12px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  margin-right: 8px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 7px 14px;
  border-radius: 3px;
}

.badge-icon {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* ── CTA (Google Play) ── */
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--orange);
  color: #0D0D0D;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 109, 0, 0.32);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  fill: #0D0D0D;
  flex-shrink: 0;
}

.cta-note {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.cta-note strong {
  color: var(--orange);
  font-weight: 600;
}

/* CTA de cierre, antes del footer */
.final-cta {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── SCREENSHOTS ── */
.shots {
  padding: 40px 0 20px;
}

.shots .section-label {
  max-width: 1040px;
  margin: 0 auto 22px;
  padding: 0 24px;
}

.shots-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 22px;
  -webkit-overflow-scrolling: touch;
}

.shots-track img {
  height: 520px;
  width: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  scroll-snap-align: center;
  flex-shrink: 0;
  background: var(--surface);
}

.shots-track::-webkit-scrollbar {
  height: 6px;
}

.shots-track::-webkit-scrollbar-thumb {
  background: var(--border-orange);
  border-radius: 3px;
}

.shots-track::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 600px) {
  .shots-track img {
    height: 440px;
  }
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  font-weight: 300;
}

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.stat-card {
  flex: 1;
  min-width: 130px;
  background: rgba(255, 109, 0, 0.07);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  padding: 14px 18px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.stat-value {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

/* ── FEATURES ── */
.features {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.card:hover {
  border-color: var(--border-orange);
  transform: translateY(-3px);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 24px;
}

/* ── PRIVACY ── */
.privacy {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 24px;
}

.policy-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 28px;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.policy-box p + p {
  margin-top: 14px;
}

.policy-box strong {
  color: var(--text);
  font-weight: 500;
}

.policy-box a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--border-orange);
  transition: border-color 0.2s;
}

.policy-box a:hover {
  border-color: var(--orange);
}

code {
  background: rgba(255, 109, 0, 0.1);
  color: var(--orange);
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.85em;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-sep {
  color: var(--border);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links a:not(.nav-btn) {
    display: none;
  }
  .hero {
    padding: 80px 20px 70px;
  }
  .stat-row {
    flex-direction: column;
  }
}