:root{
  --bg:#030303;
  --panel:#0b0b0b;
  --panel-2:#101010;
  --line:#2f2f2f;
  --text:#f5f5f5;
  --muted:#cfcfcf;
  --muted-2:#9a9a9a;
  --yellow:#f5c400;
  --yellow-deep:#f0b400;
  --orange:#ff7a00;
  --orange-2:#ff8f1f;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(255,122,0,.08), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(245,196,0,.08), transparent 20%),
    var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{font:inherit}
::selection{background:var(--yellow);color:#000}

.announcement{
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#000;
}
.ticker{
  white-space:nowrap;
  display:inline-flex;
  gap:18px;
  padding:12px 18px;
  color:var(--orange);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  animation:scroll 24s linear infinite;
}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.nav{
  position:sticky;
  top:0;
  z-index:30;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:18px 4vw;
  background:rgba(3,3,3,.8);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.wordmark{
  font-family:"Archivo Black", Inter, sans-serif;
  font-size:34px;
  letter-spacing:-.06em;
  width:max-content;
  color:var(--yellow);
}
.wordmark span{color:var(--orange)}
.wordmark.big{font-size:42px}
.nav nav{
  display:flex;
  gap:28px;
  font-size:13px;
  font-weight:700;
  color:#dcdcdc;
}
.nav nav a:hover{color:var(--yellow)}
.nav-cta{
  justify-self:end;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--yellow), var(--orange));
  color:#000;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hero{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:40px;
  padding:64px 5vw 100px;
}
.eyebrow,.section-kicker,.section-head > span{
  display:inline-flex;
  padding:9px 12px;
  border:1px solid rgba(255,122,0,.45);
  border-radius:999px;
  color:var(--orange);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  background:rgba(255,122,0,.06);
}
.hero h1,.statement h2,.section-head h2,.order h2{
  font-family:"Archivo Black", Inter, sans-serif;
  letter-spacing:-.05em;
  line-height:.92;
  margin:18px 0 18px;
}
.hero h1{
  font-size:clamp(56px, 8vw, 110px);
  text-transform:lowercase;
}
.hero p{
  max-width:640px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .18s ease, opacity .18s ease;
  border:1px solid transparent;
}
.btn:hover:not(.btn-disabled){transform:translateY(-2px)}
.btn-primary{
  color:#000;
  background:linear-gradient(135deg, var(--yellow), var(--orange));
}
.btn-secondary{
  color:#fff;
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
}
.btn-disabled{
  color:#6f6f6f;
  background:#151515;
  border-color:#1f1f1f;
  cursor:not-allowed;
}
.full{width:100%}

.hero-points{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.point{
  min-width:150px;
  padding:18px 18px 16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border-radius:20px;
}
.point strong{
  display:block;
  font-family:"Archivo Black", Inter, sans-serif;
  font-size:30px;
  letter-spacing:-.05em;
  color:var(--yellow);
}
.point span{
  color:var(--muted-2);
  font-size:13px;
}

.hero-brand{
  position:relative;
}
.brand-frame{
  border-radius:34px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.brand-frame img{
  width:100%;
  height:auto;
}

.statement{
  padding:0 5vw 110px;
}
.statement-inner{
  padding:56px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    linear-gradient(135deg, rgba(255,122,0,.08), rgba(245,196,0,.06));
}
.statement h2{
  font-size:clamp(40px, 6vw, 84px);
}
.statement h2 span{color:var(--yellow)}
.statement p{
  max-width:900px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.menu,.og100,.how,.order,.faq{
  padding:0 5vw 110px;
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:34px;
}
.section-head h2{
  font-size:clamp(34px, 5vw, 72px);
  margin:0;
}

.menu-card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.menu-main{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:36px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.badge,.big-pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.badge{
  color:#000;
  background:linear-gradient(135deg, var(--yellow), var(--orange));
}
.big-pill{
  color:var(--yellow);
  border:1px solid rgba(245,196,0,.25);
  background:rgba(245,196,0,.05);
}
.menu-main h3,.og-copy h3{
  margin:16px 0 14px;
  font-family:"Archivo Black", Inter, sans-serif;
  font-size:52px;
  letter-spacing:-.05em;
}
.menu-main p,.og-copy p, .faq p{
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
}
.price-block{
  text-align:right;
  align-self:flex-end;
}
.price-block small{
  display:block;
  color:var(--muted-2);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:8px;
}
.price-block strong{
  display:block;
  font-family:"Archivo Black", Inter, sans-serif;
  font-size:58px;
  line-height:1;
  color:var(--yellow);
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.menu-grid article{
  padding:30px 32px;
  border-right:1px solid rgba(255,255,255,.08);
}
.menu-grid article:last-child{border-right:0}
.icon{
  font-size:30px;
}
.menu-grid h4{
  margin:14px 0 8px;
  font-size:18px;
}
.menu-grid p{
  margin:0;
  color:var(--muted-2);
  line-height:1.6;
}
.menu-note{
  margin:0;
  padding:16px 32px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted-2);
  font-size:12px;
}

.og-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:32px;
  align-items:start;
}
.og-copy{
  padding:34px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.og-copy ul{
  margin:18px 0 24px;
  padding-left:20px;
  color:var(--text);
  line-height:1.9;
}
.og-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.card-frame{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
  box-shadow:var(--shadow);
}
.tilt-left{transform:rotate(-2deg)}
.tilt-right{transform:rotate(2deg)}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.steps article{
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.step-no{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#000;
  background:linear-gradient(135deg, var(--yellow), var(--orange));
}
.steps h3{
  margin:20px 0 10px;
  font-size:24px;
  line-height:1.1;
}
.steps p{
  margin:0;
  color:var(--muted-2);
  line-height:1.65;
}

.order-card{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:30px;
  align-items:center;
  padding:42px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    radial-gradient(circle at top right, rgba(255,122,0,.12), transparent 34%);
}
.order h2{
  font-size:clamp(42px, 5vw, 72px);
}
.order p{
  color:var(--muted);
  line-height:1.7;
}
.order-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-list{
  border-top:1px solid rgba(255,255,255,.08);
}
details{
  border-bottom:1px solid rgba(255,255,255,.08);
}
summary{
  list-style:none;
  cursor:pointer;
  padding:24px 0;
  font-family:"Archivo Black", Inter, sans-serif;
  font-size:24px;
  letter-spacing:-.03em;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
summary::-webkit-details-marker{display:none}
summary::after{
  content:"+";
  color:var(--orange);
  font-family:Inter, sans-serif;
  font-size:28px;
  font-weight:400;
}
details[open] summary::after{content:"–"}
details p{
  margin:-2px 0 24px;
  max-width:850px;
}

.footer{
  padding:40px 5vw 34px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
}
.footer p{
  color:var(--muted-2);
  margin:6px 0 0;
}
.footer-links{
  display:flex;
  gap:18px;
  align-items:flex-start;
  color:#d8d8d8;
  font-size:14px;
  font-weight:700;
}
.footer small{
  grid-column:1 / -1;
  color:#7d7d7d;
}

@media (max-width:1100px){
  .nav{
    grid-template-columns:1fr 1fr;
  }
  .nav nav{display:none}
  .hero{
    grid-template-columns:1fr;
  }
  .og-layout{
    grid-template-columns:1fr;
  }
  .order-card{
    grid-template-columns:1fr;
  }
  .steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:720px){
  .announcement{display:none}
  .nav{
    padding:16px 20px;
  }
  .wordmark{font-size:30px}
  .hero,.statement,.menu,.og100,.how,.order,.faq{
    padding-left:20px;
    padding-right:20px;
    padding-bottom:72px;
  }
  .hero{
    padding-top:34px;
  }
  .hero h1{
    font-size:clamp(50px, 16vw, 78px);
  }
  .hero p{
    font-size:16px;
  }
  .hero-actions{
    flex-direction:column;
  }
  .hero-actions .btn{
    width:100%;
  }
  .point{
    width:100%;
  }
  .statement-inner{
    padding:28px 24px;
  }
  .statement h2{
    font-size:clamp(34px, 12vw, 54px);
  }
  .section-head{
    display:block;
  }
  .section-head > span{
    margin-bottom:14px;
  }
  .menu-main{
    display:block;
    padding:26px 24px;
  }
  .menu-main h3,.og-copy h3{
    font-size:40px;
  }
  .price-block{
    text-align:left;
    margin-top:18px;
  }
  .menu-grid{
    grid-template-columns:1fr;
  }
  .menu-grid article{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .menu-grid article:last-child{
    border-bottom:0;
  }
  .og-cards{
    grid-template-columns:1fr;
  }
  .steps{
    grid-template-columns:1fr;
  }
  .steps h3{
    font-size:22px;
  }
  summary{
    font-size:19px;
    padding:20px 0;
  }
  .footer{
    grid-template-columns:1fr;
    padding-left:20px;
    padding-right:20px;
  }
}
