/* BlazeVincent.com — clean landing (HTML+CSS only, tiny JS for menu/theme)
   Tip: Replace the BV avatar with a real image:
   - Put an image file in the same folder (e.g., profile.jpg)
   - In index.html replace the .avatar block with <img class="avatar-img" src="profile.jpg" alt="Blaze Vincent" />
*/

:root{
  --bg: #0b1020;
  --bg2:#0a0f1d;
  --card:#0f1730;
  --text:#e9eefc;
  --muted:#b6c0df;
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --primary: #7c5cff;
  --primary2:#28d7ff;
  --focus: #ffffff;

  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

:root[data-theme="light"]{
  --bg: #f7f8fe;
  --bg2:#f3f5ff;
  --card:#ffffff;
  --text:#0b1020;
  --muted:#4d587a;
  --border: rgba(9,14,33,.12);
  --shadow: 0 18px 60px rgba(25,35,70,.14);
  --primary: #5b41ff;
  --primary2:#007bff;
  --focus: #0b1020;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(40,215,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

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

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

/* Skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{left:12px}

/* Header / nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10,15,29,.55);
  border-bottom:1px solid var(--border);
}
:root[data-theme="light"] .site-header{
  background: rgba(247,248,254,.75);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:-.02em;
}
.brand-mark{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  color:white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 30px rgba(124,92,255,.25);
}
.brand-name{font-size:15px}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.menu-link{
  padding:10px 10px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.menu-link:hover{background: rgba(255,255,255,.06); color:var(--text)}
:root[data-theme="light"] .menu-link:hover{background: rgba(9,14,33,.06)}
.menu-link.is-active{color:var(--text)}

.nav-cta{display:flex; align-items:center; gap:10px}
.theme-toggle{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
:root[data-theme="light"] .theme-toggle{background: rgba(9,14,33,.04)}
.theme-icon{font-size:16px}

.hamburger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 0;
  border-radius:2px;
}
:root[data-theme="light"] .hamburger{background: rgba(9,14,33,.04)}

.mobile-menu{
  display:none;
  padding:12px 0 18px 0;
  border-top:1px solid var(--border);
}
.mobile-menu .menu-link{display:block; padding:12px 12px}
.mobile-cta{display:flex; gap:10px; padding:12px 12px 6px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
  font-size:14px;
  line-height:1;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

.btn-primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:white;
  box-shadow: 0 14px 40px rgba(124,92,255,.22);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
}
:root[data-theme="light"] .btn-ghost{background: rgba(9,14,33,.04)}
.btn-sm{padding:10px 12px; border-radius:12px; font-size:13px}

.link{
  color:var(--muted);
  font-weight:700;
}
.link:hover{color:var(--text)}

/* Hero */
.hero{
  position:relative;
  padding:72px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:28px;
  align-items: start;
}
.eyebrow{
  color:var(--muted);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height:1.02;
  letter-spacing:-.03em;
}
.lead{
  margin:0 0 18px;
  font-size: clamp(16px, 2.2vw, 18px);
  color:var(--muted);
  line-height:1.65;
}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px}
.trust-row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  font-weight:700;
  color:var(--text);
  font-size:13px;
}
:root[data-theme="light"] .pill{background: rgba(9,14,33,.03)}

.hero-card{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background:
    radial-gradient(500px 200px at 10% 0%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(500px 200px at 90% 0%, rgba(40,215,255,.18), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:22px;
  overflow:hidden;
}
:root[data-theme="light"] .hero-card{
  background:
    radial-gradient(500px 200px at 10% 0%, rgba(91,65,255,.18), transparent 60%),
    radial-gradient(500px 200px at 90% 0%, rgba(0,123,255,.12), transparent 60%),
    rgba(255,255,255,.85);
}

.profile{display:flex; gap:14px; align-items:center}
.avatar{
  width:58px; height:58px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display:grid;
  place-items:center;
  font-weight:900;
  color:white;
  letter-spacing:-.05em;
}
.avatar-img{
  width:58px; height:58px; border-radius:18px; object-fit:cover;
  border:1px solid var(--border);
}
.profile-name{margin:0; font-weight:900; letter-spacing:-.02em}
.profile-role{margin:2px 0 0; color:var(--muted); font-weight:700; font-size:13px}
.profile-org{margin:2px 0 0; color:var(--muted); font-weight:700; font-size:13px}

.hero-metrics{
  display:grid;
  gap:12px;
  margin:18px 0 8px;
}
.metric{
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:14px;
}
:root[data-theme="light"] .metric{background: rgba(9,14,33,.03)}
.metric-value{font-weight:900; letter-spacing:-.02em}
.metric-label{color:var(--muted); font-weight:700; font-size:13px; margin-top:6px}

.hero-links{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--border);
}

.sparkle{
  position:absolute;
  inset:auto -80px -80px auto;
  width:220px;
  height:220px;
  border-radius:999px;
  filter: blur(0px);
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.35), transparent 60%),
              radial-gradient(circle at 60% 60%, rgba(40,215,255,.25), transparent 62%);
  opacity:.9;
}

/* Sections */
.section{
  padding:54px 0;
}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
:root[data-theme="light"] .section.alt{background: rgba(9,14,33,.03)}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-head h2{margin:0; font-size:26px; letter-spacing:-.02em}
.section-head p{margin:0; max-width: 54ch}

.muted{color:var(--muted)}
.small{font-size:13px; line-height:1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
:root[data-theme="light"] .card{background: rgba(255,255,255,.9)}
.card-icon{font-size:20px; margin-bottom:12px}
.card h3{margin:0 0 8px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); line-height:1.65}

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

.timeline{
  list-style:none;
  margin:0;
  padding:0 0 0 16px;
  border-left:1px solid var(--border);
}
.timeline-item{
  position:relative;
  padding:0 0 16px 18px;
  margin: 0 0 16px;
}
.timeline-item:last-child{margin-bottom:0}
.dot{
  position:absolute;
  left:-10px;
  top:4px;
  width:14px; height:14px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 10px 20px rgba(124,92,255,.25);
}
.time{color:var(--muted); font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase}
.title{font-weight:900; margin-top:6px; letter-spacing:-.01em}
.desc{color:var(--muted); margin-top:6px; line-height:1.6; font-weight:600}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.badge{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:12px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
}
:root[data-theme="light"] .badge{background: rgba(9,14,33,.03)}

/* CTA panel */
.section.cta{padding: 34px 0 64px}
.cta-panel{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background:
    radial-gradient(900px 240px at 0% 0%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(900px 240px at 100% 0%, rgba(40,215,255,.14), transparent 60%),
    rgba(255,255,255,.04);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  box-shadow: var(--shadow);
}
:root[data-theme="light"] .cta-panel{
  background:
    radial-gradient(900px 240px at 0% 0%, rgba(91,65,255,.12), transparent 60%),
    radial-gradient(900px 240px at 100% 0%, rgba(0,123,255,.10), transparent 60%),
    rgba(255,255,255,.9);
}
.cta-actions{display:flex; gap:12px; flex-wrap:wrap}

/* Page hero */
.page-hero{
  padding:54px 0 10px;
}
.page-hero h1{
  font-size: clamp(30px, 4vw, 44px);
}

/* Prose pages */
.prose{
  max-width: 78ch;
}
.prose h2{
  margin: 28px 0 10px;
  letter-spacing:-.02em;
}
.prose p{
  color:var(--muted);
  line-height:1.8;
  font-weight:500;
}
.quote{
  margin:18px 0 10px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:16px 16px 14px;
}
:root[data-theme="light"] .quote{background: rgba(9,14,33,.03)}
.quote p{margin:0; color:var(--text); font-weight:800}
.quote span{display:block; margin-top:8px; color:var(--muted); font-weight:700; font-size:13px}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:12px;
}
.mini-card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:16px;
}
:root[data-theme="light"] .mini-card{background: rgba(255,255,255,.9)}
.mini-card h3{margin:0 0 10px; letter-spacing:-.01em}
.mini-card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7; font-weight:600}

.cta-inline{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

/* Works */
.work-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:18px;
}
.work-card{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
}
:root[data-theme="light"] .work-card{background: rgba(255,255,255,.92)}
.work-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:10px}
.work-icon{font-size:20px}
.chip{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--border);
  background: rgba(255,255,255,.05);
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color:var(--muted);
}
:root[data-theme="light"] .chip{background: rgba(9,14,33,.03)}
.work-card h3{margin:0 0 8px; letter-spacing:-.01em}
.work-card p{margin:0 0 12px; color:var(--muted); line-height:1.65; font-weight:600}
.work-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
  font-weight:600;
}
.work-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.divider{
  height:1px;
  background: var(--border);
  margin:26px 0;
}

.list-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.list-card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:16px;
}
:root[data-theme="light"] .list-card{background: rgba(255,255,255,.9)}
.list-card h3{margin:0 0 8px}
.list-card p{margin:0 0 10px}

/* Footer */
.site-footer{
  padding:28px 0 24px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}
.footer-links{
  display:flex;
  gap:34px;
}
.footer-title{
  margin:0 0 10px;
  color:var(--muted);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.footer-links a{
  display:block;
  color:var(--muted);
  font-weight:700;
  margin:8px 0;
}
.footer-links a:hover{color:var(--text)}
.footer-bottom{margin-top:18px}

/* Responsive */
@media (max-width: 980px){
  .menu{display:none}
  .hamburger{display:block}
  .hero{padding:54px 0 16px}
  .hero-grid{grid-template-columns: 1fr; gap:16px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns:1fr}
  .work-grid{grid-template-columns:1fr}
  .list-cards{grid-template-columns: 1fr}
  .two-col{grid-template-columns:1fr}
  .footer-grid{flex-direction:column}
}

@media (max-width: 520px){
  .container{width:min(var(--container), calc(100% - 30px))}
  .brand-name{display:none}
  .cards{grid-template-columns:1fr}
  .cta-panel{flex-direction:column; align-items:flex-start}
}
