:root {
  --bg: #f5f7fa;
  --ink: #0b1220;
  --muted: #526070;
  --panel: #ffffff;
  --line: #d9e2ec;
  --navy: #08111f;
  --navy-2: #101c2e;
  --teal: #2bb99f;
  --teal-dark: #168b78;
  --silver: #edf2f7;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(8, 17, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 250, 0.94);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(8, 17, 31, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #e9eef5;
  color: var(--ink);
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
}

.hero {
  background:
    linear-gradient(130deg, rgba(8, 17, 31, 0.92), rgba(13, 31, 52, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(43, 185, 159, 0.42), transparent 30%),
    var(--navy);
  color: #fff;
}

.hero-inner,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lead {
  max-width: 700px;
  color: #d7e2ee;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.section .lead {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: #04110f;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #46c9b2;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button.outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button.outline:hover {
  background: var(--navy);
  color: #fff;
}

.section {
  padding: 86px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.alt > .section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--navy-2);
  color: #fff;
}

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

.card.dark p {
  color: #cad5e1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  font-weight: 700;
}

.page-hero {
  background: var(--navy);
  color: #fff;
}

.page-hero .section {
  padding: 82px 0 74px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 44px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c8d3df;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(43, 185, 159, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  background: var(--navy);
  color: #d8e1ea;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 850;
}

.footer-legal {
  max-width: 760px;
  margin: 0;
  color: #aebdcb;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: end;
  gap: 12px;
}

.footer-links a {
  color: #d8e1ea;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .split,
  .grid-2,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 0;
  }

  .section,
  .section.alt > .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .section,
  .footer-inner,
  .nav {
    width: min(100% - 24px, 1120px);
  }
}
