:root{
  --bg:#040409;
  --bg2:#070712;
  --card:#141727;
  --text:#e9e9f1;
  --muted:#c3c6d8;
  --gold:#f2c56a;
  --gold2:#d9a441;
  --line: rgba(242,197,106,.28);
  --shadow: 0 28px 80px rgba(0,0,0,.70);
  --radius: 18px;
  --radius2: 28px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(242,197,106,.08), transparent 55%),
              radial-gradient(900px 500px at 85% 15%, rgba(217,164,65,.07), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.tiny{font-size:12px;color:var(--muted)}
.kicker{
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}
h1,h2,h3{margin:0 0 10px 0; line-height:1.12}
h1{font-size: 48px; letter-spacing:-.02em}
h2{font-size: 34px; letter-spacing:-.02em}
h3{font-size: 18px}
p{margin:0 0 14px 0;color:var(--muted)}
hr.sep{border:0;border-top:1px solid var(--line);margin:26px 0}

.site-header{
  position: sticky; top:0; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7,7,10,.72);
  border-bottom: 1px solid rgba(242,197,106,.10);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(242,197,106,.22), rgba(217,164,65,.10));
  border:1px solid rgba(242,197,106,.25);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.brand-name{font-weight:900;letter-spacing:.02em}
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--muted);font-weight:700;font-size:14px}
.nav a:hover{color:var(--text)}
.nav-toggle{display:none;background:transparent;border:0;color:var(--text);font-size:20px}
.mobile-nav{display:none;border-top:1px solid rgba(242,197,106,.10)}
.mobile-nav a{display:block;padding:14px 18px;color:var(--muted);font-weight:800}
.mobile-nav a:hover{color:var(--text);background:rgba(242,197,106,.06)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  background: linear-gradient(135deg, rgba(242,197,106,.20), rgba(217,164,65,.08));
  border:1px solid rgba(242,197,106,.34);
  color:var(--text);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.btn:hover{transform: translateY(-1px)}
.btn-small{padding:10px 14px;font-size:13px}
.btn-ghost{
  background: transparent;
  border:1px solid rgba(242,197,106,.30);
  box-shadow:none;
  color: var(--muted);
}
.btn-ghost:hover{color:var(--text);background:rgba(242,197,106,.06)}

.hero{padding: 46px 0 26px 0}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:start}
.hero-card{
  background: rgba(18,20,32,.94);
  border:1px solid rgba(242,197,106,.34);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 26px;
}
.hero h1 span{color: var(--gold)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.hero-meta{
  display:flex;gap:14px;flex-wrap:wrap;margin-top:16px
}
.pill{
  font-size:12px;font-weight:900;color:var(--muted);
  border:1px solid rgba(242,197,106,.34);
  padding:8px 12px;border-radius:999px;
  background: rgba(242,197,106,.04);
}

.genie-panel{
  background: linear-gradient(180deg, rgba(242,197,106,.12), rgba(18,20,32,.92));
  border:1px solid rgba(242,197,106,.34);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
.genie-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.genie-grid img{
  width:100%;height:auto;display:block;
  border-radius: 16px;
  border:1px solid rgba(242,197,106,.30);
  background: rgba(0,0,0,.25);
}
.genie-grid .wide{grid-column:1 / -1}

.section{padding: 40px 0}
.cards{display:grid;grid-template-columns:repeat(3, 1fr);gap:14px}
.card{
  background: rgba(18,20,32,.94);
  border:1px solid rgba(242,197,106,.34);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.card p{margin: 6px 0 0 0}
.card .icon{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(242,197,106,.08);
  border:1px solid rgba(242,197,106,.34);
  margin-bottom: 10px;
}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:8px 0}
.badge{
  display:inline-block;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(242,197,106,.34);
  color:var(--muted);font-weight:900;font-size:12px;
  background: rgba(242,197,106,.04);
}

.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.price{
  padding: 20px;
  border-radius: var(--radius2);
  border:1px solid rgba(242,197,106,.34);
  background: rgba(18,20,32,.94);
  box-shadow: var(--shadow);
}
.price .value{font-size:26px;font-weight:900;color:var(--gold)}
.price .desc{color:var(--muted)}
.price .price-actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

.form{
  background: rgba(15,16,24,.70);
  border:1px solid rgba(242,197,106,.34);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.field{display:flex;flex-direction:column;gap:6px;margin: 10px 0}
label{font-weight:900;font-size:13px;color:var(--muted)}
input, textarea{
  border-radius: 14px;
  border:1px solid rgba(242,197,106,.34);
  background: rgba(0,0,0,.20);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input:focus, textarea:focus{border-color: rgba(242,197,106,.35)}
.alert{
  border:1px solid rgba(242,197,106,.25);
  background: rgba(242,197,106,.06);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.site-footer{padding: 34px 0;border-top:1px solid rgba(242,197,106,.10)}
.footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.footer-brand{font-weight:900}
.footer-sub{color:var(--muted);max-width:420px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:var(--muted);font-weight:800}
.footer-links a:hover{color:var(--text)}
.footer-bottom{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-top:18px}

.bg-orb{
  position: fixed; z-index:-1; filter: blur(45px);
  opacity: .42; pointer-events:none;
}
.orb-1{width:520px;height:520px;left:-140px;top:120px;background: rgba(242,197,106,.09)}
.orb-2{width:420px;height:420px;right:-120px;top:40px;background: rgba(217,164,65,.08)}

@media (max-width: 980px){
  /* mobile orb dim */
  .bg-orb{opacity:.22!important;}

  /* mobile contrast boost */
  /* genie mobile fix */
  .genie-panel{overflow: visible!important;}
  .genie-hero{max-width: 100%!important; max-height: 260px!important;}

  .hero-card,.card,.genie-panel,.price,.form{background: rgba(18,20,32,.96)!important; border-color: rgba(242,197,106,.34)!important;}
  .site-header{background: rgba(4,4,9,.92)!important;}
  p{color:#d7dbee;}

  h1{font-size:38px}
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:block}
}


.brand-mark-img{width:26px;height:26px;display:block;}

/* Genie panel hero image */
.genie-hero{
  width: 100%;
  max-width: 360px;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  margin: 8px auto 10px auto;
  display:block;
  height:auto;
  border-radius: 18px;
  border:1px solid rgba(242,197,106,.34);
  background: rgba(0,0,0,.25);
}

.genie-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 10px;
}

/* surface highlight */
.hero-card,.card,.genie-panel,.price,.form{
  box-shadow: 0 26px 80px rgba(0,0,0,.72);
  position: relative;
}
.hero-card::before,.card::before,.genie-panel::before,.price::before,.form::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 38%);
  mix-blend-mode: screen;
  opacity: .28;
}

/* extra separation for dark mode */
.hero-card,.card,.genie-panel,.price,.form{
  outline: 1px solid rgba(0,0,0,.35);
  outline-offset: 0;
}

/* prominent alert */
.alert.prominent{
  border-color: rgba(242,197,106,.55);
  background: rgba(242,197,106,.10);
  color: #e6e7f4;
}

/* map pin link */
.map-pin{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  margin-left:8px;
  background: rgba(242,197,106,.10);
  border:1px solid rgba(242,197,106,.30);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  text-decoration:none;
}
.map-pin:hover{transform: translateY(-1px); background: rgba(242,197,106,.16);}
