:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --fg: #fafafa;
  --muted: #8a8a8a;
  --line: #1f1f1f;
  --accent: #ffffff;
}

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

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #b6b9ff;
  outline-offset: 3px;
  border-radius: 4px;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 30% at 20% 10%, rgba(120, 140, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 140, 120, 0.06), transparent 70%);
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

header {
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 24px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--fg);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 28px;
}

h1 .accent {
  background: linear-gradient(120deg, #ffffff 0%, #b6b9ff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}

.lede strong {
  color: var(--fg);
  font-weight: 500;
}

.thesis {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.thesis .cell {
  background: var(--bg);
  padding: 28px;
}

.thesis .num {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.thesis h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.thesis p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.partners {
  margin-top: 96px;
}

.section-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.partner {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.partner:hover {
  border-color: #2e2e2e;
  transform: translateY(-2px);
}

.partner .name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.partner .role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.partner .li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
}

.partner:hover .li {
  color: var(--fg);
}

.partner .li svg {
  width: 14px;
  height: 14px;
}

.contact {
  margin-top: 96px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.contact p {
  color: var(--muted);
  font-size: 15px;
  max-width: 56ch;
}

.contact a.cta {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--fg);
  color: var(--bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact a.cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

footer {
  position: relative;
  z-index: 1;
  padding: 36px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}

footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--fg);
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .thesis { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  nav a:first-child { display: none; }
  main { padding: 48px 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
