:root {
  --dc-ink: #132033;
  --dc-muted: #5f6c7b;
  --dc-line: #d8e2ec;
  --dc-paper: #ffffff;
  --dc-soft: #f5f8fb;
  --dc-blue: #12355b;
  --dc-teal: #087e8b;
  --dc-green: #2f7d59;
  --dc-gold: #b7791f;
  --dc-red: #a3423c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--dc-ink);
  background: var(--dc-soft);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.dc-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--dc-line);
  backdrop-filter: blur(12px);
}
.dc-brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.dc-brand img { width: 48px; height: 48px; object-fit: contain; }
.dc-brand b { display: block; font-size: 18px; }
.dc-brand small { display: block; color: var(--dc-muted); font-size: 12px; }
.dc-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 6px; }
.dc-nav a, .dc-menu {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: #26364b;
  font-weight: 700;
  font-size: 14px;
}
.dc-nav a.active, .dc-nav a:hover, .dc-menu:hover {
  border-color: var(--dc-line);
  background: #eef5f8;
}
.dc-menu { display: none; background: var(--dc-paper); }
.dc-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(12, 25, 43, 0.84), rgba(12, 25, 43, 0.55), rgba(12, 25, 43, 0.12)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: white;
}
.dc-hero-home { min-height: min(78vh, 720px); }
.dc-hero-shade { width: min(980px, calc(100% - 32px)); padding: clamp(52px, 8vw, 96px) 0; margin: 0 auto; }
.dc-eyebrow {
  margin: 0 0 12px;
  color: #dceef4;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.dc-section .dc-eyebrow, .dc-split .dc-eyebrow { color: var(--dc-teal); }
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
}
.dc-hero p {
  max-width: 760px;
  color: #f1f7fb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.dc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.dc-primary, .dc-secondary, .dc-widget a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
}
.dc-primary { background: #ffffff; color: var(--dc-blue); }
.dc-secondary { border: 1px solid rgba(255,255,255,0.55); color: #ffffff; }
.dc-band {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 5;
}
.dc-trust div, .dc-card, .dc-link-card, .dc-widget {
  border: 1px solid var(--dc-line);
  border-radius: 8px;
  background: var(--dc-paper);
  box-shadow: 0 12px 32px rgba(19, 32, 51, 0.08);
}
.dc-trust div { padding: 18px; }
.dc-trust b { display: block; font-size: 22px; color: var(--dc-blue); }
.dc-trust span { display: block; margin-top: 6px; color: var(--dc-muted); font-size: 13px; line-height: 1.4; }
.dc-section { width: min(1180px, calc(100% - 32px)); margin: 64px auto; }
.dc-section-title { max-width: 820px; }
.dc-section h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; }
.dc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.dc-card { padding: 20px; }
.dc-card h3 { margin: 0 0 10px; font-size: 18px; }
.dc-card p, .dc-muted { color: var(--dc-muted); line-height: 1.55; }
.dc-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 28px; align-items: start; }
.dc-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dc-link-card { padding: 16px; }
.dc-link-card strong { display: block; color: var(--dc-blue); }
.dc-link-card span { display: block; margin-top: 6px; color: var(--dc-muted); font-size: 14px; line-height: 1.45; }
.dc-widget-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.dc-widget { overflow: hidden; }
.dc-widget img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dc-widget h2 { margin: 18px 18px 8px; font-size: 24px; }
.dc-widget p { margin: 0 18px 18px; color: var(--dc-muted); line-height: 1.5; }
.dc-widget a { margin: 0 18px 18px; background: var(--dc-blue); color: white; }
.dc-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(16px, 4vw, 56px);
  background: #132033;
  color: white;
}
.dc-footer span { display: block; margin-top: 6px; color: #c7d2de; }
.dc-footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.dc-footer-links a { border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 12px; }
@media (max-width: 960px) {
  .dc-menu { display: inline-flex; }
  .dc-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 12px 16px 18px; background: white; border-bottom: 1px solid var(--dc-line); }
  .dc-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-band, .dc-grid, .dc-widget-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .dc-brand { min-width: auto; }
  .dc-brand small { display: none; }
  .dc-hero { min-height: 560px; }
  .dc-band, .dc-grid, .dc-widget-row, .dc-link-grid { grid-template-columns: 1fr; }
  .dc-footer { display: block; }
  .dc-footer-links { margin-top: 18px; }
}
