:root {
  --black: #020100;
  --brown: #160600;
  --card: #140400;
  --orange: #ff8517;
  --orange-light: #ffb347;
  --cream: #ffd8b2;
  --gold: #ffd300;
  --white: #fffaf6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 132, 23, 0.26), transparent 20rem),
    radial-gradient(circle at 50% 56%, rgba(255, 132, 23, 0.17), transparent 24rem),
    linear-gradient(180deg, #090200 0%, #0b0300 48%, #020100 100%);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px) 20px 44px;
}

.hero {
  width: min(100%, 1120px);
  text-align: center;
}

.badge {
  width: clamp(170px, 22vw, 250px);
  aspect-ratio: 1;
  margin: 0 auto clamp(46px, 5.4vw, 70px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 66%, transparent 67%),
    linear-gradient(135deg, var(--orange), #ffba57);
  box-shadow:
    0 0 0 11px rgba(255, 140, 25, 0.98),
    0 0 70px rgba(255, 132, 23, 0.74);
}

.badge-inner {
  position: relative;
  width: 82%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 8px solid #035fa6;
  border-radius: 50%;
  background: #fffdf6;
  overflow: hidden;
}

.sunburst {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: repeating-conic-gradient(#d9b156 0deg 10deg, transparent 10deg 20deg);
}

.badge-ring {
  position: relative;
  z-index: 1;
  width: 62%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e7f5ff;
  background:
    radial-gradient(circle, #f4fafc 0 30%, #2278bb 31% 52%, transparent 53%),
    #0b64ad;
  border: 4px dotted #e0b95f;
  box-shadow: 0 0 0 6px #0b64ad;
}

.badge-ring span {
  position: absolute;
  width: 86%;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(7px, 1vw, 11px);
  line-height: 1.1;
  letter-spacing: 1px;
  text-align: center;
}

.badge-ring strong {
  position: relative;
  z-index: 1;
  color: #d8b65d;
  font-size: clamp(42px, 5vw, 62px);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.members {
  margin: 36px 0 0;
  color: var(--cream);
  font-size: clamp(23px, 2.7vw, 31px);
  font-weight: 800;
}

.pill-row {
  width: min(100%, 690px);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.outline-pill {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: var(--white);
  background: rgba(42, 14, 0, 0.5);
  box-shadow: 0 0 28px rgba(255, 132, 23, 0.36);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
}

.stats-grid {
  margin: 42px auto 0;
  width: min(100%, 910px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stat-card,
.feature-card {
  background: rgba(22, 4, 0, 0.94);
  border-radius: 28px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.36);
}

.stat-card {
  min-height: 140px;
  padding: 28px 18px 22px;
}

.stat-card strong {
  display: block;
  color: var(--orange);
  font-size: clamp(36px, 4.4vw, 51px);
  line-height: 1;
  font-weight: 900;
}

.stat-card span {
  display: block;
  margin-top: 16px;
  color: var(--cream);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
}

.telegram-button {
  width: min(100%, 910px);
  min-height: 124px;
  margin: 52px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #080200;
  text-decoration: none;
  background: linear-gradient(90deg, #ff871b, var(--orange-light));
  box-shadow: 0 0 58px rgba(255, 132, 23, 0.56);
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 900;
}

.feature-list {
  width: min(100%, 910px);
  margin: 44px auto 0;
  display: grid;
  gap: 34px;
  text-align: left;
}

.feature-card {
  min-height: 145px;
  padding: 36px 34px;
}

.feature-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 900;
}

.feature-card p {
  margin: 26px 0 0;
  color: var(--cream);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.3;
  font-weight: 600;
}

footer {
  margin-top: 54px;
  color: var(--gold);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 34px 16px 34px;
  }

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

  .pill-row {
    width: min(100%, 380px);
    gap: 16px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-card {
    min-height: 112px;
  }

  .telegram-button {
    min-height: 84px;
    padding: 18px 24px;
  }

  .feature-card {
    min-height: 126px;
    padding: 28px 24px;
  }
}
