/* ============================================================
   DIBS Landing — single typeface (Nunito), color tokens inline
   ============================================================ */
:root {
  --primary:           #9A02CD;
  --primary-dark:      #8800BB;
  --primary-container: #F9D8FF;
  --magenta:           #DC06DC;
  --magenta-bright:    #FF04FF;
  --yellow:            #FFDF9C;
  --yellow-bright:     #FFE293;
  --gold:              #FFBB00;
  --orange-dot:        #FFA500;
  --text:              #221C24;
  --text-soft:         #45223F;
  --gray:              #7C7380;
  --outline:           #CFC3CD;
  --surface:           #FFFBFF;
  --surface-2:         #FFEBF6;
  --cream:             #FFF6E0;
  --bg-gradient: linear-gradient(180deg, #EDCEFF 0%, #F8EEFF 40%, #FFFBFF 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 251, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(154, 2, 205, 0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 40px;
  max-width: 1320px; margin: 0 auto;
}
.logo {
  font-weight: 900; font-size: 28px;
  color: var(--primary); letter-spacing: -1px; line-height: 1;
}
.logo .dot { color: var(--orange-dot); }
.nav-links {
  display: flex; gap: 36px;
  font-size: 14px; font-weight: 700;
  color: var(--text);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--yellow-bright);
  padding: 11px 22px; border-radius: 100px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.5px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(154,2,205,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(154,2,205,0.35); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 152px 0 100px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(255, 187, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(220, 6, 220, 0.13) 0%, transparent 60%),
    var(--bg-gradient);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(154, 2, 205, 0.13) 1.5px, transparent 2px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 16px 8px 12px; border-radius: 100px;
  font-size: 11.5px; font-weight: 900;
  color: var(--primary);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
  border: 1.5px solid var(--primary-container);
  box-shadow: 0 4px 12px rgba(154,2,205,0.08);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,187,0,0.25);
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero h1 .accent {
  background: linear-gradient(110deg, var(--primary) 0%, var(--magenta-bright) 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 18px; line-height: 1.55;
  color: var(--text-soft);
  max-width: 540px; margin-bottom: 36px;
  font-weight: 500;
}
.hero-sub b { color: var(--primary); font-weight: 800; }

.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-primary {
  background: var(--primary);
  color: var(--yellow-bright);
  padding: 16px 28px; border-radius: 100px;
  font-weight: 900; font-size: 14px; letter-spacing: 0.8px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(154,2,205,0.35);
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(154,2,205,0.45); }
.cta-ghost {
  color: var(--primary);
  padding: 16px 24px; border-radius: 100px;
  font-weight: 800; font-size: 14px;
  border: 2.5px solid var(--primary);
  background: white;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.cta-ghost:hover { background: var(--primary-container); transform: translateY(-2px); }
.cta-meta {
  margin-top: 14px;
  font-size: 12.5px; font-weight: 600;
  color: var(--gray);
  display: flex; align-items: center; gap: 6px;
}
.cta-meta .ios-tag {
  background: rgba(154,2,205,0.08); color: var(--primary);
  padding: 2px 8px; border-radius: 100px;
  font-weight: 800; font-size: 10.5px; letter-spacing: 0.5px;
}

/* ===== Phone mockup (hero) ===== */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.phone-wrap::before {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(154,2,205,0.22) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(20px);
}
.phone {
  position: relative;
  width: 320px; height: 660px;
  background: #0c0612; border-radius: 48px;
  padding: 12px; flex-shrink: 0;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 0 0 2px #1d1424,
    inset 0 0 0 1px #3a2c4d;
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-gradient);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.phone-punch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #050309; z-index: 5;
}
.phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 22px 8px;
  font-size: 12px; font-weight: 700; color: var(--text);
}
.phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--primary-container);
}
.phone-topbar .mini-logo {
  font-weight: 900; font-size: 20px;
  color: var(--primary); letter-spacing: -0.5px;
}
.phone-topbar .mini-logo .dot { color: var(--orange-dot); }
.phone-avatar-sm {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  border: 2px solid var(--gold);
}
.profile-card {
  margin: 16px 16px 12px;
  border-radius: 22px;
  border: 2.5px solid var(--primary);
  box-shadow: 0 8px 24px rgba(154,2,205,0.2);
  overflow: hidden;
  position: relative;
  height: 380px;
  background: linear-gradient(160deg, hsl(28,55%,68%) 0%, hsl(20,40%,52%) 100%);
}
.profile-card-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, hsl(28,55%,72%) 0%, transparent 70%),
    linear-gradient(160deg, hsl(28,55%,68%) 0%, hsl(20,40%,52%) 100%);
}
.profile-card-photo::after {
  content: '';
  position: absolute; top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: hsl(25,40%,55%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.profile-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 16px 16px;
  background: linear-gradient(0deg, #FFDF9C 0%, rgba(255,223,156,0.7) 50%, transparent 100%);
}
.profile-card-name {
  font-weight: 900; font-size: 22px;
  color: var(--primary);
  display: flex; align-items: center; gap: 6px;
}
.profile-card-online {
  width: 9px; height: 9px; border-radius: 50%;
  background: #33C75A;
}
.profile-card-badges { display: flex; gap: 6px; margin-top: 6px; }
.badge {
  padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.3px;
}
.badge-purple { background: var(--primary); color: white; }
.badge-gold { background: var(--yellow); color: var(--text); }
.phone-actions { display: flex; gap: 10px; padding: 0 16px; }
.pa-btn {
  flex: 1; height: 42px; border-radius: 100px;
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pa-chat { background: white; color: var(--text); border: 1.5px solid var(--outline); }
.pa-dib {
  flex: 1.4;
  background: var(--primary); color: var(--yellow-bright);
  border: 2px solid var(--gold);
}
.phone-countdown {
  margin: 14px 16px 0;
  padding: 8px 12px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-container), var(--yellow));
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: var(--text-soft);
}
.phone-countdown .timer {
  font-weight: 800; font-size: 13px;
  color: var(--primary); margin-left: auto;
  letter-spacing: 0.5px;
}

/* Floating tags */
.float-tag {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(154,2,205,0.22);
  border: 1.5px solid var(--primary-container);
  display: flex; align-items: center; gap: 10px;
  z-index: 5;
  font-size: 13px; font-weight: 700;
}
.float-tag .ft-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.ft-1 { top: 12%; right: -10%; transform: rotate(4deg); animation: floatY 6s ease-in-out infinite; }
.ft-2 { bottom: 22%; left: -16%; transform: rotate(-3deg); animation: floatY 7s ease-in-out -2s infinite; }
.ft-3 { bottom: 5%; right: -5%; transform: rotate(3deg); animation: floatY 5s ease-in-out -1s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

/* ===== SECTION HEADERS ===== */
.section { padding: 110px 0; position: relative; }
.section-eyebrow {
  font-size: 12px; font-weight: 900;
  color: var(--primary);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.04; letter-spacing: -1.5px;
  color: var(--text);
  text-align: center;
  margin-bottom: 18px;
}
.section-title .accent {
  background: linear-gradient(110deg, var(--primary), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--text-soft);
  text-align: center; max-width: 640px; margin: 0 auto;
  font-weight: 500;
}

/* ===== PROBLEMA ===== */
.section-problem {
  background: linear-gradient(180deg, #FFFBFF 0%, var(--cream) 100%);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.problem-card {
  background: white;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1.5px solid var(--outline);
  transition: transform 0.25s, box-shadow 0.25s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(154,2,205,0.12);
}
.problem-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #FFF5E0;
  border: 1.5px solid #FFE9A8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.problem-stat {
  font-weight: 900; font-size: 40px; line-height: 1;
  color: var(--primary); margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.problem-title {
  font-weight: 900; font-size: 16px;
  color: var(--text); margin-bottom: 6px;
}
.problem-desc {
  font-size: 13.5px; line-height: 1.5;
  color: var(--gray); font-weight: 500;
}

/* ===== PHILOSOPHY ===== */
.section-philosophy {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,187,0,0.12), transparent 70%),
    linear-gradient(180deg, #FFFBFF 0%, #EDCEFF 100%);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.pillar {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  border: 2px solid var(--primary-container);
  box-shadow: 0 8px 24px rgba(154,2,205,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(154,2,205,0.18);
  border-color: var(--primary);
}
.pillar-number {
  position: absolute; top: 20px; right: 28px;
  font-weight: 900; font-size: 56px; line-height: 1;
  color: var(--primary-container);
  user-select: none;
}
.pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(154,2,205,0.3);
  border: 2px solid var(--gold);
}
.pillar h3 {
  font-weight: 900; font-size: 22px;
  color: var(--text); line-height: 1.1;
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.pillar p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--text-soft); font-weight: 500;
}

/* ===== ASYMMETRIC ===== */
.section-asymmetric { background: white; }
.asym-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.asym-card {
  border-radius: 28px;
  padding: 40px 36px 36px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.asym-card-mujer {
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(255,187,0,0.35) 0%, transparent 55%),
    linear-gradient(155deg, var(--magenta-bright) 0%, var(--primary) 55%, var(--primary-dark) 100%);
  box-shadow: 0 20px 48px rgba(154,2,205,0.35);
}
.asym-card-hombre {
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(220,6,220,0.45) 0%, transparent 55%),
    linear-gradient(155deg, #2a1338 0%, #1a0b2e 100%);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,187,0,0.2);
}
.asym-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 7px 14px; border-radius: 100px;
  font-size: 11.5px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
}
.asym-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,187,0,0.3);
}
.asym-card h3 {
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1; letter-spacing: -1px;
  margin-bottom: 16px;
  color: white;
}
.asym-card h3 em {
  color: var(--yellow-bright);
  font-style: normal;
}
.asym-card p {
  font-size: 15.5px; line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 420px;
  margin-bottom: 28px;
  font-weight: 500;
}
.asym-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.asym-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.45;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.asym-list li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px; font-weight: 900;
}
.asym-list li b { color: var(--yellow-bright); font-weight: 800; }
.asym-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-bright);
  color: var(--primary);
  padding: 12px 22px; border-radius: 100px;
  font-weight: 800; font-size: 13.5px;
  align-self: flex-start;
  border: 2px solid var(--gold);
  transition: transform 0.2s;
  letter-spacing: 0.3px;
}
.asym-link:hover { transform: translateX(3px); }

/* ===== PROFILES DEEP ===== */
.section-deep {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,4,255,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 70%, rgba(255,187,0,0.13), transparent 60%),
    linear-gradient(180deg, #2a1338 0%, #1a0b2e 100%);
  color: white;
  overflow: hidden;
}
.section-deep .section-title { color: white; }
.section-deep .section-title .accent {
  background: linear-gradient(110deg, var(--gold), var(--magenta-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-deep .section-eyebrow { color: var(--yellow); }
.section-deep .section-sub { color: rgba(255,255,255,0.72); }

.deep-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 72px;
}
.deep-features { display: flex; flex-direction: column; gap: 18px; }
.deep-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex; gap: 18px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.deep-feature:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,187,0,0.4);
  transform: translateX(4px);
}
.df-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--magenta), var(--primary));
  color: white; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 1.5px solid var(--gold);
}
.df-title {
  font-weight: 900; font-size: 17px;
  color: white; margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.df-desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(255,255,255,0.7); font-weight: 500;
}

/* Profile-detail mockup phone */
.deep-phone {
  position: relative;
  display: flex; justify-content: center;
}
.deep-phone::before {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,4,255,0.4) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(30px);
  z-index: 0;
}
.dp-phone {
  position: relative; z-index: 1;
  width: 300px; height: 620px;
  background: #0c0612; border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 1px #3a2c4d;
  transform: rotate(2deg);
}
.dp-screen {
  width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden;
  background: white;
  position: relative;
}
.dp-hero {
  height: 240px; position: relative;
  background:
    radial-gradient(ellipse at 50% 35%, hsl(28,50%,72%) 0%, hsl(25,40%,55%) 80%);
}
.dp-hero::after {
  content: '';
  position: absolute; top: 35%; left: 50%; transform: translateX(-50%);
  width: 70px; height: 70px; border-radius: 50%;
  background: hsl(25,40%,52%);
}
.dp-hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(0deg, white 30%, transparent);
}
.dp-name {
  font-weight: 900; font-size: 22px;
  color: var(--text); letter-spacing: -0.5px;
}
.dp-loc {
  font-size: 12px; color: var(--gray); margin-top: 2px;
  display: flex; align-items: center; gap: 4px;
}
.dp-back {
  position: absolute; top: 14px; left: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: white; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.dp-body {
  background: var(--bg-gradient);
  padding: 14px 14px 18px;
}
.dp-section-lbl {
  font-weight: 800; font-size: 12px;
  color: var(--text); margin: 10px 0 6px;
}
.dp-section-lbl:first-child { margin-top: 0; }
.dp-card {
  background: white; border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  font-size: 11px; line-height: 1.45;
  color: var(--text-soft);
}
.dp-card.quote {
  border-left: 3px solid var(--primary);
  padding-left: 10px;
  font-style: italic;
}
.dp-card.plan {
  background: linear-gradient(135deg, #FF8C00, var(--magenta));
  color: white;
  padding: 12px;
  border-radius: 14px;
}
.dp-card.plan b {
  display: block; font-size: 11px;
  color: rgba(255,255,255,0.7); font-style: normal;
  font-weight: 700; margin-bottom: 2px;
}

/* ===== SEGURIDAD ===== */
.section-safety {
  background: linear-gradient(180deg, #FFFBFF 0%, #F8EEFF 100%);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.safety-card {
  background: white;
  border-radius: 22px;
  padding: 32px 28px;
  border: 1.5px solid var(--primary-container);
  transition: transform 0.25s, box-shadow 0.25s;
}
.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(154,2,205,0.12);
}
.safety-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-container);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.safety-card h4 {
  font-weight: 900; font-size: 18px;
  color: var(--text); margin-bottom: 8px;
}
.safety-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--gray); font-weight: 500;
}

/* ===== DOWNLOAD CTA ===== */
.section-download {
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(255, 187, 0, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 60%, rgba(220, 6, 220, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #FFE9A8 100%);
  position: relative;
  overflow: hidden;
}
.section-download::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(154,2,205,0.10) 1.5px, transparent 2px);
  background-size: 32px 32px;
  opacity: 0.7;
}
.download-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 0 32px;
}
.download-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1.5px solid var(--primary-container);
  padding: 8px 16px 8px 12px; border-radius: 100px;
  font-size: 11.5px; font-weight: 900;
  color: var(--primary); letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(154,2,205,0.1);
}
.download-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,187,0,0.3);
}
.download-inner h2 {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -2px;
  margin-bottom: 16px;
  color: var(--text);
}
.download-inner h2 .accent {
  background: linear-gradient(110deg, var(--primary), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download-sub {
  font-size: 17.5px; line-height: 1.55;
  margin: 0 auto 40px;
  color: var(--text-soft);
  max-width: 520px;
  font-weight: 500;
}
.download-sub b { color: var(--primary); font-weight: 800; }
.badge-row {
  display: flex; gap: 16px; justify-content: center;
  align-items: stretch; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px;
  background: var(--text); color: white;
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-align: left;
  position: relative;
}
.store-badge.available { background: var(--text); }
.store-badge.available:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(34,28,36,0.4);
  border-color: var(--gold);
}
.store-badge.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border: 2px dashed rgba(34,28,36,0.3);
  background: rgba(34,28,36,0.85);
}
.store-icon { font-size: 30px; width: 30px; flex-shrink: 0; }
.store-label {
  font-size: 10.5px; letter-spacing: 0.5px;
  opacity: 0.85; text-transform: uppercase;
  font-weight: 700;
}
.store-name {
  font-size: 19px; font-weight: 800;
  margin-top: 1px; letter-spacing: -0.3px;
}
.ios-badge-tag {
  position: absolute; top: -10px; right: -10px;
  background: var(--gold);
  color: var(--text);
  padding: 4px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.download-note {
  margin-top: 32px;
  font-size: 14px; font-weight: 600;
  color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7);
  padding: 10px 18px; border-radius: 100px;
  border: 1.5px solid var(--primary-container);
  backdrop-filter: blur(8px);
}
.download-note a {
  text-decoration: underline; font-weight: 800;
  color: var(--primary); margin-left: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: #150821; color: rgba(255,255,255,0.7);
  padding: 64px 0 40px;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .logo {
  color: white; margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13.5px; line-height: 1.6; max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.footer-col h5 {
  font-size: 11px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  color: white; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 48px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.45);
}

/* ===== Trust strip ===== */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  margin-top: 20px;
  font-size: 13px; font-weight: 700;
  color: var(--text-soft);
}
.trust-row .item { display: inline-flex; align-items: center; gap: 6px; }
.trust-row .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-container); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}

/* ===== House Rules ===== */
.section-rules {
  background: linear-gradient(180deg, #EDCEFF 0%, #FFFBFF 100%);
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.rule {
  background: white;
  border-radius: 22px;
  padding: 28px 22px 24px;
  border: 1.5px solid var(--primary-container);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.rule:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(154,2,205,0.16);
}
.rule-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: var(--yellow-bright);
  font-weight: 900; font-size: 14px;
  border: 1.5px solid var(--gold);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(154,2,205,0.25);
}
.rule h4 {
  font-weight: 900; font-size: 15.5px;
  line-height: 1.2; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.rule p {
  font-size: 13px; line-height: 1.5;
  color: var(--text-soft); font-weight: 500;
}

/* ===== Manifesto pullquote ===== */
.section-manifesto {
  padding: 100px 0;
  background: white;
  position: relative;
}
.manifesto-inner {
  max-width: 920px; margin: 0 auto;
  padding: 0 32px; text-align: center;
  position: relative;
}
.manifesto-mark {
  font-weight: 900; font-size: 80px;
  line-height: 1; color: var(--primary-container);
  user-select: none; margin-bottom: -28px;
}
.manifesto-quote {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}
.manifesto-quote .accent {
  background: linear-gradient(110deg, var(--primary), var(--magenta));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto-attr {
  margin-top: 24px;
  font-size: 12px; font-weight: 900;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary);
}

/* ===== Compare section ===== */
.section-compare {
  background: linear-gradient(180deg, #FFFBFF 0%, #F8EEFF 100%);
}
.compare-table {
  margin-top: 56px;
  background: white; border-radius: 28px;
  border: 2px solid var(--primary-container);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(154,2,205,0.08);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid var(--primary-container); }
.compare-row .cell {
  padding: 18px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--text-soft);
}
.compare-row .cell.label {
  font-weight: 800; color: var(--text);
  font-size: 14.5px;
}
.compare-row .cell.brand {
  text-align: center; font-weight: 900;
  font-size: 14.5px;
}
.compare-row.head {
  background: linear-gradient(180deg, #FFF6E0, #F9D8FF);
  border-bottom: 2px solid var(--primary);
}
.compare-row.head .cell { padding: 22px 20px; }
.compare-row.head .cell.brand.dibs {
  color: var(--primary);
  position: relative;
}
.compare-row.head .cell.brand.dibs::after {
  content: ''; display: block;
  width: 24px; height: 3px; border-radius: 100px;
  background: var(--gold);
  margin: 6px auto 0;
}
.compare-row.head .cell.brand {
  color: var(--gray);
}
.compare-row .cell.brand .yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-container); color: var(--primary);
  font-weight: 900; font-size: 13px;
}
.compare-row .cell.brand.dibs .yes {
  background: var(--primary); color: var(--yellow-bright);
  border: 1.5px solid var(--gold);
}
.compare-row .cell.brand .no {
  color: var(--gray); font-size: 18px;
  opacity: .5;
}

/* ===== FAQ ===== */
.section-faq {
  background: white;
}
.faq-list {
  max-width: 800px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border: 1.5px solid var(--primary-container);
  border-radius: 18px;
  background: white;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(154,2,205,0.1);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 800; font-size: 15.5px;
  color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-container); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--primary); color: var(--yellow-bright);
}
.faq-body {
  padding: 0 24px 22px;
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-soft); font-weight: 500;
}
.faq-body b { color: var(--primary); font-weight: 800; }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--magenta), var(--gold));
  z-index: 200;
  box-shadow: 0 0 12px rgba(220,6,220,0.5);
  border-radius: 0 100px 100px 0;
  transition: width 0.05s linear;
}

/* ===== Reveal-on-scroll animations ===== */
.problem-card,
.pillar,
.rule,
.safety-card,
.asym-card,
.faq-item,
.compare-row,
.deep-feature,
.section-eyebrow,
.section-title,
.section-sub,
.manifesto-quote,
.manifesto-mark,
.manifesto-attr,
.download-tag,
.download-inner h2,
.download-sub,
.badge-row,
.download-note,
.trust-row,
.scrolly-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.manifesto-quote { transform: translateY(40px) scale(.96); }
.is-in {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger via nth-child */
.problem-card:nth-child(2) { transition-delay: .08s; }
.problem-card:nth-child(3) { transition-delay: .16s; }
.problem-card:nth-child(4) { transition-delay: .24s; }
.pillar:nth-child(2) { transition-delay: .1s; }
.pillar:nth-child(3) { transition-delay: .2s; }
.rule:nth-child(2) { transition-delay: .08s; }
.rule:nth-child(3) { transition-delay: .16s; }
.rule:nth-child(4) { transition-delay: .24s; }
.rule:nth-child(5) { transition-delay: .32s; }
.safety-card:nth-child(2) { transition-delay: .1s; }
.safety-card:nth-child(3) { transition-delay: .2s; }
.faq-item:nth-child(2) { transition-delay: .04s; }
.faq-item:nth-child(3) { transition-delay: .08s; }
.faq-item:nth-child(4) { transition-delay: .12s; }
.faq-item:nth-child(5) { transition-delay: .16s; }
.faq-item:nth-child(6) { transition-delay: .20s; }
.faq-item:nth-child(7) { transition-delay: .24s; }
.faq-item:nth-child(8) { transition-delay: .28s; }
.compare-row + .compare-row { transition-delay: .05s; }
.compare-row + .compare-row + .compare-row { transition-delay: .10s; }
.compare-row + .compare-row + .compare-row + .compare-row { transition-delay: .15s; }
.asym-card:nth-child(2) { transition-delay: .12s; }
.deep-feature:nth-child(2) { transition-delay: .08s; }
.deep-feature:nth-child(3) { transition-delay: .16s; }
.section-title { transition-delay: .08s; }
.section-sub { transition-delay: .16s; }

/* Hero phone smooth transform */
.phone { transition: transform .6s cubic-bezier(.22,.61,.36,1); }

/* Stat counter: monospace-ish numerics with tabular nums */
.problem-stat { font-variant-numeric: tabular-nums; }

/* ===== Scrollytelling (Perfil profundo) ===== */
.scrolly {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: start;
  position: relative;
}
.scrolly-pin {
  position: sticky; top: 12vh;
  height: 76vh;
  display: flex; align-items: center; justify-content: center;
}
.scrolly-pin::before {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,4,255,0.4) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(30px); z-index: 0;
}
.scrolly-steps {
  display: flex; flex-direction: column;
  padding-left: 8px;
}
.scrolly-step {
  min-height: 85vh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 24px;
}
.scrolly-step::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 60%;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  transition: background .4s, height .4s;
}
.scrolly-step.is-active::before {
  background: linear-gradient(180deg, var(--gold), var(--magenta));
  height: 75%;
  box-shadow: 0 0 16px rgba(255,187,0,.35);
}
.step-num {
  font-size: 11.5px; font-weight: 900;
  color: var(--yellow); letter-spacing: 2.5px;
  margin-bottom: 14px; opacity: 0.6;
  transition: opacity .4s;
}
.scrolly-step.is-active .step-num { opacity: 1; }
.scrolly-step h3 {
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05; color: white;
  margin-bottom: 14px; letter-spacing: -1px;
  opacity: 0.4; transition: opacity .4s;
}
.scrolly-step h3 .accent {
  background: linear-gradient(110deg, var(--gold), var(--magenta-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scrolly-step.is-active h3 { opacity: 1; }
.scrolly-step p {
  font-size: 15.5px; line-height: 1.6;
  color: rgba(255,255,255,0.7); font-weight: 500;
  max-width: 440px;
  opacity: 0.5; transition: opacity .4s;
}
.scrolly-step.is-active p { opacity: 1; color: rgba(255,255,255,0.85); }

/* Phone step highlighting */
.scrolly .dp-card,
.scrolly .dp-section-lbl {
  transition: opacity .4s, transform .4s, box-shadow .4s, outline-color .4s, color .4s;
}
.scrolly .dp-card { outline: 0 solid transparent; outline-offset: 2px; }
.scrolly .dp-card,
.scrolly .dp-section-lbl { opacity: 0.32; }

.scrolly .dp-phone[data-step="0"] .dp-card.r0,
.scrolly .dp-phone[data-step="1"] .dp-card.r1,
.scrolly .dp-phone[data-step="2"] .dp-card.r2 {
  opacity: 1;
  outline: 2.5px solid var(--gold);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(255,187,0,0.32);
}
.scrolly .dp-phone[data-step="0"] .dp-section-lbl.l0,
.scrolly .dp-phone[data-step="1"] .dp-section-lbl.l1,
.scrolly .dp-phone[data-step="2"] .dp-section-lbl.l2 {
  opacity: 1; color: var(--primary); font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .problem-card, .pillar, .rule, .safety-card, .asym-card, .faq-item,
  .compare-row, .deep-feature, .section-eyebrow, .section-title,
  .section-sub, .manifesto-quote, .manifesto-mark, .manifesto-attr,
  .download-tag, .download-inner h2, .download-sub, .badge-row,
  .download-note, .trust-row, .scrolly-step {
    opacity: 1; transform: none; transition: none;
  }
  .scrolly-pin { position: static; height: auto; }
}

/* ===== Cursor blob ===== */
.cursor-blob {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 4, 255, 0.32) 0%, rgba(154, 2, 205, 0.18) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
.cursor-blob.on { opacity: 1; }

/* ===== Hero floating avatar cloud ===== */
.hero-avatars {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.hero-avatar {
  position: absolute;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 12px 32px rgba(154,2,205,0.25);
  background-size: cover; background-position: center;
  animation: floatAv 8s ease-in-out infinite;
}
.hero-avatar.a1 { width: 64px; height: 64px; top: 18%; left: 6%; background: linear-gradient(160deg, hsl(28,55%,68%), hsl(20,40%,52%)); animation-delay: 0s; }
.hero-avatar.a2 { width: 48px; height: 48px; top: 64%; left: 12%; background: linear-gradient(160deg, hsl(200,45%,65%), hsl(200,30%,55%)); animation-delay: -2s; }
.hero-avatar.a3 { width: 40px; height: 40px; top: 30%; left: 18%; background: linear-gradient(160deg, hsl(320,45%,68%), hsl(310,35%,55%)); animation-delay: -4s; }
.hero-avatar.a4 { width: 56px; height: 56px; bottom: 8%; left: 40%; background: linear-gradient(160deg, hsl(180,40%,62%), hsl(170,35%,50%)); animation-delay: -1s; }
.hero-avatar.a5 { width: 36px; height: 36px; top: 8%; left: 52%; background: linear-gradient(160deg, hsl(45,55%,68%), hsl(35,45%,55%)); animation-delay: -3s; }
@keyframes floatAv {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* ===== Phone screen states (auto-cycling) ===== */
.phone-states {
  position: relative;
  height: calc(100% - 86px);
}
.phone-state {
  position: absolute; inset: 0;
  opacity: 0; transform: translateX(20px) scale(.97);
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.phone-state.active {
  opacity: 1; transform: translateX(0) scale(1);
  pointer-events: auto;
}
.phone-state.exit {
  opacity: 0; transform: translateX(-20px) scale(.97);
}

/* State indicator dots */
.phone-dots {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.phone-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(154,2,205,0.25);
  transition: all .3s;
}
.phone-dots .dot.active {
  background: var(--primary); width: 22px; border-radius: 100px;
}

/* Pulse on "Lo pido" */
.pa-dib { position: relative; overflow: visible; }
.pa-dib::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  animation: dibPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes dibPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* State 2: "Lo pido" sent — overlay */
.state-sent .sent-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(154,2,205,0.05), rgba(154,2,205,0.85));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 24px;
  backdrop-filter: blur(4px);
}
.sent-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: white; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border: 3px solid var(--gold);
  animation: sentBounce .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes sentBounce {
  0% { transform: scale(0.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.sent-text {
  color: white; font-weight: 900; font-size: 19px;
  text-align: center; letter-spacing: -0.3px;
}
.sent-sub {
  color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.sent-countdown {
  margin-top: 6px;
  background: rgba(0,0,0,0.25);
  color: var(--yellow-bright);
  padding: 8px 16px; border-radius: 100px;
  font-weight: 800; font-size: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  border: 1.5px solid var(--gold);
}

/* State 3: ¡Match! */
.state-match {
  background:
    radial-gradient(circle at 50% 40%, rgba(255,4,255,0.45), transparent 65%),
    linear-gradient(180deg, #2a1338 0%, #150821 100%);
}
.match-stack {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.match-pic {
  position: absolute;
  width: 110px; height: 140px;
  border-radius: 16px;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.match-pic.a {
  transform: translateX(-44px) rotate(-8deg) translateY(-12px);
  background: linear-gradient(160deg, hsl(28,55%,68%), hsl(20,40%,52%));
  animation: matchInL 0.7s cubic-bezier(.34,1.56,.64,1) both;
}
.match-pic.b {
  transform: translateX(44px) rotate(8deg) translateY(-12px);
  background: linear-gradient(160deg, hsl(220,40%,60%), hsl(220,35%,50%));
  animation: matchInR 0.7s cubic-bezier(.34,1.56,.64,1) 0.1s both;
}
@keyframes matchInL {
  0% { transform: translateX(0) rotate(0) translateY(40px); opacity: 0; }
  100% { transform: translateX(-44px) rotate(-8deg) translateY(-12px); opacity: 1; }
}
@keyframes matchInR {
  0% { transform: translateX(0) rotate(0) translateY(40px); opacity: 0; }
  100% { transform: translateX(44px) rotate(8deg) translateY(-12px); opacity: 1; }
}
.match-heart {
  position: absolute;
  bottom: 28%;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--magenta-bright));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 2px solid white;
  box-shadow: 0 8px 24px rgba(255,4,255,0.5);
  animation: heartPop 0.5s cubic-bezier(.34,1.56,.64,1) 0.5s both;
  z-index: 3;
}
@keyframes heartPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.match-title {
  position: absolute; bottom: 14%; left: 0; right: 0;
  text-align: center;
  color: var(--gold);
  font-weight: 900; font-size: 22px;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,187,0,0.8);
  animation: fadeUp 0.5s ease 0.6s both;
}
.match-sub {
  position: absolute; bottom: 7%; left: 0; right: 0;
  text-align: center;
  color: white; font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.85;
  animation: fadeUp 0.5s ease 0.7s both;
}
@keyframes fadeUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* State 4: Chat */
.state-chat {
  background: var(--bg-gradient);
  padding: 12px 12px 12px;
  display: flex; flex-direction: column;
}
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px 10px;
  border-bottom: 1px solid var(--primary-container);
  margin-bottom: 8px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(160deg, hsl(28,55%,68%), hsl(20,40%,52%));
  border: 2px solid var(--primary);
  position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute;
  bottom: -1px; right: -1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #33C75A; border: 2px solid white;
}
.chat-name { font-weight: 900; font-size: 14px; color: var(--text); }
.chat-status { font-size: 9px; font-weight: 800; color: #1E7A3E; letter-spacing: 1.5px; }
.chat-bubbles { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 4px; }
.bubble {
  max-width: 76%;
  padding: 7px 11px;
  font-size: 11.5px; line-height: 1.35;
  border-radius: 14px 14px 14px 3px;
  background: white;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(6px);
  animation: bubbleIn 0.4s cubic-bezier(.22,.61,.36,1) both;
}
.bubble.mine {
  align-self: flex-end;
  background: linear-gradient(110deg, var(--magenta-bright), var(--primary));
  color: white;
  border-radius: 14px 14px 3px 14px;
}
.bubble.b1 { animation-delay: 0.1s; }
.bubble.b2 { animation-delay: 0.5s; }
.bubble.b3 { animation-delay: 0.9s; }
.bubble.typing {
  background: white;
  padding: 10px 12px;
  display: inline-flex; gap: 3px;
  animation-delay: 1.3s;
  align-self: flex-start;
}
.bubble.typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gray);
  animation: typingDot 1.2s ease-in-out infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-3px); opacity: 1; }
}
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
.chat-composer {
  display: flex; gap: 6px; align-items: center;
  padding: 6px 4px 0;
}
.chat-input {
  flex: 1; height: 32px; border-radius: 100px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--primary-container);
  padding: 0 12px;
  font-size: 11px; color: var(--gray);
  display: flex; align-items: center;
}
.chat-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta-bright), var(--primary));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(154,2,205,0.35);
}

/* ===== Marquee strip ===== */
.marquee-strip {
  background: var(--text);
  color: white;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  margin: -20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-strip::before, .marquee-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--text), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, var(--text), transparent); }
.marquee-track {
  display: inline-flex; gap: 0;
  white-space: nowrap;
  animation: marqueeRun 45s linear infinite;
}
.marquee-track span {
  display: inline-flex; align-items: center;
  font-weight: 900; font-size: 32px;
  letter-spacing: -0.5px;
  padding: 0 28px;
}
.marquee-track span.alt { color: var(--gold); }
.marquee-track span.sep {
  color: var(--magenta-bright);
  font-size: 28px; padding: 0 10px;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== 3D tilt cards ===== */
.pillar, .rule, .safety-card, .problem-card {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .25s, border-color .25s;
}
.tilt { perspective: 800px; }

/* ===== Title word reveal ===== */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
}
.word.show { opacity: 1; transform: translateY(0); }

/* ===== Live activity ticker ===== */
.live-ticker {
  position: absolute;
  top: 38%; right: -8%;
  background: white;
  border-radius: 16px;
  padding: 10px 14px 10px 12px;
  box-shadow: 0 12px 28px rgba(154,2,205,0.25);
  border: 1.5px solid var(--primary-container);
  z-index: 5;
  transform: rotate(2deg);
  animation: floatY 6s ease-in-out -3s infinite;
  display: flex; align-items: center; gap: 10px;
}
.live-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #33C75A;
  position: relative; flex-shrink: 0;
}
.live-pulse::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #33C75A;
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.live-text {
  font-size: 12px; font-weight: 700; color: var(--text);
  line-height: 1.3;
}
.live-text b { color: var(--primary); font-weight: 900; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .cta-meta { justify-content: center; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .asym-grid { grid-template-columns: 1fr; }
  .deep-grid { grid-template-columns: 1fr; }
  .scrolly { grid-template-columns: 1fr; gap: 24px; }
  .scrolly-pin { position: relative; top: 0; height: auto; }
  .scrolly-step { min-height: auto; padding: 40px 0 40px 24px; }
  .safety-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-row { grid-template-columns: 1fr 80px 80px 80px 80px; }
  .compare-row .cell { padding: 14px 10px; font-size: 12px; }
  .compare-row .cell.label { font-size: 13px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .section { padding: 80px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 11px; }
  .compare-row { grid-template-columns: 1.6fr 50px 50px 50px 50px; }
  .compare-row .cell { padding: 12px 6px; font-size: 11px; }
  .compare-row .cell.label { font-size: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .float-tag { display: none; }
}