:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-light: #1A1A1A;
  --primary: #FF6B35;
  --primary-soft: rgba(255, 107, 53, 0.14);
  --text: #FFFFFF;
  --text-2: #AAAAAA;
  --text-3: #777777;
  --border: #2A2A2A;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.brand img { height: 30px; width: auto; }

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

/* Toggle de idioma ES/EN */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--border); border-radius: 999px; padding: 3px;
}
.lang-switch a {
  font-size: 13px; font-weight: 600; padding: 5px 10px; border-radius: 999px;
  color: var(--text-3); line-height: 1; transition: color .2s, background .2s;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { background: var(--surface-light); color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #ff7d4d; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 80px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.22), transparent 62%);
  filter: blur(30px); z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before { content: "📍"; }
h1 {
  font-size: clamp(40px, 6vw, 64px); font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 20px;
}
h1 .accent { color: var(--primary); }
.hero p.sub { font-size: 18px; color: var(--text-2); max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-light); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 14px; color: var(--text-2); font-size: 14px;
}
.store-badge b { color: var(--text); font-weight: 600; }
.store-badge .soon { font-size: 11px; color: var(--primary); font-weight: 700; }

/* ---------- PHONE MOCKUP ---------- */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 290px; height: 590px; background: #000; border-radius: 42px;
  border: 9px solid #1c1c1c; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden; position: relative;
}
.phone .notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 130px; height: 26px; background: #000; border-radius: 0 0 16px 16px; z-index: 5;
}
.screen { height: 100%; background: var(--bg); overflow: hidden; display: flex; flex-direction: column; }
.screen-head { display: flex; align-items: center; gap: 7px; padding: 40px 18px 14px; font-weight: 800; font-size: 19px; }
.screen-head img { height: 22px; }
.feed { flex: 1; padding: 4px 14px; display: flex; flex-direction: column; gap: 14px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.card .img { height: 96px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.card .body { padding: 11px 13px 13px; }
.card .title { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pill { font-size: 10px; padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.pill.cat { background: var(--primary-soft); color: var(--primary); }
.pill.spots { background: #1F3D2B; color: #86EFAC; }
.pill.age { background: #1E3A5F; color: #93C5FD; }
.host { display: flex; align-items: center; gap: 8px; }
.avatar { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; }
.host .name { font-size: 11px; color: var(--text-2); }

/* ---------- SECTIONS ---------- */
section.block { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--text-2); }

/* Cómo funciona */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.step .num {
  position: absolute; top: 26px; right: 26px; font-size: 46px; font-weight: 900;
  color: var(--surface-light); line-height: 1;
}
.step .ico { font-size: 34px; margin-bottom: 16px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
  display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.feature .ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-soft); display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.feature p { color: var(--text-2); font-size: 14.5px; }

/* CTA final */
.cta-final {
  text-align: center; background: linear-gradient(135deg, #1a1005, var(--surface));
  border: 1px solid var(--border); border-radius: 28px; padding: 64px 32px; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(255,107,53,0.25), transparent 60%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.cta-final p { color: var(--text-2); font-size: 17px; margin-bottom: 30px; }
.cta-final .hero-cta { justify-content: center; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 50px 0 40px; margin-top: 20px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-brand p { color: var(--text-3); font-size: 14px; max-width: 280px; }
.foot-links { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text-2); font-size: 14.5px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--primary); }
.copyright { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-3); font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; }
  section.block { padding: 64px 0; }
}
@media (max-width: 480px) {
  .foot-links { gap: 32px; }
}

/* ---------- LEGAL (privacidad / privacy) ---------- */
.legal { max-width: 820px; padding-top: 48px; padding-bottom: 40px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.legal .updated { color: var(--text-3); font-size: 14px; margin-bottom: 22px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.5px; }
.legal h3 { font-size: 17px; font-weight: 600; margin: 22px 0 8px; }
.legal p { color: var(--text-2); font-size: 15.5px; margin-bottom: 14px; }
.legal ul { color: var(--text-2); font-size: 15.5px; margin: 0 0 16px 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--primary); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }
.legal .table-wrap { overflow-x: auto; margin: 8px 0 18px; }
.legal table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.legal th, .legal td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal th { background: var(--surface-light); color: var(--text); font-weight: 600; }
.legal td { color: var(--text-2); }
