:root {
  --navy-950: #071522;
  --navy-900: #0b1f33;
  --navy-800: #12314d;
  --navy-700: #1a4567;
  --ink: #10202f;
  --slate: #526474;
  --muted: #738390;
  --line: #dbe2e7;
  --soft: #f3f5f6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #c99545;
  --gold-light: #e7c98e;
  --shadow: 0 22px 60px rgba(7, 21, 34, .12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section { scroll-margin-top: 92px; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 14px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: var(--white);
  background: rgba(7, 21, 34, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  background: rgba(7, 21, 34, .96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: .01em;
}
.brand-copy span {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .72;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(231, 201, 142, .7);
  border-radius: 999px;
  color: var(--gold-light);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 81% 25%, rgba(35, 90, 129, .45), transparent 28%),
    radial-gradient(circle at 18% 40%, rgba(201, 149, 69, .12), transparent 24%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #0d2941 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -32vw;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255,255,255,.018), 0 0 0 16vw rgba(255,255,255,.012);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  padding-top: 142px;
  padding-bottom: 80px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero .eyebrow { color: var(--gold-light); }
.eyebrow.light { color: var(--gold-light); }
.hero h1, .section-heading h2, .experience-copy h2, .insight-layout h2, .contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.07;
}
.hero h1 { max-width: 720px; font-size: clamp(48px, 5.4vw, 76px); }
.hero-lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(201, 149, 69, .2);
}
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.03);
}
.button-secondary:hover { background: rgba(255,255,255,.08); }
.button-light {
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--white);
}
.button-gold {
  width: 100%;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 34px 80px rgba(0,0,0,.3);
  backdrop-filter: blur(20px);
}
.visual-frame::before {
  content: "";
  position: absolute;
  inset: -20px 17% auto -25px;
  height: 110px;
  z-index: -1;
  border-radius: 30px;
  background: rgba(201,149,69,.14);
  filter: blur(35px);
}
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px 16px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-indicator { display: inline-flex; align-items: center; gap: 7px; }
.live-indicator::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(231,201,142,.12);
}
.chart-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(6,20,32,.62);
}
.chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.chart-head > div { display: grid; gap: 5px; }
.chart-label { color: rgba(255,255,255,.48); font-size: 12px; }
.chart-head strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; }
.trend-pill {
  padding: 7px 9px;
  border: 1px solid rgba(231,201,142,.28);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}
.line-chart { width: 100%; margin-top: 17px; overflow: visible; }
.chart-lines line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.chart-area { fill: url(#chart-fill); }
.chart-path { fill: none; stroke: var(--gold-light); stroke-width: 5; stroke-linecap: round; }
.chart-dot { fill: var(--navy-950); stroke: var(--gold-light); stroke-width: 4; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 13px; }
.metric-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(5,17,27,.48);
}
.metric-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: var(--gold-light);
  background: rgba(201,149,69,.12);
  font-size: 10px;
  font-weight: 800;
}
.metric-grid article div { display: grid; }
.metric-grid strong { font-size: 12px; }
.metric-grid small { color: rgba(255,255,255,.45); font-size: 9px; }

.trust-strip { color: var(--white); background: var(--navy-800); }
.trust-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
}
.trust-inner p { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 650; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

.section { padding: 112px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 790px; margin-bottom: 52px; }
.section-heading.compact { max-width: 720px; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .experience-copy h2 { font-size: clamp(38px, 4.1vw, 57px); }
.section-heading > p:last-child {
  max-width: 720px;
  margin: 23px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.service-card {
  position: relative;
  min-height: 520px;
  padding: 33px 31px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(12,32,49,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card.featured {
  color: var(--white);
  border-color: var(--navy-800);
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
}
.service-card.featured::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  border: 45px solid rgba(255,255,255,.025);
}
.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #d8dfe3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}
.featured .service-number { color: rgba(255,255,255,.11); }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--gold);
  background: #f7f2e9;
}
.featured .service-icon { color: var(--gold-light); background: rgba(201,149,69,.12); }
.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin: 27px 0 11px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.18; }
.service-card > p { margin: 0; color: var(--slate); }
.featured > p { color: rgba(255,255,255,.67); }
.service-card ul { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; }
.service-card li {
  position: relative;
  padding-left: 22px;
  color: #3f5363;
  font-size: 14px;
}
.featured li { color: rgba(255,255,255,.72); }
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,149,69,.11);
}

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audience-card {
  position: relative;
  padding: 34px 34px 31px;
  overflow: hidden;
  border: 1px solid #d5dde2;
  border-radius: 19px;
  background: rgba(255,255,255,.75);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.audience-card:hover { transform: translateY(-4px); border-color: #bdc9d1; background: var(--white); }
.audience-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  aspect-ratio: 1;
  border: 1px solid rgba(18,49,77,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(18,49,77,.025);
}
.audience-kicker { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.audience-card h3 { margin: 10px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 31px; }
.audience-card p { max-width: 500px; margin: 0; color: var(--slate); }
.audience-card a { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--navy-700); text-decoration: none; font-size: 13px; font-weight: 800; }

.experience-section { background: var(--white); }
.experience-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: start; }
.experience-lede { margin: 25px 0 0; color: var(--slate); font-size: 18px; }
.experience-copy blockquote {
  margin: 33px 0 25px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gold);
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
}
.text-link { color: var(--navy-700); text-decoration: none; font-weight: 800; }
.credential-panel { overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.credential-header {
  padding: 25px 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
}
.credential-header span { display: block; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.credential-header strong { display: block; margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; }
.credential-list { padding: 13px 28px 17px; }
.credential-list article { display: grid; grid-template-columns: 16px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.credential-list article:last-child { border-bottom: 0; }
.credential-dot { width: 10px; height: 10px; margin-top: 8px; border: 2px solid var(--gold-light); border-radius: 50%; box-shadow: 0 0 0 4px rgba(231,201,142,.09); }
.credential-list h3 { margin: 0 0 5px; font-size: 16px; }
.credential-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }

.process-section { background: linear-gradient(to bottom, var(--paper), #f1f3f4); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { padding: 27px 22px; border-top: 3px solid var(--gold); background: var(--white); box-shadow: 0 12px 28px rgba(12,32,49,.055); }
.process-step > span {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--gold);
  background: #f7f2e9;
  font-weight: 800;
}
.process-step h3 { margin: 19px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.process-step p { margin: 0; color: var(--slate); font-size: 14px; }

.insight-band { padding: 75px 0; color: var(--white); background: linear-gradient(125deg, var(--navy-800), var(--navy-950)); }
.insight-layout { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.insight-layout > div { max-width: 820px; }
.insight-layout h2 { font-size: clamp(35px, 4.2vw, 55px); }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  list-style: none;
  color: var(--navy-800);
  font-weight: 800;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 23px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--slate); }

.contact-section { padding: 105px 0; color: var(--white); background: var(--navy-950); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; }
.contact-copy h2 { font-size: clamp(38px, 4.5vw, 58px); }
.contact-copy > p { color: rgba(255,255,255,.66); font-size: 17px; }
.contact-direct { display: grid; gap: 3px; margin-top: 34px; }
.contact-direct span { color: rgba(255,255,255,.48); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact-direct a { color: var(--gold-light); font-size: 22px; font-weight: 800; text-decoration: none; }
.contact-form { padding: 31px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; }
.contact-form label > span { color: rgba(255,255,255,.67); font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  outline: none;
  color: var(--white);
  background: rgba(255,255,255,.07);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { height: 48px; padding: 0 13px; }
.contact-form textarea { resize: vertical; padding: 12px 13px; }
.contact-form option { color: var(--ink); background: var(--white); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(231,201,142,.1); }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.43); font-size: 11px; text-align: center; }
.form-note.success { color: var(--gold-light); }
.form-note.error { color: #e8a0a0; }

.site-footer { color: rgba(255,255,255,.65); background: #050f18; }
.footer-top { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand-footer { color: var(--white); }
.footer-top p { margin: 0; font-size: 13px; }
.footer-top > a:last-child { color: var(--gold-light); text-decoration: none; font-weight: 800; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-bottom p { margin: 0; font-size: 11px; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* Legal / content pages (e.g. privacy policy) */
.legal { padding: 150px 0 90px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0 0 6px; color: var(--ink); }
.legal .legal-updated { margin: 0 0 34px; color: var(--muted); font-size: 13px; }
.legal h2 { font-size: 20px; margin: 36px 0 10px; color: var(--ink); }
.legal p, .legal li { color: var(--slate); }
.legal ul { padding-left: 20px; margin: 12px 0; }
.legal li { margin: 6px 0; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal .legal-back { margin-top: 40px; font-weight: 600; }
.legal .legal-back a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay, .reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 56px; padding-top: 145px; padding-bottom: 90px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 690px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .experience-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 30px, 680px); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 23px;
    opacity: 0;
    visibility: hidden;
    background: rgba(7,21,34,.985);
    transition: opacity .2s ease, visibility .2s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav a { font-size: 19px; }
  .menu-toggle.active span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-of-type(2) { opacity: 0; }
  .menu-toggle.active span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-layout { padding-top: 125px; }
  .hero h1 { font-size: clamp(45px, 11vw, 66px); }
  .audience-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 8px; padding-block: 22px; }
  .trust-divider { width: 45px; height: 1px; }
  .insight-layout { align-items: flex-start; flex-direction: column; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 25px; }
}

@media (max-width: 600px) {
  .section { padding: 82px 0; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy span { font-size: 8px; }
  .brand-mark { width: 38px; border-radius: 10px; }
  .hero-layout { padding-bottom: 70px; }
  .hero h1 { font-size: 45px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .visual-frame { padding: 12px; border-radius: 20px; }
  .chart-card { padding: 16px; }
  .chart-head { flex-direction: column; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article { min-height: 62px; }
  .section-heading h2, .experience-copy h2 { font-size: 38px; }
  .service-card { padding: 29px 25px; }
  .audience-card { padding: 28px 25px; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .contact-direct a { font-size: 18px; }
}
