:root{
  --bg:#050518;
  --bg2:#0a0a2e;
  --bg3:#0d0d35;
  --gold:#d4a537;
  --gold2:#fcd34d;
  --text:#f9fafb;
  --muted:#d1d5db;
  --muted2:#9ca3af;
  --red:#f87171;
  --amber:#f59e0b;
  --border:rgba(255,255,255,.08);
  --shadow:0 20px 50px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Inter',Arial,Helvetica,sans-serif;
  background:linear-gradient(to bottom,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.65;
}

img{max-width:100%;display:block}

a{color:inherit;text-decoration:none}

.serif{
  font-family:'Crimson Text',Georgia,'Times New Roman',serif;
}

.text-gold{color:var(--gold2)}
.text-red{color:var(--red)}
.text-blue{color:#93c5fd}
.text-purple{color:#c4b5fd}
.text-amber{color:#fbbf24}

.nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(5,5,24,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 1.25rem;
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:.9rem;
  min-width:0;
}

.nav-logo img{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:.4rem;
}

.nav-logo-text{
  font-size:1.7rem;
  font-weight:700;
  line-height:1;
  color:#fff;
  white-space:nowrap;
}

.nav-logo-text span{color:var(--gold)}

.nav-logo-sub{
  color:var(--gold2);
  font-size:.85rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-top:.2rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.15rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-link{
  color:#fff;
  font-weight:600;
  font-size:.98rem;
}

.nav-link:hover{color:var(--gold2)}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.7rem 1rem;
  border-radius:.6rem;
  background:linear-gradient(to right,#b45309,#d97706);
  color:#fff;
  font-weight:700;
  white-space:nowrap;
}

.nav-mobile-btn{
  display:none;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}

.nav-mobile{
  display:none;
  flex-direction:column;
  gap:.75rem;
  padding:1rem 1.25rem 1.25rem;
  background:#050518;
  border-top:1px solid var(--border);
}

.nav-mobile.show{display:flex}

.hero{
  position:relative;
  overflow:hidden;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,var(--bg2),var(--bg3));
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.28;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(5,5,24,.35),rgba(5,5,24,.82));
}

.hero-overlay2{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,rgba(212,165,55,.12),transparent 55%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1080px;
  padding:6rem 1.5rem 5rem;
  text-align:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.45rem .85rem;
  border:1px solid rgba(212,165,55,.35);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--gold2);
  font-weight:600;
  font-size:.95rem;
  margin-bottom:1.3rem;
}

.hero-badge svg{
  width:18px;
  height:18px;
}

.hero h1{
  font-size:clamp(2.8rem,8vw,5.4rem);
  line-height:.95;
  margin:.25rem 0;
  font-weight:700;
}

.hero .gold{color:var(--gold2)}

.subtitle{
  font-size:clamp(1.5rem,4vw,2.3rem);
  color:#fef3c7;
  margin:0 0 1rem;
}

.desc{
  max-width:860px;
  margin:0 auto 1rem;
  color:var(--muted);
  font-size:1.08rem;
}

.hl{color:var(--gold2);font-weight:700}

.hero-quote{
  max-width:760px;
  margin:2rem auto 0;
  padding:1.15rem 1.2rem;
  border-left:4px solid var(--gold);
  background:rgba(255,255,255,.04);
  border-radius:.85rem;
}

.hero-quote p{
  margin:0 0 .45rem;
  font-size:1.3rem;
  color:#fff;
}

.hero-quote cite{
  color:var(--muted2);
  font-style:normal;
}

.hero-btns{
  margin-top:2rem;
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-primary,.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.3rem;
  border-radius:.75rem;
  font-weight:700;
  transition:.2s ease;
}

.btn-primary{
  background:linear-gradient(to right,#b45309,#d97706);
  color:#fff;
}

.btn-secondary{
  border:1px solid rgba(212,165,55,.35);
  color:#fff;
  background:rgba(255,255,255,.03);
}

.btn-primary:hover,.btn-secondary:hover{
  transform:translateY(-1px);
}

.hero-stats{
  margin-top:2.3rem;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.hero-stat{
  padding:1rem;
  border:1px solid var(--border);
  border-radius:1rem;
  background:rgba(255,255,255,.04);
}

.hero-stat .num{
  color:var(--gold2);
  font-size:1.8rem;
  font-weight:800;
}

.hero-stat .label{
  color:var(--muted);
  font-size:.95rem;
}

.section{
  padding:5rem 1.25rem;
}

.section-dark{
  background:linear-gradient(to bottom,#070722,#0a0a2e);
}

.section-inner,.section-narrow{
  max-width:1200px;
  margin:0 auto;
}

.section-narrow{max-width:900px}

.sh{
  text-align:center;
  margin-bottom:2.2rem;
}

.sh h2{
  margin:.4rem 0;
  font-size:clamp(2rem,5vw,3rem);
}

.sh p{
  margin:0 auto;
  max-width:860px;
  color:var(--muted);
  font-size:1.02rem;
}

.sh-deco{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.9rem;
  margin-bottom:.5rem;
}

.sh-line{
  width:80px;
  height:1px;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
}

.sh-star{
  width:18px;
  height:18px;
  color:var(--gold);
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:2rem;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.4rem;
}

.card,.compare-box,.book-card,.resource-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:1rem;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card-img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.card-body{
  padding:1.15rem;
}

.compare-box{
  padding:1.25rem;
}

.compare-seal{
  border-color:rgba(212,165,55,.28);
  background:linear-gradient(180deg,rgba(212,165,55,.08),rgba(255,255,255,.03));
}

.compare-mark{
  border-color:rgba(239,68,68,.22);
  background:linear-gradient(180deg,rgba(127,29,29,.18),rgba(255,255,255,.03));
}

.compare-list{
  list-style:none;
  padding:0;
  margin:1rem 0 0;
}

.compare-list li{
  display:flex;
  gap:.7rem;
  margin:.7rem 0;
  color:var(--muted);
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:.5rem;
  flex:0 0 10px;
}

.dot-gold{background:var(--gold2)}
.dot-red{background:var(--red)}

.compare-result{
  margin-top:1rem;
  padding:.85rem 1rem;
  border-radius:.8rem;
  font-weight:700;
}

.result-gold{
  background:rgba(212,165,55,.12);
  color:#fef3c7;
}

.result-red{
  background:rgba(239,68,68,.12);
  color:#fecaca;
}

.sq{
  padding:1rem 1.1rem;
  border-radius:1rem;
  margin-top:1rem;
  border:1px solid var(--border);
}

.sq p{margin:0 0 .45rem}
.sq cite{color:var(--muted2);font-style:normal}

.sq-gold{
  background:linear-gradient(180deg,rgba(212,165,55,.10),rgba(255,255,255,.03));
  border-color:rgba(212,165,55,.25);
}

.sq-dark{
  background:rgba(0,0,0,.18);
}

.sq-default{
  background:rgba(255,255,255,.03);
}

.bg-red-subtle,.bg-amber-subtle,.bg-blue-subtle,.bg-purple-subtle{
  padding:1.2rem;
  border-radius:1rem;
  border:1px solid var(--border);
}

.bg-red-subtle{background:rgba(127,29,29,.18)}
.bg-amber-subtle{background:rgba(180,83,9,.14)}
.bg-blue-subtle{background:rgba(30,64,175,.18)}
.bg-purple-subtle{background:rgba(91,33,182,.15)}

.egw{
  margin-top:1rem;
  padding:1rem 1.1rem;
  border-radius:1rem;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  position:relative;
}

.egw-bar{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(to bottom,var(--gold),#b45309);
  border-radius:1rem 0 0 1rem;
}

.egw p,.egw cite{
  margin-left:.7rem;
}

.book-card{
  padding:1.2rem;
}

.book-card h4{
  margin:0 0 .35rem;
  font-size:1.4rem;
  color:#fff;
}

.book-card .author{
  color:var(--gold2);
  font-weight:700;
}

.book-card .year{
  color:var(--muted2);
  margin:.25rem 0 .8rem;
}

.book-link{
  display:inline-block;
  margin-top:.9rem;
  color:var(--gold2);
  font-weight:700;
}

.resource-card{
  padding:1.1rem;
}

.resource-card h4{
  margin:0 0 .35rem;
  color:#fff;
}

.footer-banner{
  text-align:center;
  padding:2rem 1rem 1rem;
  border-bottom:1px solid var(--border);
}

.footer-banner p{
  margin:0 0 .35rem;
  font-size:1.2rem;
  color:#fff;
}

.footer-banner cite{
  color:var(--muted2);
  font-style:normal;
}

.footer-main{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:2rem;
  padding:2.2rem 1.25rem;
}

.footer-col h4{
  margin:0 0 .8rem;
  color:#fff;
}

.footer-col p,.footer-col li,.footer-col a{
  color:var(--muted);
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin:.45rem 0;
}

.footer-bottom{
  border-top:1px solid var(--border);
  text-align:center;
  padding:1.1rem 1rem 2rem;
  color:var(--muted2);
}

.footer-stripe{
  height:5px;
  background:linear-gradient(to right,#7f1d1d,#d97706,#d4a537,#d97706,#7f1d1d);
}

.btt{
  position:fixed;
  right:1rem;
  bottom:1rem;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:linear-gradient(to right,#b45309,#d97706);
  color:#fff;
  box-shadow:var(--shadow);
  cursor:pointer;
}

@media (max-width: 1100px){
  .nav-links{display:none}
  .nav-mobile-btn{display:block}
  .grid-2,.grid-3,.footer-main{grid-template-columns:1fr}
}

@media (max-width: 700px){
  .hero-stats{grid-template-columns:1fr}
  .hero-content{padding-top:5rem}
  .nav-logo-text{font-size:1.35rem}
  .subtitle{font-size:1.35rem}
}