:root {
  --ink: #102132;
  --ink-soft: #415366;
  --navy: #0d1b2a;
  --navy-2: #14283d;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: #dfe4e8;
  --accent: #c5a46d;
  --accent-soft: #eadfc9;
  --shadow: 0 24px 60px rgba(13, 27, 42, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,247,242,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,33,50,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: .04em; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--navy); font-weight: 800; }
.brand-text { font-size: 14px; font-weight: 700; }
.brand-text strong { color: #73808d; }
.nav { display: flex; gap: 28px; }
.nav a { text-decoration: none; font-size: 14px; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.menu-btn { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 10px; padding: 9px 12px; color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(197,164,109,.2), transparent 28%),
    linear-gradient(135deg, #0c1926 0%, #11283f 70%, #193651 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -180px;
  bottom: -220px;
}
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.35fr .75fr; gap: 80px; align-items: center; padding: 90px 0; }
.eyebrow, .section-kicker { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--accent); }
h1 { margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; letter-spacing: -.045em; max-width: 900px; }
.hero-lead { max-width: 720px; margin: 28px 0 0; font-size: clamp(18px, 2.3vw, 23px); color: rgba(255,255,255,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 800; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #101820; }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: var(--white); }
.hero-note { margin-top: 26px; color: rgba(255,255,255,.58); font-size: 13px; }
.company-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); border-radius: var(--radius); padding: 26px; backdrop-filter: blur(12px); }
.card-label { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; margin-bottom: 12px; }
.company-card dl { margin: 0; }
.company-card dl > div { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.company-card dl > div:last-child { border-bottom: 0; }
.company-card dt { font-size: 12px; color: rgba(255,255,255,.52); margin-bottom: 4px; }
.company-card dd { margin: 0; font-weight: 700; }

.section { padding: 100px 0; }
.section-muted { background: #eef0ec; }
.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.align-start { align-items: start; }
h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.prose { color: var(--ink-soft); font-size: 18px; }
.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 17px; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; min-height: 260px; box-shadow: 0 14px 30px rgba(16,33,50,.04); }
.info-index { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-soft); font-size: 12px; font-weight: 900; }
.info-card h3 { margin: 54px 0 12px; font-size: 19px; }
.info-card p { margin: 0; color: var(--ink-soft); }

.verification { background: var(--navy); color: var(--white); }
.verification-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.verification h2 { max-width: 740px; }
.verification p { max-width: 760px; color: rgba(255,255,255,.72); }
.section-kicker.light { color: var(--accent); }
.btn-light { background: var(--white); color: var(--navy); flex: 0 0 auto; }

.site-footer { background: #08121c; color: rgba(255,255,255,.72); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; }
.footer-brand { color: var(--white); font-weight: 850; letter-spacing: .06em; }
.footer-meta { text-align: right; font-size: 13px; }
.footer-meta p, .footer-grid p { margin: 0 0 8px; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: rgba(255,255,255,.46); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 72px 0; }
  .company-card { max-width: 620px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .verification-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { display: none; position: absolute; left: 14px; right: 14px; top: 68px; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); flex-direction: column; gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .menu-btn { display: inline-flex; }
  .brand-text { font-size: 12px; }
  .hero-grid { padding: 64px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 72px 0; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .info-card h3 { margin-top: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .footer-bottom { flex-direction: column; }
}
