:root {
  --navy: #08111f;
  --navy-2: #0d1b2d;
  --ink: #edf2f7;
  --muted: #aab7c6;
  --gold: #c8a45d;
  --gold-2: #e2c98a;
  --line: rgba(255,255,255,.14);
  --card: rgba(255,255,255,.055);
  --card-strong: rgba(255,255,255,.09);
  --max: 1120px;
}

* { 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:
    radial-gradient(circle at 10% 0%, rgba(200,164,93,.18), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(73,113,154,.16), transparent 34rem),
    linear-gradient(180deg, var(--navy), #050910 72%, #03060b);
  line-height: 1.55;
}

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

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

.brand { color: inherit; display: inline-flex; align-items: center; }
.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: #fff; }

.section-pad { padding: 84px 0; }
.hero { min-height: 74vh; display: grid; place-items: center; padding-top: 18px; }
.hero-inner, .section-heading, .contact-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero-inner { max-width: 980px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(58px, 9vw, 118px);
}
h2 { font-size: clamp(42px, 6vw, 78px); margin-bottom: 20px; }
h3 { font-family: Georgia, "Times New Roman", serif; font-size: 40px; font-weight: 500; margin-bottom: 18px; }
.hero-line {
  max-width: 720px;
  color: #d8e1eb;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  margin-bottom: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(226,201,138,.58);
  border-radius: 999px;
  color: #101827;
  background: var(--gold-2);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); background: #ecd99d; }
.button.light { background: transparent; color: #fff; border-color: rgba(255,255,255,.36); }
.button.light:hover { border-color: var(--gold-2); color: var(--gold-2); }

.framework { border-top: 1px solid var(--line); }
 .section-heading {
  display: block;
  max-width: 900px;
}
.section-heading h2 {
  max-width: 760px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  max-width: 660px;
}
.cards { width: min(var(--max), calc(100% - 40px)); margin: 56px auto 0; display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(200,164,93,.16), transparent 22rem);
  opacity: .9;
  pointer-events: none;
}
.card > * { position: relative; }
.card-number { display: block; color: var(--gold-2); font-size: 12px; letter-spacing: .18em; margin-bottom: 68px; }
.card p { color: #d9e3ed; font-size: 22px; line-height: 1.32; margin-bottom: 0; }

.why { border-top: 1px solid var(--line); }
.why-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.045);
}
.why-copy { color: var(--muted); font-size: 19px; }
.why-copy p { margin-bottom: 20px; }
.pullquote {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 28px 0 !important;
}
.text-link { color: var(--gold-2); font-weight: 700; border-bottom: 1px solid rgba(226,201,138,.35); }
.text-link:hover { border-bottom-color: var(--gold-2); }

.contact { border-top: 1px solid var(--line); }
.contact-inner {
  text-align: center;
  max-width: 820px;
  padding: 72px 20px 24px;
}
.contact-inner p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  margin-bottom: 34px;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
}
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--gold-2); }

@media (max-width: 860px) {
  .site-header { align-items: flex-start; }
  .site-nav { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .hero { min-height: auto; padding: 72px 0 90px; }
  .section-heading, .why-panel { grid-template-columns: 1fr; gap: 30px; }
  .cards.three { grid-template-columns: 1fr; }
  .card { min-height: 220px; }
  .card-number { margin-bottom: 42px; }
  .why-panel { padding: 34px; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, var(--max)); }
  .brand-logo { width: 92px; }
  .site-nav { font-size: 13px; gap: 12px; }
  .section-pad { padding: 58px 0; }
  .hero-inner, .section-heading, .cards, .why-panel, .contact-inner, .site-footer { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-line { font-size: 22px; }
  h2 { font-size: 42px; }
  .site-footer { flex-direction: column; }
}
