:root {
  --graphite: #15181d;
  --panel: #20252d;
  --navy: #102a43;
  --blue: #2f80ed;
  --steel: #c7ced8;
  --white: #f7f9fc;
  --paper: #ffffff;
  --ink: #171a1f;
  --muted: #667281;
  --line: #dce3ed;
  --green: #28c76f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 227, 237, .85);
  background: rgba(247, 249, 252, .94);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--graphite);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #4f5b67;
  font-size: 14px;
  font-weight: 650;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--graphite);
  background: var(--graphite);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.button.blue { background: var(--blue); border-color: var(--blue); }
.button.light { background: #fff; color: var(--graphite); border-color: #fff; }
.button.ghost { background: transparent; color: #fff; border-color: #5b6471; }
.hero {
  color: #fff;
  background:
    linear-gradient(128deg, rgba(47,128,237,.22), transparent 42%),
    linear-gradient(180deg, var(--graphite), var(--navy));
}
.heroInner {
  max-width: 1180px;
  min-height: 650px;
  margin: 0 auto;
  padding: 84px 24px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: 0;
}
.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #d9e0eb;
  font-size: 20px;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.signalPanel {
  border: 1px solid #38404c;
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(47,128,237,.20), transparent 36%), linear-gradient(180deg, #262c35, #101318);
  padding: 26px;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 16px;
}
.portrait {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
}
.chip {
  border: 1px solid rgba(199,206,216,.22);
  border-radius: 8px;
  background: rgba(21,24,29,.78);
  padding: 16px;
  color: #d9e0eb;
}
.chip strong { display: block; color: #fff; margin-bottom: 6px; }
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 24px;
}
.sectionHeader {
  max-width: 780px;
  margin-bottom: 32px;
}
h2 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}
.sectionHeader p { color: var(--muted); font-size: 18px; }
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 25px;
}
.card h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.22; }
.card p { color: var(--muted); margin-bottom: 0; }
.num {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e8f1ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.dark {
  color: #fff;
  background: var(--graphite);
}
.dark .sectionHeader p { color: #c7ced8; }
.dark .card {
  border-color: #38404c;
  background: var(--panel);
}
.dark .card p { color: #b8c2cf; }
.offerBand {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li {
  padding-left: 24px;
  position: relative;
  color: #43505d;
}
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: .62em;
}
.notice {
  border: 1px solid #b9d5ff;
  border-radius: 8px;
  background: #edf5ff;
  padding: 20px;
  color: #21374d;
}
.footer {
  background: #0f1216;
  color: #aeb8c6;
}
.footerInner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer a { color: #fff; }
.pageHero .heroInner { min-height: 420px; }
.pageHero h1 { font-size: 50px; }
.formBox {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.field label { font-weight: 760; font-size: 14px; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.field textarea { min-height: 104px; resize: vertical; }
.small { color: var(--muted); font-size: 14px; }
@media (max-width: 920px) {
  .heroInner, .grid2 { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .links { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .heroInner { min-height: auto; padding-top: 58px; }
}
@media (max-width: 520px) {
  .nav { padding: 12px 16px; }
  .section { padding: 56px 16px; }
  .heroInner { padding: 50px 16px; }
  h1 { font-size: 34px; }
  .lead { font-size: 17px; }
  .button { width: 100%; }
}
