@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Basic&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #f91919;
  --blue: #353fab;
  --dark: #06090f;
  --dark2: #0c1120;
  --dark3: #111928;
  --t1: #dce8f7;
  --t2: #5a7da4;
  --t3: #1e3050;
  --bd: #1a2b44;
  --grn: #17c880;
  --ff-ui: 'Inter', sans-serif;
  --ff-body: 'Basic', sans-serif;
}

body {
  background: var(--dark);
  color: var(--t1);
  font-family: var(--ff-body);
  font-size: 14px;
}

/* ── NAV */
.nav {
  background: var(--dark);
  border-bottom: 1px solid var(--bd);
  display: flex;
  padding: 0 40px;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Blue logo — brand identity, not danger */
.nav-logo {
  font-family: var(--ff-ui);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--t1);
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
}

.nav-links a {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t2);
  cursor: pointer;
  text-decoration: none;
}

/* Blue CTA button — not a danger signal */
.nav-cta {
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 10px;
  margin-right: 30px;
  margin-top: 10px;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  width: 200px;
}

.nav a {
  text-decoration: none;
  list-style: none;
  color: #fff;
}

/* ── HERO */
.hero {
  display: flex;
  padding: 70px 40px 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--dark3) 1px, transparent 1px), linear-gradient(90deg, var(--dark3) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(53, 63, 171, 0.08) 0%, transparent 85%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  align-items: center;
  justify-content: center;
}

/* Inter bold for headings */
.hero-h1 {
  text-align: center;
  font-family: var(--ff-ui);
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--t1);
  margin-bottom: 12px;
}

.hero-h1 span {
  color: var(--blue);
} /* blue accent on heading */
/* Basic for body/subtext */
.hero-sub {
  font-family: var(--ff-body);
  text-align: center;
  font-size: 20px;
  color: var(--t2);
  line-height: 1.6;
  max-width: 600px;
  margin-left: 25px;
  margin-bottom: 26px;
  font-weight: 400;
}

/* ── SECTION */
.section {
  padding: 72px 40px;
}

/* Inter bold for section headings */
.section-h2 {
  font-family: var(--ff-ui);
  font-size: 45px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--t1);
  margin-bottom: 12px;
}

.section-h2 span {
  color: var(--blue);
} /* blue accent */
/* Basic for section body */
.section-p {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 420px;
  font-weight: 400;
}

/* ── HOW IT WORKS */
.how-section {
  background: var(--dark2);
  border-top: 1px solid var(--t2);
  border-bottom: 1px solid var(--bd);
  padding: 50px 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
  position: relative;
}

.step {
  padding: 0 14px;
  position: relative;
  height: 120px;
  display: flex;
  flex-direction: column;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 1px;
  height: 80%;
  background: var(--t2);
}

/* Inter for step numbers */
.step-num {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

/* Inter bold for step titles */
.step-title {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
}

/* Basic for step descriptions */
.step-desc {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--t2);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 30px;
}

.step-badge {
  margin-top: auto;
  width: 100px;
  text-align: center;
  font-family: var(--ff-ui);
  font-size: 8px;
  font-weight: 600;
  align-self: flex-start;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  border: 1px solid;
}

/* ── CTA SECTION */
.cta-section {
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  /* Blue glow */
  background: radial-gradient(ellipse, rgba(53, 63, 171, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

/* Inter bold for CTA heading */
.cta-h2 {
  font-family: var(--ff-ui);
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--t1);
  margin-bottom: 12px;
}

.cta-h2 span {
  color: var(--blue);
}

/* Blue primary button — call to action, not danger */
.btn-primary {
  color: var(--t1);
  width: 200px;
  height: 40px;
  border-radius: 6px;
  background-color: var(--blue);
  border: none;
  text-transform: uppercase;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.cta-p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 36px;
  font-weight: 400;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-note {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-top: 20px;
}

/* ── FOOTER */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--t2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--ff-ui);
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
}

.footer-logo span {
  color: var(--blue);
}

/* Basic for footer copy */
.footer-copy {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--t1);
}/*# sourceMappingURL=home.css.map */