*{box-sizing:border-box}

:root{
  --bg:#080a0d;
  --panel:#101419;
  --text:#f4f0e6;
  --muted:#9298a2;
  --line:#252a31;
  --gold:#e8a62b;
  --gold2:#f2bf54;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"DM Sans",sans-serif;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 75% 10%,rgba(232,166,43,.07),transparent 25%),
    radial-gradient(circle at 10% 50%,rgba(39,75,90,.10),transparent 30%);
  z-index:-2;
}

.grain{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:20;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a{color:inherit}

.nav{
  height:78px;
  padding:0 5vw;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:15;
  background:rgba(8,10,13,.78);
  backdrop-filter:blur(18px);
}

.logo,
.footer-brand{
  font:700 24px "Space Grotesk";
  text-decoration:none;
  letter-spacing:-.04em;
}

.logo-dot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
  margin:0 9px 3px 0;
  box-shadow:0 0 16px rgba(232,166,43,.7);
}

.nav nav{
  display:flex;
  gap:30px;
}

.nav nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  transition:color .25s ease;
}

.nav nav a:hover{
  color:#fff;
}

.nav-cta{
  background:var(--gold);
  color:#101010;
  text-decoration:none;
  padding:12px 17px;
  border-radius:8px;
  font-weight:700;
  font-size:13px;
  transition:transform .25s ease,box-shadow .25s ease;
}

.nav-cta span,
.btn span{
  margin-left:10px;
}

.nav-cta:hover,
.btn:hover{
  transform:translateY(-2px);
}

.hero{
  min-height:740px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:70px 7vw;
  border-bottom:1px solid var(--line);
  position:relative;
}

.hero-copy{
  max-width:650px;
  position:relative;
  z-index:2;
}

.kicker{
  font:700 10px "Space Grotesk";
  letter-spacing:.2em;
  color:var(--gold);
}

.kicker span{
  width:7px;
  height:7px;
  border-radius:50%;
  display:inline-block;
  background:var(--gold);
  margin-right:8px;
  box-shadow:0 0 13px var(--gold);
}

.hero h1{
  font:900 clamp(50px,7vw,90px)/.95 "Space Grotesk";
  letter-spacing:-.065em;
  margin:22px 0 30px;
}

.hero h1 i{
  color:var(--gold);
  font-style:normal;
}

.hero-text{
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
  max-width:540px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:33px 0 23px;
}

.btn{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  padding:13px 19px;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  transition:transform .25s,box-shadow .25s;
}

.btn-gold{
  background:var(--gold);
  color:#111;
  box-shadow:0 12px 30px rgba(232,166,43,.12);
}

.btn-ghost{
  border:1px solid #41464f;
  color:#fff;
}

.contract-row{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:11px;
}

.contract-row code{
  max-width:330px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  border:1px solid var(--line);
  border-radius:7px;
  padding:10px 12px;
  color:#c7cbd1;
}

.contract-row button{
  border:0;
  background:none;
  color:var(--gold);
  font:700 10px "Space Grotesk";
  cursor:pointer;
}

.hero-visual{
  height:600px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

.hero-visual img{
  width:min(100%,570px);
  position:relative;
  z-index:2;
  border-radius:24px;
  filter:drop-shadow(0 35px 70px #000);
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
}

.orb-a{
  width:300px;
  height:300px;
  background:rgba(232,166,43,.19);
}

.orb-b{
  width:180px;
  height:180px;
  background:rgba(50,95,107,.18);
  right:12%;
  bottom:12%;
}

.hero-badge{
  position:absolute;
  right:0;
  bottom:70px;
  background:rgba(10,12,15,.8);
  border:1px solid #343941;
  padding:14px 18px;
  border-radius:10px;
  z-index:3;
  backdrop-filter:blur(12px);
}

.hero-badge span{
  display:block;
  font:700 17px "Space Grotesk";
}

.hero-badge small{
  color:var(--gold);
  font-size:9px;
  letter-spacing:.15em;
}

.launch{
  text-align:center;
  padding:125px 20px 145px;
  position:relative;
  overflow:hidden;
}

.launch:before{
  content:"";
  position:absolute;
  width:450px;
  height:220px;
  background:rgba(232,166,43,.09);
  filter:blur(90px);
  left:50%;
  top:40%;
  transform:translate(-50%,-50%);
}

.launch-content{
  position:relative;
}

.launch-content>span{
  font:700 10px "Space Grotesk";
  letter-spacing:.22em;
  color:var(--gold);
}

.launch h2{
  font:900 clamp(48px,6vw,82px)/.95 "Space Grotesk";
  letter-spacing:-.065em;
  margin:25px 0;
}

.launch h2 em{
  color:var(--gold);
  font-style:normal;
}

.launch p{
  color:var(--muted);
  margin-bottom:30px;
}

.launch-line{
  height:1px;
  background:linear-gradient(90deg,transparent,#343941,transparent);
  margin:0 auto 60px;
  max-width:900px;
}

.launch-line:last-child{
  margin:60px auto 0;
}

footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 5vw;
  border-top:1px solid var(--line);
  color:#6f747c;
  font-size:11px;
}

.footer-brand{
  color:#fff;
}

.toast{
  position:fixed;
  right:24px;
  bottom:24px;
  background:#f4f0e6;
  color:#111;
  padding:12px 16px;
  border-radius:8px;
  font-weight:700;
  font-size:12px;
  transform:translateY(20px);
  opacity:0;
  transition:.25s;
  z-index:30;
}

.toast.show{
  transform:none;
  opacity:1;
}

@media(max-width:900px){
  .nav nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:65px;
  }

  .hero-visual{
    height:auto;
    margin-top:45px;
  }

  .hero-badge{
    right:5%;
  }
}

@media(max-width:560px){
  .nav{
    padding:0 20px;
  }

  .nav-cta{
    padding:10px 12px;
  }

  .hero{
    padding:55px 20px;
  }

  .hero h1{
    font-size:57px;
  }

  .contract-row{
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .hero-visual img{
    width:100%;
  }

  .hero-badge{
    bottom:25px;
  }

  footer{
    padding:20px;
    gap:12px;
    flex-wrap:wrap;
  }
}
