:root {
  color-scheme: light;
  --navy: #002244;
  --orange: #fb4f14;
  --white: #ffffff;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 42px 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 36%),
    radial-gradient(circle at 50% 35%, #073b70 0, var(--navy) 57%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.card {
  position: relative;
  width: min(100%, 680px);
  text-align: center;
}

.logo {
  display: block;
  width: min(86vw, 370px);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 22px 42px rgba(0,0,0,.22));
}

.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 27px;
  color: var(--orange);
}

.rule::before, .rule::after {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, currentColor);
  content: "";
}

.rule::after { background: linear-gradient(90deg, currentColor, transparent); }

.rule span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px rgba(251,79,20,.9);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.intro {
  max-width: 430px;
  margin: 20px auto 29px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.65;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 174px;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--orange);
  box-shadow: 0 12px 32px rgba(251,79,20,.23);
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact:hover {
  transform: translateY(-2px);
  background: #ff6530;
  box-shadow: 0 15px 40px rgba(251,79,20,.34);
}

.contact:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.contact span { font-size: 1.2rem; transition: transform .2s ease; }
.contact:hover span { transform: translateX(3px); }

.glow {
  position: absolute;
  z-index: -2;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(140px);
  opacity: .11;
}

.glow-one { top: -170px; right: -110px; }
.glow-two { bottom: -220px; left: -120px; }

@media (max-width: 520px) {
  .hero { padding-block: 28px; }
  .logo { width: min(81vw, 330px); margin-bottom: 19px; }
  .rule { margin-bottom: 22px; }
  .intro { margin-block: 16px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .contact, .contact span { transition: none; }
}
