.hero {
  width: min(1180px, 100%);
  margin: auto;
  min-height: 500px;
  padding: 52px 24px 34px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(500px, 1fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(96, 165, 250, .42);
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 500px;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--soft);
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn:first-child::after {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(610px, 50vw);
  justify-self: end;
  margin-right: 0;
  margin-bottom: -44px;
}

.hero-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
}

.hero-credential {
  position: absolute;
  left: 30%;
  bottom: 13%;
  display: grid;
  gap: 8px;
  width: min(390px, 58%);
  padding: 16px 18px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(7, 16, 32, .94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .3);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.35;
}

.hero-credential strong {
  color: var(--text);
}

.tech-strip {
  width: min(1180px, calc(100% - 48px));
  margin: -8px auto 12px;
  padding: 24px 34px 30px;
  border: 1px solid rgba(96, 165, 250, .28);
  border-radius: 8px;
  background: rgba(7, 16, 32, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 18px 38px rgba(0, 0, 0, .18);
  position: relative;
}

.tech-strip h2 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.2;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}

.tech-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 34px;
}

.tech-item + .tech-item {
  border-left: 1px solid rgba(96, 165, 250, .18);
}

.tech-item img {
  width: min(100%, 260px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
}

.audience-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 54px 24px 28px;
  position: relative;
}

.audience-section::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .28), transparent);
}

.audience-section h2 {
  margin: 0 0 38px;
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.2;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.audience-item {
  min-width: 0;
  padding: 8px 34px;
  text-align: center;
}

.audience-item + .audience-item {
  border-left: 1px solid rgba(96, 165, 250, .24);
}

.audience-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  object-fit: contain;
}

.audience-item h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
}

.audience-item p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
}

.content-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 34px 24px 72px;
  text-align: center;
}

.content-section h2 {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.2;
}

.content-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.content-filter {
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid rgba(96, 165, 250, .3);
  border-radius: 999px;
  background: rgba(7, 16, 32, .72);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.content-filter:hover,
.content-filter.active {
  border-color: rgba(37, 99, 235, .9);
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .24);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.content-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(96, 165, 250, .2);
  border-radius: 8px;
  background: rgba(7, 16, 32, .78);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, .62);
  background: rgba(15, 26, 43, .9);
}

.content-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--surface-2);
}

.content-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.content-category {
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.28;
}

.content-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.content-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.content-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 28px;
  padding: 11px 34px;
  border: 1px solid rgba(37, 99, 235, .72);
  border-radius: 8px;
  color: var(--blue-2);
  text-decoration: none;
  font-weight: 900;
}

.content-more:hover {
  background: rgba(37, 99, 235, .14);
  color: white;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    width: min(640px, 100%);
    justify-self: center;
    margin: 0 auto -24px;
  }

  .hero-credential {
    left: 28%;
    bottom: 12%;
    width: min(360px, 62%);
    padding: 13px 15px;
    font-size: 13px;
  }

  .tech-strip {
    margin-top: 10px;
  }

  .tech-list {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: start;
  }

  .tech-item {
    justify-content: flex-start;
    width: 100%;
    padding: 0;
  }

  .tech-item + .tech-item {
    border-left: 0;
    border-top: 1px solid rgba(96, 165, 250, .18);
    padding-top: 22px;
  }

  .audience-section {
    padding-top: 46px;
    padding-bottom: 26px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .audience-item {
    padding: 28px 24px;
  }

  .audience-item + .audience-item {
    border-left: 0;
  }

  .audience-item:nth-child(even) {
    border-left: 1px solid rgba(96, 165, 250, .2);
  }

  .audience-item:nth-child(n + 3) {
    border-top: 1px solid rgba(96, 165, 250, .2);
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 38px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-kicker {
    font-size: 11px;
    white-space: normal;
  }

  .hero-visual {
    position: absolute;
    right: -118px;
    bottom: -62px;
    width: 360px;
    margin: 0;
    opacity: .26;
  }

  .hero-credential {
    left: 26%;
    bottom: 9%;
    width: 68%;
    gap: 4px;
    padding: 9px 10px;
    border-width: 1px;
    font-size: 9px;
  }

  .tech-strip {
    width: calc(100% - 36px);
    padding: 18px;
  }

  .tech-strip h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .tech-item img {
    width: min(100%, 230px);
    max-height: 68px;
  }

  .audience-section {
    padding: 42px 18px 48px;
  }

  .audience-section h2 {
    font-size: 22px;
    margin-bottom: 22px;
  }

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

  .audience-item,
  .audience-item:nth-child(even) {
    border-left: 0;
  }

  .audience-item {
    padding: 26px 10px;
  }

  .audience-item + .audience-item {
    border-top: 1px solid rgba(96, 165, 250, .2);
  }

  .audience-item h3 {
    font-size: 22px;
  }

  .audience-item p {
    font-size: 16px;
  }

  .content-section {
    padding: 32px 18px 58px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-filters {
    justify-content: flex-start;
    gap: 10px;
  }

  .content-filter {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 14px;
  }

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