:root{
  --bg:#05020d;
  --bg2:#080316;
  --text:#f2edff;
  --muted:rgba(242,237,255,.78);
  --violet:#a56bff;
  --violet2:#5b2cff;
  --glass:rgba(10,5,22,.22);
  --stroke:rgba(165,107,255,.14);
  --shadow: 0 28px 110px rgba(0,0,0,.60);
  --radius: 26px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial;
  background:
    radial-gradient(1200px 700px at 15% 20%, rgba(165,107,255,.22), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(91,44,255,.16), transparent 65%),
    radial-gradient(1200px 900px at 55% 80%, rgba(165,107,255,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; }
img{ max-width:100%; display:block; }

.wrap{ min-height:100vh; position:relative; }

#neuro{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .75;
}
.veil{
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 650px at 18% 35%, rgba(165,107,255,.14), transparent 60%),
    radial-gradient(900px 650px at 88% 25%, rgba(91,44,255,.11), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
  pointer-events:none;
}

.header{
  position: sticky;
  top:0;
  z-index: 6;
  padding: 14px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.10));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(165,107,255,.08);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  min-width: 0;
}
.logo{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(165,107,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
  flex: 0 0 auto;
}
.logo img{ width:100%; height:100%; object-fit:cover; border-radius:18px; }

.brand__txt{ display:flex; flex-direction:column; line-height:1.06; min-width: 0; }
.brand__name{ font-size: 19px; font-weight: 950; letter-spacing:.2px; }
.brand__tag{
  margin-top: 3px;
  font-size: 12px;
  color: rgba(242,237,255,.72);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  max-width: 62vw;
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}

.ico{ width: 18px; height: 18px; display:inline-block; flex: 0 0 auto; }

.hdrBtn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(165,107,255,.14);
  background: rgba(10,5,22,.20);
  text-decoration:none;
  color: rgba(242,237,255,.88);
  font-weight: 950;
  letter-spacing: .1px;
}
.hdrBtn--primary{
  background: linear-gradient(135deg, rgba(165,107,255,.22), rgba(91,44,255,.10));
  border-color: rgba(165,107,255,.24);
  box-shadow: 0 22px 90px rgba(91,44,255,.20);
}

.main{
  position: relative;
  z-index: 2;
  padding: 16px 14px 10px;
  max-width: 1080px;
  margin: 0 auto;
}

.layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.wheelWrap{ display:none; } /* mobile-first */

.tabsMobile{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 6px 0 0;
  margin: 0;
}
.tab{
  appearance:none;
  border: 1px solid rgba(165,107,255,.12);
  background: rgba(10,5,22,.22);
  color: rgba(242,237,255,.88);
  font-weight: 950;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 16px;
  cursor:pointer;
  white-space: nowrap;
  flex: 1 1 calc(50% - 10px);
  min-width: 0;
}
.tab[data-i="4"]{ flex-basis: 100%; }
.tab.is-active{
  background: linear-gradient(135deg, rgba(165,107,255,.18), rgba(91,44,255,.08));
  border-color: rgba(165,107,255,.18);
  box-shadow: 0 18px 60px rgba(91,44,255,.14);
}

.panel{
  border-radius: var(--radius);
  background: rgba(10,5,22,.18);
  border: 1px solid rgba(165,107,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  backdrop-filter: blur(16px);
}

.panelTop{
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(165,107,255,.08);
  background: linear-gradient(180deg, rgba(10,5,22,.20), rgba(10,5,22,.12));
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(165,107,255,.12);
  background: rgba(10,5,22,.18);
  color: rgba(242,237,255,.78);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .3px;
}

.title{
  margin: 14px 0 8px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.5px;
}
.lead{
  margin: 0 0 0;
  color: rgba(242,237,255,.78);
  font-size: 14px;
  line-height: 1.6;
}

.panelActions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.act{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(165,107,255,.14);
  background: rgba(10,5,22,.20);
  color: rgba(242,237,255,.88);
  font-weight: 950;
  letter-spacing: .1px;
  text-decoration:none;
  cursor:pointer;
}
.act--primary{
  background: linear-gradient(135deg, rgba(165,107,255,.22), rgba(91,44,255,.10));
  border-color: rgba(165,107,255,.24);
  box-shadow: 0 22px 90px rgba(91,44,255,.18);
}

.panelScroll{
  padding: 14px 16px 16px;
}

.bullets{ display:flex; flex-direction:column; gap: 10px; margin: 0; }
.bullet{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(165,107,255,.10);
  background: rgba(10,5,22,.18);
}
.bullet__dot{
  margin-top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(242,237,255,.30);
  box-shadow: 0 0 0 3px rgba(165,107,255,.10), 0 0 18px rgba(165,107,255,.22);
  flex: 0 0 auto;
}
.bullet__txt{ font-size: 14px; line-height: 1.55; color: rgba(242,237,255,.86); }
.bullet__txt b{ color: rgba(242,237,255,.96); }

.steps{ display:grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.step{
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(165,107,255,.10);
  background: rgba(10,5,22,.18);
}
.step__n{ font-weight: 1000; letter-spacing: .6px; color: rgba(165,107,255,.90); font-size: 12px; }
.step__t{ margin-top: 6px; font-weight: 1000; font-size: 16px; }
.step__d{ margin-top: 6px; color: rgba(242,237,255,.78); line-height: 1.55; font-size: 13.5px; }

.miniNote{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px dashed rgba(165,107,255,.16);
  background: rgba(10,5,22,.12);
  color: rgba(242,237,255,.74);
  line-height: 1.55;
  font-size: 13.5px;
}

.example{
  margin-top: 12px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(165,107,255,.10);
  background: rgba(10,5,22,.18);
}
.example img{ width: 100%; height: auto; display:block; }
.example .cap{
  padding: 12px 12px;
  color: rgba(242,237,255,.78);
  font-size: 13.5px;
  line-height: 1.6;
}

.contactRow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.contactItem{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(165,107,255,.10);
  background: rgba(10,5,22,.22);
  text-decoration:none;
  color: rgba(242,237,255,.92);
}
.contactTxt{ display:flex; flex-direction:column; gap: 2px; min-width: 0; }
.contactK{ font-size: 12px; color: rgba(242,237,255,.64); font-weight: 900; }
.contactV{
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .1px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

/* QR: centered on its own "canvas" */
.qrGrid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.qrCard{
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 26px 90px rgba(0,0,0,.45);
  padding: 16px;
  text-decoration: none;
  color: rgba(10,5,22,.75);
}
.qrCanvas{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qrCanvas img{
  width: 86%;
  height: 86%;
  object-fit: contain;
  border-radius: 16px;
}
.qrLabel{
  margin-top: 10px;
  font-weight: 950;
  letter-spacing: .2px;
  text-align: center;
}

/* small helper text */
.note{
  margin-top: 12px;
  color: rgba(242,237,255,.72);
  font-size: 13.5px;
  line-height: 1.55;
}

.footer{
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: rgba(242,237,255,.55);
  font-size: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.footer a{
  color: rgba(242,237,255,.62);
  text-decoration:none;
  border-bottom: 1px dashed rgba(165,107,255,.22);
}
