:root{
    --bg:#0b0f17;
    --card:#121a28;
    --muted:#a7b2c6;
    --text:#edf1f7;
    --line:rgba(255,255,255,.10);
    --accent:#6ee7ff;
    --header-offset: 66px; /* set to your nav height */
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(1100px, 92%); margin:0 auto; }

.site-header{
    position:sticky; top:0; z-index:10;
    background:rgba(11,15,23,.85);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.logo img {
    height: 28px;        /* tweak this */
    width: auto;
    display: block;
}
.nav{ display:flex; gap:16px; align-items:center; }
.nav a{ color:var(--muted); }
.nav a:hover{ color:var(--text); }

.button{
    background:var(--accent);
    color:#051018 !important;
    padding:10px 14px;
    border-radius:999px;
    font-weight:700;
}
.ghost{
    border:1px solid var(--line);
    padding:10px 14px;
    border-radius:999px;
    color:var(--text);
}

.hero{
    padding:54px 0 20px;
    scroll-margin-top: var(--header-offset);
}
.hero-grid{
    display:grid;
    grid-template-columns: 1.4fr .9fr;
    gap:28px;
    align-items:start;
}
.hero-name {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}

.eyebrow{ color:var(--muted); margin:0 0 10px; }
h1{ font-size:clamp(28px, 3.5vw, 44px); line-height:1.08; margin:0 0 14px; }
.lede{ color:var(--muted); font-size:18px; line-height:1.55; margin:0 0 18px; }
.cta-row{ display:flex; gap:12px; margin:18px 0 20px; flex-wrap:wrap; }

.quick-facts{ list-style:none; padding:0; margin:0; display:grid; gap:10px; color:var(--muted); }
.quick-facts strong{ color:var(--text); }

.hero-card{
    border:1px solid var(--line);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border-radius:18px;
    overflow:hidden;
}
.headshot{ width:100%; height:280px; object-fit:cover; background:#111; }
.hero-card-body{ padding:16px; }
.hero-card-body h2{ margin:0 0 8px; font-size:18px; }
.hero-card-body p{ margin:0 0 12px; color:var(--muted); line-height:1.55; }
.contact-chips{ display:flex; flex-wrap:wrap; gap:9px; align-items:center; }
.contact-chips a{ border:1px solid var(--line); padding:7px 10px; border-radius:999px; color:var(--text); }
.chip{ border:1px solid var(--line); padding:7px 10px; border-radius:999px; color:var(--muted); }

.section{
    padding:56px 0;
    border-top:1px solid var(--line);
    scroll-margin-top: var(--header-offset);}
.section.alt{ background:rgba(255,255,255,.02); }
h2{ margin:0 0 10px; font-size:26px; }
.subhead{ margin:0 0 22px; color:var(--muted); line-height:1.55; }

.timeline{ display:grid; gap:16px; }
.role{
    border:1px solid var(--line);
    background:var(--card);
    border-radius:18px;
    padding:18px;
}
.role-top{ display:flex; flex-direction:column; gap:4px; margin-bottom:10px; }
.role h3{ margin:0; font-size:18px; }
.meta{ margin:0; color:var(--muted); }
.role ul{ margin:10px 0 0; color:var(--muted); line-height:1.55; }
.role li{ margin:8px 0; }

.cards{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
}
.card{
    border:1px solid var(--line);
    background:var(--card);
    border-radius:18px;
    overflow:hidden;
}
.card img{ height:210px; width:100%; object-fit:cover; background:#111; }
.card-body{ padding:16px; }
.card-body h3{ margin:0 0 8px; }
.card-body p{ margin:0 0 10px; color:var(--muted); line-height:1.55; }
.hint{ font-size:14px; opacity:.9; }

.pill-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{ border:1px solid var(--line); border-radius:999px; padding:8px 10px; color:var(--muted); }

.mt{ margin-top:22px; }
.tools{ color:var(--muted); line-height:1.7; }

.bullets{ margin:10px 0 0; color:var(--muted); line-height:1.7; }

.contact-big a{
    font-size:22px;
    font-weight:800;
    border-bottom:1px dashed rgba(110,231,255,.55);
}
.fineprint{ color:var(--muted); margin-top:14px; }

.site-footer{ padding:26px 0; border-top:1px solid var(--line); color:var(--muted); }

@media (max-width: 900px){
    .hero-grid{ grid-template-columns:1fr; }
    .cards{ grid-template-columns:1fr; }
}
