html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Jost', 'system-ui', sans-serif;
  background-color: #FFFFFF;
}
@keyframes startup-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skeleton-box {
  display: block;
  background: linear-gradient(90deg, #E5E7EB 0%, #F9FAFB 50%, #E5E7EB 100%);
  background-size: 200% 100%;
  animation: startup-shimmer 1.4s ease-in-out infinite;
}
.startup-header {
  position: sticky;
  top: 0px;
  z-index: 10;
  box-shadow: 0px 2px 8px #14000000;
  background-color: #FFFFFF;
}
.startup-banner {
  display: flex;
  height: 60px;
  padding-left: 16px;
  padding-right: 16px;
  border-bottom-style: solid;
  border-bottom-color: #E5E7EB;
  border-bottom-width: 1px;
  justify-content: center;
  align-items: center;
}
.startup-appbar {
  display: flex;
  position: relative;
  height: 58px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: space-between;
  align-items: center;
}
.startup-appbar__logo {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.startup-appbar__actions {
  display: flex;
  position: absolute;
  right: 16px;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) .startup-banner {
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) .startup-appbar {
  height: 100px;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) .startup-appbar__logo img {
  height: 40px;
}
@media (min-width: 768px) .startup-appbar__actions {
  position: absolute;
  right: 24px;
}
.startup-body {
  padding: 24px 16px 48px 16px;
  overflow-y: auto;
  flex-grow: 1;
}
.startup-banners {
  display: flex;
  margin-bottom: 32px;
  flex-direction: column;
  gap: 16px;
}
.startup-section-title {
  margin-bottom: 12px;
}
.startup-grid {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.startup-card {
  display: flex;
  padding: 12px;
  border: solid #E5E7EB 1px;
  border-radius: 12px;
  flex-direction: column;
  gap: 12px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 100%;
  background-color: #FFFFFF;
}
.startup-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.startup-cta {
  display: flex;
  margin-top: 32px;
  margin-bottom: 32px;
  justify-content: center;
}
.startup-promo {
  margin-bottom: 32px;
}
@media (min-width: 768px) .startup-body {
  padding: 24px 24px;
}
@media (min-width: 768px) .startup-banners {
  flex-direction: row;
  gap: 24px;
}
@media (min-width: 768px) .startup-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 31%;
}
@media (min-width: 1200px) .startup-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 23%;
}
.startup-footer {
  display: flex;
  height: 32px;
  padding: 6px 16px;
  border-top-style: solid;
  border-top-color: #E5E7EB;
  border-top-width: 1px;
  box-shadow: 0px -2px 8px #14000000;
  justify-content: end;
  align-items: center;
  background-color: #FFFFFF;
}
@media (min-width: 768px) .startup-footer {
  padding-left: 24px;
  padding-right: 24px;
}
.startup-shell {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  background-color: #FFFFFF;
}
