:root {
  --navy: #0a2a5e;
  --navy-deep: #061d44;
  --blue: #1769d6;
  --blue-bright: #2e8bff;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
}

.bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-fleet.jpg") center 38% / cover no-repeat;
  transform: scale(1.04);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(10, 42, 94, 0.7) 0%, rgba(6, 29, 68, 0.92) 70%),
    linear-gradient(180deg, rgba(6, 29, 68, 0.55), rgba(6, 29, 68, 0.85));
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.logo {
  display: block;
  height: clamp(56px, 9vw, 84px);
  width: auto;
  background: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  margin: 0 auto clamp(1rem, 2.5vw, 1.4rem);
}

.eyebrow {
  display: inline-block;
  font-size: clamp(0.72rem, 1.6vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}

h1 {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}
h1 span { color: var(--blue-bright); }

.lede {
  margin: 1.4rem auto 2.4rem;
  max-width: 56ch;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.contact-item:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.contact-item svg { width: 20px; height: 20px; flex: none; }

.footnote {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
