@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-teal: #61adb2;
  --brand-teal-light: #8dc7ca;
  --bg-primary: #050505;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg-primary);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(97, 173, 178, 0.2), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #090b10 58%, #050505 100%);
}

.aurora {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(52px) saturate(1.2);
}

.aurora-top {
  top: -14rem;
  left: 10%;
  width: 80%;
  height: 32rem;
  opacity: 0.55;
  background:
    radial-gradient(circle at 28% 35%, rgba(97, 173, 178, 0.36), transparent 28%),
    radial-gradient(circle at 64% 40%, rgba(120, 108, 255, 0.26), transparent 30%);
}

.aurora-mid {
  top: 48rem;
  right: -16rem;
  width: 38rem;
  height: 38rem;
  opacity: 0.24;
  background: radial-gradient(circle, rgba(97, 173, 178, 0.38), transparent 62%);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.9rem 2.5rem;
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-brand {
  display: flex;
  align-items: center;
}

.site-nav-logo {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
}

.site-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav-links a,
.site-nav-cta {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-nav-links a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

main {
  position: relative;
  z-index: 1;
}

.founder-hero {
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.founder-hero-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.founder-overline,
.section-number,
.entity-strip span,
.reference-list span {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-teal-light);
}

.founder-overline {
  margin-bottom: 1.2rem;
}

h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.48) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-lede {
  max-width: 780px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.founder-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.founder-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.service-logo {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.service-logo-github {
  width: 23px;
  height: 23px;
}

.service-logo-x {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.founder-actions a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
}

.entity-strip,
.founder-section {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.entity-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.entity-strip div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--border);
}

.entity-strip div:last-child {
  border-right: 0;
}

.entity-strip span,
.reference-list span {
  color: rgba(141, 199, 202, 0.78);
  font-size: 0.68rem;
}

.entity-strip strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.founder-section {
  padding: 7rem 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-header h2,
.founder-section-split h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.64) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p,
.founder-copy p {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.capability-rows {
  border-top: 1px solid var(--border);
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 4rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.capability-row h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.capability-row p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.last-updated {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
}

.founder-section-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 5rem;
  border-top: 1px solid var(--border);
}

.founder-copy p:first-child {
  margin-top: 0;
}

.reference-notes-list {
  border-top: 1px solid var(--border);
}

.reference-notes-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.reference-notes-list dt {
  color: rgba(141, 199, 202, 0.78);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.reference-notes-list dd {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.reference-list {
  border-top: 1px solid var(--border);
}

.reference-list a {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.reference-list a:hover strong {
  color: rgba(255, 255, 255, 0.95);
}

.reference-list strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-links,
.site-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-footer-links {
  margin-bottom: 0.75rem;
}

.site-footer-legal {
  margin-bottom: 0.6rem;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-links a,
.site-footer-links span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer-legal a,
.site-footer-legal span,
.site-footer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .site-nav-links {
    display: none;
  }

  .entity-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .entity-strip div:nth-child(2) {
    border-right: 0;
  }

  .entity-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .capability-row,
  .founder-section-split {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .reference-notes-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 0.6rem 1rem;
  }

  .site-nav-logo {
    width: 2.4rem;
    height: 2.4rem;
  }

  .site-nav-cta {
    display: none;
  }

  .founder-hero {
    min-height: 86vh;
    min-height: 86svh;
    padding: 6.5rem 1rem 3rem;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.6rem);
  }

  .founder-lede {
    margin-top: 1.4rem;
  }

  .entity-strip,
  .founder-section {
    width: min(100% - 2rem, 1160px);
  }

  .entity-strip {
    grid-template-columns: 1fr;
  }

  .entity-strip div,
  .entity-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .entity-strip div:last-child {
    border-bottom: 0;
  }

  .founder-section {
    padding: 4.5rem 0;
  }

  .section-header {
    margin-bottom: 2.6rem;
  }

  .capability-row {
    padding: 1.6rem 0;
  }

  .reference-list a {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .founder-actions a,
  .site-nav-links a,
  .site-nav-cta {
    transition: none;
  }
}
