:root{
  --bg: #070A12;
  --bg2:#0B1020;
  --card:#0F1630;
  --card2:#0C1227;
  --text:#EAF0FF;
  --muted:#A8B3D6;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);

  --accent:#7C5CFF;
  --accent2:#2EE7FF;
  --good:#34D399;

  --radius: 20px;
  --radius2: 28px;

  --container: 1120px;
  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

[data-theme="light"]{
  --bg:#F6F7FF;
  --bg2:#EEF0FF;
  --card:#FFFFFF;
  --card2:#FFFFFF;
  --text:#0B1020;
  --muted:#45507A;
  --line:rgba(11,16,32,.12);
  --shadow: 0 20px 60px rgba(7,10,18,.12);

  --accent:#5B4BFF;
  --accent2:#00B8D9;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 15% 10%, rgba(124,92,255,.30), transparent 60%),
    radial-gradient(900px 500px at 70% 0%, rgba(46,231,255,.18), transparent 60%),
    radial-gradient(900px 700px at 50% 90%, rgba(124,92,255,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button, input{ font: inherit; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.bg-glow{
  position: fixed;
  inset: -120px -120px auto -120px;
  height: 380px;
  background: radial-gradient(closest-side, rgba(124,92,255,.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index:-1;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,10,18,.75), rgba(7,10,18,.40));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
[data-theme="light"] .header{
  background: linear-gradient(180deg, rgba(246,247,255,.75), rgba(246,247,255,.35));
  border-bottom: 1px solid rgba(11,16,32,.08);
}

.header__inner{
  height: 76px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand__mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 12px 32px rgba(124,92,255,.35);
}
.brand__name{ font-size: 16px; }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav__link{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
[data-theme="light"] .nav__link:hover{
  background: rgba(11,16,32,.06);
}

.header__actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.ghost{
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  transition: .2s ease;
}
.ghost:hover{ transform: translateY(-1px); }
.ghost__text{ font-weight:700; font-size: 13px; color: var(--muted); }
.icon{ font-size: 16px; }

.btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 800;
  font-size: 14px;
  cursor:pointer;
  transition: .2s ease;
}
.btn--primary{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 44px rgba(124,92,255,.30);
}
.btn--primary:hover{ transform: translateY(-1px); filter: saturate(1.05); }
.btn--secondary{
  background: rgba(255,255,255,.04);
}
[data-theme="light"] .btn--secondary{
  background: rgba(11,16,32,.04);
}
.btn--secondary:hover{ transform: translateY(-1px); }
.btn--wide{ width: 100%; }

/* Burger + mobile */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  display:none;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width: 18px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 99px;
  opacity: .9;
}
.mobile{
  display:none;
}
.mobile.is-open{
  display:block;
}
.mobile__panel{
  border-top: 1px solid var(--line);
  padding: 14px 24px 18px;
  background: rgba(0,0,0,.12);
}
[data-theme="light"] .mobile__panel{
  background: rgba(255,255,255,.55);
}
.mobile__link{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
}
.mobile__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.mobile__cta{ margin-top: 8px; width: 100%; }

/* Hero */
.hero{
  padding: 56px 0 24px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--good));
  box-shadow: 0 0 0 6px rgba(52,211,153,.15);
}

.h1{
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -1px;
}
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.store-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.store{
  height: 56px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  display:flex;
  align-items:center;
  gap: 12px;
  cursor:pointer;
  transition: .2s ease;
  user-select:none;
}
.store:hover{ transform: translateY(-1px); }
.store__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  font-size: 18px;
}
[data-theme="light"] .store__icon{ background: rgba(11,16,32,.06); }
.store__top{
  display:block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.store__bottom{
  display:block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.stats{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.stat{
  min-width: 160px;
  flex: 1;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 14px 14px;
}
.stat__num{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.3px;
}
.stat__label{
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
  font-weight: 700;
}
.hint{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Hero art card */
.card{
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
[data-theme="light"] .card{
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
}

.card--art{
  min-height: 520px;
  padding: 18px;
}

.floating{
  position:absolute;
  inset:auto;
  border-radius: 999px;
  filter: blur(0px);
  opacity: .9;
}
.floating--1{
  width: 220px; height: 220px;
  top: -60px; left:-70px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.75), transparent 60%);
}
.floating--2{
  width: 240px; height: 240px;
  bottom: -90px; right:-70px;
  background: radial-gradient(circle at 30% 30%, rgba(46,231,255,.55), transparent 60%);
}
.floating--3{
  width: 140px; height: 140px;
  top: 40px; right: 30px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
}

.person{
  width: min(360px, 80%);
  margin: 24px auto 0;
  transform: translateY(8px);
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.35));
  animation: float 4.6s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(8px); }
  50%{ transform: translateY(-6px); }
}

.chip{
  position:absolute;
  display:flex;
  flex-direction:column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
[data-theme="light"] .chip{
  background: rgba(255,255,255,.55);
}
.chip--left{ left: 16px; top: 18px; }
.chip--right{ right: 16px; top: 86px; }
.chip__title{ font-weight: 900; font-size: 12px; }
.chip__text{ color: var(--muted); font-size: 12px; font-weight: 700; }

.mini{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  padding: 12px 12px;
}
[data-theme="light"] .mini{
  background: rgba(255,255,255,.55);
}
.mini__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.mini__title{ font-weight: 900; }
.mini__tag{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.mini__row{
  display:flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 0;
}
.mini__val{ color: var(--text); }
.mini__bar{
  margin-top: 8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
}
[data-theme="light"] .mini__bar{ background: rgba(11,16,32,.10); }
.mini__fill{
  width: 68%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: fill 3.8s ease-in-out infinite;
}
@keyframes fill{
  0%,100%{ width: 56%; }
  50%{ width: 78%; }
}

/* Sections */
.section{
  padding: 72px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
[data-theme="light"] .section--alt{
  background: linear-gradient(180deg, rgba(11,16,32,.04), transparent);
}

.section__head{
  margin-bottom: 22px;
}
.h2{
  margin:0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.5px;
}
.sub{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

/* Grids */
.grid{
  display:grid;
  gap: 14px;
}
.grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Feature cards */
.feature{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px 16px;
  transition: .2s ease;
}
[data-theme="light"] .feature{ background: rgba(255,255,255,.72); }
.feature:hover{ transform: translateY(-2px); }
.feature__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  margin-bottom: 12px;
  font-size: 18px;
}
[data-theme="light"] .feature__icon{ background: rgba(11,16,32,.06); }
.feature__title{
  margin:0 0 6px;
  font-weight: 900;
  letter-spacing: -0.2px;
}
.feature__text{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

/* Steps */
.steps{
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
[data-theme="light"] .step{ background: rgba(255,255,255,.72); }
.step__num{
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124,92,255,.25), rgba(46,231,255,.18));
  border: 1px solid var(--line);
}
.step__title{ margin: 0 0 4px; font-weight: 900; }
.step__text{ margin: 0; color: var(--muted); font-weight: 650; line-height: 1.6; }

/* Callout */
.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124,92,255,.16), rgba(46,231,255,.08));
}
.callout__title{ margin:0 0 6px; font-weight: 900; }
.callout__text{ margin:0; color: var(--muted); font-weight: 650; line-height: 1.6; }

/* Reviews */
.review{
  margin:0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px 16px;
}
[data-theme="light"] .review{ background: rgba(255,255,255,.72); }
.review__text{
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.7;
}
.review__who{
  display:flex;
  align-items:center;
  gap: 12px;
}
.avatar{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  font-weight: 900;
}
.review__name{ font-weight: 900; }
.review__meta{ color: var(--muted); font-weight: 700; font-size: 12px; }

/* FAQ */
.faq{
  display:grid;
  gap: 12px;
}
.qa{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}
[data-theme="light"] .qa{ background: rgba(255,255,255,.72); }
.qa__q{
  cursor:pointer;
  font-weight: 900;
  list-style: none;
  outline: none;
}
.qa__q::-webkit-details-marker{ display:none; }
.qa__a{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

/* Waitlist */
.waitlist{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.waitlist__copy{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px 16px;
}
[data-theme="light"] .waitlist__copy{ background: rgba(255,255,255,.72); }

.form{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}
.field__label{
  display:block;
  font-weight: 900;
  margin-bottom: 8px;
}
.input{
  width:100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
  transition: .2s ease;
}
[data-theme="light"] .input{
  background: rgba(255,255,255,.9);
}
.input:focus{
  border-color: rgba(124,92,255,.55);
  box-shadow: 0 0 0 6px rgba(124,92,255,.12);
}
.field__hint{
  display:block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}
.check input{ transform: translateY(2px); }
.form__msg{
  margin: 0;
  font-weight: 800;
  color: var(--muted);
  min-height: 20px;
}

.waitlist__side{
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  overflow:hidden;
}
.glass{
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px 16px;
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(46,231,255,.08));
}
.glass__title{ font-weight: 900; margin-bottom: 10px; }
.list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}
.badge{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
[data-theme="light"] .badge{ background: rgba(255,255,255,.55); }
.badge__spark{
  width: 38px;
  height: 38px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
}
.badge__top{ font-weight: 900; }
.badge__bottom{ color: var(--muted); font-weight: 750; font-size: 12px; }

.noise{
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .55;
}

/* Footer */
.footer{
  padding: 36px 0 26px;
  border-top: 1px solid var(--line);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items:flex-start;
}
.brand--footer .brand__mark{ width: 34px; height:34px; }
.footer__note{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 46ch;
  line-height: 1.6;
}
.footer__right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.footer__link{
  color: var(--muted);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  transition: .2s ease;
}
.footer__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
[data-theme="light"] .footer__link:hover{ background: rgba(11,16,32,.06); }

.footer__bottom{
  margin-top: 18px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events:none;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: .25s ease;
  z-index: 60;
}
[data-theme="light"] .toast{ background: rgba(255,255,255,.65); }
.toast.is-open{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent2));
  box-shadow: 0 0 0 6px rgba(46,231,255,.14);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .card--art{ min-height: 480px; }
  .grid--3{ grid-template-columns: 1fr; }
  .waitlist{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .burger{ display:inline-block; }
}

@media (max-width: 520px){
  .header__inner{ height: 70px; }
  .ghost__text{ display:none; }
  .stat{ min-width: 140px; }
  .card--art{ padding: 14px; }
  .chip--right{ top: 72px; }
}
