:root{
  --bg:#0b0f1a;
  --panel:rgba(255,255,255,.06);
  --panel-2:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.10);
  --text:#f5f7ff;
  --muted:rgba(245,247,255,.74);
  --muted-2:rgba(245,247,255,.60);
  --indigo:#585AED;
  --teal:#00AEB5;
  --deep-teal:#008080;
  --gold:#E2BD11;
  --coral:#FF5733;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius-sm:12px;
  --container:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 450px at 18% 8%, rgba(88,90,237,.32), transparent 55%),
    radial-gradient(820px 420px at 86% 18%, rgba(0,174,181,.22), transparent 60%),
    radial-gradient(900px 540px at 70% 92%, rgba(226,189,17,.10), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute;
  top:-100px;
  left:16px;
  background:var(--text);
  color:#0b0f1a;
  padding:10px 12px;
  border-radius:10px;
  z-index:1000;
}
.skip-link:focus{top:16px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,26,.72);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:10px; min-width:max-content}
.brand-mark{
  width:14px;
  height:14px;
  border-radius:50%;
  background:conic-gradient(from 90deg, var(--indigo), var(--teal), var(--gold), var(--indigo));
  box-shadow:0 0 0 6px rgba(88,90,237,.12);
}
.brand-name{font-weight:600; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:12px}
.nav-menu{display:flex; align-items:center; gap:18px}
.nav-link{color:var(--muted); font-weight:500; font-size:14px}
.nav-link:hover{color:var(--text)}

.header-cta{display:inline-flex}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle-line{display:block; width:18px; height:2px; background:rgba(245,247,255,.84); border-radius:2px}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:600;
  font-size:14px;
  letter-spacing:.2px;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active{transform:translateY(1px)}

.btn-primary{
  background:linear-gradient(135deg, rgba(88,90,237,.95), rgba(0,174,181,.78));
  border-color:rgba(255,255,255,.10);
  box-shadow:0 10px 28px rgba(88,90,237,.22);
}
.btn-primary:hover{box-shadow:0 14px 36px rgba(88,90,237,.28)}

.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.12);
  color:var(--text);
}
.btn-secondary:hover{background:rgba(255,255,255,.07)}

.btn-block{width:100%}

.hero{padding:72px 0 40px}
.hero-grid{display:grid; grid-template-columns:1.25fr .85fr; gap:32px; align-items:start}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:500;
  font-size:13px;
  letter-spacing:.28px;
  margin:0 0 12px;
}

h1{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.06;
  letter-spacing:-.9px;
}

.lede{margin:0 0 22px; color:var(--muted); font-size:16px; max-width:62ch}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.trust-row{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 10px}
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.trust-pill strong{color:var(--text)}
.trust-dot{width:8px; height:8px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 6px rgba(0,174,181,.12)}

.micro{margin:10px 0 0; color:var(--muted-2); font-size:13px}

.hero-card{
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card-inner{padding:20px}

.h3{font-size:18px; margin:0 0 8px}
.h4{font-size:16px; margin:0 0 12px}

.muted{color:var(--muted)}

.divider{height:1px; background:rgba(255,255,255,.10); margin:16px 0}

.contact-mini{display:flex; flex-direction:column; gap:8px}
.contact-link{color:var(--muted); font-size:13px}
.contact-link:hover{color:var(--text)}

.section{padding:64px 0}
.section-alt{background:rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}

.section-head{max-width:72ch; margin-bottom:28px}
.section-head h2{margin:0 0 10px; font-size:30px; letter-spacing:-.4px}
.section-head p{margin:0}

.cards-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.steps{list-style:none; padding:0; margin:0; display:grid; gap:12px}
.step{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:16px;
}
.step-num{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  background:rgba(88,90,237,.16);
  border:1px solid rgba(88,90,237,.30);
}
.step-body h3{margin:0 0 6px; font-size:16px}
.step-body p{margin:0; color:var(--muted); font-size:14px}

.service-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.service{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.service h3{margin:0 0 8px; font-size:16px}
.service p{margin:0; color:var(--muted); font-size:14px}

.about-grid{display:grid; grid-template-columns:1.25fr .75fr; gap:24px; align-items:start}
.prose p{margin:0 0 12px; color:var(--muted)}
.prose p strong{color:var(--text)}

.founder-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.founder-photo{
  aspect-ratio:4/5;
  background:
    radial-gradient(240px 240px at 30% 28%, rgba(0,174,181,.24), transparent 60%),
    radial-gradient(240px 240px at 70% 62%, rgba(88,90,237,.22), transparent 60%),
    rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
}
.founder-photo-inner{
  width:86%;
  height:86%;
  border:1px dashed rgba(255,255,255,.20);
  border-radius:var(--radius-sm);
  display:flex;
  align-items:center;
  justify-content:center;
}
.founder-meta{padding:14px 16px}
.founder-title{font-weight:700; margin-bottom:4px}

.quotes{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px}
.quote{
  margin:0;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.quote blockquote{margin:0 0 12px; color:var(--muted); font-size:14px}
.quote figcaption{font-size:13px}

.book-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}

.roadmap{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:18px;
}

.checklist{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.checklist li{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}
.checklist li::before{
  content:"";
  width:18px;
  height:18px;
  border-radius:6px;
  background:rgba(0,174,181,.16);
  border:1px solid rgba(0,174,181,.34);
  box-shadow:0 0 0 6px rgba(0,174,181,.08);
}

.booking-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.contact-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.contact-item{
  padding:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
}
.contact-item a{color:var(--text); font-weight:600}

.calendly-wrap{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  min-height:720px;
}

.site-footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(11,15,26,.78);
}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-brand{font-weight:700; margin-bottom:6px}
.footer-right{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-size:14px}
.disabled-link{opacity:.5; pointer-events:none}

@media (max-width: 980px){
  h1{font-size:40px}
  .hero-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .book-grid{grid-template-columns:1fr;}
  .cards-3{grid-template-columns:1fr;}
  .service-grid{grid-template-columns:1fr;}
  .quotes{grid-template-columns:1fr;}
  .contact-block{grid-template-columns:1fr;}
  .header-cta{display:none}
  .nav-toggle{display:inline-flex}
  .nav-menu{
    position:absolute;
    right:20px;
    top:66px;
    width:min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(11,15,26,.92);
    backdrop-filter:saturate(150%) blur(12px);
    box-shadow:var(--shadow);
  }
  .nav-menu.is-open{display:flex}
  .nav-link{padding:10px 10px; border-radius:12px; background:rgba(255,255,255,.03)}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
