:root {
  --bg: #16051f;
  --panel: #0d0315;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --line: rgba(255, 255, 255, 0.08);
  --pink: #ff2f86;
  --pink-2: #ff4a9d;
  --blue: #1f9cff;
  --card-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(122, 27, 144, 0.14), transparent 28%),
    radial-gradient(circle at 85% 86%, rgba(255, 47, 134, 0.12), transparent 22%),
    linear-gradient(180deg, #190624 0%, #17051f 50%, #1b0726 100%);
  min-height: 100vh;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  padding: 34px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  min-height: 620px;
}

.eyebrow-logo {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 34px;
}

.eyebrow-logo span {
  color: var(--pink);
}

.offer {
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.32;
  color: var(--muted);
  margin: 0 0 42px;
  max-width: 520px;
  font-size: 22px;
}

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

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  min-width: 190px;
  padding: 18px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  border-color: transparent;
}

.hero-media {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-splash {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 8%;
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-title {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  z-index: 2;
  width: 92%;
  text-align: center;
  margin: 0;
  font-size: clamp(34px, 4.9vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.45),
    0 16px 34px rgba(0, 0, 0, 0.52);
}

.hero-title .outline-blue {
  color: #fff;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.52),
    -2px 0 rgba(25, 156, 255, 0.65),
    0 10px 24px rgba(0, 0, 0, 0.5);
}

.hero-title .outline-pink {
  color: #fff;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.52),
    2px 0 rgba(255, 47, 134, 0.75),
    0 10px 24px rgba(0, 0, 0, 0.5);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 16px 0 54px;
}

.stat {
  background: rgba(8, 2, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--card-shadow);
  min-height: 122px;
}

.stat-icon {
  width: 86px;
  height: 86px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  color: #14021b;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 14px 28px rgba(255, 47, 134, 0.25);
}

.stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-head {
  text-align: center;
  margin: 40px 0 30px;
}

.section-head .mini {
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-size: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-box {
  
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 42px 42px;
  box-shadow: var(--card-shadow);
  margin-bottom: 52px;
}

.text-box h2 {
font-size: 35px;
}

.text-box h3 {
  margin: 24 0 24px;
  font-size: clamp(28px, 3.4vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-size: 20px;
}
.badge{
      width:108px;height:130px;border-radius:26px 26px 40px 40px;
      background:linear-gradient(180deg,#1b2d6a 0%,#0c1538 52%,#0b0f1a 100%);
      border:2px solid rgba(255,216,74,.95);
      position:relative;display:flex;align-items:center;justify-content:center;
      box-shadow:0 12px 26px rgba(0,0,0,.35);
      overflow:hidden;
      margin:0 auto;
    }
.divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 28px;
}

.text-box p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.6;
  max-width: 1160px;
  font-size: 16px;
}

.license-wrap {
  padding-bottom: 44px;
}

.license-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 4, 24, 0.9), rgba(25, 7, 32, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--card-shadow);
}

.license-box::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background:
    radial-gradient(circle at 20% 20%, rgba(31, 156, 255, 0.28), transparent 28%),
    radial-gradient(circle at 84% 40%, rgba(255, 47, 134, 0.22), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255, 189, 45, 0.12), transparent 18%);
  filter: blur(22px);
  pointer-events: none;
}

.shield {
  width: 150px;
  height: 180px;
  border-radius: 24px 24px 36px 36px;
  background:
    linear-gradient(180deg, #0b0f21 0 27%, #1257bf 27% 74%, #f2c42f 74% 84%, #1a1d24 84% 100%);
  border: 4px solid rgba(255, 215, 145, 0.78);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 20px 35px rgba(0, 0, 0, 0.35);
  clip-path: polygon(10% 3%, 90% 3%, 96% 20%, 96% 70%, 50% 98%, 4% 70%, 4% 20%);
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 16px 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-size: 26px;
  line-height: 1.05;
}

.shield small {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 18px;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.license-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.55;
  font-size: 16px;
}

.license-copy .note {
  font-size: clamp(19px, 1.45vw, 26px);
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 72px;
  padding: 16px 26px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--pink-2), var(--pink));
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 20px 36px rgba(255, 47, 134, 0.28);
}

.footer {
  text-align: center;
  padding: 28px 0 54px;
}

.footer-brand {
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0 0 12px;
}

.footer-brand span {
  color: var(--pink);
  font-style: italic;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 560px;
  }

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

  .license-box {
    grid-template-columns: 160px 1fr;
  }

  .license-box .verify {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .hero {
    padding-top: 22px;
  }

  .offer {
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-title {
    width: 96%;
    bottom: 0;
    font-size: clamp(28px, 8vw, 40px);
  }

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

  .stat {
    min-height: 100px;
    padding: 18px;
  }

  .stat-icon {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .text-box {
    padding: 24px 20px 28px;
  }

  .license-box {
    grid-template-columns: 1fr;
    padding: 24px 20px 26px;
  }

  .shield {
    width: 120px;
    height: 148px;
    font-size: 22px;
  }

  .verify {
    width: 100%;
  }
}
