:root{
  --black:#050607;
  --night:#0b0f13;
  --panel:rgba(9,12,15,.78);
  --panel-solid:#11161b;
  --text:#f4f4f4;
  --muted:#c9c9c9;
  --soft:#9fa6ad;
  --red:#e10600;
  --red2:#ff2020;
  --gold:#d8b261;
  --silver:#d6d6d6;
  --line:rgba(255,255,255,.13);
  --line2:rgba(255,255,255,.22);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 76% 12%,rgba(225,6,0,.18),transparent 23%),
    radial-gradient(circle at 16% 88%,rgba(255,255,255,.06),transparent 22%),
    linear-gradient(180deg,#050607 0%,#0d1116 60%,#060708 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.34;
  background-image:url("data:image/svg+xml,%3Csvg width='104' height='90' viewBox='0 0 104 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cpath d='M26 2h52l25 43-25 43H26L1 45 26 2Z' stroke='%23ffffff' stroke-opacity='.18' stroke-width='1.2'/%3E%3Cpath d='M31 10h42l20 35-20 35H31L11 45 31 10Z' stroke='%23ffffff' stroke-opacity='.08' stroke-width='.8'/%3E%3Cpath d='M52 2v8M52 80v8M1 45h10M93 45h10' stroke='%23e10600' stroke-opacity='.34'/%3E%3Ccircle cx='52' cy='2' r='1.8' fill='%23e10600' fill-opacity='.55'/%3E%3Ccircle cx='1' cy='45' r='1.4' fill='%23ffffff' fill-opacity='.3'/%3E%3Ccircle cx='103' cy='45' r='1.4' fill='%23ffffff' fill-opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size:104px 90px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.95),rgba(0,0,0,.18));
}
body>main,body>section,.footer{position:relative;z-index:1}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}
.check a,.legal-links a{color:#ff6c6c;text-decoration:underline;text-underline-offset:3px}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 34px));margin:auto}

.top{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(5,6,7,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}
.scanner{
  height:3px;
  background:linear-gradient(90deg,transparent,rgba(255,0,0,.95),transparent);
  box-shadow:0 0 18px rgba(255,0,0,.85),0 0 32px rgba(255,0,0,.3);
  animation:pulse 3.2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:.44}50%{opacity:1}}
.header{
  padding:17px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.logo{
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-size:clamp(23px,4vw,34px);
}
.logo span{color:var(--red2);text-shadow:0 0 14px rgba(255,0,0,.42)}
.nav{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.nav a{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
}
.hero{
  position:relative;
  overflow:hidden;
  padding:58px 0 54px;
}
.hero::after{
  content:"";
  position:absolute;
  left:6%;
  right:6%;
  top:205px;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,0,0,.9),transparent);
  box-shadow:0 0 22px rgba(255,0,0,.8),0 0 48px rgba(255,0,0,.28);
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,0,0,.28);
  background:rgba(225,6,0,.13);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.09em;
  font-size:12px;
}
.kicker::before{
  content:"";
  width:10px;height:10px;border-radius:50%;
  background:var(--red2);
  box-shadow:0 0 12px var(--red2);
}
h1{
  margin:18px 0 12px;
  font-size:clamp(42px,8vw,88px);
  line-height:.92;
  text-transform:uppercase;
  letter-spacing:.025em;
}
h1 em{
  font-style:normal;
  color:var(--silver);
  text-shadow:0 0 18px rgba(255,255,255,.13);
}
.subtitle{
  font-size:clamp(21px,3vw,34px);
  color:var(--silver);
  font-style:italic;
  font-weight:900;
  margin-bottom:20px;
}
.lead{
  color:var(--muted);
  font-size:18px;
  line-height:1.68;
  max-width:720px;
  margin:0 0 25px;
}
.actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  border:1px solid transparent;
  border-radius:15px;
  padding:15px 22px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  font-weight:900;
  cursor:pointer;
  transition:.22s;
}
.btn-red{
  background:linear-gradient(180deg,#ff2525,#b70000);
  box-shadow:0 0 24px rgba(255,0,0,.25);
  color:white;
}
.btn-red:hover{transform:translateY(-1px);box-shadow:0 0 34px rgba(255,0,0,.38)}
.btn-dark{border-color:var(--line);background:rgba(255,255,255,.055);color:white}
.facts{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.fact{
  min-width:138px;
  padding:15px 17px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.32);
}
.fact b{
  display:block;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:12px;
  margin-bottom:6px;
}
.fact span{font-size:26px;font-weight:900}
.cover-card{
  position:relative;
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  border-radius:30px;
  padding:14px;
  box-shadow:0 18px 70px rgba(0,0,0,.58);
}
.cover-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.2),transparent 24%,rgba(255,0,0,.2) 75%,transparent);
  z-index:-1;
}
.cover-card img{
  width:100%;
  border-radius:20px;
  object-fit:cover;
}
.cover-note{
  position:absolute;
  right:26px;
  bottom:26px;
  max-width:72%;
  background:rgba(0,0,0,.76);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 15px;
  color:#ddd;
  line-height:1.45;
}
.cover-note b{display:block;color:white;margin-bottom:5px}

section{padding:44px 0}
.section-title{
  font-size:clamp(30px,4vw,48px);
  margin:0 0 11px;
  text-transform:uppercase;
  letter-spacing:.025em;
}
.intro{
  color:var(--muted);
  line-height:1.72;
  max-width:860px;
  margin:0 0 26px;
  font-size:17px;
}
.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.box{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 46px rgba(0,0,0,.38);
}
.box h3{margin:0 0 12px;font-size:23px}
.box p{margin:0;color:var(--muted);line-height:1.68}
.highlight{
  border-color:rgba(225,6,0,.32);
  background:linear-gradient(135deg,rgba(225,6,0,.11),rgba(255,255,255,.04));
}
.videos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.video h3{margin:0 0 13px}
video{
  width:100%;
  border-radius:16px;
  background:#000;
  border:1px solid rgba(255,255,255,.08);
}
.order-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:20px;
}
.price-box{
  display:grid;
  gap:12px;
}
.price-line{
  display:flex;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid var(--line);
  padding:11px 0;
  color:var(--muted);
}
.price-line strong{color:white}
.paypal-ready{
  margin-top:16px;
  border:1px solid rgba(255,196,57,.42);
  background:rgba(255,196,57,.09);
  border-radius:17px;
  padding:16px;
}
.paypal-button{
  margin-top:12px;
  width:100%;
  border:0;
  border-radius:13px;
  padding:15px;
  background:#ffc439;
  color:#111;
  font-weight:900;
  font-size:16px;
}
.small{
  color:#aeb5bb;
  font-size:13px;
  line-height:1.55;
}
.formgrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}
.full{grid-column:1/-1}
label{
  display:block;
  font-size:13px;
  color:#e2e2e2;
  font-weight:900;
  margin-bottom:6px;
}
input,textarea,select{
  width:100%;
  color:white;
  padding:13px 14px;
  background:rgba(255,255,255,.065);
  border:1px solid var(--line);
  border-radius:13px;
  outline:none;
}
textarea{min-height:94px;resize:vertical}
input:focus,textarea:focus,select:focus{
  border-color:rgba(225,6,0,.6);
  box-shadow:0 0 0 3px rgba(225,6,0,.12);
}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#cfcfcf;
  font-size:13px;
  line-height:1.45;
}
.check input{width:auto;margin-top:2px}
.legal-links{display:flex;gap:10px;flex-wrap:wrap}
.legal-links a{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  padding:10px 14px;
  border-radius:12px;
}
.notice{
  margin-top:16px;
  padding:14px 16px;
  color:#ffe0a0;
  border:1px solid rgba(255,196,57,.28);
  background:rgba(255,196,57,.075);
  border-radius:15px;
  line-height:1.58;
}
.footer{
  border-top:1px solid var(--line);
  padding:28px 0 42px;
  color:#aaa;
}
.footer-row{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}

@media(max-width:980px){
  .hero-grid,.story,.videos,.order-grid{grid-template-columns:1fr}
  .hero::after{top:166px}
  .cover-note{position:static;max-width:none;margin-top:12px}
}
@media(max-width:640px){
  .container{width:min(100% - 22px,1180px)}
  .header{align-items:flex-start;flex-direction:column}
  .actions .btn{width:100%}
  .formgrid{grid-template-columns:1fr}
  .lead{font-size:16px}
}
