:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --ink: #0b1830;
  --muted: #667185;
  --line: #dce2e8;
  --accent: #7dd3c7;
  --accent-strong: #24a28e;
  --navy: #07162f;
  --navy-soft: #102445;
  --max: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(8, 23, 47, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(125, 211, 199, .18), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-shell { min-height: 100vh; overflow: hidden; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: end;
  padding: 7px;
  background: var(--navy);
  border-radius: 11px;
  flex: 0 0 auto;
}

.brand-mark span { display: block; background: var(--accent); border-radius: 3px 3px 1px 1px; }
.brand-mark span:nth-child(1) { height: 35%; }
.brand-mark span:nth-child(2) { height: 62%; }
.brand-mark span:nth-child(3) { height: 92%; }
.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .025em;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; color: #445067; font-size: .95rem; font-weight: 600; }
.site-nav a:hover { color: var(--ink); }
.site-nav .nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}
.menu-toggle { display: none; }

.hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 56px;
  align-items: center;
  min-height: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent-strong);
}

h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); line-height: .98; margin-bottom: 28px; max-width: 820px; }
h2 { font-size: clamp(2.2rem, 4.3vw, 4rem); line-height: 1.05; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 10px; }
p { margin-top: 0; }

.hero-text { max-width: 690px; color: var(--muted); font-size: 1.17rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 26px rgba(7,22,47,.15); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.65); }
.button-light { background: white; color: var(--navy); }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.orb { position: absolute; border-radius: 50%; filter: blur(3px); }
.orb-one { width: 320px; height: 320px; top: 24px; right: 22px; background: rgba(125,211,199,.55); }
.orb-two { width: 250px; height: 250px; bottom: 26px; left: 12px; background: rgba(52,95,166,.18); }
.credit-card {
  position: relative;
  width: min(100%, 500px);
  padding: 34px;
  background: linear-gradient(155deg, rgba(7,22,47,.99), rgba(16,36,69,.96));
  border-radius: 34px;
  color: white;
  box-shadow: 0 35px 80px rgba(8,23,47,.26);
  overflow: hidden;
}
.credit-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(125,211,199,.13);
}
.credit-card-topline { display: flex; justify-content: space-between; gap: 16px; color: #b9c5d8; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.credit-metric { margin: 74px 0 34px; }
.metric-label { display: block; color: var(--accent); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.credit-metric strong { display: block; font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.08; letter-spacing: -.035em; max-width: 390px; }
.flow-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.flow-grid div { padding: 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.04); }
.flow-grid span { color: var(--accent); font-weight: 700; font-size: .8rem; }
.flow-grid p { margin: 7px 0 0; color: #c4cfdf; font-size: .88rem; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 104px 0; }
.intro-strip { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-strip p { margin: 0; color: #4c596c; font-size: clamp(1.1rem, 2.2vw, 1.65rem); max-width: 850px; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; column-gap: 54px; align-items: start; }
.section-heading .eyebrow { grid-column: 1; }
.section-heading h2 { grid-column: 1; }
.section-heading > p:last-child { grid-column: 2; grid-row: 1 / span 3; color: var(--muted); font-size: 1.08rem; max-width: 580px; padding-top: 34px; }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.feature-card { padding: 30px; background: var(--surface); border: 1px solid rgba(220,226,232,.9); border-radius: var(--radius-md); box-shadow: 0 12px 35px rgba(8,23,47,.05); }
.feature-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(125,211,199,.18); color: var(--accent-strong); font-weight: 700; margin-bottom: 48px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }

.approach { padding-top: 36px; }
.approach-panel { background: var(--navy); color: white; border-radius: var(--radius-lg); padding: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.approach-panel h2 { max-width: 560px; }
.approach-copy { color: #bdc8da; font-size: 1.06rem; }
.approach-copy p:last-child { margin-bottom: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.process-step { padding: 26px 22px; border-top: 1px solid #cbd3dc; }
.process-step span { font-size: .8rem; color: var(--accent-strong); font-weight: 700; }
.process-step h3 { margin-top: 34px; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

.institutional { padding-top: 66px; }
.official-card { margin-top: 48px; background: var(--surface); border-radius: var(--radius-lg); padding: 16px 36px; box-shadow: var(--shadow); }
.official-card dl { margin: 0; }
.official-row { display: grid; grid-template-columns: 220px 1fr; gap: 34px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.official-row:last-child { border-bottom: 0; }
.official-row dt { font-weight: 700; color: #536076; }
.official-row dd { margin: 0; font-weight: 600; }
.official-row a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.contact-section { padding-top: 40px; }
.contact-card { background: linear-gradient(135deg, #0b1c38, #12345c); color: white; border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.contact-card h2 { max-width: 650px; }
.contact-card p:not(.eyebrow) { color: #bec9da; max-width: 700px; margin-bottom: 0; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex: 0 0 auto; }
.text-link { color: #dce6f4; text-underline-offset: 4px; }

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6b7586;
  font-size: .86rem;
}
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { position: relative; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font-weight: 700; }
  .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); z-index: 20; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .site-nav .nav-cta { border-radius: 12px; }
  .hero { grid-template-columns: 1fr; margin-top: 32px; min-height: 0; }
  .hero-visual { min-height: 480px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow, .section-heading h2, .section-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .section-heading > p:last-child { padding-top: 4px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .feature-number { margin-bottom: 26px; }
  .approach-panel { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .site-header, .hero, .section, .site-footer { width: min(100% - 28px, var(--max)); }
  .site-header { min-height: 74px; }
  .brand-name { font-size: .68rem; white-space: normal; max-width: 190px; line-height: 1.2; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { gap: 26px; margin-top: 26px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-text { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 390px; }
  .credit-card { padding: 24px; border-radius: 24px; }
  .credit-metric { margin: 52px 0 26px; }
  .flow-grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .intro-strip { padding: 26px 0; }
  .approach-panel { padding: 30px 24px; border-radius: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .official-card { padding: 8px 22px; border-radius: 22px; }
  .official-row { grid-template-columns: 1fr; gap: 5px; padding: 20px 0; }
  .contact-card { padding: 34px 24px; border-radius: 22px; }
  .contact-actions { width: 100%; }
  .contact-actions .button { width: 100%; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
