:root {
  --navy: #0b2545;
  --navy-soft: #134074;
  --blue: #134074;
  --blue-bright: #0077b6;
  --gold: #d4af37;
  --gold-hover: #c5a059;
  --red: #d4af37;
  --red-dark: #c5a059;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #edf1f6;
  --gray-500: #4b5563;
  --gray-900: #1f2937;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--gray-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--gray-50);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(33, 76, 134, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 190px;
  min-width: 190px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.brand-wordmark::before {
  content: "";
  width: 34px;
  height: 3px;
  margin-right: 0.45rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), var(--gold));
}

.brand-star {
  color: var(--gold);
  margin-left: 0.1rem;
}

.brand-company {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 1.5rem;
}

.button-gold,
.button-red {
  color: var(--navy);
  background: var(--gold);
  box-shadow: none;
}

.button-gold:hover,
.button-red:hover {
  background: var(--gold-hover);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(212, 175, 55, 0.34), transparent 34%),
    linear-gradient(112deg, var(--navy) 0%, var(--navy-soft) 54%, #07192f 100%);
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
  gap: 3rem;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 680px;
  padding: 6rem 0 5rem;
}

.speed-line {
  position: absolute;
  top: 34%;
  left: -8%;
  width: 74%;
  height: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(212, 175, 55, 0.96), rgba(255, 255, 255, 0.82));
  transform: skewX(-26deg);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 40, 0.28));
}

.hero-image-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 37, 69, 0.98) 0%, rgba(11, 37, 69, 0.9) 39%, rgba(11, 37, 69, 0.32) 65%, rgba(11, 37, 69, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 37, 69, 0.82), rgba(11, 37, 69, 0.08));
}

.hero-image-panel img {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.08);
}

.hero-copy {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(11, 37, 69, 0.28);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.hero-subtitle,
.page-intro {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.26rem;
}

.hero-stats {
  align-self: end;
  display: grid;
  gap: 0.8rem;
  max-width: 380px;
  margin-left: auto;
}

.hero-stats div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-intro {
  color: var(--gray-500);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.section,
.page-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.page-hero {
  padding: 4.5rem 1rem;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(212, 175, 55, 0.22), transparent 30%),
    linear-gradient(180deg, var(--navy), var(--navy-soft));
  border-bottom: 3px solid var(--gold);
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.feature-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.values-grid article,
.support-box,
.contact-info,
.form-panel {
  border: 1px solid rgba(33, 76, 134, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card,
.values-grid article {
  padding: 1.4rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.feature-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.16);
  border-radius: 8px;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 9px;
  width: 24px;
  height: 5px;
  background: var(--navy);
}

.feature-icon::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-right: 5px solid var(--gold);
  border-top: 5px solid var(--gold);
  transform: rotate(45deg);
}

.split-section,
.employee-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(33, 76, 134, 0.12);
}

.content-block {
  max-width: 850px;
  color: var(--gray-500);
  font-size: 1.08rem;
}

.values-grid {
  margin-top: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: stretch;
}

.story-highlight-card,
.job-card,
.portal-card {
  border: 1px solid rgba(33, 76, 134, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-highlight-card {
  display: grid;
  align-content: center;
  padding: 1.6rem;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--navy), var(--navy-soft)),
    var(--navy);
  border-left: 4px solid var(--gold);
}

.story-highlight-card span,
.job-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-highlight-card span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.story-highlight-card h2 {
  color: var(--white);
}

.story-highlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.culture-section {
  border-top: 1px solid rgba(33, 76, 134, 0.12);
}

.values-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid-four h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  overflow-wrap: normal;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

.job-details {
  display: grid;
  gap: 1.5rem;
}

.job-card {
  padding: 1.4rem;
  border-top: 4px solid var(--red);
}

.job-tag {
  color: var(--navy-soft);
  background: rgba(212, 175, 55, 0.16);
}

.job-card p {
  color: var(--gray-500);
}

.check-list {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.check-list li {
  margin-bottom: 0.65rem;
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.form-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d4dbe6;
  border-radius: 8px;
  padding: 0.85rem;
  color: var(--gray-900);
  font: inherit;
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(47, 119, 200, 0.22);
  border-color: var(--blue-bright);
}

.field textarea {
  resize: vertical;
}

.field small {
  color: #b42318;
  font-weight: 700;
}

.full-width {
  grid-column: 1 / -1;
}

.success-message {
  padding: 0.85rem 1rem;
  color: #0f5132;
  border: 1px solid #badbcc;
  border-radius: 8px;
  background: #d1e7dd;
  font-weight: 800;
}

.error-message {
  padding: 0.85rem 1rem;
  color: #842029;
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  background: #f8d7da;
  font-weight: 800;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.support-box,
.contact-info {
  padding: 1.5rem;
}

.employee-portal {
  display: grid;
  place-items: center;
}

.portal-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(720px, 100%);
  padding: 2rem;
  text-align: center;
}

.portal-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(212, 175, 55, 0.22);
  font-size: 1.7rem;
  font-weight: 900;
}

.warning-box {
  width: 100%;
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
}

.warning-box p {
  margin: 0.35rem 0;
}

.support-box a,
.contact-info a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.fine-print {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .navbar {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 0;
  }

  .hero-image-panel img {
    width: 100%;
    opacity: 0.42;
  }

  .hero-image-panel::before {
    background:
      linear-gradient(90deg, rgba(16, 46, 88, 0.98), rgba(16, 46, 88, 0.82)),
      linear-gradient(0deg, rgba(16, 46, 88, 0.78), rgba(16, 46, 88, 0.2));
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-left: 0;
  }

  .feature-grid,
  .values-grid,
  .values-grid-four,
  .two-column,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .employee-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 150px;
    min-width: 150px;
    white-space: normal;
  }

  .brand-logo {
    height: 42px;
  }

  .navbar > .button {
    width: 100%;
  }

  .hero-actions,
  .hero-actions .button,
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section,
  .page-section {
    padding: 3.5rem 0;
  }
}