:root {
  --accent: #033072;
  --accent-2: #0f4aa0;
  --accent-3: #021f4b;
  --gold: #d4b16a;
  --gold-soft: #f1e1bc;
  --ink: #0d1628;
  --muted: #62708a;
  --line: #dfe7f2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 25px 60px rgba(3, 48, 114, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 177, 106, 0.14), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 25%),
    linear-gradient(135deg, var(--accent-3), var(--accent));
}

.grid-overlay,
.page-hero::before,
.hero::before,
.section-dark::before,
.map-board::before,
.cta-banner::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(3, 48, 114, 0.08);
  box-shadow: 0 6px 24px rgba(3, 48, 114, 0.06);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-mark {
  filter: drop-shadow(0 10px 18px rgba(3,48,114,.2));
}

.brand-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  font-size: 1.22rem;
  color: var(--accent);
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  color: #7b8699;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
  color: #526178;
  font-size: .95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(3, 48, 114, 0.06);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(3, 48, 114, 0.14);
  background: #fff;
  color: var(--accent);
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-list {
  display: grid;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 32px rgba(3, 48, 114, 0.24);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-gold {
  color: var(--accent-3);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(212, 177, 106, 0.22);
}

.btn-gold:hover {
  background: #dfbf7f;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
}

.btn-outline {
  color: var(--accent);
  background: var(--white);
  border: 1px solid rgba(3,48,114,.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 800;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2,19,50,.95), rgba(3,48,114,.82), rgba(2,19,50,.62));
}

.hero,
.page-hero,
.cta-banner,
.map-board,
.site-footer,
.section-dark {
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 150px 0 80px;
}

.hero-content {
  max-width: 760px;
}

.display,
.section-title,
.page-title,
.stat-value,
.big-number,
.card-title,
.quote,
.brand-title,
.footer-title {
  font-family: Georgia, "Times New Roman", serif;
}

.display {
  font-size: clamp(1.1rem, 8vw, 3.4rem);
  line-height: 1.02;
  margin: 0;
  font-weight: 648;
  letter-spacing: -.03em;
}

.display .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: 1.14rem;
  color: rgba(255,255,255,.8);
  max-width: 720px;
  margin: 28px 0 0;
}

.hero-actions,
.inline-actions,
.chips,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 36px;
}

.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.stat {
  background: rgba(2,19,50,.36);
  padding: 24px;
}

.stat-value {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  color: rgba(255,255,255,.66);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(255,255,255,.6);
}

.page-hero {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 110px 0 84px;
}

.page-title {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.08;
  margin: 0;
}

.page-subtitle {
  max-width: 760px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  margin: 20px 0 0;
}

.breadcrumb {
  margin-top: 30px;
  color: rgba(255,255,255,.64);
  font-size: .92rem;
}

.breadcrumb span {
  color: var(--gold);
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  color: var(--accent-3);
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .copy,
.section-dark .card-title,
.section-dark p,
.section-dark li {
  color: var(--white);
}

.section-copy,
.copy,
.card-copy,
.notice p,
.form-note {
  color: var(--muted);
}

.copy-lg {
  font-size: 1.08rem;
}

.two-col,
.split-layout,
.ceo-layout,
.form-layout,
.contact-layout,
.intro-layout {
  display: grid;
  gap: 48px;
}

.two-col {
  grid-template-columns: 1fr 1.1fr;
}

.ceo-layout {
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
}

.form-layout,
.contact-layout {
  grid-template-columns: .9fr 1.1fr;
}

.cards-2,
.cards-3,
.cards-4,
.cards-5 {
  display: grid;
  gap: 24px;
}

.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-5 { grid-template-columns: repeat(5, 1fr); }

.card,
.glass-card,
.metric-card,
.notice,
.office-map,
.transaction,
.region-card,
.process-card,
.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card,
.transaction,
.region-card,
.process-card,
.metric-card {
  padding: 30px;
}

.card:hover,
.transaction:hover,
.region-card:hover,
.process-card:hover,
.metric-card:hover {
  transform: translateY(-6px);
  transition: .28s ease;
  border-color: rgba(3,48,114,.3);
}

.icon-box {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(3,48,114,.06);
  color: var(--accent);
  margin-bottom: 18px;
}

.card-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--accent-3);
}

.card-copy {
  margin: 12px 0 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--accent);
  font-weight: 800;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid rgba(212,177,106,.3);
  box-shadow: 0 30px 60px rgba(1, 18, 44, .26);
}

.portrait-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
}

.quote {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.45;
  font-style: italic;
  color: rgba(255,255,255,.94);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 0 0 22px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 26px 0 0;
}

.check-list li,
.plain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-dot,
.mini-dot {
  flex: 0 0 auto;
}

.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  margin-top: 2px;
}

.mini-dot {
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.funding-panel {
  padding: 54px;
  color: var(--white);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(212,177,106,.18), transparent 22%),
    linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 30px 70px rgba(3,48,114,.22);
}

.big-number {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1;
  font-weight: 700;
}

.big-divider {
  font-size: 1.8rem;
  color: var(--gold);
  margin: 10px 0;
}

.transaction {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  padding: 0;
}

.transaction-side {
  position: relative;
  min-height: 220px;
  color: var(--white);
  padding: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.transaction-side .region {
  position: absolute;
  left: 28px;
  bottom: 28px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.transaction-body {
  padding: 28px;
}

.meta-label {
  font-size: .74rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
}

.testimonial {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-mark {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.testimonial .quote-dark {
  margin: 16px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.48;
  font-style: italic;
  color: var(--accent-3);
}

.author {
  margin-top: 24px;
  color: var(--muted);
  font-size: .95rem;
}

.cta-banner {
  overflow: hidden;
  color: var(--white);
  padding: 90px 0;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.cta-banner .section-title {
  color: var(--white);
}

.cta-banner .section-copy {
  color: rgba(255,255,255,.76);
}

.map-board {
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  box-shadow: 0 30px 70px rgba(3,48,114,.2);
}

.map-board svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.region-card .chips span,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(3,48,114,.06);
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.process-card.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  border-color: rgba(255,255,255,.08);
}

.process-num {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--accent);
  background: rgba(3,48,114,.06);
}

.process-card.dark .process-num {
  color: var(--accent-3);
  background: var(--gold);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.metric-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.metric-card .big-number {
  color: var(--gold);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.metric-card .card-copy {
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .18em;
}

.form-card {
  padding: 38px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: block;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: #4e5d72;
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
  transition: .25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(3,48,114,.5);
  box-shadow: 0 0 0 4px rgba(3,48,114,.08);
}

.field-full {
  grid-column: 1 / -1;
}

.range-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.range-options button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 10px;
  font-size: .82rem;
  font-weight: 700;
  color: #5d6a7e;
  cursor: pointer;
  transition: .25s ease;
}

.range-options button.active,
.range-options button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.success-box {
  display: none;
  text-align: center;
  padding: 36px 0 18px;
}

.success-box.show {
  display: block;
}

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 1.6rem;
}

.contact-card,
.info-panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.office-map {
  overflow: hidden;
}

.office-map .visual {
  min-height: 380px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  position: relative;
}

.office-map .visual svg {
  width: 100%;
  height: 100%;
}

.notice {
  padding: 26px 28px;
  border-left: 4px solid var(--gold);
  box-shadow: none;
}

.site-footer {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #02162f, var(--accent-3));
}

.site-footer .container {
  position: relative;
  z-index: 1;
  padding: 88px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.1fr;
  gap: 40px;
}

.footer-copy,
.footer-links a,
.footer-contact,
.footer-bottom {
  color: rgba(255,255,255,.7);
}

.footer-title {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 44px;
  padding-top: 22px;
  font-size: .85rem;
}

.footer-bottom .inline-actions {
  gap: 18px;
}

.disclaimer article {
  max-width: 860px;
  margin: 0 auto;
}

.disclaimer-block {
  margin-bottom: 42px;
}

.disclaimer-block h3 {
  margin: 0 0 14px;
  color: var(--accent-3);
  font-family: Georgia, serif;
  font-size: 1.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.muted-white { color: rgba(255,255,255,.76); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 1120px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .two-col,
  .ceo-layout,
  .form-layout,
  .contact-layout,
  .timeline,
  .transaction,
  .cards-3,
  .cards-5,
  .form-grid,
  .range-options {
    grid-template-columns: 1fr;
  }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .funding-panel { padding: 38px; }
  .transaction-side { min-height: 180px; }
  .footer-grid,
  .metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .hero .container { padding-top: 132px; }
  .stats,
  .cards-2,
  .cards-4,
  .metrics,
  .footer-grid { grid-template-columns: 1fr; }
  .stat,
  .card,
  .process-card,
  .region-card,
  .transaction-body,
  .transaction-side,
  .metric-card,
  .form-card,
  .contact-card,
  .info-panel { padding: 24px; }
  .display { font-size: 2.9rem; }
  .page-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .portrait-card img { height: 420px; }
  .hero-actions,
  .inline-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Footer text brand ---------- */
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand-name {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.footer-brand-tag {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---------- Ghost button & muted text ---------- */
.btn-ghost {
  color: var(--accent);
  background: transparent;
  border: 1px solid transparent;
}
.btn-ghost:hover {
  background: rgba(3, 48, 114, 0.07);
  transform: none;
}
.muted {
  color: var(--muted);
}
