:root {
  --green: #1ef000;
  --green-dim: #17b800;
  --green-glow: rgba(30,240,0,0.18);
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --text: #ffffff;
  --muted: #888;
  --border: rgba(30,240,0,0.15);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background:var(--bg); color:var(--text); font-family:'Inter',sans-serif; overflow-x:hidden; }

/* LOGO */
.logo-svg { display:flex; align-items:center; text-decoration:none; }
.logo-svg img { height:36px; width:auto; }

/* LEGAL MODAL */
.modal-overlay {
  display:none; position:fixed; inset:0; z-index:999;
  background:rgba(0,0,0,0.85); backdrop-filter:blur(8px);
  align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal {
  background:var(--bg2); border:1px solid var(--border); border-radius:18px;
  padding:40px; max-width:680px; width:100%; max-height:80vh; overflow-y:auto;
  position:relative;
}
.modal h2 { font-size:1.6rem; margin-bottom:20px; }
.modal p { color:var(--muted); font-size:.9rem; line-height:1.7; }
.modal-close {
  position:absolute; top:18px; right:20px; background:none; border:none;
  color:var(--muted); font-size:1.4rem; cursor:pointer; transition:color .2s;
}
.modal-close:hover { color:var(--green); }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 6%; display:flex; align-items:center; justify-content:space-between;
  background:rgba(8,8,8,0.85); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a { color:var(--muted); text-decoration:none; font-size:.9rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--green); }
.nav-cta {
  background:var(--green); color:#000; padding:10px 22px;
  border-radius:8px; font-weight:700; font-size:.88rem;
  text-decoration:none; transition:transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 0 20px var(--green-glow); }

/* HERO */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:120px 6% 80px;
  position:relative; overflow:hidden;
}
.hero-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle, rgba(30,240,0,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(30,240,0,0.08); border:1px solid var(--border);
  color:var(--green); padding:6px 16px; border-radius:50px;
  font-size:.8rem; font-weight:600; margin-bottom:28px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content:''; width:7px; height:7px; background:var(--green); border-radius:50%; animation:pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size:clamp(2.8rem,6vw,5.2rem); font-weight:900; line-height:1.1;
  margin-bottom:24px; animation: fadeUp .6s .1s ease both;
}
.hero h1 .green { color:var(--green); }
.hero p {
  font-size:1.15rem; color:var(--muted); max-width:560px; margin:0 auto 40px;
  line-height:1.7; animation: fadeUp .6s .2s ease both;
}
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; animation: fadeUp .6s .3s ease both; }
.btn-primary {
  background:var(--green); color:#000; padding:14px 32px;
  border-radius:10px; font-weight:800; font-size:1rem;
  text-decoration:none; transition:all .2s;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(30,240,0,0.35); }
.btn-secondary {
  background:transparent; color:var(--text); padding:14px 32px;
  border-radius:10px; font-weight:600; font-size:1rem;
  text-decoration:none; border:1px solid rgba(255,255,255,0.15); transition:all .2s;
}
.btn-secondary:hover { border-color:var(--green); color:var(--green); }

/* PLATFORM LOGOS */
.platforms {
  padding:50px 6%; display:flex; flex-direction:column; align-items:center; gap:16px;
  border-bottom:1px solid var(--border);
}
.platforms p { font-size:.8rem; color:var(--muted); text-transform:uppercase; letter-spacing:2px; }
.platform-list { display:flex; gap:36px; flex-wrap:wrap; justify-content:center; }
.plat {
  display:flex; align-items:center; gap:8px;
  color:rgba(255,255,255,0.3); font-weight:700; font-size:.95rem;
  transition:color .2s;
}
.plat:hover { color:var(--green); }
.plat svg { width:20px; height:20px; }

/* SECTIONS */
section { padding:90px 6%; }
.section-tag {
  display:inline-block; color:var(--green); font-size:.8rem;
  font-weight:700; text-transform:uppercase; letter-spacing:2px; margin-bottom:14px;
}
h2 { font-size:clamp(1.9rem,3.5vw,2.8rem); font-weight:900; line-height:1.2; margin-bottom:16px; }
.sub { color:var(--muted); font-size:1.05rem; line-height:1.7; max-width:580px; margin-bottom:56px; }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
.service-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:16px;
  padding:32px 28px; transition:all .25s; position:relative; overflow:hidden;
}
.service-card:hover { border-color:var(--green); transform:translateY(-4px); box-shadow:0 12px 40px var(--green-glow); }
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent, var(--green), transparent);
  opacity:0; transition:opacity .25s;
}
.service-card:hover::before { opacity:1; }
.svc-icon { font-size:2rem; margin-bottom:18px; }
.service-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.service-card p { color:var(--muted); font-size:.9rem; line-height:1.65; }

/* WHY */
.why { background:var(--bg2); }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.why-item {
  background:var(--bg3); border:1px solid var(--border);
  border-radius:14px; padding:28px 24px; display:flex; gap:16px; align-items:flex-start;
  transition:border-color .2s;
}
.why-item:hover { border-color:var(--green); }
.why-icon {
  width:42px; height:42px; background:rgba(30,240,0,0.1);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; flex-shrink:0;
}
.why-item h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.why-item p { color:var(--muted); font-size:.88rem; line-height:1.6; }

/* STEPS */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; position:relative; }
.steps-grid::before {
  content:''; position:absolute; top:36px; left:16%; right:16%;
  height:1px; background:linear-gradient(90deg, transparent, var(--green), transparent);
  opacity:.3;
}
.step { text-align:center; padding:32px 20px; }
.step-num {
  width:72px; height:72px; border-radius:50%;
  background:rgba(30,240,0,0.08); border:2px solid var(--green);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; font-weight:900; color:var(--green);
  margin:0 auto 24px; position:relative; z-index:1;
}
.step h3 { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.step p { color:var(--muted); font-size:.88rem; line-height:1.65; }

/* CTA */
.cta-section {
  text-align:center; background:var(--bg2);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta-section h2 { max-width:600px; margin:0 auto 16px; }
.cta-section p { color:var(--muted); max-width:480px; margin:0 auto 36px; font-size:1rem; line-height:1.7; }
.cta-email {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--green); font-weight:600; font-size:.95rem;
  text-decoration:none; margin-top:20px;
}
.cta-email:hover { text-decoration:underline; }

/* FOOTER */
footer {
  padding:50px 6% 30px; display:grid;
  grid-template-columns:2fr 1fr 1fr; gap:40px;
  border-top:1px solid var(--border);
}
.footer-brand p { color:var(--muted); font-size:.88rem; line-height:1.7; margin-top:14px; max-width:300px; }
.footer-col h5 { font-size:.85rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:16px; }
.footer-col a { display:block; color:rgba(255,255,255,.55); font-size:.88rem; text-decoration:none; margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:var(--green); }
.footer-bottom {
  padding:20px 6% 24px; display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--border); color:var(--muted); font-size:.8rem; flex-wrap:wrap; gap:10px;
}
.social-links { display:flex; gap:14px; }
.social-links a {
  width:36px; height:36px; border-radius:8px; background:var(--bg3);
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  color:var(--muted); text-decoration:none; font-size:.85rem; transition:all .2s;
}
.social-links a:hover { border-color:var(--green); color:var(--green); }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

@media(max-width:768px) {
  .nav-links { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .steps-grid { grid-template-columns:1fr; }
  .steps-grid::before { display:none; }
  footer { grid-template-columns:1fr; }
}
