:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --panel-2: #151518;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --line: #26262b;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 35%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-slot {
  width: 132px;
  height: 46px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.header-logo {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 80px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  margin: 18px 0;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  max-width: 850px;
  margin: 12px 0 36px;
}

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

.startup-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.logo-box {
  height: 140px;
  border: 1px dashed #3f3f46;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.logo-box a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.startup-logo {
  max-width: 90%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.startup-card h3 {
  font-size: 34px;
  margin: 0 0 12px;
}

.startup-card p,
.features p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.startup-link {
  margin-top: auto;
  color: var(--accent-2);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.features {
  display: grid;
  gap: 18px;
}

.features div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.features h4 {
  margin: 0;
  font-size: 22px;
}

.contact {
  text-align: center;
}

.contact h2,
.contact p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 780px) {
  .header,
  footer,
  .split {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    margin-top: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .startup-card {
    min-height: auto;
  }
}
