:root {
  --navy-950: #020b16;
  --navy-900: #061a2f;
  --navy-800: #0b2944;
  --gold: #c8962f;
  --gold-soft: #e0b65a;
  --green: #87a72a;
  --white: #f7f4ed;
  --muted: #c8d4dd;
  --line: rgba(224, 182, 90, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(20, 100, 150, 0.28), transparent 32rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 48%, #03101d);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 3vw, 3rem);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(2, 11, 22, 0.96) 0%, rgba(3, 18, 33, 0.82) 42%, rgba(3, 18, 33, 0.3) 100%),
    linear-gradient(0deg, rgba(2, 11, 22, 0.86), rgba(2, 11, 22, 0.12) 42%, rgba(2, 11, 22, 0.72));
}

.hero::after {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(224, 182, 90, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 182, 90, 0.12) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 72% 48%, black, transparent 58%);
}

.hero__content {
  display: flex;
  width: min(100%, 58rem);
  min-height: calc(100vh - clamp(2.5rem, 6vw, 6rem));
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: 4rem;
}

.hero__copy {
  display: grid;
  gap: 1.1rem;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  border-bottom: 2px solid var(--green);
  color: var(--gold-soft);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  padding-bottom: 0.55rem;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 11vw, 9.6rem);
  font-weight: 500;
  line-height: 0.92;
  text-wrap: balance;
}

h1::after {
  color: var(--gold);
  content: ".";
}

.lead {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  line-height: 1.6;
}

.status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(224, 182, 90, 0.34);
  border-radius: 999px;
  background: rgba(3, 18, 33, 0.74);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
}

.status__dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.45rem rgba(135, 167, 42, 0.18);
}

.pillars {
  display: grid;
  width: min(100%, 52rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars article {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(224, 182, 90, 0.22);
}

.pillars article:last-child {
  border-right: 0;
}

.pillars span {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.pillars strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(0.76rem, 1vw, 0.95rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact a {
  border-bottom: 1px solid rgba(224, 182, 90, 0.45);
  padding-bottom: 0.2rem;
}

.contact a:hover {
  color: var(--gold-soft);
}

@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 11, 22, 0.96), rgba(2, 11, 22, 0.7)),
      linear-gradient(90deg, rgba(2, 11, 22, 0.92), rgba(2, 11, 22, 0.34));
  }

  .hero__content {
    min-height: auto;
    justify-content: start;
    padding-block: 1rem 7rem;
  }

  h1 {
    max-width: 9ch;
  }

  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars article:nth-child(2) {
    border-right: 0;
  }

  .pillars article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(224, 182, 90, 0.22);
  }

  .contact {
    right: auto;
    left: clamp(1.25rem, 3vw, 3rem);
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 1rem;
  }

  .status {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .pillars article {
    padding: 0.9rem;
  }

  .contact {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    gap: 0.55rem 1rem;
  }
}
