:root {
  --bg: #05060a;
  --panel: rgba(12, 18, 32, 0.72);
  --line: rgba(158, 182, 224, 0.14);
  --text: #d7e2f5;
  --muted: #8b9bb8;
  --cyan: #3aa0ff;
  --heading: #c5d4f0;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: #111;
  color: white;
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f1b33;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
  color: #143a8c;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

nav a {
  color: #3d4d6b;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: #143a8c;
  text-decoration: none;
}

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(28, 78, 180, 0.32), transparent 70%);
  text-align: center;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2 {
  color: var(--heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  max-width: 14ch;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 28px;
}

.lede {
  margin: 18px auto 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 330;
}

.lede.left {
  margin-left: 0;
  margin-right: 0;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.card-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.card h3 a {
  color: white;
}

.card p {
  color: var(--muted);
  font-weight: 330;
}

.founder-photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  margin-bottom: 16px;
  display: block;
}

.founder h3 {
  margin-bottom: 14px;
}

.social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social a {
  font-size: 0.92rem;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.partner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.partner-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.partner-form .full,
.partner-form button {
  grid-column: 1 / -1;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #090b12;
  color: var(--text);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.partner-form input:focus,
.partner-form textarea:focus {
  outline: 2px solid rgba(58, 160, 255, 0.45);
  border-color: transparent;
}

.partner-form button {
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #1e5fd4;
  color: white;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.partner-form button:hover,
.partner-form button:focus-visible {
  background: var(--cyan);
  color: #05060a;
  outline: none;
}

.honey {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.contact {
  text-align: center;
}

.contact h2 {
  margin-bottom: 16px;
}

.mail {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(58, 160, 255, 0.45);
  padding-bottom: 2px;
}

.mail:hover,
.mail:focus-visible {
  color: var(--cyan);
  text-decoration: none;
}

.simple {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.simple main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(28, 78, 180, 0.28), transparent 72%);
}

.simple .mark {
  width: min(160px, 46vw);
  height: auto;
  margin-bottom: 16px;
}

footer {
  padding: 28px 20px 36px;
  text-align: center;
  color: #5d6d88;
  font-size: 0.8rem;
  font-weight: 330;
  border-top: 1px solid var(--line);
}

footer p + p {
  margin-top: 6px;
}

@media (max-width: 800px) {
  .cards,
  .split,
  .partner-form {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero {
    padding: 56px 0 40px;
    text-align: left;
  }

  .lede {
    margin-left: 0;
  }

  .contact {
    text-align: left;
  }

  .site-header {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  nav a {
    font-size: 0.82rem;
  }

  .section {
    scroll-margin-top: 108px;
  }
}

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

  * {
    transition: none !important;
  }
}
