:root {
  color-scheme: dark;
  --bg: #061014;
  --bg-2: #091820;
  --panel: #0d2028;
  --panel-2: #102a33;
  --line: rgba(222, 246, 255, 0.18);
  --ink: #f6fbff;
  --muted: #9eb1b8;
  --paper: #f4f7f6;
  --paper-ink: #10191d;
  --lime: #d8ff18;
  --cyan: #24d4ee;
  --blue: #4aa7ff;
  --danger: #ff555d;
  --radius: 8px;
  --wrap: 1260px;
  --page-width: 1123px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.has-modal {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.is-hidden {
  display: none !important;
}

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

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - 72px));
  margin-inline: auto;
}

@media (min-width: 1180px) {
  body {
    background: #fff;
  }

  body > main,
  body > .site-footer {
    width: var(--page-width);
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 0.5cm 1cm;
  background: rgba(4, 11, 14, 0.3);
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: rgba(4, 11, 14, 0.3);
}

@media (min-width: 1180px) {
  .site-header {
    inset: 0 auto auto 50%;
    width: var(--page-width);
    max-width: 100%;
    transform: translateX(-50%);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 170px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  color: #071014;
  font-weight: 900;
  clip-path: polygon(0 0, 42% 0, 50% 38%, 58% 0, 100% 0, 62% 100%, 38% 100%);
  background: var(--lime);
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 800;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lime);
  transform: translateX(-50%);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta {
  font-size: 15px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--lime);
  background: var(--lime);
  color: #071014;
}

.button.is-sent {
  background: var(--cyan);
  border-color: var(--cyan);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.button.outline {
  width: 100%;
  justify-content: space-between;
  color: var(--lime);
  border-color: rgba(216, 255, 24, 0.45);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 128px 0 34px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(1.35) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 12, 0.08), rgba(4, 9, 12, 0.03) 34%, rgba(4, 9, 12, 0) 78%),
    linear-gradient(0deg, rgba(4, 9, 12, 0.04), rgba(4, 9, 12, 0) 44%, rgba(4, 9, 12, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 398px;
}

.hero-copy {
  max-width: 600px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.98;
  font-weight: 800;
}

.hero-copy h1 {
  font-size: clamp(27px, 4vw, 46px);
}

.hero-copy p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 34px;
  align-items: end;
  margin-top: 54px;
}

.incubator-stats {
  grid-template-columns: repeat(4, max-content);
}

.hero-metrics article,
.fact-row article {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 12px;
  align-items: center;
  min-width: 138px;
}

.hero-metrics span,
.fact-row span {
  grid-row: span 2;
  color: var(--lime);
  font-size: 27px;
}

.metric-icon {
  grid-row: span 2;
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  filter: brightness(1.22) saturate(1.18) drop-shadow(0 0 10px rgba(216, 255, 24, 0.32));
}

.hero-metrics strong,
.fact-row strong {
  font-size: 22px;
}

.hero-metrics small,
.fact-row small {
  color: rgba(255, 255, 255, 0.72);
}

.light-section {
  padding: 34px 0;
  background: var(--paper);
  color: var(--paper-ink);
}

.dark-section {
  padding: 34px 0;
  background:
    radial-gradient(circle at 80% 0, rgba(36, 212, 238, 0.12), transparent 32%),
    linear-gradient(180deg, #061014, #0a1a22);
}

.section-kicker {
  position: relative;
  margin: 0 0 18px;
  padding-left: 28px;
  font-size: 28px;
  line-height: 1.1;
}

.section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--lime);
  border-radius: 999px;
}

.lead {
  max-width: 420px;
  margin: 0 0 22px;
  line-height: 1.6;
}

.text-link,
.section-head a,
.product-card a,
.service-card a,
.media-grid a {
  font-weight: 750;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(250px, 420px) 1fr;
  gap: 44px;
  align-items: center;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(4, 14, 18, 0.14);
}

.fact-row article {
  min-height: 122px;
  padding: 26px;
  background: var(--paper);
}

.fact-row small {
  color: #3d4b50;
}

.fact-row span {
  color: #10191d;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2,
.partner-grid h2,
.sprint-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.section-head h2 {
  position: relative;
  padding-left: 28px;
}

.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--lime);
  border-radius: 999px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.service-card,
.product-card,
.agreement-card,
.idea-card,
.detail-card,
.state-rail article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 48, 58, 0.88), rgba(7, 20, 26, 0.92));
  box-shadow: inset 0 0 40px rgba(36, 212, 238, 0.03);
}

.service-card {
  display: grid;
  min-height: 214px;
  padding: 20px;
}

.service-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: saturate(1.15);
}

.service-card h3,
.product-card h3,
.media-grid h3,
.idea-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
}

.service-card p,
.product-card p,
.media-grid p,
.idea-card p,
.sprint-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-card a {
  align-self: end;
  justify-self: end;
  color: var(--ink);
  font-size: 24px;
}

.compact {
  padding-block: 26px;
}

.chips-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.4fr);
  gap: 54px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chip-grid.tech {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.chip-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(4, 14, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  color: #273238;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.chip-grid i {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 800;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.partner-logo-strip,
.model-row {
  margin-top: 26px;
}

.partner-intro {
  grid-column: 1;
  text-align: left;
  align-self: start;
  justify-self: stretch;
  width: 100%;
}

.partner-intro .section-kicker {
  padding-left: 0;
}

.partner-intro .section-kicker::before {
  left: 0;
  transform: translateX(-28px);
}

.model-row {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.agreement-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.partner-logo-strip {
  width: min(560px, 100%);
  height: auto;
  opacity: 0.95;
}

.model-row {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.model-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
}

.agreement-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  min-height: 245px;
}

.agreement-card h3 {
  margin: 0 0 18px;
}

.agreement-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.agreement-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.agreement-card dd {
  margin: 0;
  color: var(--ink);
}

.agreement-visual {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 118px;
  opacity: 0.82;
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-grid.is-hidden {
  display: none;
}

.product-card {
  overflow: hidden;
}

.product-card img,
.media-grid img,
.career-feature img,
.idea-card img,
.detail-card > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.04);
}

.product-card h3,
.product-card p,
.product-card a {
  margin-inline: 18px;
}

.product-card p {
  margin-bottom: 18px;
}

.product-card a {
  display: block;
  margin-bottom: 18px;
  text-align: right;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.media-grid.is-hidden {
  display: none;
}

.media-grid article {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(4, 14, 18, 0.16);
  border-radius: var(--radius);
  background: #fff;
}

.media-grid img {
  height: 100%;
}

.media-grid div {
  padding: 18px;
}

.media-grid small {
  color: #7a868c;
}

.media-grid p {
  color: #4e5b60;
}

.career-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 12px;
}

.career-title {
  margin-bottom: 18px;
}

.career-feature {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: var(--radius);
}

.career-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.career-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 9, 12, 0.88), transparent);
}

.career-feature div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.career-feature h2 {
  max-width: 340px;
  margin: 0 0 16px;
}

.navigation {
  padding-block: 28px;
}

.contact-section,
.idea-submit {
  padding-block: clamp(46px, 7vw, 78px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 48, 58, 0.9), rgba(7, 20, 26, 0.94));
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  outline: 0;
  padding: 12px 14px;
}

.lead-form select option {
  color: #071014;
}

.lead-form textarea {
  resize: vertical;
  min-height: 132px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(216, 255, 24, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 255, 24, 0.12);
}

.lead-form .wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--lime);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr repeat(4, minmax(130px, 1fr));
  gap: 28px;
}

.footer-nav h3 {
  margin: 0 0 12px;
}

.footer-nav a,
.footer-nav p {
  display: block;
  margin: 8px 0;
  color: #39474d;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(230px, auto);
  gap: 26px;
  align-items: center;
  min-height: 132px;
  padding: 22px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #061014;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.footer-main,
.footer-legal {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: 176px;
  max-height: 70px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  font-weight: 800;
}

.footer-constellation {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  opacity: 0.72;
  pointer-events: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
}

.project-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 8, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1fr);
  width: min(900px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #102a33, #07141a);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.52);
}

.modal-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal-content {
  padding: clamp(22px, 4vw, 34px);
}

.modal-content h2 {
  margin: 18px 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.modal-content p {
  color: var(--muted);
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 13, 17, 0.76);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 270px) 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row button,
.toolbar select,
.donate-grid button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.filter-row button.is-active,
.donate-grid button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.idea-card {
  position: relative;
  overflow: hidden;
}

.idea-card.is-hidden {
  display: none;
}

.idea-card img {
  height: 206px;
}

.idea-body {
  padding: 18px;
}

.tag,
.idea-card b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(216, 255, 24, 0.65);
  border-radius: 5px;
  color: var(--lime);
  font-size: 12px;
}

.idea-card b {
  float: right;
  border-color: rgba(36, 212, 238, 0.65);
  color: var(--cyan);
  font-weight: 650;
}

.idea-meta,
.metric-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

progress {
  width: 100%;
  height: 9px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.12);
}

progress::-webkit-progress-value {
  background: var(--lime);
}

progress::-moz-progress-bar {
  background: var(--lime);
}

.idea-card .idea-body > a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 14px;
  margin-left: auto;
  border-radius: var(--radius);
  background: var(--lime);
  color: #071014;
  font-weight: 900;
}

.sprint-card {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 30px;
  align-items: center;
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 24, 31, 0.96), rgba(8, 24, 31, 0.78)),
    url("assets/sprint-orb.png") right center / auto 100% no-repeat,
    radial-gradient(circle at 70% 50%, rgba(36, 212, 238, 0.28), transparent 22%),
    rgba(8, 24, 31, 0.92);
}

.hours-badge {
  display: grid;
  place-items: center;
  width: 158px;
  aspect-ratio: 1;
  border: 1px solid rgba(36, 212, 238, 0.55);
  border-radius: 999px;
  color: var(--cyan);
}

.hours-badge strong {
  font-size: 48px;
}

.hours-badge span {
  margin-top: -46px;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.detail-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  overflow: hidden;
}

.detail-card > img {
  height: 100%;
  min-height: 430px;
}

.detail-content {
  padding: 24px;
}

.detail-content h2 {
  margin: 16px 0 8px;
  font-size: 42px;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.state-rail {
  display: grid;
  gap: 14px;
}

.state-rail h3 {
  margin: 0 0 8px;
}

.state-rail article {
  padding: 16px;
}

.state-rail strong,
.state-rail small {
  display: block;
}

.state-rail small {
  margin-top: 8px;
  color: var(--muted);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid var(--lime);
  border-radius: 999px;
}

.dot.liked {
  border-color: var(--danger);
  background: var(--danger);
}

.dot.funded {
  border-color: var(--cyan);
}

.dot.closed {
  border-color: #f37b2c;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .service-grid,
  .product-grid,
  .career-grid,
  .idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chips-layout,
  .partner-grid,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-intro,
  .model-row,
  .agreement-card {
    grid-column: auto;
    grid-row: auto;
  }

  .toolbar,
  .sprint-card,
  .detail-card,
  .modal-card {
    grid-template-columns: 1fr;
  }

  .detail-card > img,
  .modal-card img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    padding-inline: 16px;
  }

  .header-cta {
    display: inline-flex;
    width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-cta span {
    font-size: 20px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 16px;
    display: none;
    width: min(300px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 11, 14, 0.98);
  }

  .nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid {
    min-height: 520px;
  }

  .fact-row,
  .media-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .incubator-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-metrics article,
  .fact-row article {
    min-width: 0;
    padding-inline: 10px;
  }

  .hero-metrics article + article {
    border-left: 1px solid var(--line);
  }

  .hero-metrics span,
  .fact-row span {
    font-size: 24px;
  }

  .metric-icon {
    width: 60px;
    height: 60px;
  }

  .hero-metrics strong {
    font-size: 18px;
  }

  .hero-metrics small {
    font-size: 12px;
  }

  .about-grid,
  .service-grid,
  .product-grid,
  .career-grid,
  .idea-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    min-height: 112px;
  }

  .service-icon {
    grid-row: span 2;
  }

  .service-card h3 {
    margin-top: 0;
  }

  .service-card a {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .idea-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(118px, 0.9fr);
  }

  .idea-card img {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 220px;
  }

  .idea-body {
    grid-column: 1;
    grid-row: 1;
  }

  .idea-card b {
    float: none;
    margin-left: 8px;
  }

  .chip-grid,
  .chip-grid.tech,
  .donate-grid,
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .site-footer,
  .idea-meta,
  .metric-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    display: flex;
  }

  .media-grid article {
    grid-template-columns: 1fr;
  }

  .sprint-card {
    padding: 20px;
  }

  .modal-card img {
    min-height: 210px;
    height: 240px;
  }
}

@media (max-width: 460px) {
  .brand-text strong {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-actions .button,
  .button.primary {
    width: 100%;
  }

  .chip-grid,
  .chip-grid.tech,
  .donate-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .idea-card {
    grid-template-columns: 1fr;
  }

  .idea-card img,
  .idea-body {
    grid-column: 1;
    grid-row: auto;
  }

  .idea-card img {
    height: 190px;
    min-height: 0;
  }
}
