:root{
  color-scheme: dark;
  --bg0:#070a12;
  --bg1:#0f0b24;
  --card:rgba(17,24,39,.62);
  --card2:rgba(17,24,39,.42);
  --stroke:rgba(255,255,255,.10);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.58);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;

  --accentA:#ffd38a;
  --accentB:#c9a6ff;
  --accentC:#7fd7ff;
  --accentSolid:#ffd38a;
  --danger:#fb7185;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 700px at 20% 10%, rgba(201,166,255,.26), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(127,215,255,.16), transparent 55%),
    radial-gradient(900px 650px at 60% 85%, rgba(255,211,138,.18), transparent 60%),
    linear-gradient(145deg, var(--bg0), var(--bg1));
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: fixed;
  color:var(--text);
  overflow-x:hidden;
}

.js .reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.js .reveal[data-reveal="soft"]{transform: translateY(6px)}
.js .reveal[data-reveal="left"]{transform: translateX(-10px)}
.js .reveal[data-reveal="right"]{transform: translateX(10px)}

.bg-orbs{
  position:fixed;
  inset:-30vh -20vw;
  pointer-events:none;
  z-index:0;
  opacity:.65;
  filter: blur(45px) saturate(1.2);
  transform: translateZ(0);
}
.bg-orbs::before,
.bg-orbs::after{
  content:"";
  position:absolute;
  width:58vmax;
  height:58vmax;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(201,166,255,.55), rgba(201,166,255,0));
  animation: drift 18s ease-in-out infinite;
}
.bg-orbs::after{
  left:auto;
  right:5vmax;
  top:18vmax;
  width:52vmax;
  height:52vmax;
  background: radial-gradient(circle at 60% 40%, rgba(127,215,255,.45), rgba(127,215,255,0));
  animation-duration: 22s;
}
@keyframes drift{
  0%,100%{transform: translate(2vmax, 0vmax) scale(1)}
  50%{transform: translate(-4vmax, 3vmax) scale(1.05)}
}
@media (prefers-reduced-motion: reduce){
  .bg-orbs::before,.bg-orbs::after{animation:none}
  header, .hero{animation:none}
  .js .reveal, .js .reveal.is-visible{transition:none; transform:none; opacity:1}
  .btn, .card, details{transition:none}
  .btn.primary::before{display:none}
}

a{color:inherit}

.wrap{
  position:relative;
  z-index:1;
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
  padding:28px 0 80px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 16px;
  border:1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(17,24,39,.62), rgba(17,24,39,.40));
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(0,0,0,.28);
  animation: enterDown .55s ease both;
}
@keyframes enterDown{
  from{opacity:0; transform: translateY(-10px)}
  to{opacity:1; transform: translateY(0)}
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .name strong{font-size:14px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted2)}

nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
nav a{
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid transparent;
}
nav a:hover{
  color:var(--text);
  border-color: var(--stroke);
  background: rgba(255,255,255,.04);
}

.hero{
  margin-top:22px;
  padding:34px 28px;
  border:1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(17,24,39,.62), rgba(17,24,39,.32));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  animation: enterUp .65s ease .05s both;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(255,211,138,.18), rgba(201,166,255,.14), rgba(127,215,255,.12));
  opacity:.65;
  filter: blur(20px);
  pointer-events:none;
}
.hero > *{position:relative}
@keyframes enterUp{
  from{opacity:0; transform: translateY(14px)}
  to{opacity:1; transform: translateY(0)}
}

.hero-top{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}

.hero h1{
  margin:0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing:-.6px;
}
.hero p{
  margin:12px 0 0;
  color:var(--muted);
  font-size: clamp(14px, 1.45vw, 18px);
  line-height:1.6;
  max-width: 62ch;
}
.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.14);
  color:var(--muted2);
  font-size:12px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accentA), var(--accentB), var(--accentC));
  box-shadow: 0 0 0 4px rgba(255,255,255,.05);
}

.logo-card{
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  border-radius: calc(var(--radius) - 6px);
  padding:14px;
  overflow:hidden;
}
.logo-card picture{display:block}
.logo-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 650;
  border:1px solid transparent;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
}
.btn.is-disabled{
  opacity:.55;
  pointer-events:none;
  filter:saturate(.6);
}
.btn:focus-visible{outline: 3px solid rgba(127,215,255,.35); outline-offset: 2px;}
.btn.primary{
  color:#111827;
  background: linear-gradient(135deg, var(--accentA), var(--accentB));
  box-shadow: 0 14px 40px rgba(201,166,255,.20);
  position:relative;
  overflow:hidden;
}
.btn.primary::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.22), transparent 40%);
  transform: translateX(-20%);
  opacity: 0;
  transition: opacity .18s ease, transform .35s ease;
  pointer-events:none;
}
.btn.primary:hover::before{
  opacity: 1;
  transform: translateX(18%);
}
.btn.secondary{
  background: rgba(255,255,255,.06);
  border-color: var(--stroke);
  color: var(--text);
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.btn:active{transform: translateY(0px)}
.btn .icon{
  width:18px;
  height:18px;
  opacity:.92;
  display:block;
  overflow:visible;
  flex: 0 0 auto;
}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  position:relative;
  border:1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(17,24,39,.78), rgba(17,24,39,.52));
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding:1px;
  background: linear-gradient(135deg, rgba(255,211,138,.22), rgba(201,166,255,.18), rgba(127,215,255,.16));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events:none;
  opacity:.9;
}
.card h3{margin:0; font-size:16px; letter-spacing:-.2px}
.card p{margin:10px 0 0; color:var(--muted); line-height:1.6; font-size:14px}

section{
  margin-top:18px;
}
.section-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin:26px 0 10px;
}
.section-title h2{
  margin:0;
  font-size: 20px;
  letter-spacing:-.2px;
}
.section-title span{
  color:var(--muted2);
  font-size: 13px;
}

.faq{
  border:1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(17,24,39,.62), rgba(17,24,39,.30));
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
}
details{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
  padding: 12px 14px;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
details + details{margin-top:10px}
details:hover{
  background: rgba(0,0,0,.16);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.10);
}
summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight: 650;
}
summary::-webkit-details-marker{display:none}
summary .q{
  font-size: 15px;
}
summary .chev{
  width:18px;
  height:18px;
  opacity:.65;
  transform: rotate(0deg);
  transition: transform .14s ease;
}
details[open] summary .chev{transform: rotate(180deg)}
details .a{
  margin-top:10px;
  color:var(--muted);
  line-height:1.7;
  font-size: 14px;
  animation: fadeInUp .18s ease both;
}
details:not([open]) .a{animation:none}
@keyframes fadeInUp{
  from{opacity:0; transform: translateY(4px)}
  to{opacity:1; transform: translateY(0)}
}

.notice{
  margin-top:14px;
  font-size: 12px;
  color: var(--muted2);
}
.notice strong{color: rgba(255,255,255,.88)}
.notice a{color: rgba(127,215,255,.9)}

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  color: rgba(234,240,255,.9);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1px 6px;
  border-radius: 10px;
}

footer{
  margin-top:22px;
  padding:16px 0 0;
  color: var(--muted2);
  font-size: 12px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
footer .legal{
  max-width: 80ch;
  line-height:1.6;
}
footer .right{
  display:flex;
  gap:10px;
  align-items:center;
}
footer .right a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
footer .right a:hover{background: rgba(255,255,255,.06)}

@media (max-width: 960px){
  .hero-top{grid-template-columns:1fr}
  nav{display:none}
  header{border-radius: 18px}
}
@media (max-width: 820px){
  .grid{grid-template-columns:1fr}
  .wrap{width:min(1120px, calc(100% - 32px))}
  .hero{padding:26px 18px}
}
