```css
:root{
  --bg-deep:#edf3fb;

  --text:#0f172a;
  --muted:#5b6b82;

  --green-1:#16a34a;
  --green-2:#15803d;

  --btn-top:#2563eb;
  --btn-mid:#1d4ed8;
  --btn-bot:#1e40af;

  --gold-1: rgba(191,208,232,.28);
  --gold-2: rgba(166,187,219,.36);
  --gold-3: rgba(140,164,201,.28);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  text-align:center;
  overflow-x:hidden;
}

/* BG */
.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(70% 70% at 50% 35%, rgba(96,140,255,.10), transparent 60%),
    radial-gradient(90% 100% at 50% 60%, rgba(245,248,255,.72), rgba(235,241,250,.96)),
    url("./1.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:-2;
}
.bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("./pattern.svg");
  background-size:cover;
  background-position:center;
  opacity:.12;
  mix-blend-mode: overlay;
  pointer-events:none;
}
.bg::after{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle at 50% 45%, transparent 18%, rgba(255,255,255,.10) 62%, rgba(210,220,235,.26) 100%);
  pointer-events:none;
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 12px;
}

/* CARD */
.card{
  width: min(720px, 92vw);
  padding: 24px 18px 20px;
  border-radius: 28px;
  position:relative;

  background: #ffffff;
  backdrop-filter: blur(18px);

  box-shadow:
    0 24px 75px rgba(15,23,42,.18),
    0 0 0 1px rgba(255,255,255,.65) inset;
}

/* ✅ премиальная обводка */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(180deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events:none;
  opacity:.85;
}

/* ✅ мягкое свечение */
.card::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius: 34px;
  background: radial-gradient(60% 40% at 50% 26%, rgba(96,140,255,.08), transparent 70%);
  filter: blur(18px);
  z-index:-1;
  opacity:.9;
}

/* AVA */
.avaWrap{
  position:relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 8px; /* ближе */
}
.ava{
  width: 88px;
  height: 88px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

/* ✅ флаг крупнее */
.flagOnAva{
  position:absolute;
  right: -5px;
  bottom: -10px;
  font-size: 32px; /* было 22 */
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

/* TITLE */
.titleLine{
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: .2px;

  /* Главное */
  white-space: nowrap;        /* запрещаем перенос */
  overflow: hidden;           /* если вдруг слишком длинный */
  text-overflow: ellipsis;    /* защита */

  /* адаптивный размер */
  font-size: clamp(18px, 4.8vw, 34px);

  color:#1e293b);
  text-shadow: 0 2px 18px rgba(37,99,235,.08);
}

/* TOP PANEL */

.topPanel{
  text-decoration: none;
  color: inherit;
}

.topPanel *{
  text-decoration: none;
  color: inherit;
}
.topPanel{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 12px;

  padding: 10px 16px;   /* чуть компактнее */
  border-radius: 16px;

  background:#f1f5f9;
  backdrop-filter: blur(10px);

  box-shadow:
    0 16px 36px rgba(15,23,42,.12),
    0 0 0 1px rgba(203,213,225,.65) inset;

  margin: 0 auto 10px;  /* ближе */
}
.topPill{
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color:#ffffff;
  background:#16a34a;
  box-shadow:
    0 10px 18px rgba(22,163,74,.20),
    0 0 0 1px rgba(255,255,255,.28) inset;
}
.topPanelText{
  font-size: clamp(13px, 3.4vw, 15px);
  color: #475569;
  line-height: 1.15;
}

/* MEMBERS (ближе и читаемее) */
.members{
  margin: 6px 0 14px; /* ближе */
  font-size: clamp(13px, 3.8vw, 16px);
  color:#2563eb;
  font-weight:600;
  text-shadow: 0 2px 10px rgba(37,99,235,.08);
  position: relative;
  z-index: 3;   /* поднимаем выше glow */
}

/* BENEFITS — сгруппированы, ближе */
.benefits{
  width: min(520px, 100%);   /* фиксируем ширину блока */
  margin: 0 auto 14px;       /* блок снова по центру карточки */
  padding-left: 20px;        /* убираем сдвиг */
  display:flex;
  flex-direction:column;
  gap: 8px;                  /* ближе строки */
  text-align:left;           /* текст слева */
}
.bItem{
  display:flex;
  justify-content:center; /* текст по центру */
  align-items:center;
  gap: 10px;
}
.bIconImg{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.bIcon{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  line-height: 1;
}
.bText{
  font-size: clamp(14px, 4vw, 16px);
  color: #0f172a;
  line-height: 1.22;
}

/* CONTACT */
.contact{
  margin: 0 0 14px; /* ближе */
  margin-top: 15px;
  font-size: clamp(14px, 4vw, 16px);
  color: #475569;
}
.handle{ font-weight: 700; }

.iconImg{
  width:18px;
  height:18px;
  margin-right:0px;
  vertical-align:-3px;   /* идеальное выравнивание по тексту */
}
.topPill{
  white-space: nowrap;   /* запрещает перенос */
}

/* CTA */
.cta{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 12px;
  padding: 16px 14px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(15px, 4.5vw, 18px);
  line-height: 1;
  text-align:center;

  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%) !important;
  box-shadow:
    0 12px 28px rgba(37,99,235,.25),
    0 6px 12px rgba(0,0,0,.12);
  border:none;
}

/* бегущий блик */
.cta::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-70%;
  width: 50%;
  height: 200%;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.25) 40%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.25) 60%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-18deg);
  filter: blur(1px);
  animation: ctaShine 2.2s ease-in-out infinite;
}

.cta > *{
  position: relative;
  z-index: 1;
}

@keyframes ctaShine{
  0%   { left:-70%; }
  55%  { left:120%; }
  100% { left:120%; }
}

@media (hover:hover){
  .cta:hover{
    transform: translateY(-2px);
  }
  .cta:hover::before{
    animation-duration: 1.8s;
  }
}

/* ===== LIMITED OFFER BLOCK ===== */

.limitedBlock{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:12px 18px;
  margin: 8px auto 18px;

  border-radius:16px;

  background:#e2e8f0;
  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(15,23,42,.10),
    0 0 0 1px rgba(203,213,225,.70) inset;

  position: relative;
}

.timeBadge{
  padding:6px 12px;
  border-radius:8px;

  font-size:12px;
  font-weight:700;
  letter-spacing:.8px;

  color:#fff;

  background: linear-gradient(180deg, #ff3b30, #c40000);

  box-shadow: 0 4px 10px rgba(0,0,0,.25); /* мягкая тень вместо свечения */
}
.limitedText{
  font-size: clamp(13px, 3.8vw, 15px);
  color: #475569;
  font-weight:500;
}
```
