/* ============================================================
   MIGO — Landing Page Styles
   ============================================================ */


/* ── FONTS ── */

@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}


/* ── VARIABLES ── */

:root {
  --bg-deep:     #0F1613;
  --bg-base:     #1B221E;
  --bg-card:     #232D28;
  --bg-elevated: #2A3530;
  --pink:        #E77292;
  --pink-light:  #FCE3EA;
  --pink-dark:   #803F50;
  --mint:        #B6F2DC;
  --mint-light:  #E3FCF3;
  --mint-dark:   #608074;
  --blue:        #7AB6DA;
  --text-primary:   #E8F0EC;
  --text-secondary: #8FA898;
  --text-muted:     #5A7066;
  --border:         rgba(176, 230, 200, 0.08);
  --border-accent:  rgba(183, 242, 220, 0.18);
}


/* ── RESET ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}


/* ── NOISE OVERLAY ── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}


/* ── AMBIENT BLOBS ── */

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: var(--pink);  top: -200px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: var(--mint);  top: 40vh;  right: -200px; }
.blob-3 { width: 400px; height: 400px; background: var(--blue);  bottom: 10vh; left: 20%; }


/* ── NAV ── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(15, 22, 19, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: clamp(28px, 3.5vw, 38px);
  width: auto;
}

.nav-cta {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-cta:hover { background: var(--bg-card); border-color: var(--mint-dark); }


/* ── EVENT BANNER ── */

.event-banner {
  position: relative;
  z-index: 99;
  margin-top: 73px;
  background: linear-gradient(135deg, rgba(231,114,146,0.18) 0%, rgba(182,242,220,0.12) 100%);
  border-bottom: 1px solid rgba(231,114,146,0.35);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-chip {
  background: rgba(231,114,146,0.18);
  border: 1px solid rgba(231,114,146,0.4);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-banner-text {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.event-banner-text strong { color: var(--mint); }

.event-banner-meta {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-shrink: 0;
}

.event-banner-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.event-banner-meta svg { flex-shrink: 0; }

.event-banner-cta {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.event-banner-cta:hover { background: #d4607e; transform: translateY(-1px); }


/* ── HERO ── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183, 242, 220, 0.08);
  border: 1px solid rgba(183, 242, 220, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em     { font-style: normal; color: var(--pink); }
.hero h1 strong { font-style: normal; color: var(--mint); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.2s both;
}


/* ── COUNTER ── */

.counter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.25s both;
}

.counter-avatars { display: flex; }

.counter-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.counter-avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #E77292, #803F50); }
.av2 { background: linear-gradient(135deg, #B6F2DC, #608074); }
.av3 { background: linear-gradient(135deg, #7AB6DA, #476A80); }
.av4 { background: linear-gradient(135deg, #E77292, #7AB6DA); }

.counter-text { font-size: 13px; color: var(--text-secondary); }
.counter-text strong { color: var(--mint); }


/* ── WAITLIST FORM ── */

.waitlist {
  display: flex;
  gap: 12px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 20px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.waitlist input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist input::placeholder { color: var(--text-muted); }
.waitlist input:focus { border-color: var(--mint-dark); }

.waitlist button {
  background: var(--mint);
  color: #0F1613;
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.waitlist button:hover  { background: var(--mint-light); transform: translateY(-1px); }
.waitlist button:active { transform: translateY(0); }

.waitlist-meta {
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeUp 0.6s ease 0.35s both;
}

.waitlist-meta span { color: var(--pink); font-weight: 600; }

.waitlist-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(183, 242, 220, 0.08);
  border: 1px solid rgba(183, 242, 220, 0.2);
  border-radius: 14px;
  padding: 16px 24px;
  color: var(--mint);
  font-weight: 500;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 20px;
}


/* ── PHONE MOCKUPS ── */

.mockups-section {
  position: relative;
  z-index: 1;
  padding: 40px 24px 120px;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.4s both;
}

.mockups-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.phone-frame {
  width: 240px;
  border-radius: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(183,242,220,0.06);
  position: relative;
  flex-shrink: 0;
}

.phone-frame.center {
  width: 270px;
  z-index: 3;
  transform: translateY(-20px);
  box-shadow: 0 60px 120px rgba(0,0,0,0.6), 0 0 40px rgba(183,242,220,0.06);
}

.phone-frame.left {
  transform: translateX(30px) rotate(-4deg) translateY(10px);
  z-index: 2;
  opacity: 0.85;
}

.phone-frame.right {
  transform: translateX(-30px) rotate(4deg) translateY(10px);
  z-index: 2;
  opacity: 0.85;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0a0f0d;
  border-radius: 100px;
  z-index: 10;
}

/* Mockup: Mi Tablero */
.mockup-tablero { padding: 52px 20px 24px; min-height: 420px; }
.mockup-tablero .screen-title { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

.balance-card { background: var(--bg-elevated); border-radius: 20px; padding: 20px; margin-bottom: 12px; }
.balance-label  { font-size: 12px; color: var(--text-secondary); margin-bottom: 4px; }
.balance-amount { font-size: 28px; font-weight: 800; color: var(--mint); letter-spacing: -0.02em; }

.balance-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin: 10px 0 6px; overflow: hidden; }
.balance-bar-fill { height: 100%; width: 68%; background: linear-gradient(90deg, var(--pink), var(--mint)); border-radius: 2px; }

.balance-meta { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); }
.balance-meta .spent { color: var(--pink); }

.mini-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-card-info .amount { font-size: 16px; font-weight: 700; }
.mini-card-info .label  { font-size: 10px; color: var(--text-secondary); }

.mini-card .plus-btn {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300;
}
.plus-mint { background: rgba(182,242,220,0.12); color: var(--mint); }
.plus-pink { background: rgba(231,114,146,0.12); color: var(--pink); }

/* Mockup: Gastos */
.mockup-gastos { padding: 52px 20px 24px; min-height: 380px; }
.mockup-gastos .screen-title { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.gastos-card { background: var(--bg-elevated); border-radius: 20px; padding: 18px; }
.gastos-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.gastos-header .month { font-size: 14px; font-weight: 700; }
.gastos-header .ver   { font-size: 11px; color: var(--pink); }

.gasto-row { margin-bottom: 14px; }
.gasto-row-top { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 5px; }
.gasto-name   { font-weight: 600; }
.gasto-pct    { color: var(--text-muted); margin-left: 4px; }
.gasto-amount { color: var(--text-secondary); font-size: 10px; }

.gasto-bar-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.gasto-bar-fill  { height: 100%; background: var(--pink); border-radius: 2px; }

/* Mockup: Metas */
.mockup-metas { padding: 52px 16px 20px; min-height: 420px; }
.mockup-metas .screen-title { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.metas-card { background: var(--bg-elevated); border-radius: 20px; padding: 18px; }

.gauge-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 14px; }
.gauge-month  { font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.gauge-svg    { width: 140px; height: 70px; }
.gauge-amount { font-size: 20px; font-weight: 800; margin-top: 4px; letter-spacing: -0.02em; }
.gauge-total  { font-size: 10px; color: var(--text-muted); }

.meta-row { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; }
.meta-row-top { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 6px; }
.meta-row-name { font-weight: 600; }
.meta-row-pct  { color: var(--blue); }

.meta-bar-track { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.meta-bar-fill  { height: 100%; background: var(--blue); border-radius: 2px; }

.gestionar-btn {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 10px;
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* ── EVENT SECTION ── */

.event-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(231,114,146,0.25);
  border-radius: 32px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(231,114,146,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231,114,146,0.12);
  border: 1px solid rgba(231,114,146,0.3);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.event-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.event-card > div > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.event-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.event-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.event-detail-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.event-detail-icon svg { width: 16px; height: 16px; }

.event-detail strong { color: var(--text-primary); }

.event-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.event-register-btn {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.event-register-btn:hover {
  background: #d4607e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(231,114,146,0.3);
}

/* ── Event recap card (right side) ── */
.event-recap-card {
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 220px;
}

.recap-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(182,242,220,0.08);
  border: 1px solid rgba(182,242,220,0.22);
  padding: 5px 14px;
  border-radius: 8px;
}

.recap-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.recap-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  width: 100%;
  text-align: center;
}

.recap-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.recap-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.recap-divider {
  width: 100%;
  height: 1px;
  background: var(--border-accent);
}

.recap-foot {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* Secondary outline button */
.event-btn-outline {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.14) !important;
  color: var(--text-secondary) !important;
  box-shadow: none !important;
}
.event-btn-outline:hover {
  border-color: rgba(255,255,255,0.3) !important;
  color: var(--text-primary) !important;
  background: rgba(255,255,255,0.04) !important;
  transform: translateY(-2px) !important;
}

.event-countdown { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }

.countdown-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  min-width: 160px;
}

.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 8px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; }

.countdown-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.02em;
  line-height: 1;
}

.countdown-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.event-date-badge {
  background: rgba(182,242,220,0.08);
  border: 1px solid rgba(182,242,220,0.18);
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
}

.event-date-badge .day   { font-size: 32px; font-weight: 800; color: var(--mint); line-height: 1; }
.event-date-badge .month { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; }


/* ── FEATURES ── */

.features {
  position: relative;
  z-index: 1;
  padding: 80px 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; }

.icon-pink { background: rgba(231,114,146,0.12); }
.icon-mint { background: rgba(182,242,220,0.10); }
.icon-blue { background: rgba(122,182,218,0.12); }

.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }


/* ── WAITLIST BOTTOM ── */

.waitlist-bottom {
  position: relative;
  z-index: 1;
  padding: 80px 24px 120px;
  text-align: center;
}

.waitlist-bottom-inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 32px;
  padding: 60px 48px;
}

.waitlist-bottom h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.waitlist-bottom p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.platforms { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.platform-soon {
  background: rgba(231,114,146,0.12);
  color: var(--pink);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}


/* ── FOOTER ── */

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-primary);
}

.footer-logo img {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
}

.footer-copy { font-size: 13px; color: var(--text-muted); }

.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--text-primary); }


/* ── ANIMATIONS ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  nav { padding: 16px 24px; }

  .event-banner { padding: 14px 16px; gap: 12px; }
  .event-banner-left { flex-wrap: wrap; justify-content: center; }
  .event-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }
  .event-card > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .event-card > div > p { max-width: 100%; }
  .event-details { align-items: center; }
  .event-btn-group { flex-direction: column; align-self: stretch; }
  .event-register-btn { width: 100%; }
  .event-countdown { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .event-recap-card { width: 100%; align-items: center; padding: 24px 20px; }
  .recap-stats { flex-direction: row; align-items: center; justify-content: center; gap: 0; width: 100%; }
  .recap-stat { flex: 1; padding: 8px 8px; }
  .recap-num { font-size: 24px; }
  .recap-divider { width: 1px; height: 40px; flex-shrink: 0; }
  .recap-foot { width: 100%; text-align: center; }

  .phone-frame        { width: 200px; }
  .phone-frame.center { width: 220px; }
  .phone-frame.left   { transform: translateX(20px)  rotate(-4deg) translateY(10px); }
  .phone-frame.right  { transform: translateX(-20px) rotate(4deg)  translateY(10px); }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .waitlist-bottom-inner { padding: 40px 24px; }

  .waitlist { flex-direction: column; }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .phone-frame.left, .phone-frame.right { display: none; }
  .phone-frame.center { width: 260px; transform: none; }
}
