/* Fonts: Manrope for headings, Inter for body */
:root {
  --bg-900: #0d0f12;
  --bg-800: #121418;
  --bg-700: #171a20;
  --card: #1c2027;
  --border: #2a2f3a;
  --text-100: #f6f7fb;
  --text-300: #c6cbd6;
  --text-500: #9aa2b1;
  --accent: #ff7a1a; /* dark molten orange */
  --accent-700: #e96b12;
  --accent-800: #d25f0f;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text-100); 
  background: radial-gradient(1200px 600px at 60% -10%, #1a1d23 0%, var(--bg-900) 60%, #0a0c0f 100%);
  font-family: 'nexa', sans-serif, -apple-system, Segoe UI, Roboto, Arial;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: rgba(13,15,18,0.85); 
  backdrop-filter: blur(8px); 
  border-bottom: 1px solid var(--border);
  /*justify-content: center;*/
 }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; text-decoration: none; gap: 12px; color: var(--text-100); }
.brand-logo { width: 36px; height: 36px; object-fit: contain; }
.brand-text { display: grid; }
.brand-name { 
  font-family: 'nexa', sans-serif; font-weight: 800; letter-spacing: 0.4px; }
.brand-sub { color: var(--text-500); font-size: 12px; }
.main-nav .nav-list { 
  /*justify-items: center;*/
  display: flex; 
  gap: 18px; 
  list-style: none; 
  margin: 0; 
  padding: 0;
 }
.main-nav a { color: var(--text-300); text-decoration: none; padding: 10px 12px; border-radius: 10px; }
.main-nav a:hover { color: var(--accent-800); background: var(--bg-700); }
.nav-toggle { display: none; background: transparent; color: var(--text-100); border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 600; letter-spacing: .2px; }
.btn-primary { 
  background: linear-gradient(180deg, rgba(255,122,26,0.5) 0%, var(--accent-700) 100%); 
  color: #0f0f11; 
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), var(--shadow); 
}
.btn-secondary { 
  background: rgba(35, 39, 49, 0.5); 
  color: var(--text-100); 
  border: 1px solid var(--border); }
.btn-outline { background: transparent; color: var(--text-100); border: 1px solid var(--border); }
.btn-primary:hover { filter: brightness(01.5); }

/* Hero */
.hero { 
  text-align: center;
  position: relative; 
  overflow: hidden; 
  border-bottom: 1px solid var(--border);
 }
.hero-inner { 
  padding: 50px 0 50px; 
  position: relative; 
  z-index: 2; 
}
.hero-badge { 
  display:inline-block; 
  padding: 8px 12px;
  border-radius: 999px; 
 /* background: #272b35;*/
   background: rgba(39, 43, 53, 0.5); /* 50% opacity with the same color. 0.5 represents 50% opacity */
  color: var(--text-300); 
  border: 1px solid var(--border); 
  font-size: 13px; 
  margin-bottom: 0px; 
}
.hero-title { 
  margin: 0px;
font-family: nexabold, sans-serif;
  /*font-family: 'montserrat black', sans-serif; */
  font-weight: 800; 
  /*font-size: clamp(70px, 5vw, 80px); */
  font-size: 75px;
  /*margin: 0 0 0px;*/
}
.accent { 
  margin: 0px;
  color: var(--accent); 
}
.hero-sub {
   color: var(--text-300); 
   max-width: 100%; 
  }
.hero-stats { 
  display: flex; 
  gap: 50px; 
  margin: 12px 0; 
  flex-wrap: wrap; 
  justify-content: center;}
.stat { 
  display: grid;
  background: rgba(29, 33, 41, 0.5); 
  border: 1px solid var(--border); 
  padding: 14px 16px; 
  border-radius: 14px;
}
.stat-value { font-weight: 800; font-size: 20px; margin-right: 6px; }
.stat-label { color: var(--text-500); font-size: 13px; }
.hero-ctas {
   display: flex; 
   gap: 12px; 
   margin-top: 10px;
  justify-content: center;
  }
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: none; filter: saturate(0.95) brightness(0.85) contrast(1.0);
 }
.media-overlay { position:absolute; inset:0; background: radial-gradient(800px 300px at 30% 0%, 
  rgba(255,122,26,.5) 0%, transparent 40%), linear-gradient(180deg, rgba(13,15,18,.6) 0%, rgba(13,15,18,.75) 80%); }

/* Sections */
.section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.section-title { 
  word-spacing: 10px;
  font-family:'Nexabold', sans-serif; 
  font-weight: 800; 
  font-size: clamp(26px, 4vw, 38px); 
  margin:0 0 8px;
text-align: center;
 }
.section-sub { color: grey; margin: 0 0 22px; text-align: center;}

.pill { display:inline-block; padding:0.5px 50px; border-radius:25px; background:#272b35; border: 1px solid var(--border); color: var(--text-300); }

/* Product cards */
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--card); border: 2px solid var(--accent); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.card-header { display:flex; align-items:center; gap:12px; }
.card h3 { font-family:'nexa', sans-serif; font-weight:800; font-size: 22px; margin: 6px 0; }
.badge { margin-left:auto; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-700) 100%); color: #0f0f11; padding: 6px 10px; border-radius: 25px; font-weight: 700; font-size: 12px; }
.features { color: var(--text-300); padding-left: 18px; }
.features li { margin: 8px 0; }
.card-footer { display:flex; align-items:center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.specs { color: var(--text-500); font-size: 13px; }
.popular { outline: 2px solid rgba(255,122,26,.2); }
.disclaimer { color: var(--text-500); font-size: 16px; margin-top: 12px; text-align: enter;}

/* Results */
.eyebrow { color: var(--accent); font-weight: 700; word-spacing: 1.5px; text-transform: uppercase; font-size: 12px; }
.results-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; text-align: left; }
.results-media { border-radius: 16px; overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow); }
/*.results-copy  {text-align: left; color: var(--text-300); margin-bottom: 16px; }*/
.section-title { text-align: left; }

/* Gold */
.section-gold { 
  margin-top: 20px;
  text-align: center; }
.notify-form { display:flex; gap: 12px; flex-wrap: wrap; }
.notify-form input { flex: 1; padding: 12px 14px; border-radius: 12px; border:1px solid var(--border); background:#222631; color: var(--text-100); }
.form-msg { color: var(--text-500); font-size: 13px; margin-top: 8px; }

/* How it works */
.section-how { 
  margin-top : 50px;
  text-align: center; }
  .how-title { margin: 0 0 8px; font-family:'Nexabold', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 38px); }
.section-sub { color: grey; margin: 0 0 22px; text-align: center; }
.video-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: #111317; }

/* Why */
.why-eyebrow { 
  margin-top: 50px;
  color: var(--accent);
   font-weight: 700;
    word-spacing: 1.5px;
     text-transform: uppercase;
      font-size: 12px;
       margin-bottom: 8px;
           text-align: center; 
          }
  .why-title { margin: 0 0 8px; font-family:'Nexabold', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 38px); text-align: center;}
  /*.why-sub { color: grey; margin: 0 0 22px; text-align: center; }*/
  .whysub { color: grey; font-family:'Nexabold', sans-serif; font-weight: 600; font-size: 14px; margin-top: 6px; margin-bottom: 12px; }
.features-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: 14px; font-family: 'nexa',sans-serif;}
.feature-card .icon { font-size: 22px; }

/* Services */
.section-services { 
  margin-top: 50px;
  text-align: center;
  }
  .service-title { margin: 0 0 8px; font-family:'Nexabold', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 38px); text-align: center; }
  .service-sub { color: grey; margin: 0 0 22px; text-align: left; }
/*.services-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; }*/
/*.services-media { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }*/
.grid-steps {  display:grid; grid-template-columns: repeat(2,1fr); gap: 18px;}
  .steps{ background: var(--card); border: 1px solid var(--border); padding: 12px 14px; border-radius: 12px; margin-bottom: 12px;
    font-weight: 600; font-size: 14px; font-family: nexa, sans-serif;
  }

/* Contact */
.contact-info {
  margin-top: 20px;
  text-align: center; margin-bottom: 26px; font-family: nexa,sans-serif;}
.contact-title { margin: 0 0 8px; font-family:'Nexabold', sans-serif; font-weight: 800; font-size: clamp(26px, 4vw, 38px); text-align: center; }
.section-sub { color: grey; margin: 0 0 22px; text-align:center; }

.contact-list { 
  color: var(--text-300); text-align: left; text-decoration: none; }
  .contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.contact-form { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: 16px; }
.contact-form label { display:block; margin-top: 10px; color: var(--text-300); font-family: nexa, sans-serif; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; margin-top:6px; padding: 12px 14px; border-radius: 12px; border:1px solid var(--border); 
  background:#222631; color: var(--text-100); font-family: nexa, sans-serif;}

/* Footer */
.site-footer { background: #0a0c0f; padding: 26px 0; }
.footer-grid { display:flex; align-items:center; justify-content: space-between; gap: 18px; }
.footer-links { list-style:none; display:flex; gap: 16px; margin:0; padding:0; }
.footer-links a { color: var(--text-300); text-decoration:none; }
.footer-links a:hover { color: var(--text-100); }

/* Responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .results-grid, .features-grid, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav .nav-list { display:none; position:absolute; right:4%; top:62px; background: var(--bg-800); border:1px solid var(--border); padding: 12px; border-radius: 12px; flex-direction: column; }
  .nav-toggle { display:inline-block; }
}
