:root {
  --navy: #062b63;
  --navy-900: #041d42;
  --teal: #079a9a;
  --teal-dark: #057979;
  --yellow: #ffc400;
  --ink: #172033;
  --muted: #5b677a;
  --line: #d9e2ec;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 43, 99, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(7, 154, 154, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--soft), var(--white) 32rem);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.9);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 226, 236, 0.82);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 800;
}

.brand-text {
  font-size: 1.18rem;
}

.brand-text span {
  color: var(--teal);
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.logo-mark svg,
.hero-logo {
  width: 100%;
  height: 100%;
}

.shield {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 4;
  stroke-linejoin: round;
}

.person {
  fill: var(--teal);
}

.group {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
}

.check {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-weight: 800;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--teal-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: center;
  min-height: calc(100svh - 79px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: var(--navy-900);
  font-size: clamp(2.8rem, 6.4vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text,
.about-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.hero-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-logo {
  max-width: 150px;
}

.hero-card p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-section {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 5vw, 64px);
  background: var(--white);
}

.about-panel {
  max-width: 980px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.values-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 196, 0, 0.18);
  border: 1px solid rgba(255, 196, 0, 0.52);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--navy-900);
}

.footer-brand,
.site-footer nav {
  color: var(--white);
}

.footer-brand .shield {
  stroke: var(--white);
}

.site-footer nav a:hover {
  color: var(--yellow);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-text {
    font-size: 1rem;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .about-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
