
:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card: #111827;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: #1f2933;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.6);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.5);
  --max-width: 1080px;
  --nav-height: 70px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text","Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #020617 100%);
  color: var(--text);
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
.site-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.4));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-link img { height: 32px; width: auto; }
.logo-word {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.nav-cta:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
/* Hero */
.hero { padding: 3.5rem 0 2.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.24), rgba(15, 23, 42, 0.9));
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-pill span { color: var(--accent); font-weight: 500; }
.hero-title {
  font-size: clamp(2.4rem, 3.1vw + 1.4rem, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero-highlight {
  background: linear-gradient(to right, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 0.98rem;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #020617;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
}
.btn-ghost:hover { border-color: var(--accent); }
.hero-caption {
  font-size: 0.8rem;
  color: var(--muted);
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.brand-row img { height: 32px; width: auto; }
.brand-row small {
  font-size: 0.8rem;
  color: var(--muted);
}
/* Hero card */
.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.98));
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.hero-card h2 { font-size: 1rem; margin: 0 0 0.75rem; }
.hero-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.quick-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.quick-list li::before {
  content: "•";
  color: var(--accent);
  margin-top: 0.05rem;
}
.hero-card-footer {
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  margin-top: 1rem;
  padding-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}
/* Sections */
.section { padding: 2.5rem 0 1.5rem; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}
/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95));
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.25rem 1.3rem;
  box-shadow: var(--shadow-subtle);
}
.card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
}
/* Two-column layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}
/* About headshot */
.headshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #020617;
  max-width: 260px;
  box-shadow: var(--shadow-soft);
}
.headshot img {
  display: block;
  width: 100%;
  height: auto;
}
.bio-block h1,
.bio-block h2 { margin-top: 0; }
.bio-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
/* Contact */
.contact-card {
  max-width: 620px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.8rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.5rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
}
.contact-list li { margin-bottom: 0.35rem; }
.contact-list a {
  color: var(--accent);
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }
/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem 1.6rem;
  font-size: 0.78rem;
  background: #020617;
  color: #e5e7eb;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand img {
  height: 20px;
  width: auto;
}
/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); }
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .site-shell { padding: 0 1rem 2.4rem; }
  .site-header-inner { padding-inline: 1rem; }
  .site-nav { display: none; }
  .card-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}


.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
.brand-row img[alt="Vanta Service Partner"] {
    height: 60px !important;  /* adjust the number as you prefer */
    width: auto !important;
}
@media (max-width: 600px) {
  .brand-row img[alt="Vanta Service Partner"] {
    height: 55px !important;
  }
}
