.license-page {
  color: #0f172a;
  background: #fff;
}

.license-container {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
}

.license-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 1rem;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgb(59 130 246 / .25), transparent 38%), #0f172a;
}

.license-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / .05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.license-hero__inner {
  max-width: 820px;
}

.license-eyebrow {
  display: inline-flex;
  border: 1px solid rgb(96 165 250 / .25);
  border-radius: 999px;
  padding: .35rem .8rem;
  color: #93c5fd;
  background: rgb(37 99 235 / .14);
  font-size: .78rem;
  font-weight: 950;
}

.license-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.2;
  letter-spacing: -.04em;
  font-weight: 950;
}

.license-hero p {
  max-width: 690px;
  margin: 0 auto;
  color: #cbd5e1;
  line-height: 2;
}

.license-section {
  padding: 4.5rem 0;
}

.license-section--soft {
  background: #f8fafc;
  border-block: 1px solid #e2e8f0;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.license-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 20px 60px rgb(15 23 42 / .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.license-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 24px 70px rgb(37 99 235 / .12);
}

.license-card__media {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 1.7rem;
  background:
    radial-gradient(circle at 50% 35%, rgb(37 99 235 / .10), transparent 55%),
    #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.license-card__media img {
  display: block;
  max-width: 145px;
  max-height: 145px;
  object-fit: contain;
}

.license-card__body {
  display: grid;
  gap: .75rem;
  padding: 1.35rem;
}

.license-card__badge {
  justify-self: start;
  border-radius: 999px;
  padding: .25rem .65rem;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: .72rem;
  font-weight: 950;
}

.license-card h2 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 950;
}

.license-card strong {
  color: #475569;
  font-size: .82rem;
}

.license-card p {
  min-height: 90px;
  margin: 0;
  color: #64748b;
  font-size: .86rem;
  line-height: 1.95;
}

.license-card__action {
  display: inline-flex;
  justify-content: center;
  border-radius: .9rem;
  padding: .78rem 1rem;
  color: #fff;
  background: #2563eb;
  font-size: .82rem;
  font-weight: 950;
}

.ssl-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid #dbeafe;
  border-radius: 1.5rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  background: linear-gradient(135deg, #fff, #eff6ff);
  box-shadow: 0 20px 60px rgb(37 99 235 / .07);
}

.ssl-card__image {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.ssl-card__image img {
  max-width: 178px;
  height: auto;
}

.ssl-card span {
  color: #2563eb;
  font-size: .78rem;
  font-weight: 950;
}

.ssl-card h2 {
  margin: .45rem 0 .55rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
}

.ssl-card p {
  margin: 0;
  color: #64748b;
  line-height: 2;
}

.license-note {
  max-width: 850px;
  margin-inline: auto;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  text-align: center;
  background: #fff;
}

.license-note h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 950;
}

.license-note p {
  margin: 0 auto 1.2rem;
  max-width: 700px;
  color: #64748b;
  line-height: 2;
}

.license-note a {
  display: inline-flex;
  border-radius: .9rem;
  padding: .8rem 1rem;
  color: #fff;
  background: #0f172a;
  font-size: .84rem;
  font-weight: 950;
}

@media (max-width: 950px) {
  .license-grid {
    grid-template-columns: 1fr;
  }

  .license-card {
    display: grid;
    grid-template-columns: 220px 1fr;
  }

  .license-card__media {
    border-bottom: 0;
    border-left: 1px solid #e2e8f0;
  }

  .ssl-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .license-section {
    padding: 3rem 0;
  }

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

  .license-card__media {
    border-left: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .license-card p {
    min-height: auto;
  }
}
