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

:root {
  --blue: #0645ad;
  --blue-dark: #032b70;
  --yellow: #ffc400;
  --white: #ffffff;
}

html, body { min-height: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #07101f;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  min-height: calc(100svh - 58px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 48px 22px;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(6,69,173,.25), rgba(0,0,0,.4)),
    url("../images/rise.JPG")
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,20,55,.90) 0%, rgba(0,24,60,.68) 48%, rgba(0,0,0,.42) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.12));
}

.content {
  width: min(920px, 100%);
  text-align: left;
}

.logo {
  display: block;
  width: min(330px, 72vw);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.22));
}

.eyebrow {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  margin-bottom: 16px;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
  margin-bottom: 24px;
}

h1 span { color: var(--yellow); }

.intro {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 34px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button--primary {
  background: var(--yellow);
  color: #111;
}

.button--primary:hover { background: #ffd43b; }

.button--outline {
  border: 2px solid rgba(255,255,255,.9);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.button--outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.services span {
  border-left: 3px solid var(--yellow);
  padding: 8px 12px;
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
}

footer {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 16px 20px;
  background: #06152d;
  color: rgba(255,255,255,.58);
  text-align: center;
  font-size: .78rem;
}

@media (max-width: 650px) {
  .hero {
    padding: 38px 20px;
    align-items: end;
  }

  .content { padding-bottom: 10px; }

  .logo { width: min(285px, 82vw); margin-bottom: 27px; }

  .eyebrow { font-size: .68rem; letter-spacing: .16em; }

  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }

  .intro { font-size: .98rem; }

  .button { flex: 1 1 140px; }

  .services { margin-top: 30px; }
}
