:root {
  --navy: #061525;
  --navy-2: #0a2035;
  --teal: #32c8bd;
  --gold: #d4a32f;
  --white: #f6fbff;
  --muted: #b8c6d6;
  --card: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(50, 200, 189, 0.14), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(212, 163, 47, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 45%);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(6, 21, 37, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 30px rgba(50, 200, 189, 0.18);
}

.brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand small {
  display: block;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 54px;
  align-items: center;
  padding: 92px 7% 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 21, 37, 0.98) 0%, rgba(6, 21, 37, 0.91) 42%, rgba(5, 43, 64, 0.58) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 90px);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 58vw;
  height: 58vw;
  border: 2px solid rgba(212, 163, 47, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 200, 189, 0.18), transparent 60%);
}

.hero-content,
.hero-card,
.section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.9px;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 880px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -2.7px;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #f1cc65);
  color: #061525;
  box-shadow: 0 16px 38px rgba(212, 163, 47, 0.25);
}

.btn.secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045)),
    linear-gradient(135deg, rgba(50, 200, 189, 0.12), rgba(212, 163, 47, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(50, 200, 189, 0.16);
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.hero-card h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-grid div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(6, 21, 37, 0.62);
}

.metric-grid strong {
  display: block;
  color: var(--teal);
  font-size: 26px;
}

.metric-grid small {
  color: var(--muted);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px 7%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
}

.ticker span {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid rgba(212, 163, 47, 0.24);
}

.section {
  padding: 90px 7%;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow::before {
  display: none;
}

.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.person-card,
.contact-card,
.contact-form {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.service-card {
  padding: 26px;
  min-height: 230px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 163, 47, 0.65);
  background: rgba(255,255,255,0.105);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: rgba(50, 200, 189, 0.12);
  border: 1px solid rgba(50, 200, 189, 0.22);
  font-size: 23px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p,
.mission-copy p,
.person-card p,
.contact-list p {
  color: var(--muted);
}

.mission-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.055));
}

.mission-copy > p {
  max-width: 640px;
  margin: 20px 0 28px;
  font-size: 18px;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.values div {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
}

.values strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values span {
  color: var(--muted);
  font-size: 14px;
}

.visual-card {
  padding: 12px;
  border: 1px solid rgba(212, 163, 47, 0.35);
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: auto;
}

.person-card {
  padding: 30px;
}

.person-card h3 {
  color: var(--teal);
  font-size: 23px;
  margin-bottom: 6px;
}

.person-card p {
  margin-bottom: 18px;
}

.person-card a {
  display: block;
  color: var(--white);
  margin-top: 8px;
  word-break: break-word;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.contact-form {
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a {
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(6, 21, 37, 0.78);
  color: var(--white);
  outline: none;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(50, 200, 189, 0.11);
}

textarea {
  resize: vertical;
}

.site-footer {
  text-align: center;
  padding: 28px 7%;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.16);
}

@media (max-width: 980px) {
  .hero,
  .mission-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 5%;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .hero,
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1.6px;
  }

  .service-grid,
  .people-grid,
  .values,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .contact-card,
  .contact-form,
  .person-card,
  .service-card {
    border-radius: 20px;
  }
}
