
/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at bottom, #020617 0, #000000 55%);
  color: #ffffff;
  min-height: 100vh;
}

/* Base layout */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}

.section {
  padding: 80px 0;
}

/* ============================
   HERO
============================ */
.hero {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-logo {
  width: 440px;
  max-width: 60%;
  display: block;
  margin: 0 auto 40px;

  /* ⭐ Strong Visible Glow */
  filter: 
    drop-shadow(0 0 30px rgba(96, 182, 255, 0.95))
    drop-shadow(0 0 60px rgba(96, 182, 255, 0.75))
    drop-shadow(0 0 90px rgba(96, 182, 255, 0.5));
}


.hero-title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: #60b6ff; /* exact localhost style blue */
}

.hero-features {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================
   SECTIONS / TYPOGRAPHY
============================ */
.section-shell {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  margin: 0 0 4px;
  font-size: 28px;
  font-weight: 600;
}

.section-subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================
   HOW BLYZ WORKS
============================ */
.how {
  position: relative;
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  max-width: 640px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #020819 0, transparent 70%);
  opacity: 0.8;
  z-index: -1;
}

.how-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
  text-align: left;
}

.how-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.how-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
   CTA
============================ */
.cta {
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  max-width: 640px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #020819 0, transparent 70%);
  opacity: 0.9;
  z-index: -1;
}

.cta-shell {
  padding-top: 16px;
}

.cta-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form input {
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.cta-form input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.cta-form button {
  height: 46px;
  border-radius: 999px;
  border: none;
  background: #1e90ff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.cta-form button:disabled {
  opacity: 0.7;
  cursor: default;
}

/* ============================
   FOOTER
============================ */
.footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 24px 20px 40px;
  margin-top: 20px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.social-link {
  display: inline-flex;
  padding: 4px;
}

/* ICON SIZE */
.social-icon {
  width: 26px;
  height: 26px;
  fill: #60b6ff;
}

/* Instagram shape */
.social-icon--instagram path {
  fill: #60b6ff;
}

/* Facebook */
.social-icon--facebook path {
  fill: #60b6ff;
}

/* TikTok */
.social-icon--tiktok path {
  fill: #60b6ff;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .page {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-title {
    font-size: 32px;
  }

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