/* ==========================================
   МАРТОВСКИЙ МАРАФОН — EVENT-SBOR
   Базовые стили, переменные, типографика
   ========================================== */

/* --- CSS Variables --- */
:root {
  --bg-primary: #080E1D;
  --bg-gradient-1: #0A1628;
  --bg-gradient-2: #0E1425;
  --bg-gradient-3: #12102A;
  --bg-gradient-4: #15122E;
  
  --gold: #D4A84B;
  --gold-light: #F5A623;
  --teal: #4ECDC4;
  --pink: #E8737A;
  --coral: #FF6B5B;
  --yellow: #F5D76E;
  --telegram-blue: #229ED9;
  
  --text-white: #FFFFFF;
  --text-65: rgba(255,255,255,0.65);
  --text-55: rgba(255,255,255,0.55);
  --text-50: rgba(255,255,255,0.50);
  --text-40: rgba(255,255,255,0.40);
  --text-30: rgba(255,255,255,0.30);
  --text-25: rgba(255,255,255,0.25);
  
  --glass-bg: rgba(10,40,30,0.22);
  --glass-border-top: rgba(100,220,180,0.22);
  --glass-border-side: rgba(100,220,180,0.06);
  --glass-border-left: rgba(100,220,180,0.15);
  
  --max-width: 1200px;
}

/* --- Reset --- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition: color 0.3s; }
button { border:none; cursor:pointer; font-family:inherit; }

.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }

/* --- Page wrapper (for absolute bg) --- */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
}


/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.cosmos-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.cosmos-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-gradient-1) 0%,
    var(--bg-gradient-2) 25%,
    var(--bg-gradient-3) 50%,
    var(--bg-gradient-4) 75%,
    var(--bg-gradient-1) 100%
  );
}

.cosmos-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cosmos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,14,29,0.5);
}


/* ==========================================
   NAVIGATION BAR
   ========================================== */
.nav-bar {
  position: relative;
  z-index: 20;
  width: 100%;
  background: linear-gradient(90deg, 
    rgba(212,168,75,0.15) 0%, 
    rgba(212,168,75,0.25) 50%, 
    rgba(212,168,75,0.15) 100%
  );
  border-bottom: 1px solid rgba(212,168,75,0.35);
}

.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-bar__logo {
  height: 32px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-bar__announce {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.nav-bar__link {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}
.nav-bar__link:hover {
  color: var(--gold-light);
}

.nav-bar__spacer {
  width: 80px;
}


/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  z-index: 10;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 32px 24px 64px;
}

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

/* --- Badge --- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  margin-bottom: 24px;
  background: rgba(212,168,75,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,168,75,0.5);
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.15);
  color: var(--gold);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Meta (date, time) --- */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-50);
  font-size: 14px;
}

.hero__meta-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Countdown --- */
.hero__countdown {
  margin-bottom: 24px;
}

.hero__countdown-label {
  color: var(--text-30);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.hero__countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__countdown-value {
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

.hero__countdown-text {
  color: var(--text-40);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__countdown-sep {
  color: var(--text-30);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* --- Title --- */
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title-accent {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Description --- */
.hero__desc {
  color: var(--text-65);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 440px;
}

/* --- Actions --- */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  padding: 16px 32px;
  color: #0A1628;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
  box-shadow: 0 0 25px rgba(255,180,50,0.5), 0 4px 15px rgba(0,0,0,0.3);
}
.btn--primary:hover {
  box-shadow: 0 0 35px rgba(255,180,50,0.7), 0 6px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.hero__free-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-50);
  font-size: 14px;
}

.hero__free-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(212,168,75,0.2);
  color: var(--gold);
}


/* ==========================================
   GLASS CARD (shared)
   ========================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-width: 2px 1px 1px 2px;
  border-style: solid;
  border-color: var(--glass-border-top) var(--glass-border-side) var(--glass-border-side) var(--glass-border-left);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 1px 1px 0 rgba(100,220,180,0.12);
  border-radius: 16px;
  overflow: hidden;
}


/* ==========================================
   HERO CARD (schedule)
   ========================================== */
.hero__card-wrap {
  display: flex;
  justify-content: center;
}

.hero__card {
  width: 100%;
  max-width: 380px;
}

.hero__card-header {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero__card-emoji {
  font-size: 30px;
  margin-bottom: 8px;
}

.hero__card-title {
  font-weight: 900;
  font-size: 18px;
}

.hero__card-dates {
  color: var(--text-40);
  font-size: 12px;
  margin-top: 4px;
}

.hero__card-body {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__card-day {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.hero__card-day--active {
  background: rgba(212,168,75,0.08);
  border-color: rgba(212,168,75,0.25);
}

.hero__card-day-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(255,255,255,0.08);
  color: var(--text-30);
}

.hero__card-day-num--active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A1628;
}

.hero__card-day-label {
  color: var(--text-40);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.hero__card-day-speaker {
  font-weight: 700;
  font-size: 14px;
}

.hero__card-day-speaker--tba {
  color: var(--text-30);
}

.hero__card-day-topic {
  font-size: 12px;
  margin-top: 2px;
  color: var(--text-55);
}

.hero__card-day-topic--tba {
  color: var(--text-25);
}

.hero__card-footer {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-30);
  font-size: 12px;
}


/* ==========================================
   RESPONSIVE — NAVIGATION
   ========================================== */
@media (max-width: 768px) {
  .nav-bar__inner {
    padding: 8px 16px;
  }
  .nav-bar__announce {
    font-size: 12px;
  }
  .nav-bar__spacer {
    display: none;
  }
  .nav-bar__logo {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .nav-bar__inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* ==========================================
   RESPONSIVE — HERO
   ========================================== */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    min-height: auto;
    padding: 40px 24px 60px;
  }
  .hero__title {
    font-size: clamp(32px, 6vw, 48px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 16px 48px;
  }
  .hero__desc {
    font-size: 16px;
  }
  .btn--primary {
    width: 100%;
    font-size: 16px;
    padding: 14px 24px;
  }
  .hero__card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__meta {
    flex-direction: column;
    gap: 8px;
  }
  .hero__countdown-value {
    font-size: 18px;
  }
}

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */
.section-label {
  color: var(--text-40);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ==========================================
   SPEAKERS SECTION
   ========================================== */
.speakers {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
}

.speakers__header {
  text-align: center;
  margin-bottom: 48px;
}

.speakers__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Day tag row --- */
.speaker-day__tag-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.speaker-day__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0A1628;
}

.speaker-day__date {
  color: var(--text-40);
  font-size: 14px;
  white-space: nowrap;
}

.speaker-day__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* --- Speaker card --- */
.speaker-day__card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 32px;
}

/* --- Photo area --- */
.speaker-day__photo {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
}

.speaker-day__photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(212,168,75,0.3);
  gap: 12px;
}

.speaker-day__photo-emoji {
  font-size: 60px;
}

.speaker-day__photo-name {
  color: var(--text-40);
  font-size: 14px;
}

.speaker-day__photo-placeholder--tba .speaker-day__photo-emoji {
  font-size: 40px;
}

/* --- Speaker info --- */
.speaker-day__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-day__city {
  color: var(--text-50);
  font-size: 14px;
  margin-bottom: 4px;
}

.speaker-day__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.speaker-day__name--tba {
  color: var(--text-30);
}

.speaker-day__topic-box {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.35);
}

.speaker-day__topic-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.speaker-day__bio {
  color: var(--text-55);
  font-size: 14px;
  line-height: 1.7;
}

.speaker-day__bio--tba {
  color: var(--text-40);
}


/* ==========================================
   RESPONSIVE — SPEAKERS
   ========================================== */
@media (max-width: 1024px) {
  .speakers {
    padding: 72px 24px;
  }
}

@media (max-width: 768px) {
  .speakers {
    padding: 56px 16px;
  }
  
  .speaker-day__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .speaker-day__photo {
    min-height: 220px;
  }
  
  .speaker-day__photo-placeholder {
    min-height: 220px;
  }
  
  .speaker-day__name {
    font-size: 20px;
  }
  
  .speaker-day__date {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .speaker-day__tag-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .speaker-day__line {
    display: none;
  }
}


/* ==========================================
   COMMUNITY PHOTO SECTION
   ========================================== */
.community {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
}

.community__header {
  text-align: center;
  margin-bottom: 48px;
}

.community__subtitle {
  color: var(--text-50);
  font-size: 18px;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Photo container --- */
.community__photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-width: 2px 1px 1px 2px;
  border-style: solid;
  border-color: rgba(255,255,255,0.32) rgba(255,255,255,0.08) rgba(255,255,255,0.08) rgba(255,255,255,0.22);
  box-shadow: 
    0 0 60px rgba(212,168,75,0.2),
    0 20px 60px rgba(0,0,0,0.6),
    inset 1px 1px 0 rgba(255,255,255,0.18);
}

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

/* --- Bottom fade overlay --- */
.community__photo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to top, rgba(8,14,29,0.85) 0%, transparent 100%);
}

/* --- Badge overlay --- */
.community__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0A1628;
  box-shadow: 0 0 30px rgba(212,168,75,0.6);
}


/* ==========================================
   RESPONSIVE — COMMUNITY
   ========================================== */
@media (max-width: 1024px) {
  .community {
    padding: 72px 24px;
  }
}

@media (max-width: 768px) {
  .community {
    padding: 56px 16px;
  }
  
  .community__subtitle {
    font-size: 16px;
  }
  
  .community__photo-badge {
    font-size: 14px;
    padding: 10px 24px;
    bottom: 16px;
  }
  
  .community__photo-fade {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .community__photo-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
}


/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
}

.testimonials__divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 384px;
  height: 1px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.4), transparent);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

/* --- Reviews grid --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* --- Review card --- */
.review-card {
  position: relative;
  padding: 24px;
}

.review-card__quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: rgba(212,168,75,0.125);
}

.review-card__quote--teal {
  color: rgba(78,205,196,0.125);
}

.review-card__quote--orange {
  color: rgba(245,166,35,0.125);
}

/* --- Badge --- */
.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.review-card__badge--gold {
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.35);
  color: var(--gold);
}

.review-card__badge--teal {
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.35);
  color: var(--teal);
}

.review-card__badge--orange {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold-light);
}

.review-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.review-card__badge-dot--gold { background: var(--gold); }
.review-card__badge-dot--teal { background: var(--teal); }
.review-card__badge-dot--orange { background: var(--gold-light); }

/* --- Text --- */
.review-card__text {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

/* --- Author --- */
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__avatar--gold {
  background: rgba(212,168,75,0.145);
  color: var(--gold);
}

.review-card__avatar--teal {
  background: rgba(78,205,196,0.145);
  color: var(--teal);
}

.review-card__avatar--orange {
  background: rgba(245,166,35,0.145);
  color: var(--gold-light);
}

.review-card__name {
  color: var(--text-55);
  font-size: 14px;
  font-weight: 500;
}

/* --- Community CTA block --- */
.testimonials__cta {
  position: relative;
  overflow: hidden;
  padding: 40px;
  text-align: center;
}

.testimonials__cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(at 50% 0%, rgba(212,168,75,0.12) 0%, transparent 60%);
}

.testimonials__cta-inner {
  position: relative;
}

.testimonials__cta-emoji {
  font-size: 40px;
  margin-bottom: 16px;
}

.testimonials__cta-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonials__cta-desc {
  color: var(--text-55);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}


/* ==========================================
   RESPONSIVE — TESTIMONIALS
   ========================================== */
@media (max-width: 1024px) {
  .testimonials {
    padding: 72px 24px;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 56px 16px;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .testimonials__divider {
    width: 200px;
  }
  
  .testimonials__cta {
    padding: 32px 24px;
  }
}


/* ==========================================
   REGISTRATION CTA SECTION
   ========================================== */
.register {
  position: relative;
  z-index: 10;
  padding: 96px 24px;
}

.register__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(at 50% 80%, rgba(212,168,75,0.12) 0%, transparent 60%);
}

.register__card {
  position: relative;
  overflow: hidden;
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 56px;
  text-align: center;
  box-shadow:
    0 0 60px 15px rgba(100,220,180,0.12),
    0 0 0 1px rgba(100,220,180,0.08),
    inset 1px 1px 0 rgba(100,220,180,0.1);
}

.register__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.register__inner {
  position: relative;
}

.register__subtitle {
  color: var(--text-50);
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 40px;
}

/* --- Features grid --- */
.register__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 40px;
  text-align: left;
}

.register__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-65);
  font-size: 14px;
}

.register__feature-icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Action buttons --- */
.register__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .register__actions {
    flex-direction: row;
  }
}

.btn--lg {
  padding: 16px 40px;
  font-size: 18px;
  box-shadow:
    0 0 25px rgba(255,180,50,0.6),
    0 0 45px rgba(255,150,50,0.3),
    0 4px 15px rgba(0,0,0,0.3);
}

.btn--telegram {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-radius: 12px;
  background: linear-gradient(135deg, #229ED9 0%, #1A7FC1 100%);
  box-shadow: 0 0 20px rgba(34,158,217,0.4), 0 4px 15px rgba(0,0,0,0.3);
}

.btn--telegram:hover {
  box-shadow: 0 0 30px rgba(34,158,217,0.6), 0 6px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* --- Hint --- */
.register__hint {
  color: var(--text-25);
  font-size: 12px;
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__legal {
  color: var(--text-30);
  font-size: 12px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.footer__link {
  color: var(--text-30);
  font-size: 12px;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--text-50);
}

.footer__sep {
  color: rgba(255,255,255,0.2);
}


/* ==========================================
   RESPONSIVE — REGISTER + FOOTER
   ========================================== */
@media (max-width: 1024px) {
  .register {
    padding: 72px 24px;
  }
}

@media (max-width: 768px) {
  .register {
    padding: 56px 16px;
  }
  
  .register__card {
    padding: 32px 24px;
  }
  
  .register__subtitle {
    font-size: 16px;
  }
  
  .register__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .btn--lg {
    width: 100%;
    font-size: 16px;
    padding: 14px 32px;
  }
  
  .btn--telegram {
    width: 100%;
    justify-content: center;
  }
  
  .footer {
    padding: 24px 16px;
  }
}
