* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

.hero {
  background:
    linear-gradient(rgba(8, 14, 30, 0.86), rgba(8, 14, 30, 0.9)),
    radial-gradient(circle at top right, #2563eb, transparent 35%);
  color: white;
  padding: 28px 7% 100px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 24px;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-cta {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: #60a5fa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  margin-bottom: 24px;
}

.subhead {
  font-size: 21px;
  max-width: 720px;
  color: #d1d5db;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
}

.primary-btn {
  background: #3b82f6;
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.microcopy {
  color: #9ca3af;
  font-size: 14px;
}

section {
  padding: 85px 7%;
}

.section-header {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-header h2,
.report-preview h2,
.scan h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p,
.report-preview p,
.scan p {
  color: #4b5563;
  font-size: 18px;
}

.cards,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 28px;
  border-radius: 18px;
}

.card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p,
.step p {
  color: #4b5563;
}

.step span {
  display: inline-block;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 14px;
}

.solution {
  background: #f3f4f6;
}

.report-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.report-preview ul,
.scan ul {
  margin-top: 22px;
  padding-left: 20px;
}

.report-preview li,
.scan li {
  margin-bottom: 10px;
}

.mock-report {
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border-radius: 20px;
  padding: 30px;
}

.mock-header {
  font-weight: 800;
  margin-bottom: 24px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.mock-metrics div {
  background: #f9fafb;
  padding: 18px;
  border-radius: 14px;
}

.mock-metrics strong {
  display: block;
  font-size: 28px;
}

.mock-metrics span {
  color: #6b7280;
  font-size: 14px;
}

.mock-line {
  height: 8px;
  background: linear-gradient(90deg, #2563eb, #93c5fd);
  border-radius: 999px;
  margin-bottom: 22px;
}

.scan {
  background: #0f172a;
  color: white;
}

.scan p,
.scan li {
  color: #d1d5db;
}

.scan-box {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: start;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 42px;
  border-radius: 24px;
}

form {
  background: white;
  color: #111827;
  padding: 26px;
  border-radius: 18px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  margin-bottom: 16px;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.form-note {
  color: #6b7280 !important;
  font-size: 13px !important;
  margin-top: 12px;
}

footer {
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps items vertically aligned */
  gap: 20px;
  color: #6b7280;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  color: #9ca3af; /* slightly lighter for cleaner SaaS feel */
}

@media (max-width: 850px) {
  .cards,
  .steps,
  .report-preview,
  .scan-box {
    grid-template-columns: 1fr;
  }

  nav {
    margin-bottom: 60px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start; /* aligns left on mobile */
    gap: 10px;
  }
}
