:root{
  --bg:#0F1115;
  --panel:#111317;
  --text:#F1F1F1;
  --muted:rgba(241,241,241,.72);
  --gold:#C6A55B;
  --hair:rgba(241,241,241,.10);
  --shadow: 0 16px 48px rgba(0,0,0,.45);
  --radius: 16px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(198,165,91,.14), transparent 55%),
              radial-gradient(900px 500px at 95% 10%, rgba(198,165,91,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
/* Header */
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(140%) blur(10px);
  background: rgba(15,17,21,.65);
  border-bottom:1px solid var(--hair);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
  letter-spacing:.24em; font-weight:700;
}
.logo{
  width:34px; height:34px; border-radius:10px;
  border:1px solid rgba(198,165,91,.55);
  display:grid; place-items:center;
  box-shadow: 0 0 0 6px rgba(198,165,91,.06);
}
.logo span{
  color:var(--gold); font-weight:800; letter-spacing:.06em;
}
.navlinks{display:flex; align-items:center; gap:14px;}
.link{
  text-decoration:none; color:var(--muted);
  font-weight:600;
}
.link:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(198,165,91,.20), rgba(198,165,91,.08));
  border:1px solid rgba(198,165,91,.52);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.btn:hover{transform: translateY(-1px); transition: .12s ease;}
/* Sections */
.section{padding:72px 0; border-bottom:1px solid var(--hair);}
.section:last-of-type{border-bottom:none;}
.hero{padding:72px 0 48px;}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted);
  font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:12px;
}
.dot{width:6px; height:6px; border-radius:99px; background:var(--gold); box-shadow: 0 0 0 6px rgba(198,165,91,.10);}
.h1{
  font-size: clamp(34px, 5vw, 56px);
  line-height:1.08;
  margin:14px 0 14px;
  letter-spacing:-.02em;
}
.sub{
  color:var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 70ch;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  margin-top:26px;
}
.card{
  background: linear-gradient(180deg, rgba(17,19,23,.92), rgba(17,19,23,.72));
  border:1px solid rgba(241,241,241,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.proof ul{margin:0; padding-left:18px;}
.proof li{margin:10px 0; color:var(--muted)}
.ctaRow{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:18px;}
.micro{color:var(--muted); font-size:13px; margin-top:10px;}
.h2{
  font-size: clamp(24px, 3vw, 34px);
  margin:0 0 12px;
}
.p{color:var(--muted); max-width: 78ch; margin:0 0 14px;}
.grid{
  display:grid;
  gap:16px;
}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr));}
.grid.three{grid-template-columns: repeat(3, minmax(0,1fr));}
.mini h3{margin:0 0 8px; font-size:15px; letter-spacing:.06em; text-transform:uppercase; color:var(--text);}
.mini ul{margin:0; padding-left:18px;}
.mini li{color:var(--muted); margin:8px 0;}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background: rgba(198,165,91,.10);
  border:1px solid rgba(198,165,91,.35);
  color:var(--text); font-weight:700;
}
.price{
  font-size:14px; color:var(--muted); margin:0 0 8px;
}
.tierTitle{margin:8px 0 10px; font-size:18px;}
.tier ul{margin:0; padding-left:18px;}
.tier li{color:var(--muted); margin:8px 0;}
.hr{height:1px; background:var(--hair); margin:18px 0;}
.footer{
  padding:28px 0 44px;
  color:var(--muted);
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.footerRow{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
}
.small{font-size:13px;}
/* Simple page layout */
.pageTitle{padding:54px 0 20px;}
.doc{
  padding: 0 0 56px;
}
.doc h1{margin:0 0 10px;}
.doc h2{margin:28px 0 10px; font-size:18px; letter-spacing:.02em;}
.doc p, .doc li{color:var(--muted);}
.doc ul{padding-left:18px;}
/* Responsive */
@media (max-width: 900px){
  .heroGrid{grid-template-columns: 1fr;}
  .grid.three{grid-template-columns: 1fr;}
  .grid.two{grid-template-columns: 1fr;}
}
/* === Perfecting touches === */
::selection{background: rgba(198,165,91,.35); color: var(--text);}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:20px; width:auto; height:auto; padding:10px 14px;
  background: var(--panel); border:1px solid rgba(241,241,241,.16);
  border-radius: 999px; z-index:9999;
}
/* Nicer headings and rhythm */
.h2{letter-spacing:-.01em}
.card{transition: transform .14s ease, border-color .14s ease, background .14s ease;}
.card:hover{border-color: rgba(198,165,91,.35); transform: translateY(-1px);}
/* Inline pill links */
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  background: rgba(241,241,241,.06);
  border:1px solid rgba(241,241,241,.10);
  color:var(--muted); text-decoration:none; font-weight:700; font-size:13px;
}
.pill:hover{color:var(--text); border-color: rgba(198,165,91,.35);}
/* FAQ */
.faq details{
  background: rgba(241,241,241,.04);
  border:1px solid rgba(241,241,241,.10);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  letter-spacing:.01em;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none;}
.faq details p{margin:10px 0 0;}
/* Tiny grid for “What you’ll need” */
.need{display:grid; gap:12px;}
.needItem{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px 16px; border-radius:14px;
  border:1px solid rgba(241,241,241,.10);
  background: rgba(17,19,23,.60);
}
.icon{
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(198,165,91,.40);
  display:grid; place-items:center; color:var(--gold);
  background: rgba(198,165,91,.08);
}
.needItem h3{margin:0 0 6px; font-size:14px; text-transform:uppercase; letter-spacing:.08em;}
.needItem p{margin:0; color:var(--muted); font-size:14px;}
/* Footer spacing */
.footer{border-top:1px solid var(--hair);}
/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .btn:hover{transform:none}
  .card{transition:none}
  .card:hover{transform:none}
}

/* === Visual polish v4 === */
:root{
  --panel2: rgba(17,19,23,.62);
  --gold2: rgba(198,165,91,.55);
  --hair2: rgba(241,241,241,.12);
}

body{
  background:
    radial-gradient(1100px 620px at 18% -12%, rgba(198,165,91,.16), transparent 56%),
    radial-gradient(900px 560px at 98% 18%, rgba(198,165,91,.12), transparent 54%),
    radial-gradient(700px 420px at 78% 92%, rgba(241,241,241,.06), transparent 55%),
    var(--bg);
}

.container{padding:0 22px}

/* Nav: slightly tighter + clearer */
.nav{padding:12px 0}
.brand{letter-spacing:.28em}
.navlinks{gap:12px}

/* Buttons: sharper + premium */
.btn{
  padding:12px 18px;
  background: linear-gradient(180deg, rgba(198,165,91,.26), rgba(198,165,91,.10));
  border:1px solid rgba(198,165,91,.60);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0,0,0,.48);
}

/* Headings: cleaner rhythm */
.h1{
  margin:14px 0 12px;
  letter-spacing:-.03em;
}
.sub{max-width: 72ch}

/* Section spacing + divider line */
.section{padding:78px 0}
.section .h2{margin-bottom:10px}
.section::before{
  content:"";
  display:block;
  width:100%;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(198,165,91,.22), transparent);
  margin: 0 0 46px 0;
}
.hero{padding:78px 0 54px}
.hero .card{padding:22px}

/* Cards: calmer surface */
.card{
  background: linear-gradient(180deg, rgba(17,19,23,.90), rgba(17,19,23,.68));
  border:1px solid rgba(241,241,241,.11);
}
.card:hover{border-color: rgba(198,165,91,.38)}

/* Badges: more precise */
.badge{
  background: rgba(198,165,91,.12);
  border:1px solid rgba(198,165,91,.40);
}

/* Bullets: slightly tighter */
.proof li, .mini li, .tier li{margin:7px 0}

/* Pills: improved */
.pill{
  background: rgba(17,19,23,.55);
  border:1px solid rgba(241,241,241,.12);
}
.pill:hover{border-color: rgba(198,165,91,.40)}

/* FAQ indicators */
.faq summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq summary::after{
  content:"+"; color: var(--gold); font-weight:900;
  width:22px; height:22px; display:grid; place-items:center;
  border-radius:8px;
  border:1px solid rgba(198,165,91,.40);
  background: rgba(198,165,91,.10);
}
.faq details[open] summary::after{content:"–"}

/* Featured tier */
.tier.featured{
  border-color: rgba(198,165,91,.65);
  box-shadow: 0 26px 72px rgba(0,0,0,.55), 0 0 0 6px rgba(198,165,91,.07);
  transform: translateY(-2px);
}
.tier.featured .badge{
  background: rgba(198,165,91,.16);
  border-color: rgba(198,165,91,.60);
}
.tier.featured .btn{
  background: linear-gradient(180deg, rgba(198,165,91,.34), rgba(198,165,91,.14));
}

/* Make pricing lines feel deliberate */
.price strong{color: var(--text)}
.price{
  font-size:14px;
  color: rgba(241,241,241,.78);
}

/* Footer */
.footer{
  margin-top: 10px;
  background: rgba(15,17,21,.55);
}

/* Mobile tweaks */
@media (max-width: 900px){
  .section{padding:64px 0}
  .section::before{margin-bottom:36px}
}
