:root {
  --bg: #0b1522;
  --panel: #132235;
  --panel-soft: #162a41;
  --text: #e9f0f7;
  --muted: #b9c6d3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #1e88e5;
  --accent-2: #c96e2d;
  --success: #4c9a5f;
  --success-2: #7fb56a;
  --metal: #c8d2dd;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #09111b 0%, #0d1827 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(9, 17, 27, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.hero-logo {
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin: 0 0 1rem;
}

.brand-name,
.brand-tag {
  margin: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.8rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid,
.split,
.contact-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8fb3ff;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.hero-copy,
.section-heading p,
.split p,
.card p,
.steps p,
.contact-box p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #4b8cff);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(201, 110, 45, 0.35);
  box-shadow: none;
}

.hero-points,
.card ul,
.list-box ul,
.hero-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.mini-proof div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.mini-proof strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.mini-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-card,
.card,
.list-box,
.contact-card {
  background: linear-gradient(180deg, rgba(22,42,65,0.94), rgba(15,30,46,0.95));
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-note,
.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.cards.three-up,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.steps.steps-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  padding: 1.4rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.steps span {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: 0.1em;
}

.contact-section {
  padding-bottom: 5.5rem;
}

.contact-card a {
  color: #9fc1ff;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-box,
  .cards.three-up,
  .steps,
  .mini-proof {
    grid-template-columns: 1fr;
  }

  .nav,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 0.9rem;
  }

  h1 {
    max-width: none;
  }
}
opy {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-box,
  .cards.three-up,
  .steps,
  .mini-proof {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 0.9rem;
  }

  h1 {
    max-width: none;
  }
}
cards.three-up,
  .steps,
  .mini-proof {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 0.9rem;
  }

  h1 {
    max-width: none;
  }
}
p: 0.9rem;
  }

  h1 {
    max-width: none;
  }
}
cards.three-up,
  .steps,
  .mini-proof {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 0.9rem;
  }

  h1 {
    max-width: none;
  }
}
