.hero__title {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.04;

  font-size: clamp(44px, 4.3vw, 74px);
  text-transform: uppercase;
}

.hero__sub {
  margin: 22px 0 0 0;
  color: var(--muted);
  letter-spacing: 0.10em;
  line-height: 1.22;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.hero__cta {
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  padding: 14px 22px;

  font-weight: 700;
  font-size: 14px;

  transition: transform 140ms var(--ease), filter 140ms var(--ease), opacity 140ms var(--ease);
  user-select: none;
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: var(--btn-shadow);
}

.btn--primary:hover { filter: brightness(1.02); }

.btn--ghost {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
}

.btn--ghost:hover { background: rgba(255,255,255,0.13); }

.heroRight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.shotCard {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);

  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.shotCard__img {
  width: 100%;
  height: auto;
  display: block;
}

.heroRight__copy {
  margin: 10px 0 0 0;

  /* Full-width block */
  width: 100%;

  /* Typography */
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.015em;

  /* Color */
  color: rgba(255,255,255,0.88);

  /* Alignment */
  text-align: left;

  /* Optical balance */
  text-wrap: balance;
}



.section {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.section__title {
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}

.section__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.licenseGrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.licenseCard {
  border-radius: var(--r-md);
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.licenseCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.10em;
  font-weight: 700;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}

.pill--alt {
  background: rgba(120, 230, 255, 0.10);
  border: 1px solid rgba(120, 230, 255, 0.16);
}

.licenseCard__text {
  margin: 10px 0 14px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.licenseCard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.licensePrice {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;

  color: rgba(255,255,255,0.92);

  /* Optical alignment */
  white-space: nowrap;
}


.footer {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__muted {
  color: var(--muted2);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer__link {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__link:hover { opacity: 1; }

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

