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

:root {
  --dark:     #070915;
  --navy:     #0A0C1E;
  --card:     #0D0F2A;
  --light-bg: #F5F6FA;
  --border-d: rgba(255,255,255,0.08);
  --border-l: rgba(13,15,43,0.10);
  --purple:   #8B40F5;
  --teal:     #00C2AB;
  --cyan:     #00BFFF;
  --white:    #FFFFFF;
  --text-d:   rgba(255,255,255,0.9);
  --muted-d:  rgba(255,255,255,0.70);
  --text-l:   #0D0F2B;
  --muted-l:  rgba(13,15,43,0.52);
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text-d); font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 64px;
  background: rgba(7,9,21,0.85); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--muted-d); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.btn-ghost {
  background: linear-gradient(135deg, #4A15A8 0%, #6B28D4 55%, #7D35E8 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(107,40,212,0.4);
  transition: box-shadow .25s, opacity .2s;
}
.btn-ghost:hover {
  opacity: .9;
  box-shadow: 0 0 28px rgba(107,40,212,0.65);
}
.nav-acceder {
  background: rgba(139,64,245,0.18); border: 1px solid rgba(139,64,245,0.5);
  color: #c084fc; padding: 7px 16px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.nav-acceder:hover { background: rgba(139,64,245,0.32); }
@media(max-width:900px){ nav { padding: 14px 24px; } .nav-links { display: none; } }

/* ─── MODAL ─── */
#modal-overlay { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(7,9,21,0.88); backdrop-filter: blur(20px); align-items: center; justify-content: center; }
#modal-overlay.open { display: flex; }
.modal-box { background: #0D0F2B; border: 1px solid rgba(139,64,245,0.22); border-radius: 20px; padding: 44px 48px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 0 80px rgba(139,64,245,0.15); animation: mup .24s ease; }
@keyframes mup { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; color: var(--muted-d); font-size: 18px; transition: color .15s; }
.modal-close:hover { color: #fff; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.modal-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.modal-desc { font-size: 14px; color: var(--muted-d); margin-bottom: 28px; line-height: 1.6; }
.modal-back { background: none; border: none; color: var(--muted-d); font-size: 13px; font-family: inherit; cursor: pointer; margin-bottom: 24px; padding: 0; display: flex; align-items: center; gap: 6px; transition: color .15s; }
.modal-back:hover { color: #fff; }
.type-list { display: flex; flex-direction: column; gap: 10px; }
.type-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--border-d); border-radius: 12px; cursor: pointer; background: rgba(255,255,255,0.03); transition: border-color .2s, background .2s; }
.type-card:hover { border-color: rgba(139,64,245,0.45); background: rgba(139,64,245,0.07); }
.tc-ico { font-size: 22px; flex-shrink: 0; }
.tc-name { font-size: 14px; font-weight: 700; color: #fff; }
.tc-sub  { font-size: 12px; color: var(--muted-d); margin-top: 2px; }
.tc-arr  { color: var(--muted-d); font-size: 14px; margin-left: auto; }
.mfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mfield label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-d); }
.mfield input { background: rgba(255,255,255,0.06); border: 1px solid var(--border-d); border-radius: 8px; padding: 11px 14px; font-size: 14px; color: #fff; font-family: inherit; outline: none; transition: border-color .2s; }
.mfield input:focus { border-color: rgba(139,64,245,0.6); }
.mfield input::placeholder { color: rgba(255,255,255,0.22); }
.btn-submit { width: 100%; background: var(--purple); color: #fff; border: none; border-radius: 8px; padding: 12px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; margin-top: 6px; transition: opacity .2s; }
.btn-submit:hover { opacity: .88; }
.m-error { font-size: 12px; color: #FF5555; margin-top: 8px; display: none; }
.m-error.show { display: block; }
.portal-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.portal-link { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--border-d); border-radius: 10px; text-decoration: none; background: rgba(255,255,255,0.03); transition: border-color .2s, background .2s; }
.portal-link:hover { border-color: rgba(139,64,245,0.4); background: rgba(139,64,245,0.06); }
.pl-ico { font-size: 18px; flex-shrink: 0; }
.pl-name { font-size: 14px; font-weight: 700; color: #fff; }
.pl-sub  { font-size: 11px; color: var(--muted-d); margin-top: 1px; }
.pl-arr  { color: var(--muted-d); font-size: 13px; margin-left: auto; }

/* ─── HERO / LAUNCH ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 110px 40px 80px; overflow: hidden; background: var(--dark);
}
#wc { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 48px; }

.hero-brand { text-align: center; }
.hero-logo { height: 266px; display: block; margin: 0 auto 20px; filter: drop-shadow(0 0 40px rgba(139,64,245,0.55)); }
.hero-sub-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-d); }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-outline-ghost {
  display: inline-block; padding: 13px 24px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
  transition: border-color .2s, color .2s;
}
.btn-outline-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Countdown card */
.cd-card {
  width: 100%; max-width: 794px;
  background: var(--card);
  border: 1px solid rgba(139,64,245,0.16);
  border-radius: 24px; overflow: hidden; position: relative;
}
.cd-card::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(139,64,245,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cd-inner { display: flex; align-items: stretch; position: relative; z-index: 1; }
.cd-l {
  flex: 1; min-width: 0; padding: 41px 38px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.cd-coming { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 8px var(--purple); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.cd-title { font-size: 34px; font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin-bottom: 14px; }
.cd-title em { font-style: normal; color: var(--purple); }
.cd-desc { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 32px; max-width: 340px; }
.cd-btn { display: inline-block; background: var(--purple); color: #fff; padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.02em; box-shadow: 0 0 20px rgba(139,64,245,0.38); transition: opacity .2s, box-shadow .2s; }
.cd-btn:hover { opacity: .88; box-shadow: 0 0 32px rgba(139,64,245,0.55); }

.cd-r {
  width: 306px; flex-shrink: 0; padding: 41px 30px;
  background: rgba(0,0,0,0.2);
  display: flex; flex-direction: column; justify-content: space-between;
}
.cd-faltan { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 18px; }
.cd-digits { display: flex; align-items: flex-start; gap: 0; width: 100%; }
.cd-unit { text-align: center; flex: 1; min-width: 0; }
.cd-num { display: block; font-size: 43px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }
.cd-lbl { display: block; font-size: 8px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-d); margin-top: 6px; }
.cd-sep { font-size: 40px; font-weight: 300; color: rgba(139,64,245,0.4); line-height: 1; flex-shrink: 0; padding: 0 3px; }
.cd-launched { display: none; font-size: 16px; font-weight: 700; color: var(--purple); }
.cd-launched.show { display: block; }
.cd-icons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); }
.cd-icon { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--muted-d); font-weight: 500; white-space: nowrap; }
.cd-icon span { font-size: 12px; }
@media(max-width:900px){
  .cd-inner { flex-direction: column; }
  .cd-l { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 40px 28px; }
  .cd-r { width: 100%; padding: 32px 28px; }
  .cd-title { font-size: 32px; }
  .cd-num { font-size: 40px; }
}

/* ─── PRESENCE ─── */
.pbar {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 64px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
}
.pb-item { display: flex; align-items: center; gap: 8px; padding: 8px 28px; border-right: 1px solid rgba(255,255,255,0.06); }
.pb-item:last-child { border-right: none; }
.pb-flag { font-size: 19px; }
.pb-name { font-size: 12px; color: var(--muted-d); font-weight: 500; }
.pb-tag  { font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); border: 1px solid rgba(139,64,245,0.3); border-radius: 4px; padding: 2px 6px; }
@media(max-width:700px){ .pbar { padding: 20px 24px; } .pb-item { border-right: none; padding: 8px 14px; } }

/* ─── WAVE CARD ANIMATION ─── (subtle, brand style) */
@keyframes cardWave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.dark-card {
  position: relative; overflow: hidden;
  background: linear-gradient(-55deg, #080A1C, #0D0F2A, #09112A, #080A1C);
  background-size: 300% 300%;
  animation: cardWave 14s ease infinite;
}

/* ─── LIGHT SECTIONS ─── */
.lsection { background: var(--light-bg); }
.linner { max-width: 1200px; margin: 0 auto; padding: 96px 64px; }
@media(max-width:900px){ .linner { padding: 68px 24px; } }

.eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); display: block; margin-bottom: 16px; }
.eyebrow-centered { margin-bottom: 20px; text-align: center; }
.sh2 { font-size: clamp(30px, 3.8vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; color: var(--text-l); margin-bottom: 16px; }
.sh2 em { font-style: normal; color: var(--purple); }
.sp  { font-size: 16px; color: var(--muted-l); line-height: 1.75; max-width: 560px; margin-bottom: 52px; }

/* Grid gaps on light background */
.grid-gap { display: grid; gap: 2px; background: rgba(13,15,43,0.1); border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.grid-gap--flush { margin-bottom: 0; }
.grid-gap-3 { grid-template-columns: repeat(3,1fr); }
.grid-gap-2 { grid-template-columns: repeat(2,1fr); }
@media(max-width:900px){ .grid-gap-3 { grid-template-columns: 1fr; } }
@media(max-width:700px){ .grid-gap-2 { grid-template-columns: 1fr; } }

/* Dark module card */
.mod { padding: 40px 36px; }
.mod-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 18px; }
.mb-blue   { background: rgba(59,130,246,0.12); color: #60A5FA; border: 1px solid rgba(59,130,246,0.22); }
.mb-teal   { background: rgba(0,194,171,0.12);  color: #2DD4BF; border: 1px solid rgba(0,194,171,0.22); }
.mb-purple { background: rgba(139,64,245,0.12); color: #C084FC; border: 1px solid rgba(139,64,245,0.22); }
.mb-red    { background: rgba(239,68,68,0.1);   color: #F87171; border: 1px solid rgba(239,68,68,0.22); }
.mb-orange { background: rgba(249,115,22,0.1);  color: #FB923C; border: 1px solid rgba(249,115,22,0.22); }
.mod h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.mod p  { font-size: 13px; color: var(--muted-d); line-height: 1.7; margin-bottom: 14px; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mod-tag { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--muted-d); }

/* Pillar cards */
.pillar { padding: 44px 36px; border-top: 2px solid transparent; }
.pil-blue   { border-top-color: #3B82F6; }
.pil-teal   { border-top-color: var(--teal); }
.pil-purple { border-top-color: var(--purple); }
.p-num { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.p-ico { font-size: 30px; margin-bottom: 18px; }
.pillar h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pillar p  { font-size: 13px; color: var(--muted-d); line-height: 1.7; }

/* Diff cards */
.diff-c { padding: 44px 40px; }
.diff-c.hl { background: linear-gradient(-55deg, #14082C, #180A32, #130828, #14082C) !important; background-size: 300% 300% !important; animation: cardWave 14s ease infinite; }
.diff-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.hl .diff-label { color: #A78BFA; }
.diff-text  { font-size: 15px; color: var(--muted-d); font-style: italic; line-height: 1.75; }
.diff-items { display: flex; flex-direction: column; gap: 13px; }
.diff-item  { font-size: 14px; color: rgba(255,255,255,0.82); display: flex; align-items: center; gap: 10px; }
.diff-item::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--teal); box-shadow:0 0 6px var(--teal); flex-shrink:0; }

/* Vertical cards */
.vert { padding: 44px 40px; border-top: 2px solid transparent; }
.vert-blue   { border-top-color: #3B82F6; }
.vert-purple { border-top-color: var(--purple); }
.v-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.vert-blue .v-label   { color: #60A5FA; }
.vert-purple .v-label { color: #C084FC; }
.vert h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.vert > p { font-size: 13px; color: var(--muted-d); line-height: 1.7; margin-bottom: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: 10px; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }

/* Stat cells */
.stat { padding: 48px 40px; text-align: center; }
.stat-n { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--purple); margin-bottom: 8px; }
.stat-n-orange { color: #F97316; }
.stat-l { font-size: 13px; color: var(--muted-d); }

/* ─── PRODUCT DARK HEADER ─── */
.prod-header {
  background: var(--dark); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 72px 40px 48px;
}
.ph-blue   { background: radial-gradient(ellipse at 50% 70%, rgba(59,130,246,0.15) 0%, transparent 62%), var(--dark); }
.ph-red    { background: radial-gradient(ellipse at 50% 70%, rgba(239,68,68,0.14) 0%, transparent 62%), var(--dark); }
.ph-orange { background: radial-gradient(ellipse at 50% 70%, rgba(249,115,22,0.14) 0%, transparent 62%), var(--dark); }
.prod-logo { position: relative; z-index: 1; display: block; object-fit: contain; }
.pl-cop    { height: 380px; max-width: 760px; }
.pl-dim    { height: 200px; max-width: 520px; }
.pl-wic    { height: 190px; max-width: 500px; transform: rotate(90deg); }

/* ─── PRODUCT LIGHT SECTION ─── */
.prod-section { background: var(--light-bg); }
.prod-inner { max-width: 1200px; margin: 0 auto; padding: 72px 64px 96px; }
@media(max-width:900px){ .prod-inner { padding: 52px 24px 72px; } }
.ps-ey-blue   { color: #3B82F6 !important; }
.ps-ey-red    { color: #EF4444 !important; }
.ps-ey-orange { color: #F97316 !important; }
.ps-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.ps-h2 { font-size: clamp(26px,3.2vw,40px); font-weight: 900; letter-spacing: -0.03em; color: var(--text-l); margin-bottom: 12px; line-height: 1.1; }
.ps-p  { font-size: 15px; color: var(--muted-l); line-height: 1.75; max-width: 480px; }
.ps-link { font-size: 14px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; transition: gap .2s; }
.ps-link svg { width: 13px; height: 13px; }
.ps-link:hover { gap: 10px; }
.lk-blue   { color: #3B82F6; }
.lk-red    { color: #EF4444; }
.lk-orange { color: #F97316; }

.partner-note { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.14); border-radius: 14px; padding: 20px 28px; font-size: 14px; color: var(--muted-l); line-height: 1.75; max-width: 680px; margin-bottom: 44px; }

.ps-bottom { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(13,15,43,0.1); }
.ps-bottom-text { font-size: 14px; color: var(--muted-l); }
.ps-link2 { font-weight: 700; text-decoration: none; transition: opacity .2s; }
.ps-link2:hover { opacity: .75; }
.big-btn { display: inline-block; background: var(--purple); color: #fff; padding: 12px 28px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.big-btn:hover { opacity: .88; }
.big-btn-lg { font-size: 15px; padding: 15px 44px; }

/* ─── CLOSING (dark) ─── */
.closing {
  background: var(--dark); text-align: center;
  padding: 120px 40px; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.closing::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(139,64,245,0.12) 0%, transparent 65%); pointer-events: none; }
.closing-in { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.closing h2 { font-size: clamp(34px,5vw,62px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.08; color: #fff; margin-bottom: 24px; }
.closing h2 em { font-style: normal; color: var(--purple); }
.closing p { font-size: 17px; color: var(--muted-d); max-width: 480px; margin: 0 auto 52px; line-height: 1.75; }
.closing-note { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 52px; font-style: italic; }
.closing-note em { color: var(--teal); font-style: normal; }

/* word rotator */
.rot-wrap { display: inline-block; min-width: 200px; }
.rot-word { position: absolute; left: 50%; transform: translateX(-50%); opacity: 0; white-space: nowrap; color: var(--purple); transition: opacity .4s, transform .4s; }
.rot-word.active { position: relative; left: auto; transform: none; opacity: 1; }
.rot-word.exit { opacity: 0; transform: translateY(-10px); }

/* ─── FOOTER ─── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 34px 64px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer img { height: 34px; }
footer p { font-size: 12px; color: rgba(255,255,255,0.22); }
.foot-links { display: flex; gap: 22px; }
.foot-links a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: rgba(255,255,255,0.55); }
@media(max-width:900px){ footer { flex-direction: column; align-items: flex-start; padding: 28px 24px; } }

/* ─── SCROLL FADE ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.fu { opacity: 0; }
.fu.v { animation: fadeUp .65s ease forwards; }
.fu.d1 { animation-delay: .1s; }
.fu.d2 { animation-delay: .22s; }
