:root{
  --bg:#000;
  --card:#0b0b0d;
  --card2:#111115;
  --text:#fff;
  --muted:rgba(255,255,255,.58);
  --soft:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.10);
  --gold:#ffd84d;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,calc(100% - 40px));margin:0 auto}

.nav{
  position:sticky;top:0;z-index:10;
  backdrop-filter:blur(18px);
  background:rgba(0,0,0,.72);
  border-bottom:1px solid var(--line);
}
.nav-inner{height:72px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:-.03em}
.logo{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,#fff,#777);
  color:#000;font-size:22px;
  box-shadow:0 0 36px rgba(255,255,255,.18);
}
.nav-links{display:flex;align-items:center;gap:22px;color:var(--muted);font-weight:700;font-size:14px}
.nav-links a:hover{color:#fff}

.hero{
  min-height:calc(100vh - 72px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
  padding:76px 0 64px;
}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
h1{
  margin:22px 0 18px;
  font-size:clamp(48px,7vw,86px);
  line-height:.92;
  letter-spacing:-.075em;
}
.lead{
  max-width:620px;
  color:var(--muted);
  font-size:20px;
  line-height:1.55;
  font-weight:650;
}
.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:54px;
  padding:0 22px;
  border-radius:18px;
  font-weight:950;
  border:1px solid var(--line);
}
.btn-primary{background:#fff;color:#000}
.btn-secondary{background:var(--soft);color:#fff}
.note{margin-top:18px;color:rgba(255,255,255,.36);font-weight:700;font-size:13px}

.phone-wrap{
  display:flex;justify-content:center;position:relative;
}
.glow{
  position:absolute;width:330px;height:330px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,216,77,.22),transparent 65%);
  filter:blur(12px);
  top:80px;
}
.phone{
  position:relative;
  width:min(360px,90vw);
  aspect-ratio:9/18.5;
  border-radius:48px;
  background:#050506;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 34px 90px rgba(0,0,0,.72), inset 0 0 0 10px #09090b;
  padding:22px;
}
.screen{
  width:100%;height:100%;
  border-radius:34px;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:28px 20px 24px;
  overflow:hidden;
}
.screen-top{width:100%;display:flex;justify-content:space-between;align-items:flex-start}
.screen-title b{display:block;font-size:22px;letter-spacing:-.04em}
.screen-title span{display:block;color:rgba(255,255,255,.42);font-weight:700;font-size:12px;margin-top:4px}
.pro{background:#fff;color:#000;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:950}
.dice-stage{
  width:210px;height:210px;border-radius:50%;
  display:grid;place-items:center;
  background:radial-gradient(circle,rgba(255,255,255,.14),transparent 62%);
}
.dice{
  width:116px;height:116px;border-radius:26px;
  background:linear-gradient(145deg,#fff,#bdbdbd);
  box-shadow:0 24px 60px rgba(255,255,255,.16);
  transform:rotateX(14deg) rotateZ(-12deg);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:repeat(3,1fr);
  gap:10px;
  padding:22px;
}
.pip{width:18px;height:18px;background:#000;border-radius:50%;align-self:center;justify-self:center}
.p1{grid-column:1;grid-row:1}.p2{grid-column:3;grid-row:1}.p3{grid-column:1;grid-row:2}.p4{grid-column:3;grid-row:2}.p5{grid-column:1;grid-row:3}.p6{grid-column:3;grid-row:3}
.roll-btn{width:100%;height:58px;border-radius:20px;background:#fff;color:#000;display:grid;place-items:center;font-weight:950;letter-spacing:.05em}
.selector{width:100%;display:grid;grid-template-columns:1fr 1fr;gap:6px;padding:5px;border-radius:18px;background:rgba(255,255,255,.07);font-weight:900;font-size:13px;text-align:center}
.selector span{padding:12px;border-radius:14px;color:rgba(255,255,255,.55)}
.selector span:first-child{background:#fff;color:#000}

.section{padding:74px 0;border-top:1px solid var(--line)}
.section h2{font-size:42px;letter-spacing:-.055em;margin:0 0 14px}
.section p{color:var(--muted);font-weight:650;line-height:1.7}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.card{
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
}
.card-icon{width:46px;height:46px;border-radius:16px;background:#fff;color:#000;display:grid;place-items:center;font-size:22px;font-weight:900;margin-bottom:16px}
.card h3{margin:0 0 8px;font-size:20px}
.card p{margin:0;font-size:15px;color:rgba(255,255,255,.5)}

.footer{border-top:1px solid var(--line);padding:32px 0;color:rgba(255,255,255,.42);font-size:14px;font-weight:700}
.footer-inner{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer-links{display:flex;gap:18px}

.legal{
  padding:58px 0 78px;
  max-width:860px;
}
.legal h1{font-size:52px;line-height:1.02;margin-bottom:10px}
.legal .updated{color:rgba(255,255,255,.42);font-weight:800;margin-bottom:34px}
.legal h2{font-size:26px;margin:34px 0 10px}
.legal p,.legal li{color:rgba(255,255,255,.62);line-height:1.75;font-weight:600}
.legal ul{padding-left:22px}
.legal-box{
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  margin:24px 0;
}

@media (max-width:860px){
  .hero{grid-template-columns:1fr;padding-top:44px;text-align:left}
  .phone-wrap{order:-1}
  .grid{grid-template-columns:1fr}
  .nav-links{gap:12px}
  .nav-links a:first-child{display:none}
}