/* ============================================================
   TuCancha.pe Landing — styles.css
   Fonts: Syne (display) + DM Sans (body)
   ============================================================ */

/* --------------------------------
   Custom Properties
   -------------------------------- */
:root {
  --navy:        #090f1e;
  --navy-mid:    #0f2545;
  --navy-card:   #131e35;
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-dim:   rgba(34, 197, 94, 0.12);
  --green-glow:  rgba(34, 197, 94, 0.22);
  --bg:          #f2f5f8;
  --bg-white:    #ffffff;
  --text:        #0c1e3c;
  --text-muted:  #64748b;
  --border:      #e1e8f0;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lift: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-hero: 0 32px 80px rgba(0,0,0,0.30);
}

/* --------------------------------
   Reset & Base
   -------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --------------------------------
   Scroll Animation
   -------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.22,.8,.44,1),
              transform 0.65s cubic-bezier(.22,.8,.44,1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------
   Layout & Utilities
   -------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.section-tag.light { color: rgba(34,197,94,0.85); }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,197,94,0.45);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}
.btn-nav:hover { background: var(--green-dark); }

.btn-cta-primary {
  background: #fff;
  color: var(--navy-mid);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
}
.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

/* --------------------------------
   Navbar
   -------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(9, 15, 30, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 78px; width: auto; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

/* --------------------------------
   Hero
   -------------------------------- */
.hero {
  min-height: 100dvh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 5rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 59px,
      rgba(34,197,94,0.035) 59px,
      rgba(34,197,94,0.035) 60px),
    repeating-linear-gradient(90deg,
      transparent, transparent 59px,
      rgba(34,197,94,0.035) 59px,
      rgba(34,197,94,0.035) 60px);
  pointer-events: none;
}

.hero-glow-blob {
  position: absolute;
  top: 50%;
  left: 28%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-content { color: #fff; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  opacity: 0.35;
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.16rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 0.18rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Phone mockups */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 540px;
}

.phones {
  position: relative;
  width: 320px;
  height: 540px;
}

.phone {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background: #111;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone-secondary {
  width: 220px; height: 380px;
  top: 80px; left: 0;
  transform: rotate(-7deg);
  opacity: 0.65;
  z-index: 1;
  border: 2px solid rgba(255,255,255,0.1);
}
.phone-primary {
  width: 250px; height: 430px;
  top: 30px; right: 0;
  transform: rotate(3.5deg);
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.15);
}

.phones-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 160px;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Admin panel card floating in hero */
.admin-card {
  position: absolute;
  bottom: 10px;
  left: -10px;
  width: 255px;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 4;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.admin-card:hover { transform: rotate(-1deg) translateY(-4px); }

.admin-card-bar {
  background: #f1f5f9;
  padding: 0.4rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.admin-card-dots { display: flex; gap: 4px; flex-shrink: 0; }
.admin-card-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.admin-card-dots span:first-child  { background: rgba(248,113,113,0.8); }
.admin-card-dots span:nth-child(2) { background: rgba(251,191,36,0.8); }
.admin-card-dots span:last-child   { background: rgba(34,197,94,0.8); }
.admin-card-url {
  flex: 1;
  font-size: 0.58rem;
  color: #6b7280;
  text-align: center;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-card > img { width: 100%; display: block; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  animation: bounce-down 1.8s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* --------------------------------
   How It Works
   -------------------------------- */
.how-section {
  background: var(--bg-white);
  padding: 7rem 0;
}
.how-section .section-header h2 { color: var(--text); }

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(34,197,94,0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem 0;
}

.step-bubble {
  position: relative;
  width: 88px; height: 88px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.step:hover .step-bubble {
  border-color: var(--green);
  background: var(--green-dim);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 2px;
}
.step-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.step-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------
   Features
   -------------------------------- */
.features-section {
  background: var(--bg);
  padding: 7rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feat-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.feat-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow-card);
}
.feat-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(34,197,94,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.feat-crown {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.feat-icon {
  width: 50px; height: 50px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1.2rem;
  transition: background 0.2s;
}
.feat-card:hover .feat-icon { background: rgba(34,197,94,0.18); }
.feat-card--featured .feat-icon { background: rgba(34,197,94,0.16); }

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.feat-card > p {
  font-size: 0.99rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.feat-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.feat-list li::before {
  content: '↳';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

/* --------------------------------
   Why TuCancha
   -------------------------------- */
.why-section {
  background: var(--navy-mid);
  padding: 7rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-list > li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.check-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-top: 2px;
}
.why-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}
.why-list p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

/* Browser frame */
.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.browser-frame {
  width: 100%;
  max-width: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-hero);
  background: var(--navy-card);
}
.browser-bar {
  background: var(--navy-card);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-dots span:first-child  { background: rgba(248,113,113,0.7); }
.browser-dots span:nth-child(2) { background: rgba(251,191,36,0.7); }
.browser-dots span:last-child   { background: rgba(34,197,94,0.7); }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.22rem 0.6rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.browser-screen img { width: 100%; display: block; }
.browser-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------
   Screenshots
   -------------------------------- */
.screens-section {
  background: var(--bg);
  padding: 7rem 0;
}
.screens-section .section-header h2 { color: var(--text); }
.screens-section .container { max-width: 1360px; }

.screens-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
}

.screen-item {
  flex: 0 0 auto;
  width: 390px;
  max-width: 390px;
  text-align: center;
  transition: transform 0.3s ease;
}
.screen-item:hover { transform: translateY(-6px); }
.screen-item--center {
  width: 450px;
  max-width: 450px;
  transform: translateY(-20px);
}
.screen-item--center:hover { transform: translateY(-26px); }

.screen-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
}
.screen-wrap img { width: 100%; display: block; }
.screen-item span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --------------------------------
   CTA / Contact
   -------------------------------- */
.cta-section {
  background: linear-gradient(135deg, #064e35 0%, #15803d 45%, #16a34a 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px),
    repeating-linear-gradient(90deg,
      transparent, transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta-badge {
  display: inline-block;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.9rem;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-inner > p {
  font-size: 1.11rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------
   Footer
   -------------------------------- */
.footer {
  background: var(--navy);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 84px; margin-bottom: 0.7rem; }
.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  gap: 2rem;
  padding-top: 0.4rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.89rem;
  color: rgba(255,255,255,0.25);
}

/* --------------------------------
   Responsive — Tablet & Mobile
   -------------------------------- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .why-visual { order: -1; }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-visual { order: -1; height: 360px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .badge { margin-left: auto; margin-right: auto; }

  .phones { width: 240px; height: 380px; }
  .phone-secondary { width: 170px; height: 290px; top: 60px; }
  .phone-primary { width: 200px; height: 340px; top: 20px; }

  .steps-track {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .steps-line { display: none; }

  .screens-row {
    flex-direction: column;
    align-items: center;
  }
  .screen-item--center {
    transform: none;
    order: -1;
    width: 100%;
    max-width: 420px;
  }
  .screen-item--center:hover { transform: translateY(-6px); }
  .screen-item { width: 100%; max-width: 420px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .steps-track { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .nav-link { display: none; }
}

/* --------------------------------
   Secciones con +2px de texto
   (base 18px → +0.11rem por valor)
   -------------------------------- */

/* --------------------------------
   Splash screen
   -------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #090f1e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.splash.out {
  transform: translateY(-100%);
  pointer-events: none;
}
.splash-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 59px,
      rgba(34,197,94,0.04) 59px,
      rgba(34,197,94,0.04) 60px),
    repeating-linear-gradient(90deg,
      transparent, transparent 59px,
      rgba(34,197,94,0.04) 59px,
      rgba(34,197,94,0.04) 60px);
  pointer-events: none;
}
.splash-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
.splash-logo {
  width: 210px;
  filter: drop-shadow(0 0 40px rgba(34,197,94,0.45));
  animation: splashLogoIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.splash-track {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 3px;
  animation: splashProgress 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}
@keyframes splashProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* Flujo del jugador */
.how-section .section-header h2 { font-size: clamp(1.86rem, 3.61vw, 2.51rem); }
.how-section .section-header p  { font-size: 1.19rem; }
.how-section .step-body h3      { font-size: 1.06rem; }
.how-section .step-body p       { font-size: 1.05rem; }
.how-section .step-num          { font-size: 0.73rem; }

/* Panel de administración */
.features-section .section-header h2 { font-size: clamp(1.86rem, 3.61vw, 2.51rem); }
.features-section .section-header p  { font-size: 1.19rem; }
.features-section .feat-card h3      { font-size: 1.16rem; }
.features-section .feat-card > p     { font-size: 1.10rem; }
.features-section .feat-list li      { font-size: 0.91rem; }
.features-section .feat-crown        { font-size: 0.79rem; }

/* Diferenciadores */
.why-section .why-content h2  { font-size: clamp(1.86rem, 3.11vw, 2.51rem); }
.why-section .why-list strong { font-size: 1.01rem; }
.why-section .why-list p      { font-size: 1.05rem; }
