:root{
  --bg:#070A12;
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.52);
  --accent:#7CF0C7;
  --gold:#E8D6A5;
  --shadow:0 26px 70px rgba(0,0,0,.55);
  --radius2:26px;
  --max:980px;
  --focus:rgba(124,240,199,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 550px at 20% 10%, rgba(123,182,255,.18), transparent 60%),
    radial-gradient(900px 550px at 85% 25%, rgba(124,240,199,.14), transparent 60%),
    radial-gradient(1100px 650px at 55% 95%, rgba(232,214,165,.10), transparent 60%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

a{color:inherit}
:focus-visible{outline:2px solid var(--focus); outline-offset:3px; border-radius:12px}

.page{width:100%;min-height:100%;padding:12px 12px 52px}
.wrap{max-width:var(--max);margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  margin:0 auto 10px;
  padding:10px 10px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(7,10,18,.70);
  backdrop-filter: blur(10px);
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none;min-width:0}
.brand-logo{height:28px; width:auto; display:block}
.brand-mark{height:30px;width:auto;display:none}
@media (max-width:420px){
  .brand-logo{display:none}
  .brand-mark{display:block}
}

.nav{
  position:relative;
  flex:0 0 auto;
}
.nav > summary{
  list-style:none;
  cursor:pointer;
  user-select:none;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  padding:10px 12px;
  border-radius:999px;
  font-size:13.5px;
  color:var(--text);
}
.nav > summary::-webkit-details-marker{display:none}
.navpanel{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  width:min(260px, 86vw);
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,10,18,.92);
  box-shadow:0 18px 45px rgba(0,0,0,.45);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.navpanel a{
  text-decoration:none;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-size:14px;
}
.navpanel a:hover{background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.16)}
@media (min-width:920px){
  .nav{display:none}
}

.navlinks{
  display:none;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.navlinks a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  font-size:13.5px;
  color:var(--muted);
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text); border-color:rgba(255,255,255,.16)}
@media (min-width:920px){
  .navlinks{display:flex}
}

/* Always honor the HTML hidden attribute */
[hidden] { display: none !important; }

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  text-decoration:none;border-radius:999px;padding:12px 16px;
  font-size:14px;border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);color:var(--text);
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.18)}
.btn.primary{
  border-color:rgba(124,240,199,.35);
  background:linear-gradient(135deg, rgba(124,240,199,.22), rgba(123,182,255,.12));
  box-shadow:0 16px 40px rgba(0,0,0,.40);
}
.btn.ghost{
  background:transparent;
}
.btn.small{padding:10px 14px;font-size:13.5px}

.hero{
  border-radius:var(--radius2);
  border:1px solid var(--stroke);
  background:linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-inner{padding:18px 14px 18px}

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(232,214,165,.25);
  background:rgba(232,214,165,.08);
  color:rgba(232,214,165,.95);
  font-size:12px;
  letter-spacing:.2px;
}
.h1{
  font-family:"Playfair Display", serif;
  font-size:clamp(30px, 6vw, 46px);
  line-height:1.12;
  margin:12px 0 10px;
  letter-spacing:.2px;
  font-weight:500;
}
.sub{
  color:var(--muted);
  font-size:14.7px;
  margin:0 0 12px;
  max-width:92ch;
}

.bullets{
  margin:12px 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullet{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%, var(--accent), rgba(124,240,199,.2));
  margin-top:5px;
  box-shadow:0 0 0 6px rgba(124,240,199,.08);
  flex:0 0 auto;
}
.bullet p{margin:0;color:var(--muted);font-size:13.6px}

.hero-cta{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-top:10px}
.fineprint{color:var(--muted2);font-size:12.5px;margin:12px 0 0;max-width:96ch}

.section{
  margin-top:14px;
  padding:18px 14px;
  border:1px solid var(--stroke);
  border-radius:var(--radius2);
  background:linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow:0 18px 45px rgba(0,0,0,.40);
}
.section h2{
  font-family:"Playfair Display", serif;
  font-size:22px;
  margin:0 0 10px;
  letter-spacing:.2px;
  font-weight:500;
}
.section p{
  color:var(--muted);
  margin:0 0 12px;
  font-size:14px;
  max-width:96ch;
}

.card{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:16px 14px;
}
.cards{display:grid;gap:12px;margin-top:12px}

.label{
  color:rgba(232,214,165,.95);
  font-size:12px;
  letter-spacing:.2px;
  margin-bottom:8px;
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(232,214,165,.25);
  background:rgba(232,214,165,.08);
}
.title{font-size:16px;margin:0 0 6px;color:var(--text);font-weight:600}
ul{margin:10px 0 0;padding-left:18px}
li{margin:8px 0;color:var(--muted);font-size:13.6px}

details{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px 12px
}
details + details{margin-top:10px}
summary{cursor:pointer;list-style:none;color:var(--text);font-size:14px}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0;color:var(--muted);font-size:13.6px}

.cta-strip{
  margin-top:14px;
  padding:16px 14px;
  border:1px solid rgba(124,240,199,.22);
  border-radius:22px;
  background:linear-gradient(135deg, rgba(124,240,199,.14), rgba(123,182,255,.08));
  box-shadow:0 18px 45px rgba(0,0,0,.38);
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.cta-strip .left{min-width:220px}
.cta-strip .t{
  font-family:"Playfair Display", serif;
  font-size:18px;
  margin:0 0 4px;
  letter-spacing:.2px;
  font-weight:500;
}
.cta-strip .d{
  margin:0;
  color:var(--muted);
  font-size:13.8px;
  max-width:70ch;
}

.footer{
  margin-top:14px;
  color:var(--muted2);
  font-size:12px;
  padding:8px 4px 0;
}
.footer a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.25);
}

.ratio{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  box-shadow:0 18px 45px rgba(0,0,0,.38);
}
.ratio iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

.video-card{margin:0 0 14px}



.calendly-wrap{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}
.calendly-inline-widget{
  width:100%;
  min-width:320px;
  height:880px;
}
@media (max-width:420px){
  .calendly-inline-widget{height:980px}
}

.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background:linear-gradient(to top, rgba(7,10,18,.98), rgba(7,10,18,.55));
  backdrop-filter: blur(10px);
  z-index:60;
}
.sticky-cta-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:10px 10px;
  background:rgba(255,255,255,.04);
}
.sticky-cta .copy{color:var(--muted); font-size:13px; line-height:1.35}
@media (min-width:920px){
  .sticky-cta{display:none}
}

@media (min-width:720px){
  .page{padding:16px 16px 64px}
  .section{padding:22px 18px}
  .hero-inner{padding:26px 18px 26px}
  .brand-logo{height:30px}
}
