:root {
  --ink: #071827;
  --muted: #5c6b7a;
  --line: #dce7f2;
  --surface: #f7fbff;
  --panel: #ffffff;
  --blue: #0868c9;
  --cyan: #16c8de;
  --shadow: 0 22px 60px rgba(8, 58, 105, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(220, 231, 242, 0.82);
  background: rgba(247, 251, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

nav a:hover {
  color: var(--blue);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 200, 222, 0.22), transparent 32%),
    linear-gradient(140deg, #ffffff 0%, #eef7ff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

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

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #034e9d);
}

.button.secondary {
  color: var(--blue);
  border: 1px solid rgba(8, 104, 201, 0.28);
  background: #ffffff;
}

.hero-panel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-panel img {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto 26px;
  border-radius: 8px;
}

dl {
  margin: 0;
}

.hero-panel dl,
.details dl {
  display: grid;
  gap: 14px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.section > p,
.section > h2 {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.card,
.details,
.contact address {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(8, 58, 105, 0.07);
}

.card {
  padding: 24px;
}

.card p,
.split p,
.contact p {
  color: var(--muted);
}

.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.details {
  padding: 26px;
}

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

.details div {
  min-width: 0;
}

.details dd {
  overflow-wrap: anywhere;
}

.contact {
  background: #071827;
  color: #ffffff;
}

.contact .eyebrow,
.contact p {
  color: #9fdff0;
}

.contact address {
  display: grid;
  gap: 12px;
  padding: 26px;
  color: var(--ink);
  font-style: normal;
}

.contact address a,
.contact address span {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  font-weight: 750;
}

.contact address :last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

footer {
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #ffffff;
}

footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .site-header,
  nav,
  .hero-actions {
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

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

  .hero,
  .split,
  .contact,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 44px;
  }

  .details dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    width: 100%;
  }
}
