:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);
  --border2: rgba(255,255,255,0.16);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.52);
  --accent: #49E1FF;      /* neon-cyan (Stripe-friendly, not crypto-green) */
  --accent2: #8A6CFF;     /* subtle violet */
  --shadow: 0 20px 70px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 900px at 50% 0%, rgba(73,225,255,0.10), transparent 60%),
              radial-gradient(900px 700px at 15% 35%, rgba(138,108,255,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x:hidden;
}


/* subtle moving grid texture */
.bg-grid{
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity: 0.10;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 15%, black 0%, transparent 70%);
  transform: translateZ(0);
}

.bg-glow{
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.18;
  background: radial-gradient(circle, var(--accent), transparent 60%);
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  pointer-events:none;
}

a{ color: var(--text); text-decoration:none; }
a:hover{ color: white; }

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

/* NAV */
.navbar{
  position: sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-badge{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(73,225,255,0.15), rgba(138,108,255,0.12));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.nav-links{
  display:flex;
  gap: 22px;
  align-items:center;
}

.nav-links a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.nav-links a:hover{
  color: white;
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

/* HERO */
.hero{
  padding: 70px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items:center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}

.hero-grid:before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(600px 320px at 25% 15%, rgba(73,225,255,0.14), transparent 60%),
    radial-gradient(520px 280px at 85% 20%, rgba(138,108,255,0.14), transparent 60%);
  pointer-events:none;
}

.hero-left{
  position:relative;
  z-index:1;
}

.hero h1{
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero p{
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.hero-cta{
  display:flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap:wrap;
}

.btn{
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  transition: 180ms ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.btn-primary{
  border-color: rgba(73,225,255,0.35);
  background: linear-gradient(135deg, rgba(73,225,255,0.18), rgba(138,108,255,0.12));
  box-shadow: 0 16px 44px rgba(73,225,255,0.08);
}

.btn-primary:hover{
  border-color: rgba(73,225,255,0.55);
}

.kpi-row{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap:wrap;
}

.kpi{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
}

.kpi b{ color:white; font-weight:700; }

/* right side panel */
.hero-right{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.logo-wrap {
    width: min(300px, 100%);
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

.logo-wrap img{
  width: 100%;
  height: auto;
  display:block;
}

/* SECTIONS */
.section{
  padding: 44px 0;
}

.section h2{
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section p{
  color: var(--muted);
  max-width: 78ch;
  margin: 0 auto;
}

.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transition: 200ms ease;
  position:relative;
  overflow:hidden;
}

.card:before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 220px at 20% 10%, rgba(73,225,255,0.10), transparent 55%);
  opacity:0;
  transition: 200ms ease;
  pointer-events:none;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

.card:hover:before{ opacity:1; }

.card h3{
  font-size: 16px;
  margin-bottom: 8px;
}

.card p{
  color: var(--muted2);
  font-size: 14px;
  margin: 0;
}

/* DISCLAIMER + FOOTER */
.notice{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}

.notice p{ color: var(--muted); }

.footer{
  padding: 34px 0 54px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 18px;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}

.footer a{ color: var(--muted); }
.footer a:hover{ color: white; }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .nav-links{ gap: 10px; }
}

.nav-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
