:root {
  --bg: #1f1f21;
  --bg-soft: #242428;
  --surface: #29292e;
  --surface-2: #303036;
  --text: #f2f1f7;
  --muted: #b9b7c2;
  --accent: #7d7b88;
  --accent-light: #d5d2df;
  --line: rgba(213, 210, 223, .16);
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(31,31,33,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: .94rem; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--text); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px; }

.hero {
  min-height: 720px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px;
  align-items: center; padding-block: 90px 110px;
}
.hero-logo-wrap { display: grid; place-items: center; }
.hero-logo {
  width: min(430px, 78%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.eyebrow {
  margin: 0 0 14px; color: var(--accent-light);
  font-size: .78rem; font-weight: 800; letter-spacing: .18em;
}
.hero h1, h2, h3 { line-height: 1.12; letter-spacing: -.04em; }
.hero h1 { margin: 0; font-size: clamp(3.1rem, 7vw, 6.2rem); max-width: 800px; }
.hero h1 span { color: var(--accent-light); }
.hero-text { max-width: 670px; margin: 28px 0 34px; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  border: 1px solid var(--line); font-weight: 700; font-size: .92rem;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--accent-light); color: #1f1f21; }
.button.secondary { background: transparent; }

.section { padding-block: 100px; }
.section-heading {
  display: grid; grid-template-columns: 70px 1fr; gap: 22px;
  align-items: start; margin-bottom: 46px;
}
.section-number { color: var(--accent); font-size: .9rem; font-weight: 800; padding-top: 5px; }
.section-heading h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); }
.content-card, .founder-card {
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
}
.content-card p { margin: 0 0 22px; color: var(--muted); }
.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--text); }
.vision-section { background: var(--bg-soft); border-block: 1px solid var(--line); }
.vision-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: center; }
.vision-statement h3 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.quote-mark { display: block; color: var(--accent); font-size: 5rem; line-height: .5; margin-bottom: 24px; }
.compact { padding: 38px; }

.founder-card { display: grid; grid-template-columns: 130px 1fr; gap: 36px; align-items: start; }
.founder-avatar {
  width: 130px; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: var(--bg);
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.06em;
}
.founder-card h3 { margin: 0 0 5px; font-size: 2rem; }
.role { color: var(--accent-light) !important; font-weight: 700; }
.founder-card p { color: var(--muted); margin: 10px 0; }

.connect-section { padding-block: 120px; text-align: center; }
.connect-inner { max-width: 850px; }
.connect-section h2 { margin: 0 0 20px; font-size: clamp(2.7rem, 6vw, 5rem); }
.connect-section > .container > p:not(.eyebrow) { color: var(--muted); margin: 0 auto 38px; }
.social-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 12px;
  min-width: 190px; padding: 15px 18px; border: 1px solid var(--line);
  border-radius: 15px; background: var(--surface);
  font-weight: 800; text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social-link:hover { transform: translateY(-3px); border-color: rgba(213,210,223,.38); background: var(--surface-2); }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
.crunchbase-icon {
  width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 6px;
  display: grid; place-items: center; font-size: 8px; font-weight: 900;
}
.arrow { margin-left: auto; color: var(--accent-light); }

.site-footer { border-top: 1px solid var(--line); }
.footer-image { position: relative; min-height: 300px; overflow: hidden; }
.footer-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.footer-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,31,33,.92), rgba(31,31,33,.35), rgba(31,31,33,.85)); }
.footer-content { position: relative; z-index: 1; min-height: 300px; display: flex; align-items: center; gap: 24px; }
.footer-logo { width: 96px; height: 96px; object-fit: cover; border-radius: 50%; }
.footer-title { font-size: 1.35rem; font-weight: 800; margin: 0 0 4px; }
.footer-content p:last-child { margin: 0; color: var(--muted); }
.footer-bottom {
  min-height: 70px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; color: var(--muted); font-size: .86rem;
}
.footer-bottom a { color: var(--text); }

@media (max-width: 800px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .brand span { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 14px; right: 14px;
    display: none; flex-direction: column; gap: 0;
    background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
    padding: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: var(--surface-2); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding-block: 58px 78px; text-align: center; }
  .hero-logo { width: min(300px, 72vw); }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-text { font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .section { padding-block: 72px; }
  .section-heading { grid-template-columns: 42px 1fr; gap: 12px; margin-bottom: 30px; }
  .vision-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-avatar { width: 90px; }
  .social-link { min-width: min(280px, 100%); }
  .footer-content { min-height: 260px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-bottom { min-height: 86px; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
