
:root{
  --bg:#050505;
  --surface:#111111;
  --surface-2:#181818;
  --line:rgba(255,255,255,.1);
  --text:#ffffff;
  --muted:#c7c7c7;
  --red:#ff2c2c;
  --green:#21d04b;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.page{overflow:hidden}
.container{width:min(100% - 32px, 420px);margin:0 auto}
.hero{
  position:relative;
  min-height:100svh;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(33,208,75,.18), transparent 32%),
    radial-gradient(circle at bottom, rgba(255,44,44,.18), transparent 34%),
    #000;
}
.glow{
  position:absolute;border-radius:999px;filter:blur(60px);opacity:.4;pointer-events:none
}
.glow-red{width:180px;height:180px;right:-40px;top:60px;background:var(--red)}
.glow-green{width:180px;height:180px;left:-40px;bottom:120px;background:var(--green)}
.topbar{
  display:flex;align-items:center;justify-content:space-between;padding-top:24px
}
.pill,.mini-label,.badge,.section-tag{letter-spacing:.2em;text-transform:uppercase}
.pill{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 12px;border:1px solid var(--line);border-radius:999px;
  background:rgba(255,255,255,.05);font-size:11px;backdrop-filter:blur(8px)
}
.dot{width:8px;height:8px;border-radius:50%;background:var(--green)}
.mini-label{font-size:11px;color:#888}
.hero-card,.panel,.card,.process,.benefit,.contact,.stat{
  border:1px solid var(--line);
  background:rgba(17,17,17,.88);
  box-shadow:var(--shadow)
}
.hero-card{
  margin-top:22px;padding:20px;border-radius:28px;backdrop-filter:blur(10px)
}
.logo{
  width:180px;background:#fff;border-radius:16px;padding:10px;margin-bottom:18px
}
.badge{
  display:inline-block;padding:10px 12px;border-radius:18px;
  border:1px solid rgba(255,44,44,.25);background:rgba(255,44,44,.08);
  font-size:13px;color:#ff7a7a;font-weight:800
}
h1{
  margin:14px 0 0;font-size:42px;line-height:.95;letter-spacing:-.04em;font-weight:900
}
.hero-card p,.card p,.contact p,.benefit-list p,.panel,.stat span,.step p{
  color:var(--muted);line-height:1.7;font-size:14px
}
.hero-actions{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:20px
}
.btn{
  display:inline-flex;justify-content:center;align-items:center;text-align:center;
  min-height:50px;padding:0 16px;border-radius:18px;font-weight:800;font-size:14px;
  transition:transform .2s ease, background .2s ease, border-color .2s ease
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--green);color:#000}
.btn-secondary{border:1px solid var(--line);background:rgba(255,255,255,.05)}
.btn-white{width:100%;margin-top:18px;background:#fff;color:#000}
.stats{
  display:grid;gap:12px;margin:18px 0 26px
}
.stat{
  padding:16px;border-radius:22px;background:rgba(255,255,255,.05);backdrop-filter:blur(8px)
}
.stat strong{display:block;color:var(--green);font-size:20px;margin-bottom:4px}
.section{padding:32px 0}
.section-head{margin-bottom:16px}
.section-tag{
  display:block;font-size:11px;font-weight:800
}
.section-tag.red{color:#ff7a7a}
.section-tag.green{color:#6df48e}
h2{
  margin:10px 0 0;font-size:30px;line-height:1.1;letter-spacing:-.03em
}
.stack,.cards,.timeline,.contact-grid,.benefit-list{display:grid;gap:14px}
.panel{
  padding:16px;border-radius:22px;background:var(--surface)
}
.cards{grid-template-columns:1fr}
.card{
  padding:18px;border-radius:24px;background:var(--surface)
}
.icon{
  width:44px;height:44px;border-radius:16px;display:grid;place-items:center;
  background:rgba(255,255,255,.06);font-size:22px;margin-bottom:12px
}
.card h3{margin:0;font-size:18px}
.card p{margin:10px 0 0}
.process{
  border-radius:28px;padding:20px;background:linear-gradient(180deg, rgba(33,208,75,.1), rgba(0,0,0,.2))
}
.step{
  display:flex;gap:12px;align-items:flex-start;padding:14px;border-radius:18px;
  border:1px solid var(--line);background:rgba(0,0,0,.3)
}
.step span{
  width:32px;height:32px;border-radius:50%;display:grid;place-items:center;
  background:var(--green);color:#000;font-weight:900;flex:0 0 auto
}
.step p{margin:0}
.brand-list{
  display:flex;flex-wrap:wrap;gap:10px
}
.brand-list span{
  border:1px solid var(--line);background:rgba(255,255,255,.05);
  border-radius:999px;padding:10px 14px;font-size:14px;color:#efefef
}
.benefit{
  border-radius:28px;padding:20px;background:var(--surface)
}
.contact{
  border-radius:32px;padding:22px;background:rgba(33,208,75,.1);border-color:rgba(33,208,75,.2)
}
.contact-grid{margin-top:18px}
.contact-box{
  padding:16px;border-radius:18px;border:1px solid var(--line);background:rgba(0,0,0,.3)
}
.contact-box label{
  display:block;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:#9a9a9a;margin-bottom:6px
}
.contact-box strong{font-size:16px;line-height:1.6}
.reveal{
  opacity:0;transform:translateY(18px);transition:opacity .7s ease, transform .7s ease
}
.reveal.show{opacity:1;transform:none}

@media (min-width: 768px){
  .container{width:min(100% - 40px, 880px)}
  .hero-card,.process,.benefit,.contact{padding:28px}
  .stats{grid-template-columns:repeat(3, 1fr)}
  .cards{grid-template-columns:repeat(2, 1fr)}
  .contact-grid{grid-template-columns:repeat(2, 1fr)}
  h1{font-size:64px}
  h2{font-size:40px}
}
