:root{
  --bg:#06101c;
  --bg-deep:#040b14;
  --panel:#0d1b2d;
  --panel-2:#10243b;
  --panel-soft:rgba(16,36,59,.72);
  --text:#f1f6ff;
  --muted:#b4c3d6;
  --muted-2:#8ea2b9;
  --accent:#71bcff;
  --accent-2:#c4e6ff;
  --gold:#efc96f;
  --border:rgba(190,218,244,.13);
  --border-strong:rgba(113,188,255,.38);
  --shadow:0 18px 50px rgba(0,0,0,.24);
  --site-width:1240px;
  --content-width:1080px;
  --reading-width:860px;
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#06101c 0%,#081423 46%,#06101c 100%);
  color:var(--text);
  line-height:1.78;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto}
a{color:var(--accent-2);text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width:min(var(--site-width),calc(100% - 48px));
  margin-inline:auto;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(4,12,22,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}
.brand{font-weight:850;letter-spacing:-.01em;font-size:21px;color:#fff;white-space:nowrap}
.brand span{color:var(--accent)}
nav{display:flex;gap:22px;align-items:center;justify-content:center;flex:1}
nav a{font-size:14px;color:#dce9f8;white-space:nowrap}
.menu{display:none}

.btn,.order-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#69baff,#9bd9ff);
  color:#06111d;
  font-weight:850;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 28px rgba(87,176,255,.18);
  transition:transform .16s ease,box-shadow .16s ease,filter .16s ease;
}
.btn{padding:12px 20px}
.order-btn{padding:11px 17px;font-size:13px;white-space:nowrap}
.btn:hover,.order-btn:hover{text-decoration:none;transform:translateY(-1px);box-shadow:0 14px 32px rgba(87,176,255,.25);filter:brightness(1.03)}
.btn.alt{background:transparent;color:#dff2ff;border:1px solid var(--border);box-shadow:none}

main{display:block}
main>.container{
  width:min(var(--content-width),calc(100% - 48px));
  margin-inline:auto;
}

.hero{padding:78px 0 58px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.06fr) minmax(380px,.94fr);
  gap:60px;
  align-items:center;
}
.hero-grid>div{min-width:0}
.hero-card{
  width:100%;
  max-width:520px;
  margin-left:auto;
  padding:20px;
  background:linear-gradient(180deg,rgba(17,37,61,.97),rgba(9,23,40,.97));
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
}
.hero-card img{width:100%;display:block;border-radius:13px;object-fit:contain;aspect-ratio:1/1}
.eyebrow,.kicker{
  color:var(--accent);
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.kicker{color:var(--gold);letter-spacing:.08em}

h1{font-size:clamp(42px,5vw,68px);line-height:1.055;letter-spacing:-.042em;margin:14px 0 22px}
h2{font-size:clamp(30px,3.1vw,43px);line-height:1.14;letter-spacing:-.028em;margin:0 0 18px}
h3{font-size:21px;line-height:1.3;margin:28px 0 10px}
.lead{font-size:19px;color:#c8d7e8;max-width:760px}
.muted{color:var(--muted)}
.small{font-size:13px;color:var(--muted-2)}

/* Every article section gets one stable reading column. */
section{padding:48px 0;scroll-margin-top:94px}
section>h2,section>h3,section>p,section>ul,section>ol,section>table{
  width:min(100%,var(--reading-width));
  margin-left:auto;
  margin-right:auto;
}
section>h2{text-align:left;margin-top:0}
section>h3{font-size:21px;text-align:left}
section>p{margin-top:0;margin-bottom:20px}
section>ul,section>ol{padding-left:25px}

/* Keep the opening explanatory section visually obvious. */
#what-is{
  padding-top:58px;
  border-top:1px solid rgba(255,255,255,.05);
}
#what-is .section-heading{margin-bottom:20px}

.callout{
  width:min(100%,var(--reading-width));
  margin:28px auto;
  padding:18px 20px;
  border-left:4px solid var(--accent);
  background:rgba(75,155,220,.075);
  border-radius:0 12px 12px 0;
}
.warning{border-left-color:var(--gold);background:rgba(232,199,122,.08)}

.card,.hero-card,.sourcebox,.notice,.faq,.policy-card,.bonus-card,.testimonial-card,.guarantee-card,.related-card{
  background:linear-gradient(180deg,rgba(16,36,59,.97),rgba(9,24,41,.97));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card{padding:25px}
.card h3{margin-top:0}

.grid,.product-grid,.bonus-grid,.testimonial-grid,.related-grid,.article-list{
  width:100%;
  margin:30px auto 0;
  display:grid;
  gap:20px;
}
.grid{grid-template-columns:repeat(3,minmax(0,1fr));max-width:1040px}
.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-width:1040px}
.bonus-grid,.testimonial-grid{grid-template-columns:repeat(3,minmax(0,1fr));max-width:1040px}
.related-grid{grid-template-columns:repeat(3,minmax(0,1fr));max-width:1040px}
.article-list{grid-template-columns:repeat(2,minmax(0,1fr));max-width:1040px}

.product-card{overflow:hidden;padding:0}
.product-card img{width:100%;height:280px;object-fit:contain;display:block;background:#050b13}
.product-card .inner{padding:25px}

.bonus-card,.testimonial-card,.related-card{padding:22px}
.bonus-card{display:flex;flex-direction:column;min-height:100%}
.bonus-card img{width:100%;height:205px;object-fit:contain;background:#050b13;border-radius:12px;margin-bottom:16px}
.bonus-card h3{margin:10px 0 8px;font-size:18px}
.bonus-card p,.related-card p{font-size:14px;color:var(--muted);margin:0}

.testimonial-card blockquote{margin:0 0 14px;font-size:16px;line-height:1.6;color:#edf4ff}
.testimonial-card cite{display:block;color:#9fb4ca;font-style:normal;font-size:13px}
.testimonial-note{width:min(100%,var(--reading-width));margin:18px auto 0;padding:13px 15px;border-radius:10px;background:rgba(232,199,122,.08);border:1px solid rgba(232,199,122,.18);font-size:13px;color:#c9d7e6}

/* Guarantee is a complete standalone section. */
.guarantee-layout{
  width:100%;
  max-width:1000px;
  margin:30px auto 0;
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:22px;
  align-items:stretch;
}
.guarantee-wrap{display:contents}
.guarantee-layout>.card{
  min-height:430px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.guarantee-layout>.card img{width:100%;max-width:390px;display:block}
.guarantee-card.featured{padding:31px;border-color:var(--border-strong);display:flex;flex-direction:column;justify-content:center}
.guarantee-number{font-size:54px;line-height:1;font-weight:900;color:var(--accent);margin-bottom:7px}
.guarantee-card .btn{margin-top:8px}

.price{font-size:28px;color:var(--gold);display:inline-block;margin-top:6px}
#order-now .product-grid{grid-template-columns:minmax(0,1fr);max-width:960px}
#order-now .product-card{max-width:960px;margin-inline:auto}
#order-now .product-card img{height:330px}
#order-now .product-card .inner{padding:30px 34px}
#order-now .btn{margin-top:6px}

.related-card{min-height:190px;display:flex;flex-direction:column}
.related-card h3{font-size:18px;margin:0 0 8px}
.related-card a{margin-top:auto;padding-top:15px;font-weight:750}

.faq{width:min(100%,var(--reading-width));padding:18px 20px;margin:12px auto}
.faq summary{cursor:pointer;font-weight:800}
.faq p{margin:14px 0 0;color:var(--muted)}

.breadcrumb{padding:28px 0 8px;color:#8fa6bf;font-size:13px}
.breadcrumb a{color:#aac9e8}
.hero-strip{padding:40px 0 26px}
.hero-strip h1,.hero-strip .eyebrow,.hero-strip .lead,.hero-strip>p{width:min(100%,var(--reading-width));margin-left:auto;margin-right:auto}
.hero-strip h1{max-width:var(--reading-width)}
.hero-strip .eyebrow{margin-bottom:6px}
.hero-strip .lead{max-width:var(--reading-width)}

.stats{width:min(100%,var(--reading-width));display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:24px auto}
.stat{padding:18px;border:1px solid var(--border);border-radius:14px;background:rgba(255,255,255,.025)}
.stat strong{display:block;font-size:23px}
table{border-collapse:separate;border-spacing:0;margin-top:24px;margin-bottom:24px;background:rgba(7,18,31,.5);border:1px solid var(--border);border-radius:12px;overflow:hidden}
th,td{padding:14px;border-bottom:1px solid var(--border);vertical-align:top;text-align:left}
th{color:#dff2ff;background:rgba(255,255,255,.035)}
tbody tr:last-child td{border-bottom:0}
.sourcebox{width:min(100%,var(--reading-width));padding:24px;margin:44px auto 14px}
.sourcebox h3{margin-top:0}
.sourcebox li{margin:8px 0}
.author{width:min(100%,var(--reading-width));display:flex;gap:14px;align-items:center;padding:18px 0;border-top:1px solid var(--border);margin:30px auto 0}
.avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,#254f74,#7bbdf2);flex:0 0 auto}

footer{margin-top:70px;padding:46px 0;border-top:1px solid var(--border);background:var(--bg-deep)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:32px}
footer a{display:block;margin:7px 0;font-size:14px}

/* Section helper classes used by the homepage. */
.feature-section{padding-top:58px}
.section-heading{width:min(100%,var(--reading-width));margin:0 auto 22px}
.section-heading h2{margin:6px 0 0}
.section-body{width:100%}
.section-body>p,.section-body>ul,.section-body>ol,.section-body>h3{width:min(100%,var(--reading-width));margin-left:auto;margin-right:auto}
.section-body>.product-grid,.section-body>.grid,.section-body>.bonus-grid,.section-body>.testimonial-grid,.section-body>.related-grid{margin-left:auto;margin-right:auto}

@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .hero-card{max-width:620px;margin-inline:auto}
  .grid,.bonus-grid,.testimonial-grid,.related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid{grid-template-columns:1fr}
  .guarantee-layout{max-width:860px}
  nav{gap:15px}
}

@media(max-width:760px){
  .container,main>.container{width:min(100%,calc(100% - 28px))}
  .nav{min-height:64px;gap:10px}
  .brand{font-size:18px}
  nav{order:3;flex:1 0 100%;width:100%;justify-content:flex-start;overflow-x:auto;gap:7px;padding:2px 0 5px;scrollbar-width:none}
  nav::-webkit-scrollbar{display:none}
  nav a{font-size:12px;padding:6px 9px;border:1px solid rgba(255,255,255,.08);border-radius:999px;background:rgba(255,255,255,.025)}
  header .nav{flex-wrap:wrap;padding-top:8px;padding-bottom:8px}
  .order-btn{font-size:12px;padding:9px 11px}
  .hero{padding:48px 0 30px}
  .hero-grid{gap:24px}
  h1{font-size:clamp(34px,9vw,48px)}
  h2{font-size:clamp(28px,7vw,36px)}
  .lead{font-size:17px}
  section{padding:34px 0}
  #what-is{padding-top:40px}
  .grid,.bonus-grid,.testimonial-grid,.related-grid,.article-list{grid-template-columns:1fr}
  .bonus-card img{height:220px}
  .guarantee-layout{grid-template-columns:1fr;gap:16px}
  .guarantee-layout>.card{min-height:300px}
  .guarantee-card.featured{padding:24px}
  #order-now .product-card img{height:250px}
  #order-now .product-card .inner{padding:24px}
  .stats{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  table{display:block;overflow-x:auto;white-space:normal}
}

:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
::selection{background:rgba(113,188,255,.25);color:#fff}

.skip-link{position:fixed;left:14px;top:-60px;z-index:100;padding:10px 14px;border-radius:9px;background:#fff;color:#07111f;font-weight:800;box-shadow:0 8px 24px rgba(0,0,0,.25)}
.skip-link:focus{top:14px}
