:root {
  --bg: #eef3f8;
  --bg-soft: #dbe5f0;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-border: rgba(31, 71, 130, 0.2);
  --text: #23384f;
  --text-muted: #526780;
  --brand-blue: #1f4782;
  --brand-gray: #5a5a5f;
  --aqua: #1f4782;
  --gold: #5a5a5f;
  --shadow: 0 16px 36px rgba(31, 71, 130, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #f7fbff 0%, var(--bg) 52%),
    linear-gradient(150deg, var(--bg) 0%, #e8eef6 100%);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

main,
.site-header,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.ambient-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

.glow-one {
  width: 300px;
  height: 300px;
  background: #9eb7da;
  top: -80px;
  left: -80px;
  animation: float 12s ease-in-out infinite;
}

.glow-two {
  width: 280px;
  height: 280px;
  background: #c6ccd6;
  right: -90px;
  bottom: 60px;
  animation: float 14s ease-in-out infinite reverse;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.brand {
  color: var(--brand-blue);
  text-decoration: none;
  font-family: "Merriweather", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-blue);
}

.hero {
  margin-top: 3.5rem;
  margin-bottom: 5rem;
  max-width: 780px;
  animation: fade-up 600ms ease both;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

h1,
h2,
h3 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.hero-copy {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 65ch;
}

.quick-facts {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.quick-facts li {
  color: #3f5571;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(125deg, #1f4782, #2a5aa0);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 71, 130, 0.28);
}

.button.ghost {
  border: 1px solid var(--panel-border);
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.65);
}

.section {
  margin-bottom: 4.5rem;
  animation: fade-up 700ms ease both;
}

.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

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

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

.profile-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.92));
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 1.1rem;
}

.profile-card h3 {
  margin-bottom: 0.45rem;
}

.profile-card p {
  margin: 0;
  color: var(--text-muted);
}

.company-card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.company-card h3 {
  margin-bottom: 0;
}

.company-card p {
  color: var(--text-muted);
  margin: 0;
}

.chip {
  justify-self: start;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(31, 71, 130, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: var(--brand-blue);
  background: rgba(31, 71, 130, 0.06);
}

.text-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
  margin-top: 0.3rem;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split p {
  margin: 0;
  color: var(--text-muted);
}

.contact {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.92));
}

.contact p {
  color: var(--text-muted);
}

.contact-details {
  margin: 0.5rem 0 1.1rem;
}

.contact-details p {
  margin: 0.25rem 0;
}

.contact-details a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  color: #5f7085;
  font-size: 0.9rem;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 880px) {
  .company-grid,
  .profile-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-nav {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
  }

  .contact {
    padding: 1.5rem;
  }
}
