:root {
  --black: #0b0e0f;
  --white: #fffefe;
  --lime: #c8fb0d;
  --blue: #a7c2ce;
  --blue-deep: #567890;
  --grey: #ecf2f4;
  --muted: #6f7a7e;
  --line: rgba(11, 14, 15, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 50;
  background-image: radial-gradient(circle at center, #0b0e0f 0.7px, transparent 0.8px);
  background-size: 7px 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(255, 254, 254, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 14, 15, .08);
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -.045em;
  font-weight: 600;
  text-transform: lowercase;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
}
.brand-mark span { border-radius: 50%; background: #838889; }
.brand-mark span.lime { background: var(--lime); }

.desktop-nav { display: flex; gap: 26px; align-items: center; }
.desktop-nav a {
  font-size: .86rem;
  font-weight: 600;
  color: #394346;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: #000; }
.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
}
.menu-button {
  display: none;
  justify-self: end;
  border: 0;
  background: var(--black);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 35;
  background: var(--black);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.1rem; font-weight: 600; }

.section-shell { max-width: 1320px; margin: 0 auto; padding: 110px clamp(20px, 4vw, 64px); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow.light { color: var(--blue); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 78px;
  padding-bottom: 82px;
}
.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 8.2vw, 8.6rem);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 600;
}
.hero h1 span { color: var(--blue-deep); }
.hero-lead {
  max-width: 670px;
  margin: 32px 0 0;
  font-size: clamp(1.06rem, 1.6vw, 1.38rem);
  line-height: 1.55;
  color: #4b5659;
}
.hero-actions, .founder-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--black); color: white; box-shadow: 0 10px 30px rgba(11,14,15,.12); }
.btn-secondary { background: var(--lime); color: var(--black); }
.btn-ghost { border-color: rgba(11,14,15,.18); background: transparent; }

.hero-visual { display: grid; gap: 18px; }
.logo-card {
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(140deg, #fff, #f4f7f8);
  border: 1px solid rgba(11,14,15,.08);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(11,14,15,.09);
}
.logo-card img { width: 100%; }
.hero-note {
  margin-left: auto;
  max-width: 78%;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--grey);
}
.hero-note p { margin: 0; color: #4d585b; font-size: .9rem; line-height: 1.5; }
.note-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); margin-top: 5px; flex: 0 0 auto; }

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(20px, 4vw, 64px);
}
.proof-item {
  min-height: 140px;
  padding: 28px clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 3vw, 3rem); letter-spacing: -.055em; }
.proof-item span { margin-top: 5px; color: var(--muted); font-size: .86rem; }

.section-intro { max-width: 760px; margin-bottom: 48px; }
.section-intro h2, .founder-copy h2, .statement h2, .choose h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 600;
}
.section-intro > p:last-child { color: var(--muted); font-size: 1.06rem; line-height: 1.65; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.path-card {
  position: relative;
  min-height: 560px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.path-dark { background: var(--black); color: white; }
.path-light { background: var(--grey); color: var(--black); }
.path-number { margin-left: auto; color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.path-kicker { color: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .72rem; }
.path-light .path-kicker { color: var(--blue-deep); }
.path-card h3 {
  max-width: 560px;
  margin: 16px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 600;
}
.path-card > p:not(.path-kicker) { max-width: 620px; line-height: 1.68; color: #c9d0d2; font-size: 1rem; }
.path-light > p:not(.path-kicker) { color: #536064; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 34px; }
.tag-list span { padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); color: #e6ebec; font-size: .78rem; }
.path-light .tag-list span { border-color: rgba(11,14,15,.14); color: #334044; background: rgba(255,255,255,.55); }
.text-link { margin-top: auto; font-weight: 700; color: var(--lime); }
.dark-link { color: var(--black); }

.founder-section { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.big-copy { font-family: "Manrope", sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.55rem); line-height: 1.15; letter-spacing: -.04em; color: var(--blue-deep); }
.founder-copy > p:not(.eyebrow):not(.big-copy) { max-width: 700px; color: var(--muted); line-height: 1.72; }
.career-track { border-top: 1px solid var(--line); }
.career-track div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.career-track strong { font-size: .76rem; letter-spacing: .08em; color: var(--blue-deep); }
.career-track span { line-height: 1.45; }

.statement { background: var(--black); color: white; }
.statement-inner { max-width: 1320px; margin: 0 auto; padding: 110px clamp(20px, 4vw, 64px); }
.statement h2 { max-width: 980px; font-size: clamp(3.5rem, 7vw, 7rem); }
.statement h2 span { color: var(--lime); }
.statement p:last-child { max-width: 760px; margin-top: 28px; color: #c0c9cb; font-size: 1.08rem; line-height: 1.7; }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); padding-top: 0; padding-bottom: 0; }
.principle-grid article { background: var(--white); padding: 64px 40px 86px; }
.principle-grid span { color: var(--blue-deep); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.principle-grid h3 { font-family: "Manrope", sans-serif; font-size: 2rem; letter-spacing: -.04em; margin: 20px 0 12px; }
.principle-grid p { color: var(--muted); line-height: 1.65; }

.choose { padding-top: 120px; padding-bottom: 120px; }
.choose-copy { max-width: 760px; margin-bottom: 40px; }
.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choose-card { min-height: 260px; padding: 34px; border-radius: var(--radius); background: var(--grey); display: flex; flex-direction: column; transition: transform .2s ease; }
.choose-card:hover { transform: translateY(-4px); }
.choose-card span { color: var(--blue-deep); text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; font-weight: 700; }
.choose-card strong { margin-top: 20px; max-width: 560px; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 3.4vw, 3.4rem); letter-spacing: -.055em; line-height: 1.03; }
.choose-card em { margin-top: auto; font-style: normal; font-weight: 700; }
.lime-card { background: var(--lime); }
.lime-card span { color: #425000; }

.site-footer { padding: 54px clamp(20px, 4vw, 64px) 34px; background: var(--black); color: white; display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; }
.footer-wordmark .brand-name { color: white; }
.footer-brand p { color: #aeb9bc; margin: 13px 0 0; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: #dfe5e6; font-size: .86rem; }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #7f8b8e; font-size: .78rem; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: inline-block; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-visual { max-width: 760px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .path-grid, .founder-section, .choose-grid { grid-template-columns: 1fr; }
  .founder-section { gap: 54px; }
  .principle-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .section-shell { padding-top: 82px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 5.4rem); }
  .hero-note { max-width: 100%; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 20px; }
  .proof-item, .proof-item:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .path-card { min-height: 520px; }
  .career-track div { grid-template-columns: 1fr; gap: 6px; }
  .statement-inner { padding-top: 86px; padding-bottom: 86px; }
  .principle-grid article { padding: 46px 26px 58px; }
  .choose-card { min-height: 230px; }
}
