
:root{
  --bg:#050505;
  --panel:#101010;
  --text:#f6f2e8;
  --muted:#b8b0a4;
  --line:rgba(255,255,255,.13);
  --gold:#d5aa5f;
  --gold2:#f3d68d;
  --shadow:0 26px 88px rgba(0,0,0,.58);
  --radius:30px;
  --max:1180px;
  --green:#9ad38b;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 16% 9%,rgba(213,170,95,.23),transparent 30%),
    radial-gradient(circle at 88% 20%,rgba(255,255,255,.07),transparent 26%),
    linear-gradient(180deg,#050505 0%,#0b0b0b 54%,#050505 100%);
  line-height:1.52;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(18px);
}

.nav-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.logo img{
  width:182px;
  height:auto;
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.45));
}

.nav-note{
  color:var(--muted);
  font-size:.92rem;
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-note a:hover{color:var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 23px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:850;
  transition:.22s ease;
  cursor:pointer;
  white-space:nowrap;
  text-decoration:none;
  font-family:inherit;
  line-height:1;
}

.btn-primary{
  color:#080808;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  box-shadow:0 16px 48px rgba(213,170,95,.24);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 60px rgba(213,170,95,.32);
}

.btn-secondary{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.07);
  color:var(--text);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(213,170,95,.46);
  background:rgba(213,170,95,.1);
}

.hero{
  padding:70px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:44px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border-radius:999px;
  color:var(--gold2);
  background:rgba(213,170,95,.09);
  border:1px solid rgba(213,170,95,.24);
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.05em;
  margin-bottom:20px;
  text-transform:uppercase;
}

.dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 18px var(--gold);
}

h1,h2,h3{letter-spacing:-.055em}
h1{
  font-size:clamp(2.65rem,7vw,6.25rem);
  line-height:.89;
  margin-bottom:20px;
}
h2{
  font-size:clamp(2rem,4.7vw,3.75rem);
  line-height:.98;
  margin-bottom:16px;
}
h3{
  font-size:1.32rem;
  line-height:1.08;
}
p{color:var(--muted)}
.hero p{
  font-size:clamp(1.03rem,1.7vw,1.22rem);
  max-width:700px;
}

.gradient-text{
  background:linear-gradient(135deg,#fff,var(--gold2) 58%,#b38335);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.price-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin:26px 0 4px;
}

.old-price{
  color:#8f877c;
  font-size:1.15rem;
  text-decoration:line-through;
}

.new-price{
  color:var(--gold2);
  font-size:clamp(2.1rem,4vw,3.2rem);
  font-weight:1000;
  letter-spacing:-.07em;
}

.price-note{
  color:var(--muted);
  font-size:.96rem;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:26px;
}

.mockup-card{
  border-radius:36px;
  border:1px solid rgba(213,170,95,.27);
  overflow:hidden;
  background:
    radial-gradient(circle at center top,rgba(213,170,95,.16),transparent 44%),
    rgba(255,255,255,.035);
  box-shadow:var(--shadow);
  padding:14px;
}

.mockup-card img{
  width:100%;
  border-radius:26px;
}

.section{
  padding:76px 0;
}

.section-head{
  max-width:800px;
  margin-bottom:34px;
}

.section-kicker{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.76rem;
  font-weight:950;
  margin-bottom:12px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.026));
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 16px 48px rgba(0,0,0,.18);
}

.card p{margin-top:10px}

.video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(213,170,95,.25);
  box-shadow:var(--shadow);
  background:#0b0b0b;
}

.video-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-fallback{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.big-statement{
  border-radius:36px;
  border:1px solid rgba(213,170,95,.22);
  padding:44px;
  background:
    radial-gradient(circle at 12% 8%,rgba(213,170,95,.16),transparent 35%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:var(--shadow);
}

.checklist{
  list-style:none;
  display:grid;
  gap:10px;
  margin:18px 0 22px;
  color:#ded7cc;
}
.checklist li{display:flex;gap:9px}
.checklist li::before{
  content:"✓";
  color:var(--green);
  font-weight:950;
}

.index-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.index-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  border-radius:24px;
  padding:22px;
}

.index-card h3{
  color:var(--gold2);
  margin-bottom:12px;
}

.index-card ul{
  list-style:none;
  display:grid;
  gap:8px;
  color:#ded7cc;
}

.index-card li{
  display:flex;
  gap:8px;
}

.index-card li::before{
  content:"•";
  color:var(--gold2);
  font-weight:900;
}

.offer-box{
  border-radius:36px;
  border:1px solid rgba(213,170,95,.3);
  background:
    radial-gradient(circle at center top,rgba(213,170,95,.2),transparent 45%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.026));
  padding:36px;
  box-shadow:var(--shadow);
}

.offer-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:22px;
  align-items:center;
}

.bonus{
  display:inline-flex;
  margin-bottom:16px;
  color:#080808;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:1000;
}

.faq{
  display:grid;
  gap:12px;
  max-width:900px;
}

details{
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  border-radius:18px;
  padding:18px 20px;
}

summary{
  cursor:pointer;
  font-weight:880;
}

details p{margin-top:11px}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:var(--muted);
  font-size:.9rem;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.socials a{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.045);
  color:#ded7cc;
  padding:10px 13px;
  border-radius:999px;
  font-size:.9rem;
}

.socials a:hover{
  color:var(--text);
  border-color:rgba(213,170,95,.4);
}

@media (max-width:980px){
  .nav-note{display:none}
  .hero-grid,.grid-2,.offer-row{grid-template-columns:1fr}
  .grid-3,.index-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:620px){
  .container{width:min(100% - 28px,var(--max))}
  .nav-inner{min-height:70px}
  .logo img{width:148px}
  .nav .btn{display:none}
  .hero{padding:44px 0 42px}
  .hero-actions .btn,
  .offer-box .btn{width:100%}
  .grid-3,.index-grid{grid-template-columns:1fr}
  .section{padding:58px 0}
  .big-statement,.offer-box{padding:26px}
}
