:root{
  --bg:#07080b;
  --panel:rgba(10,10,12,0.72);
  --panel2:rgba(10,10,12,0.58);
  --stroke:rgba(255,255,255,0.10);
  --stroke2:rgba(255,255,255,0.14);
  --text:#e9e9ea;
  --muted:rgba(233,233,234,0.70);
  --gold:#d7b25b;
  --gold2:#b8923b;
  --red:#c84b4b;
  --softShadow: 0 18px 60px rgba(0,0,0,0.60);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 50% 10%, rgba(215,178,91,0.15), transparent 60%),
              radial-gradient(900px 600px at 20% 30%, rgba(200,75,75,0.10), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* PREMIUM GOLD FOIL (Safari-safe) */
.goldfoil{
  color: var(--gold);
  text-shadow:
    0 0 1px rgba(215,178,91,0.65),
    0 0 20px rgba(215,178,91,0.10);
}

/* RED */
.red{color:var(--red)}
.loveRed{color:var(--red); font-weight:700}

.topNav{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(6,6,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.topNavInner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.brandMark{display:flex; flex-direction:column; gap:4px}
.brandMini{font-size:12px; letter-spacing:0.18em; opacity:0.8}
.brandName{font-size:14px; letter-spacing:0.16em; text-transform:uppercase}
.brandSubline{
  font-size:13px;
  color:var(--muted);
}
.brandSubline .premium{font-weight:700}
.brandSubline .real{font-weight:700}

.navLinks{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navLink{
  color:rgba(233,233,234,0.80);
  text-decoration:none;
  font-size:14px;
  padding:4px 0;
  border-bottom:1px solid rgba(255,255,255,0.16);
}
.navLink:hover{color:#fff;border-bottom-color:rgba(215,178,91,0.55)}

.hero{
  padding:64px 18px 32px;
}
.heroInner{
  max-width:1080px;
  margin:0 auto;
  text-align:center;
}
.heroKicker{
  font-size:12px;
  letter-spacing:0.28em;
  opacity:0.75;
  margin-bottom:10px;
}
.heroTitle{
  font-family:"Playfair Display", Georgia, serif;
  font-size:56px;
  line-height:1.05;
  margin:0 0 12px;
}
.heroSub{
  max-width:780px;
  margin:0 auto 22px;
  font-size:18px;
  color:var(--muted);
}

.heroButtons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(10,10,12,0.55);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.btn:hover{
  border-color:rgba(215,178,91,0.35);
  transform: translateY(-1px);
}
.btnGold{
  border-color:rgba(215,178,91,0.30);
  background: linear-gradient(180deg, rgba(215,178,91,0.22), rgba(10,10,12,0.55));
}
.btnRed{
  border-color:rgba(200,75,75,0.32);
  background: linear-gradient(180deg, rgba(200,75,75,0.18), rgba(10,10,12,0.55));
}

.heroTag{
  margin-top:12px;
  font-size:14px;
  color:rgba(233,233,234,0.72);
}

.panelWrap{
  padding:18px;
}
.panelGrid{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.panel{
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius:20px;
  padding:18px;
  box-shadow: var(--softShadow);
}
.panelTitle{
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:12px;
  display:inline-block;
  padding-bottom:8px;
}
.goldLine{border-bottom:3px solid rgba(215,178,91,0.70)}
.redLine{border-bottom:3px solid rgba(200,75,75,0.70)}

.panel p{margin:0 0 10px; color:rgba(233,233,234,0.78); line-height:1.55}
.panelEmphasis{margin-top:10px; font-weight:700; color:#fff}
.panel ul{
  margin:0;
  padding-left:18px;
  color:rgba(233,233,234,0.78);
  line-height:1.65;
}

.sectionWrap{
  padding:18px;
}
.sectionCard{
  max-width:1080px;
  margin:0 auto;
  background: var(--panel2);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:22px;
  box-shadow: var(--softShadow);
}
.sectionTitle{
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:14px;
  display:inline-block;
  padding-bottom:8px;
}

.frameworkRow{
  color:rgba(233,233,234,0.68);
  font-size:14px;
  margin-bottom:14px;
}
.frameworkList{display:grid; gap:10px}
.frameworkItem{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  background: rgba(8,8,10,0.35);
}
.fwName{font-weight:800; margin-bottom:4px}
.fwText{color:rgba(233,233,234,0.75); line-height:1.45}
.frameworkItem.aura{
  border-color:rgba(215,178,91,0.18);
  background: radial-gradient(500px 120px at 20% 0%, rgba(215,178,91,0.12), transparent 55%),
              rgba(8,8,10,0.35);
}

.howGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.howBox{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(8,8,10,0.35);
}
.howNum{
  width:34px;height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background: rgba(200,75,75,0.10);
  border:1px solid rgba(200,75,75,0.30);
}
.howHeading{font-weight:800; margin-bottom:2px}
.howText{color:rgba(233,233,234,0.78); line-height:1.4}

.goldInset{
  margin-top:16px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(215,178,91,0.22);
  background: rgba(215,178,91,0.06);
  font-weight:700;
  color:rgba(233,233,234,0.85);
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}
.emailLine{
  margin-top:10px;
  font-size:14px;
  color:rgba(233,233,234,0.70);
}
.emailLine a{color:var(--gold); text-decoration:none}
.emailLine a:hover{text-decoration:underline}

.siteFooter{
  padding:20px 18px 28px;
  border-top:1px solid rgba(255,255,255,0.08);
  margin-top:18px;
}
.footerInner{
  max-width:1080px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  color:rgba(233,233,234,0.62);
  font-size:13px;
}

@media (max-width: 980px){
  .panelGrid{grid-template-columns:1fr}
  .howGrid{grid-template-columns:1fr}
  .heroTitle{font-size:44px}
}

@media (max-width: 520px){
  .heroTitle{font-size:36px}
}