:root {
  --bg: #030712;
  --section-1: #101828;
  --section-2: #030712;
  --panel: #101828;
  --line: #1e2939;
  --red: #e7000b;
  --red-2: #fb2c36;
  --red-3: #ff6467;
  --maroon: #460809;
  --muted: #99a1af;
  --muted-2: #d1d5dc;
}

html, body {
  background: var(--bg);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth; 
  scroll-padding-top: 70px; 
}

a { text-decoration: none; }
em { font-style: italic; }
p { color: var(--muted); }

.text-muted-2 { color: var(--muted-2) !important; }
.text-red { color: var(--red) !important; }
.text-red-2 { color: var(--red-2) !important; }
.fw-black { font-weight: 900; }
.bg-section-1 { background: var(--section-1); }
.bg-section-2 { background: var(--section-2); }

section { padding: 4rem 0; }

/* Buttons */
.btn-primary-red {
  background: var(--red);
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .95rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  transition: background 0.7s ease, color 0.7s ease, box-shadow 0.7s ease; 
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.5); 
}

.btn-primary-red:hover {
  background: #fff; 
  color: #000; 
  box-shadow: none; 
}

.btn-primary-red:focus,
.btn-primary-red:active {
  outline: none;
}

.btn-outline-muted {
  border: 2px solid #364153;
  color: var(--muted-2);
  border-radius: 10px;
  padding: .95rem 1.5rem;
  font-weight: 700;
  background: transparent;
  font-family: 'Roboto', sans-serif;
}

.btn-outline-muted:hover {
  background: #1f2937;
  color: #fff;
}

/* Nav */
.top-nav { background: #000; }

.top-menu a {
  color: var(--muted-2);
  font-size: .95rem;
  font-family: 'Roboto', sans-serif;
}

.top-menu a:hover { color: #fff; }

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.5px;
}

.brand-mark .logo-m { color: #fff; font-style: italic; }
.brand-mark .logo-dot { color: var(--red); font-size: 1.6rem; margin: 0 1px; }
.brand-mark .logo-blaze { color: #fff; font-style: italic; }

.btn-sm-red { padding: .55rem 1.1rem; font-size: .9rem; }

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
}

.navbar.sticky-top {
  border-bottom: 1px solid #1E2939;
}

/* Hero */
.hero {
  background-image: 
    radial-gradient(circle at 90% 30%, rgba(231,0,11,.15), transparent 50%),
    url('images/bkground-image.jpg'); 
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--maroon);
  color: var(--red-3);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.pill-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(40, 167, 69, 0.3);
  color: #42FF13;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-title {
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.5px;
}

.hero-title .accent { color: var(--red); font-weight: 700; }

.hero-sub {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
}

.hero-meta { color: #fff; font-family: 'Roboto', sans-serif; font-size: 1rem; }
.hero-meta i { color: var(--red-2); margin-right: .5rem; }

.preview {
  background: #fff;
  border-radius: 16px;
  aspect-ratio: 16/10.6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a7282;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}

/* Section title */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.section-title .accent { color: var(--red); }

/* Circle features (problem & results) */
.circle-feature { text-align: center; padding: 1rem; }

.circle-feature .circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--section-1);
  border: 2px solid #1B2434;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.bg-section-1 .circle-feature .circle { background: var(--section-2); border-color: #1E2939; }

.circle-feature h5 { font-weight: 700; font-size: 1.6rem; margin-bottom: .75rem; }
.circle-feature p { color: var(--muted); font-family: 'Roboto', sans-serif; font-size: 1.05rem; margin: 0; }

/* Signal cards (dark red) */
.signal-card {
  background: var(--maroon);
  border: 2px solid var(--red);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.signal-card .square-icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: var(--maroon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.signal-card h5 { font-weight: 700; font-size: 1.4rem; margin-bottom: .5rem; color: #fff; }
.signal-card p { color: var(--muted); font-family: 'Roboto', sans-serif; font-size: 1rem; margin: 0; }

/* Learn panel */
.learn-panel {
  background: var(--section-2);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.bg-section-1 .learn-panel { background: var(--section-2); }

.learn-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  border-bottom: 1px solid #1E2939;
}

.learn-list li:last-child { border-bottom: 0; }

.learn-list .bullet {
  width: 14px;
  height: 14px;
  background: var(--red);
  flex: 0 0 14px;
  display: inline-block;
}

/* Flow */
.flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 1rem; }
.flow-step { flex: 1 1 200px; max-width: 236px; text-align: center; padding: 0 .5rem; }

.flow-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--section-1);
  border: 2px solid var(--line);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
  font-size: 2.4rem;
}

.flow-title { font-weight: 700; font-size: 1.4rem; color: #fff; }
.flow-sub { color: var(--muted); font-family: 'Roboto', sans-serif; font-size: 1rem; margin-top: .4rem; }
.flow-arrow { align-self: center; color: #4E5460; font-size: 2rem; margin-top: 50px; }
.logo-w { color: var(--red); font-weight: 900; font-size: 2.2rem; font-style: italic; line-height: 1; letter-spacing: -2px; }
.logo-w .dot { color: var(--red); }

/* Banner */
.banner-red { background: var(--red); text-align: center; padding: 3.5rem 1rem; }
.banner-red h3 { margin: 0; color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; text-transform: capitalize; }

/* About */
.about-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 613 / 409; 
  background: url('images/moblaze-visual.png') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem; 
}

.about-img span { 
  font-weight: 700; 
  color: #fff; 
  font-size: 1.4rem; 
  line-height: 1.2; 
  text-shadow: 0px 2px 4px rgba(0,0,0,0.8); 
}

.about-title { font-weight: 700; font-size: 2rem; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.solutions-title { font-weight: 700; color: #fff; text-transform: uppercase; margin-top: 1.5rem; font-size: 1rem; letter-spacing: .5px; }

.solutions-card {
  background: var(--section-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.logo-w-card { color: var(--red); font-weight: 900; font-size: 2rem; font-style: italic; line-height: 1; letter-spacing: -2px; }
.logo-w-card .dot { color: var(--red); }

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(231,0,11,.12);
  color: var(--red-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex: 0 0 48px;
}

/* Form */
.form-panel {
  background: var(--section-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.form-panel .form-label { display: flex; align-items: center; gap: .4rem; color: var(--muted-2); }

.form-panel .form-control {
  background: var(--section-2);
  border: 1px solid var(--line);
  color: #fff;
  padding: .95rem 1rem;
  border-radius: 8px;
}

.form-panel .form-control::placeholder { color: #6b7280; }
.form-panel .form-control:focus { box-shadow: none; border-color: var(--red-2); background: var(--section-2); color: #fff; }

/* Footer */
footer { padding: 3rem 0; background: var(--section-2); border-top: 1px solid var(--line); text-align: center; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 1.6rem; font-style: italic; letter-spacing: -.5px; }
.footer-brand .logo-m, .footer-brand .logo-blaze { color: var(--red); }
.footer-brand .logo-dot { color: var(--red); }
.footer-meta { color: var(--muted); margin-top: .75rem; font-family: 'Roboto', sans-serif; font-size: .95rem; }
.footer-copy { color: #4b5563; margin-top: .5rem; font-size: .85rem; }

/* Tablet View */
@media (max-width: 991px) {
  html { scroll-padding-top: 65px; }
  .flow-arrow { display: none; }
  .flow-step { flex: 1 1 45%; }
}

/* Mobile View */
@media (max-width: 575px) {
  section { padding: 3rem 0; }
  .flow {
    flex-direction: column;
    align-items: center;
    gap: 0; 
  }
  .flow-step { 
    flex: 1 1 100%; 
    max-width: 280px; 
  }
  .flow-arrow {
    display: block;
    transform: rotate(90deg); 
    margin: 1.5rem 0; 
  }
}