body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.brand { font-family: 'Montserrat'; font-weight: 900; color:#D72638; }

.section { padding: 100px 0; }
.bg-deep { background:#0A0A0A; }

.hero-title { font-family: 'Montserrat'; font-size:56px; }
.hero-sub { color:#CCCCCC; }

.logo-float {
  width: 320px;
  height: 320px;
  margin:auto;
  border-radius:50%;
  background: radial-gradient(circle,#D72638,#000);
  box-shadow: 0 0 80px rgba(154,0,255,0.5);
}

.logo-float.small { width:220px;height:220px; }

.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid #1C1C1C;
  border-radius: 16px;
  padding: 30px;
  transition: all .3s ease;
}
.glass-card:hover { transform:translateY(-4px); box-shadow:0 0 30px rgba(215,38,56,.4); }

.btn-primary-glow {
  background: linear-gradient(90deg,#D72638,#A20821);
  border:none; color:#fff; border-radius:12px; padding:12px 28px;
  box-shadow:0 0 25px rgba(215,38,56,.5);
}

.btn-glass {
  background:rgba(255,255,255,0.05);
  border:1px solid #7A7A7A;
  color:#ccc; border-radius:12px; padding:12px 28px;
}

.divider {
  height:2px;
  background:linear-gradient(90deg,transparent,#D72638,transparent);
}
.text-silver { color:#CCCCCC; }
.step { font-family:'Montserrat'; padding:20px; border:1px solid #1C1C1C; border-radius:14px; }

/* RESPONSIVE IMPROVEMENTS */

@media (max-width: 768px) {

  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 15px;
  }

  .logo-float {
    width: 200px;
    height: 200px;
  }

  .logo-float.small {
    width: 150px;
    height: 150px;
  }

  .step {
    font-size: 14px;
    padding: 15px;
  }

  .btn-primary-glow,
  .btn-glass {
    width: 100%;
    text-align: center;
  }
}
