
:root{
  --bg:#040404;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --line:rgba(255,255,255,0.12);
  --line-strong:rgba(255,255,255,0.2);
  --radius:30px;
  --shadow:0 24px 80px rgba(0,0,0,.45);
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, #0a0a0a 0%, #040404 30%, #040404 100%);
  min-height:100vh;
  overflow-x:hidden;
}
.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.05;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:3px 3px;
  mix-blend-mode:soft-light;
}
.site-header, main, .site-footer{position:relative; z-index:1}
.site-header{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 24px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  border-bottom:1px solid var(--line);
}
.brand{
  color:var(--text);
  text-decoration:none;
  font-size:clamp(2rem, 5vw, 3rem);
  font-weight:900;
  letter-spacing:-0.08em;
}
.brand-logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo img{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:10px;
}
.nav{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
.nav a{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-size:1rem;
}
.nav a:hover{color:#fff}
main{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px 100px;
}
.hero{padding:78px 0 88px}
.hero-logo-wrap{
  margin:18px 0 24px;
}
.hero-logo{
  width:min(200px, 42vw);
  height:auto;
  display:block;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--muted);
  font-size:.9rem;
  letter-spacing:.24em;
  text-transform:uppercase;
}
.hero h1{
  margin:0;
  font-size:clamp(4rem, 11vw, 8rem);
  line-height:.88;
  letter-spacing:-0.09em;
}
.hero-title{
  margin:24px 0 0;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1;
  letter-spacing:-0.06em;
  max-width:700px;
}
.hero-copy{
  max-width:780px;
  margin:28px 0 0;
  color:var(--muted);
  font-size:clamp(1.08rem, 2vw, 1.45rem);
  line-height:1.75;
}
.hero-actions{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.btn{
  min-height:66px;
  padding:0 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:1.05rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover,.buy-button:hover,.signup-form button:hover{transform:translateY(-2px)}
.btn-solid{
  background:#f1f1f1;
  color:#050505;
  border:1px solid #f1f1f1;
}
.btn-outline{
  color:var(--text);
  border:1px solid var(--line-strong);
  background:transparent;
}
.hero-meta{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.meta-pill, .badge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:rgba(255,255,255,.025);
}
.section{padding-top:34px}
.section-heading{margin-bottom:24px}
.section-heading h2{
  margin:0;
  font-size:clamp(2.1rem, 5vw, 3.6rem);
  line-height:1.02;
  letter-spacing:-0.06em;
  max-width:900px;
}
.signup-card{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:24px;
  align-items:end;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}
.signup-copy h2{
  margin:0 0 14px;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.02;
  letter-spacing:-0.06em;
}
.signup-copy p:last-child{
  margin:0;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.8;
}
.signup-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.signup-form input{
  width:100%;
  min-height:62px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:0 20px;
  font-size:1rem;
  outline:none;
}
.signup-form input::placeholder{color:#9a9a9a}
.signup-form button{
  min-height:62px;
  border-radius:999px;
  border:1px solid #f1f1f1;
  background:#f1f1f1;
  color:#050505;
  font-weight:800;
  font-size:1rem;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.section-heading-split{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
}
.drop-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:.95rem;
  padding-bottom:8px;
}
.status-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#7dff9e;
  box-shadow:0 0 14px rgba(125,255,158,.75);
}
.cards{display:grid; gap:22px}
.three-up{grid-template-columns:repeat(3, minmax(0,1fr))}
.two-up, .product-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
}
.hover-lift{
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.hover-lift:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.22);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
}
.card h3{
  margin:0 0 14px;
  font-size:clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing:-0.05em;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.8;
}
.product-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:390px;
}
.product-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}
.badge{
  color:#f5f5f5;
  background:rgba(255,255,255,.05);
}
.badge-dark{color:var(--muted)}
.product-top{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.price{
  font-size:clamp(2.8rem, 6vw, 4.2rem);
  font-weight:900;
  letter-spacing:-0.08em;
}
.product-note{
  margin-top:18px !important;
  max-width:420px;
}
.product-actions{margin-top:28px}
.buy-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 22px;
  border-radius:999px;
  background:#f1f1f1;
  color:#050505;
  font-weight:800;
  text-decoration:none;
  transition:transform .2s ease;
}
.alt-buy{
  margin-top:14px !important;
  font-size:1rem !important;
}
.alt-buy a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:3px;
}
.contact-wrap p{font-size:1.08rem}
.contact-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}
.contact-list a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  color:var(--text);
  text-decoration:none;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.contact-list span{color:var(--muted)}
.contact-list strong{
  font-size:1.02rem;
  text-align:right;
}
.site-footer{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px 42px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.site-footer p{margin:20px 0 0}
.footer-brand{
  color:var(--text);
  font-weight:800;
  letter-spacing:-0.05em;
}
.reveal{animation:fadeUp .8s ease both}
@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:translateY(0)}
}
@media (max-width: 920px){
  .site-header{flex-direction:column; align-items:flex-start}
  .signup-card{grid-template-columns:1fr}
  .three-up, .two-up, .product-grid{grid-template-columns:1fr}
  .section-heading-split{flex-direction:column; align-items:flex-start}
  .contact-list a{flex-direction:column; align-items:flex-start}
  .contact-list strong{text-align:left}
}
@media (max-width: 640px){
  .site-header, main, .site-footer{padding-left:18px; padding-right:18px}
  .nav{gap:14px 18px}
  .hero{padding-top:56px; padding-bottom:70px}
  .hero-title{font-size:3rem}
  .hero-actions{flex-direction:column}
  .btn, .buy-button, .signup-form button{width:100%}
  .card, .signup-card{padding:24px; border-radius:26px}
  .brand-logo img{width:40px; height:40px}
  .brand-logo span{font-size:2rem}
  .hero-logo{width:min(160px, 44vw)}
}
