:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #dfe5ec;
  --soft: #f5f7fa;
  --paper: #ffffff;
  --navy: #0b1f3a;
  --navy-2: #102f57;
  --blue: #1d6fb8;
  --gold: #c8a45d;
  --silver: #d7dee8;
  --shadow: 0 18px 45px rgba(14, 30, 55, 0.12);
  --radius: 8px;
  --max: 1280px;
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: 0; color: var(--ink); }
h1 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
h3 { font-size: 1.08rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  z-index: 1000;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 236, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}
.brand strong { display: block; font-size: 0.98rem; color: var(--ink); }
.brand small { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.brand > span:last-child { min-width: 0; }
.site-header .brand strong {
  max-width: 285px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav a {
  padding: 9px 8px;
  border-radius: 7px;
  font-size: 0.88rem;
  color: #263244;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}
.site-nav a:hover,
.site-nav a.active { background: #edf4fb; color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 24px rgba(29, 111, 184, 0.22);
}
.btn-primary:hover { background: #165b99; }
.btn-secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-small { min-height: 40px; padding-inline: 16px; font-size: 0.88rem; }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  color: white;
  isolation: isolate;
}
.hero-bg,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -3;
}
.hero-bg::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 34, 0.91), rgba(9, 29, 56, 0.69), rgba(9, 29, 56, 0.26));
}
.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(5, 16, 30, 0.82), rgba(5, 16, 30, 0));
  z-index: -2;
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 64px;
  padding: 96px 0;
}
.hero h1,
.hero h2,
.hero h3,
.dark h2,
.dark h3,
.dark p,
.page-hero h1,
.page-hero p { color: white; }
.hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 4.6vw, 4rem);
  line-height: 1.07;
  overflow-wrap: normal;
}
.hero p {
  max-width: 740px;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  align-items: center;
}
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(12, 34, 64, 0.78), rgba(7, 20, 38, 0.72));
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  justify-self: end;
  width: 100%;
  max-width: 365px;
}
.hero-panel strong {
  display: block;
  color: white;
  font-size: 1.35rem;
  line-height: 1.22;
  margin-bottom: 16px;
}
.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 0;
  font-size: 0.94rem;
}
.eyebrow,
.section-title span,
.value-grid span,
.market-card span,
.insight-card span,
.map-card span {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-content { padding: 92px 0 72px; max-width: 900px; }
.page-hero h1 { font-size: clamp(2.15rem, 4.9vw, 4.35rem); }
.page-hero p { margin-top: 18px; max-width: 780px; font-size: 1.08rem; color: rgba(255, 255, 255, 0.84); }

.section { padding: 88px 0; }
.section.muted { background: var(--soft); }
.section.dark {
  background: radial-gradient(circle at 20% 10%, rgba(29, 111, 184, 0.34), transparent 32%), linear-gradient(135deg, #08182d, #102f57);
  color: white;
}
.section-title { max-width: 780px; margin-bottom: 36px; }
.section-title p { margin-top: 14px; font-size: 1.02rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
}
.rich-copy p + p { margin-top: 18px; }
.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}
.visual-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card,
.mini-card,
.market-card,
.insight-card,
.compliance-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(14, 30, 55, 0.06);
}
.feature-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}
.feature-card.compact { min-height: 190px; }
.feature-card p,
.market-card p,
.insight-card p { margin-top: 12px; font-size: 0.94rem; }
.card-index {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 22px;
}
.mini-card {
  min-height: 96px;
  display: flex;
  align-items: center;
}
.product-strip,
.product-grid {
  display: grid;
  gap: 20px;
}
.product-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(14, 30, 55, 0.08);
}
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--silver);
}
.product-card > div { padding: 22px; }
.product-card p { margin-top: 10px; }
.product-card dl {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.product-card dt { color: var(--ink); font-weight: 800; }
.product-card dd { margin: 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}
.text-link::after { content: "→"; }
.center-action { display: flex; justify-content: center; margin-top: 32px; }

.market-focus { position: relative; overflow: hidden; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stat-grid div,
.map-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
}
.stat-grid strong,
.map-card strong {
  display: block;
  color: white;
  font-size: 1.55rem;
  line-height: 1.15;
}
.stat-grid span,
.map-card p { color: rgba(255, 255, 255, 0.72); }
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}
.compliance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.compliance-tile {
  display: block;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}
.compliance-tile strong { display: block; margin-bottom: 10px; }
.compliance-tile span { color: var(--muted); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.value-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.value-grid p { margin-top: 18px; }
.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: flow;
}
.flow div {
  position: relative;
  min-height: 106px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 800;
}
.flow div::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: block;
  color: var(--blue);
  margin-bottom: 12px;
}
.us-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: stretch;
}
.us-feature p { margin-top: 18px; }
.map-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: radial-gradient(circle at 70% 25%, rgba(200, 164, 93, 0.5), transparent 22%), linear-gradient(135deg, var(--navy), var(--blue));
}
.market-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.insight-grid.wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.insight-card .text-link { margin-top: auto; padding-top: 20px; }
.compliance-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compliance-block h2 { font-size: 1.25rem; }
.compliance-block p { margin-top: 12px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: start;
}
.contact-facts {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.contact-facts a { color: var(--blue); font-weight: 800; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 138px; }
.contact-form [aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}
.field-error,
.form-status.error { color: #b42318; }
.form-status.success { color: #067647; }
.field-error { font-weight: 700; font-size: 0.82rem; }
.form-status { min-height: 24px; font-weight: 800; }

.article .lead {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}
.article p + p { margin-top: 20px; }
.article .btn { margin-top: 28px; }
.narrow { max-width: 820px; }
.legal-block + .legal-block { margin-top: 28px; }
.legal-block h2 { font-size: 1.45rem; }
.legal-block p { margin-top: 10px; }

.cta-band {
  background: linear-gradient(135deg, var(--navy), #173d68);
  color: white;
  padding: 68px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { color: white; font-size: clamp(1.7rem, 3vw, 2.65rem); max-width: 760px; }
.cta-inner p { margin-top: 14px; color: rgba(255, 255, 255, 0.78); max-width: 760px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.site-footer {
  background: #071426;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 34px;
}
.footer-logo strong { color: white; }
.footer-logo small { color: rgba(255, 255, 255, 0.62); }
.footer-brand p { margin-top: 20px; color: rgba(255, 255, 255, 0.68); }
.footer-email { display: inline-block; color: white; margin-top: 18px; font-weight: 800; }
.site-footer h2 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.site-footer section a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
  font-size: 0.92rem;
}
.site-footer section a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 44px;
  font-size: 0.88rem;
}

@media (max-width: 1120px) {
  .site-header .brand strong { max-width: 220px; }
  .site-nav { gap: 2px; }
  .site-nav a { font-size: 0.82rem; padding-inline: 6px; }
  .btn-small { padding-inline: 13px; }
  .card-grid.five,
  .card-grid.four,
  .product-strip,
  .market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 66px; gap: 12px; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .site-nav {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: 11px 12px; font-size: 0.94rem; }
  .header-actions { display: none; }
  .brand small { display: none; }
  .site-header .brand strong { max-width: min(230px, calc(100vw - 132px)); font-size: 0.9rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: auto; }
  .hero-content,
  .split,
  .visual-split,
  .us-feature,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-content { padding: 72px 0 44px; gap: 28px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.8vw, 2.25rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .hero-panel { padding: 20px; justify-self: stretch; max-width: none; }
  .hero-panel strong { font-size: 1.16rem; }
  .page-hero { min-height: 360px; }
  .page-hero-content { padding: 76px 0 54px; }
  .section { padding: 62px 0; }
  .card-grid.three,
  .product-grid,
  .insight-grid,
  .insight-grid.wide,
  .compliance-layout,
  .value-grid,
  .compliance-row,
  .flow {
    grid-template-columns: 1fr;
  }
  .stat-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card.compact,
  .insight-card { min-height: auto; }
  .cta-inner { display: grid; }
  .cta-actions { justify-content: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.75rem; }
  .site-header .brand strong { max-width: min(220px, calc(100vw - 126px)); }
  .card-grid.five,
  .card-grid.four,
  .product-strip,
  .market-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .feature-card,
  .mini-card,
  .market-card,
  .insight-card,
  .compliance-block,
  .product-card > div,
  .value-grid article { padding: 20px; }
}
