/* style.css */
:root{
  --bg:#060812;
  --bg2:#070A14;
  --fg:#EAF0FF;
  --mut: rgba(234,240,255,.74);
  --mut2: rgba(234,240,255,.58);

  --a:#58D6FF;
  --b:#7C5CFF;
  --c:#00F5C4;

  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);

  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --ease: cubic-bezier(.2,.95,.2,1);

  --max: 1180px;
  --pad: clamp(16px, 4vw, 38px);

  --headerH: 64px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;

  background:
    radial-gradient(1100px 700px at 15% 8%, rgba(124,92,255,.28), transparent 62%),
    radial-gradient(1050px 680px at 85% 12%, rgba(88,214,255,.22), transparent 62%),
    radial-gradient(1000px 650px at 50% 92%, rgba(0,245,196,.14), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 60%, #040510 100%);
  background-repeat:no-repeat;
  background-attachment: fixed,fixed,fixed,fixed;
}
img{
  max-width: 100%;
  height: auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: var(--pad); top: 16px; width:auto; height:auto;
  z-index: 999999;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  outline: none;
}
:focus-visible{
  outline: 2px solid rgba(88,214,255,.75);
  outline-offset: 3px;
  border-radius: 14px;
}

/* Scroll offset for sticky header */
section{ scroll-margin-top: calc(var(--headerH) + 18px); }

#fx{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events:none;
  opacity: .88;
  filter: saturate(1.06) contrast(1.06);
}
.gridlines{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events:none;
  opacity: .35;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(closest-side at 50% 14%, black 0%, transparent 75%);
}
.noise{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events:none;
  opacity: .05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="260" height="260"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="260" height="260" filter="url(%23n)" opacity=".45"/></svg>');
  mix-blend-mode: overlay;
}

.wrap{ position: relative; z-index: 1; }
.container{
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6,8,18,.52);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
  flex-wrap: nowrap;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--fg);
  user-select:none;
  min-width: 220px;
  flex: 0 1 auto;
}
.mark{
  width: 38px; height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(18px 18px at 28% 30%, rgba(255,255,255,.78), transparent 55%),
    linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 18px 42px rgba(124,92,255,.18);
  position: relative;
  overflow: hidden;
  flex: none;
}
.mark::after{
  content:"";
  position:absolute; inset:-60%;
  background: conic-gradient(from 180deg, rgba(255,255,255,.0), rgba(255,255,255,.24), rgba(255,255,255,.0));
  animation: spin 6s linear infinite;
  opacity: .55;
}
@keyframes spin { to{ transform: rotate(360deg); } }

.brand strong{
  display:block;
  font-family: Sora, Inter, system-ui;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 14px;
  line-height: 1.1;
}
.brand span{
  display:block;
  font-weight: 700;
  font-size: 12px;
  color: var(--mut2);
  margin-top: 2px;
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.navlinks a{
  color: var(--mut);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 14px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.navlinks a:hover{
  color: var(--fg);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.navCta{ display:flex; gap:10px; align-items:center; flex:0 0 auto; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--fg);
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  will-change: transform;
  white-space: nowrap;
  flex: none;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn svg{ width: 16px; height: 16px; opacity: .95; }

.btn-primary{
  border-color: rgba(88,214,255,.24);
  background: linear-gradient(135deg, rgba(88,214,255,.14), rgba(124,92,255,.14));
  box-shadow: 0 22px 60px rgba(124,92,255,.12);
}
.btn-primary:hover{
  border-color: rgba(88,214,255,.38);
  box-shadow: 0 28px 74px rgba(88,214,255,.12);
}
.btn-activate{
  padding: 16px 28px;
  border-radius: 18px;
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  font-size: 15px;
  letter-spacing: .1px;
  border-color: rgba(88,214,255,.24);
  background:
    linear-gradient(135deg, rgba(88,214,255,.20), rgba(124,92,255,.14)),
    rgba(255,255,255,.03);
  box-shadow: 0 18px 48px rgba(88,214,255,.10);
}
.btn-activate:hover{
  border-color: rgba(88,214,255,.38);
  background:
    linear-gradient(135deg, rgba(88,214,255,.26), rgba(124,92,255,.18)),
    rgba(255,255,255,.05);
  box-shadow: 0 22px 58px rgba(88,214,255,.14);
}

/* Sticky CTA Dock */
.dock{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 80;
  width: min(860px, calc(100% - 22px));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  padding: 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.dock .left{
  display:flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 6px;
  min-width: 0;
}
.dock .left b{
  font-family: Sora, Inter, system-ui;
  letter-spacing: -.2px;
  font-weight: 950;
  font-size: 12px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.dock .left span{
  color: var(--mut2);
  font-weight: 850;
  font-size: 12px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.dock .right{
  display:flex;
  gap: 10px;
  flex-wrap: nowrap;
  flex: none;
}
.dock .btn{ box-shadow: none; }
.dockHidden{ opacity: 0; transform: translateX(-50%) translateY(10px); pointer-events: none; }

/* HERO */
.hero{
  position: relative;
  min-height: calc(100svh - var(--headerH));
  display:flex;
  align-items: center;
  padding: clamp(34px, 6vw, 78px) 0;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 50% 12%, rgba(255,255,255,.04), transparent 70%),
    radial-gradient(1100px 600px at 50% 90%, rgba(0,245,196,.06), transparent 75%);
  opacity: .9;
}

.heroGrid{
  position: relative;
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--mut);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .3px;
  width: fit-content;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.dot{
  width: 9px; height: 9px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(88,214,255,.9));
  box-shadow: 0 0 0 6px rgba(88,214,255,.12);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); box-shadow: 0 0 0 6px rgba(88,214,255,.12); }
  50%{ transform: scale(1.15); box-shadow: 0 0 0 10px rgba(124,92,255,.12); }
}

h1{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(38px, 5.2vw, 74px);
  letter-spacing: -1px;
  line-height: .98;
  margin: 14px 0 12px 0;
}
.grad{
  background: linear-gradient(90deg, rgba(88,214,255,1), rgba(124,92,255,1), rgba(0,245,196,1));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.sub{
  color: var(--mut);
  font-weight: 650;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 76ch;
}

.heroActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.micro{
  color: var(--mut2);
  font-weight: 850;
  font-size: 12px;
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
}
.micro svg{ width: 16px; height: 16px; opacity: .9; }
.microText{ min-width:0; }
.microStrong{ color:rgba(234,240,255,.86); }
.microMuted{ color:var(--mut2); }

.miniRow{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Hero visual */
.scene{
  position: relative;
  height: min(520px, 62vh);
  width: 100%;
  overflow: visible;
}
.ring{
  position:absolute;
  left: 50%; top: 50%;
  width: min(520px, 92vw);
  height: min(520px, 92vw);
  transform: translate(-50%,-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02), transparent 60%),
    conic-gradient(from 120deg, rgba(88,214,255,.0), rgba(88,214,255,.14), rgba(124,92,255,.14), rgba(0,245,196,.10), rgba(88,214,255,.0));
  opacity: .9;
  animation: slowspin 18s linear infinite;
}
@keyframes slowspin { to{ transform: translate(-50%,-50%) rotate(360deg); } }
.beam{
  position:absolute;
  left: 50%; top: 50%;
  width: min(560px, 95vw);
  height: 2px;
  transform: translate(-50%,-50%) rotate(-14deg);
  background: linear-gradient(90deg, transparent, rgba(88,214,255,.45), rgba(124,92,255,.35), transparent);
  opacity: .8;
}
.beam2{
  transform: translate(-50%,-50%) rotate(26deg);
  background: linear-gradient(90deg, transparent, rgba(0,245,196,.35), rgba(88,214,255,.30), transparent);
  opacity: .65;
}
.orbs{ position:absolute; inset: 0; pointer-events:none; }
.orb{
  position:absolute;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.92), rgba(88,214,255,.78));
  box-shadow: 0 0 0 10px rgba(88,214,255,.10), 0 24px 60px rgba(124,92,255,.14);
  opacity: .95;
  transform: translate(-50%,-50%);
}
.orb::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(124,92,255,.22), transparent 65%);
  opacity: .75;
}

section{
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}
.sectionTitle{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(24px, 3.4vw, 48px);
  letter-spacing: -.6px;
  line-height: 1.05;
  margin: 0 0 12px 0;
}
.sectionLead{
  color: var(--mut);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 90ch;
}

.band{
  margin-top: 22px;
  padding: clamp(18px, 3.2vw, 34px) 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bandGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}
.band h3{
  font-family: Sora, Inter, system-ui;
  margin: 0 0 10px 0;
  font-size: clamp(18px, 2.4vw, 30px);
  letter-spacing: -.35px;
  line-height: 1.1;
}
.band p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14px;
  max-width: 86ch;
}

/* Chips */
.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.84);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.chip i{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 0 0 6px rgba(88,214,255,.10);
  flex: none;
}
.chip.ok{ border-color: rgba(0,245,196,.22); background: rgba(0,245,196,.07); }
.chip.inf{ border-color: rgba(88,214,255,.22); background: rgba(88,214,255,.07); }
.chip.pro{ border-color: rgba(124,92,255,.22); background: rgba(124,92,255,.07); }

/* NEW: Cards */
.cards2{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.cards3{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.detailGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.card{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  padding: 16px 16px 14px 16px;
}
.cardTall{ padding: 18px; }
.cardHead{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.cardIcon{
  width: 14px; height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 0 0 7px rgba(88,214,255,.10);
  flex: none;
}
.cardIcon.ok{ background: linear-gradient(135deg, rgba(0,245,196,.95), rgba(88,214,255,.95)); box-shadow: 0 0 0 7px rgba(0,245,196,.10); }
.cardIcon.inf{ background: linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95)); }
.cardIcon.pro{ background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(88,214,255,.95)); box-shadow: 0 0 0 7px rgba(124,92,255,.10); }

.cardTitle{
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  letter-spacing: -.2px;
  font-size: 16px;
  margin: 0;
}
.cardText{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
}
.bullets{
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: rgba(234,240,255,.78);
  font-weight: 750;
  font-size: 12.5px;
  line-height: 1.55;
}
.bullets li{ margin: 6px 0; }
.cardNote{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: rgba(234,240,255,.78);
  font-weight: 750;
  font-size: 12px;
  line-height: 1.55;
}

/* NEW: Product shots */
.shotsGrid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.shotCard{
  min-width: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  padding: 14px;
}
.shotTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}
.shotTag{
  display:inline-flex;
  align-items:center;
  flex: none;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight: 950;
  font-size: 12px;
  color: rgba(234,240,255,.86);
}
.shotTag i{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 0 0 6px rgba(88,214,255,.10);
}
.shotTag.ok{ border-color: rgba(0,245,196,.22); background: rgba(0,245,196,.07); }
.shotTag.inf{ border-color: rgba(88,214,255,.22); background: rgba(88,214,255,.07); }
.shotTag.pro{ border-color: rgba(124,92,255,.22); background: rgba(124,92,255,.07); }

.shotHint{
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(234,240,255,.60);
  font-weight: 850;
  font-size: 11.5px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: min(42ch, 100%);
}
.shotFrame{
  height: 170px;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 200px at 20% 15%, rgba(88,214,255,.18), transparent 60%),
    radial-gradient(500px 220px at 80% 25%, rgba(124,92,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.06));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.22);
  overflow: hidden;
}
.shotImage{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.shotImagePortal{
  object-position: center 20%;
}
.shotText{
  margin: 12px 0 0 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
}

/* NEW: Callout */
.callout{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.calloutTitle{
  display:block;
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  letter-spacing: -.2px;
  color: rgba(234,240,255,.90);
}
.calloutText{
  color: rgba(234,240,255,.68);
  font-weight: 800;
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 4px;
  max-width: 80ch;
}
.calloutActions{ display:flex; gap:10px; flex-wrap: wrap; }

/* How */
.how{ overflow:hidden; }
.how::before{
  content:"";
  position:absolute; inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 20% 24%, rgba(88,214,255,.10), transparent 62%),
    radial-gradient(900px 420px at 80% 24%, rgba(124,92,255,.10), transparent 62%),
    radial-gradient(1100px 520px at 50% 86%, rgba(0,245,196,.06), transparent 70%);
  opacity: .95;
}

.howGrid{
  position: relative;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  margin-top: 18px;
}
.sticky{
  position: sticky;
  top: calc(var(--headerH) + 18px);
  padding-bottom: 40px;
}
.sticky .k{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(234,240,255,.78);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .28px;
  text-transform: uppercase;
}
.sticky .k::before{
  content:"";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, rgba(88,214,255,.8), rgba(124,92,255,.8));
  opacity: .9;
}
.sticky .big{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(28px, 3.6vw, 56px);
  letter-spacing: -.8px;
  line-height: 1.02;
  margin: 14px 0 12px 0;
}
.sticky .note{
  color: var(--mut);
  font-weight: 650;
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 16px 0;
  max-width: 68ch;
}
.stackBtns{ display:flex; gap:12px; flex-wrap:wrap; }
.sticky .quick{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.fineprint{
  margin-top: 14px;
  color: rgba(234,240,255,.60);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.55;
}

.story{
  position: relative;
  padding-left: 34px;
}
.rail{
  position: absolute;
  left: 12px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.rail .fill{
  position:absolute;
  left:0; top:0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(88,214,255,.9), rgba(124,92,255,.85), rgba(0,245,196,.70));
  border-radius: 2px;
  transition: height .6s var(--ease);
}

.beat{
  padding: 18px 0 42px 0;
  position: relative;
}
.beat:last-child{ padding-bottom: 0; }
.beat .n{
  position:absolute;
  left: -34px;
  top: 22px;
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.86);
  font-weight: 950;
  font-size: 12px;
  transform: translateY(6px);
  opacity: .65;
  transition: transform .6s var(--ease), opacity .6s var(--ease), border-color .6s var(--ease);
}
.beat h3{
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  letter-spacing: -.2px;
  font-size: clamp(18px, 2vw, 24px);
  margin: 0 0 6px 0;
  line-height: 1.15;
}
.beat p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14px;
  max-width: 92ch;
}
.beat .em{
  display:block;
  margin-top: 10px;
  color: rgba(234,240,255,.78);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .2px;
}
.beat.active .n{
  opacity: 1;
  transform: translateY(0) scale(1.02);
  border-color: rgba(88,214,255,.30);
}

.portal::before, .domains::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 420px at 18% 28%, rgba(0,245,196,.08), transparent 62%),
    radial-gradient(900px 420px at 82% 30%, rgba(124,92,255,.09), transparent 62%);
  opacity: .95;
  pointer-events:none;
}

.portalGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  margin-top: 18px;
}

/* Pricing */
.pricingGrid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.priceCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.priceCard.featuredPlan{
  border-color: rgba(0,245,196,.30);
  background: linear-gradient(180deg, rgba(0,245,196,.08), rgba(255,255,255,.04));
}
.priceTop h3{
  font-family: Sora, Inter, system-ui;
  margin: 8px 0 6px 0;
  font-size: 18px;
  letter-spacing: -.2px;
}
.priceTop p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.6;
  font-size: 13.5px;
}
.planPrice{
  margin-top: 12px;
  display:flex;
  align-items:flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.planPrice .currency{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .2px;
  line-height: 1;
}
.planPrice .amount{
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: -.8px;
  line-height: .95;
}
.planPrice .period{
  color: var(--mut);
  font-weight: 850;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 4px;
}
.planFeatures{
  margin-top: 4px;
}
.planFeatures li{
  margin: 7px 0;
  font-size: 13px;
}
.priceBadge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight: 950;
  font-size: 12px;
  color: rgba(234,240,255,.86);
}
.priceBadge.ok{ border-color: rgba(0,245,196,.22); background: rgba(0,245,196,.07); }
.priceBadge.inf{ border-color: rgba(88,214,255,.22); background: rgba(88,214,255,.07); }
.priceBadge.pro{ border-color: rgba(124,92,255,.22); background: rgba(124,92,255,.07); }
.priceCta{ margin-top: auto; }

/* FAQ */
.faq{
  margin-top: 22px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.faq details{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
  padding: 10px 12px;
}
.faq summary{
  cursor: pointer;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  font-weight: 950;
  color: rgba(234,240,255,.88);
  padding: 8px 6px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+";
  font-weight: 950;
  color: rgba(234,240,255,.60);
  width: 24px;
  height: 24px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  flex: none;
}
.faq details[open] summary::after{ content:"–"; }
.faqBody{
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 13.5px;
  padding: 2px 6px 10px 6px;
}

/* Domains */
.domainsWrap{
  margin-top: 22px;
  padding: clamp(18px, 3.2vw, 34px) 0;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.diagram{
  position: relative;
  height: min(360px, 42vh);
  width: 100%;
  overflow: hidden;
}
.node{
  position:absolute;
  display:flex;
  flex-direction: column;
  gap: 6px;
  width: min(340px, 88vw);
  background: transparent;
}
.node .tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight: 950;
  font-size: 12px;
  color: rgba(234,240,255,.86);
}
.node .tag i{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(88,214,255,.95), rgba(124,92,255,.95));
  box-shadow: 0 0 0 6px rgba(88,214,255,.10);
}
.node b{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: -.3px;
  line-height: 1.1;
}
.node p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.6;
  font-size: 14px;
  max-width: 70ch;
}
.node.web{ left: clamp(16px, 3vw, 36px); top: clamp(18px, 4vw, 38px); }
.node.admin{ right: clamp(16px, 3vw, 36px); top: 18%; text-align: right; align-items: flex-end; }
.node.portalN{ left: clamp(16px, 3vw, 36px); bottom: clamp(18px, 4vw, 38px); }

.linksvg{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events:none;
  opacity: .95;
}
.path{
  fill: none;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,.25));
}
.path.p1{ stroke: rgba(88,214,255,.55); }
.path.p2{ stroke: rgba(124,92,255,.52); }
.path.p3{ stroke: rgba(0,245,196,.38); }

.domainsBottom{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(14px, 3vw, 34px);
  align-items: start;
}
.domainsBottom h3{
  font-family: Sora, Inter, system-ui;
  margin: 0 0 8px 0;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -.35px;
  line-height: 1.1;
}
.domainsBottom p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14px;
  max-width: 92ch;
}
.miniActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.final{
  padding-top: clamp(90px, 10vw, 130px);
  padding-bottom: clamp(120px, 12vw, 160px);
  overflow: hidden;
}
.final::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 460px at 50% 30%, rgba(88,214,255,.14), transparent 65%),
    radial-gradient(900px 460px at 50% 75%, rgba(0,245,196,.08), transparent 70%);
  opacity: .95;
}
.finalGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}
.final h2{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(30px, 4.2vw, 64px);
  letter-spacing: -1px;
  line-height: .98;
  margin: 0 0 12px 0;
}
.final p{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 15px;
  max-width: 92ch;
}
.final .ctaStack{
  display:flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.final .ctaStack .btn{ width: 100%; }

footer{
  padding: 26px 0 88px 0;
  color: rgba(234,240,255,.62);
  font-weight: 800;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
}
.foot a{
  color: rgba(234,240,255,.68);
  text-decoration:none;
  font-weight: 850;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.foot a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.reveal{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(7px);
  transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
  will-change: transform, opacity, filter;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Section backgrounds */
.portal::before, .domains::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(900px 420px at 18% 28%, rgba(0,245,196,.08), transparent 62%),
    radial-gradient(900px 420px at 82% 30%, rgba(124,92,255,.09), transparent 62%);
  opacity: .95;
  pointer-events:none;
}

/* Responsive */
@media (max-width: 1100px){
  .cards2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .scene{ height: min(480px, 58vh); }
  .bandGrid{ grid-template-columns: 1fr; }
  .chips{ justify-content: flex-start; }
  .howGrid{ grid-template-columns: 1fr; }
  .sticky{ position: relative; top: auto; }
  .portalGrid{ grid-template-columns: 1fr; }
  .detailGrid{ grid-template-columns: 1fr; }
  .domainsBottom{ grid-template-columns: 1fr; }
  .miniActions{ justify-content: flex-start; }
  .dock .left{ display:none; }
  .dock{ width: min(720px, calc(100% - 18px)); }
  .node.admin{
    text-align:left; align-items:flex-start;
    right: auto; left: clamp(16px, 3vw, 36px); top: 36%;
  }
  .linksvg{ opacity: .82; }
  .shotsGrid{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }
  .pricingGrid{ grid-template-columns: 1fr; }
}

/* MOBILE: ocultar opciones, solo logo + registrate en la MISMA fila */
@media (max-width: 760px){
  .navlinks{ display:none; }
  .brand{ min-width: 0; }
  .mark{ width: 34px; height: 34px; border-radius: 13px; }
  .brand strong{ font-size: 13px; }
  .brand span{ font-size: 11px; }
  header .btn{ padding: 11px 12px; }
  .shotTop{ align-items:flex-start; }
  .shotHint{ max-width: 100%; }
}

@media (max-width: 420px){
  .btn-activate{
    width: 100%;
    font-size: 14px;
    padding: 14px 18px;
  }
  .linksvg{ display:none; }
  .heroActions{ flex-direction: column; align-items: stretch; }
  .heroActions .btn{ width: 100%; }
  .kicker{ width: 100%; justify-content: center; }
  .dock{ padding: 10px; }
  .dock .right{ width: 100%; flex-direction: column; }
  .dock .right .btn{ width: 100%; }
  header .btn{ padding: 10px 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .reveal{ transition:none !important; opacity:1 !important; transform:none !important; filter:none !important; }
  #fx{ display:none !important; }
  .mark::after, .ring{ animation:none !important; }
  .path{ stroke-dashoffset: 0 !important; }
}
/* PROXIMAMENTE */
.soonGrid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.soonCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  padding: 18px;
  min-width: 0;
}

.soonMedia{
  margin: 0 0 14px 0;
  height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 220px at 20% 15%, rgba(88,214,255,.18), transparent 60%),
    radial-gradient(520px 240px at 80% 25%, rgba(124,92,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.06));
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.22);
  overflow: hidden;
}

.soonImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.soonHead{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}

.soonTitle{
  font-family: Sora, Inter, system-ui;
  font-weight: 950;
  letter-spacing: -.4px;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.05;
  margin: 0;
}

.soonText{
  margin: 0;
  color: var(--mut);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14px;
}

.soonTagRow{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px){
  .soonGrid{
    grid-template-columns: 1fr;
  }
}