:root{
  --bg:#0b0d10;
  --panel:#11141a;
  --panel2:#0f1217;
  --text:#e9eef7;
  --muted:#aab4c2;
  --line:#232a35;
  --accent:#7aa2ff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}
html {
  scroll-padding-top: 96px; /* offset for sticky header height */
  scroll-behavior: smooth;  /* optional but nice */
}
section {
  scroll-margin-top: 96px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

.header{
  position:sticky; top:0; z-index:20;
  background:rgba(11,13,16,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__name{ font-weight:750; letter-spacing:.2px; }
.brand__tag{ font-size:13px; color:var(--muted); margin-top:2px; }
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__photo{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.nav{ display:flex; gap:14px; }
.nav a{ font-size:14px; color:var(--muted); padding:8px 10px; border-radius:12px; }
.nav a:hover{ background:rgba(255,255,255,.04); color:var(--text); }

.hamburger{
  display:none;
  background:transparent; border:1px solid var(--line);
  color:var(--text); padding:8px 10px; border-radius:12px;
}
.mobile-nav{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding:10px 0;
  color:var(--muted);
}
.mobile-nav a:hover{ color:var(--text); }

.hero{
  padding:56px 0 26px;
  border-bottom:1px solid var(--line);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(122,162,255,.18), transparent 55%);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1fr 380px;
  gap:40px;
  align-items:start;
}
.quick-snapshot{
  grid-column:2;
  position:relative;
  top:0;
}
.hero__copy{
  grid-column:1;
}

.hero h1{ margin:0 0 10px; font-size:42px; letter-spacing:-.6px; }
.hero__lead{ margin:0 0 16px; color:var(--muted); font-size:16px; line-height:1.5; }

.hero-id{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 14px;
}

.hero-header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.hero-name h1{
  margin:0;
}

.hero-subtitle{
  margin:4px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-photo{
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pill-row{ display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 18px; }
.pill{
  font-size:12px; color:var(--text);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:7px 10px; border-radius:999px;
}
.cta-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-size:14px;
}
.btn:hover{ border-color:rgba(122,162,255,.55); }
.btn.primary{
  background:rgba(122,162,255,.16);
  border-color:rgba(122,162,255,.55);
}

.note{
  margin-top:16px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  color:var(--muted);
  background: rgba(255,255,255,.02);
}

.section{ padding:46px 0; }
.section.alt{ background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.section h2{ margin:0 0 18px; font-size:26px; letter-spacing:-.2px; }

.grid{ display:grid; gap:14px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px 16px;
  box-shadow: var(--shadow);
}
.card__title{ font-weight:700; margin-bottom:8px; }
.card ul{ margin:0; padding-left:18px; color:var(--muted); line-height:1.55; }
.card p{ margin:0; color:var(--muted); line-height:1.55; }

.hero__card .card{ background: var(--panel2); }

.kv{ display:flex; flex-direction:column; gap:8px; }
.kv__row{ display:flex; justify-content:space-between; gap:12px; font-size:13px; }
.kv__row span:first-child{ color:var(--muted); }
.kv__row span:last-child{ color:var(--text); }

.divider{ height:1px; background:var(--line); margin:12px 0; }
.small{ font-size:13px; color:var(--muted); line-height:1.5; }
.subtle{ color:var(--muted); opacity:.85; }

.prose{ max-width: 820px; }
.prose p{ color:var(--muted); line-height:1.7; margin:0 0 12px; }

.callout{
  border:1px solid rgba(122,162,255,.45);
  background: rgba(122,162,255,.08);
  padding:14px 16px;
  border-radius: var(--radius);
  margin: 12px 0 18px;
  color: var(--text);
}
.quote{
  margin-top:18px;
  border-left: 3px solid rgba(122,162,255,.65);
  padding:10px 14px;
  color: var(--muted);
  font-style: italic;
  background: rgba(255,255,255,.02);
  border-radius: 12px;
}

.flow{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.flow__box{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
}
.flow__title{ font-weight:700; margin-bottom:6px; }
.flow__arrow{ color:var(--muted); text-align:center; }

.table{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.table__row{
  display:grid;
  grid-template-columns: 1.1fr 1.6fr .9fr 1.2fr;
  gap:14px;
  padding:12px 14px;
  border-top:1px solid var(--line);
  align-items:start;
  color:var(--muted);
  font-size:14px;
}
.table__row strong{ color:var(--text); }
.table__head{
  border-top:none;
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:700;
}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}

@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .table__row{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav{ display:none; }
  .hamburger{ display:inline-block; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* Header: align brand to extreme left (full-width header container) */
.header .container{
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
}

/* HERO: force two-column layout (left content + right Quick Snapshot) */
.hero .hero__inner{
  display:grid !important;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}
.hero .hero__copy{ grid-column: 1; }
.hero .hero__card{ grid-column: 2; align-self: start; }

/* Mobile: stack */
@media (max-width: 900px){
  .hero .hero__inner{ grid-template-columns: 1fr; }
  .hero .hero__card{ grid-column: 1; }
}


/* Small label above headings */
.eyebrow{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}


.inline-link{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover{ opacity: .9; }


/* Premium hero polish */
.hero h1{
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero .lead,
.hero .hero-lead{
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}


/* Card polish */
.card{
  border: 1px solid var(--line);
  border-radius: 16px;
}


.btn--secondary{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--secondary:hover{
  border-color: rgba(79,125,255,.55);
}


@media (max-width: 520px){
  .brand__tag{ display:none; }
}
#backToTop{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  box-shadow: var(--shadow);
}

#backToTop:hover{
  border-color: var(--accent);
}
