:root {
  --ink: #06101f;
  --ink-soft: #0d1b2d;
  --blue: #175cff;
  --blue-bright: #3275ff;
  --white: #f7f9fc;
  --mist: #e8edf4;
  --muted: #9aa9bd;
  --line: rgba(255, 255, 255, 0.16);
  --max: 1280px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.6; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
em { color: var(--blue-bright); font-style: normal; }
.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; z-index: 100; left: 1rem; top: -4rem; background: white; color: var(--ink); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 132px; padding: 0 clamp(1.25rem, 4vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { height: 96px; background: rgba(6,16,31,.96); border-color: rgba(199,169,107,.28); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 1.2rem; font-family: "Syne", sans-serif; color: white; }
.brand-symbol { width: 82px; height: 82px; flex: 0 0 auto; filter: drop-shadow(0 7px 18px rgba(0,0,0,.35)); transition: width .3s ease, height .3s ease, transform .3s ease; }
.brand:hover .brand-symbol { transform: translateY(-2px) scale(1.04); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Cinzel", Georgia, serif; font-size: 2.12rem; line-height: .9; letter-spacing: .12em; font-weight: 700; text-shadow: 0 3px 18px rgba(0,0,0,.42); white-space: nowrap; }
.word-light { color: #f7f7f4; }
.word-gold { color: #dfc47f; }
.brand-copy small { position: relative; display: flex; align-items: center; justify-content: center; gap: .65rem; margin-top: .72rem; color: #efd48e; font-family: "Manrope", sans-serif; font-size: .72rem; line-height: 1; font-weight: 700; letter-spacing: .27em; text-transform: uppercase; white-space: nowrap; text-shadow: 0 0 14px rgba(223,196,127,.35); }
.brand-copy small::before, .brand-copy small::after { content: ""; display: block; width: 22px; height: 1px; background: #dfc47f; box-shadow: 0 0 10px rgba(223,196,127,.35); }
.site-header.scrolled .brand-symbol { width: 60px; height: 60px; }
.site-header.scrolled .brand-copy strong { font-size: 1.58rem; }
.site-header.scrolled .brand-copy small { margin-top: .48rem; font-size: .56rem; }
.site-header.scrolled .brand-copy small::before, .site-header.scrolled .brand-copy small::after { width: 14px; }
.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); font-size: .84rem; font-weight: 600; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; background: var(--blue-bright); left: 0; right: 100%; bottom: -7px; transition: .25s ease; }
.site-nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(255,255,255,.45); padding: .75rem 1.1rem; }
.nav-cta:hover { background: white; color: var(--ink); }
.menu-toggle { display: none; color: white; background: none; border: 0; padding: .5rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-shade { position: absolute; inset: 0; background: rgba(2, 9, 21, .53); }
.hero-grid { display: none; }
.hero-content { position: relative; z-index: 2; width: min(1040px, 86vw); margin-left: clamp(1.25rem, 7vw, 8rem); padding-top: 7rem; }
.eyebrow { display: flex; align-items: center; gap: .75rem; margin: 0 0 1.35rem; text-transform: uppercase; letter-spacing: .19em; font-size: .74rem; font-weight: 700; }
.eyebrow > span { display: inline-block; width: 34px; height: 2px; background: var(--blue-bright); }
.eyebrow.dark { color: #33445a; }
h1, h2, h3 { font-family: "Syne", sans-serif; line-height: .98; margin: 0; letter-spacing: -.035em; }
h1 { max-width: 980px; font-size: clamp(3.5rem, 7.5vw, 8.1rem); font-weight: 600; }
.hero h1 { font-size: clamp(3rem, 5.2vw, 5.9rem); line-height: 1.02; }
.hero-copy { max-width: 590px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #d6dfeb; line-height: 1.55; margin: 2rem 0 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 2rem; min-width: 225px; padding: 1rem 1.15rem; border: 0; cursor: pointer; font-weight: 700; transition: transform .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled, .button[aria-disabled="true"] { cursor: not-allowed; opacity: .65; transform: none; }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: var(--blue-bright); }
.text-link { font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); padding: .55rem 0; }
.hero-status { position: absolute; z-index: 2; right: clamp(1.25rem, 4vw, 4.5rem); bottom: 2.2rem; display: flex; align-items: center; gap: .85rem; padding: 1rem 1.25rem; background: rgba(6,16,31,.8); border: 1px solid var(--line); backdrop-filter: blur(12px); }
.hero-status strong, .hero-status small { display: block; }
.hero-status strong { font-family: "Syne"; }
.hero-status small { color: var(--muted); font-size: .74rem; }
.pulse { width: 10px; height: 10px; background: #39e58c; border-radius: 50%; box-shadow: 0 0 0 6px rgba(57,229,140,.12); animation: pulse 2s infinite; }
.hero-index { position: absolute; right: clamp(1.25rem, 4vw, 4.5rem); top: 46%; font-size: .72rem; letter-spacing: .18em; writing-mode: vertical-rl; color: rgba(255,255,255,.6); }

.proof-strip { min-height: 72px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1rem, 2.8vw, 2.8rem); padding: 1rem 2rem; background: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 700; }
.proof-strip p { margin: 0; }
.proof-strip > span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.55); }
.section { padding: clamp(5.5rem, 10vw, 9.5rem) clamp(1.25rem, 6vw, 7rem); }
.section-kicker { display: flex; align-items: center; gap: 1rem; color: #617087; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; }
.section-kicker span { color: var(--blue); }
.section-kicker.light { color: var(--muted); }
.intro { background: var(--white); color: var(--ink); }
.intro-heading { max-width: var(--max); margin: 3rem auto 5rem; display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.intro-heading h2, .precision-copy h2, .operations-copy h2, .contact h2 { font-size: clamp(2.7rem, 5vw, 5.8rem); }
.intro-heading p, .precision-copy > p, .operations-copy > p { color: #546278; font-size: 1.05rem; margin: 0 0 .4rem; max-width: 520px; }
.services-list { max-width: var(--max); margin: 0 auto; border-top: 1px solid #cad2dd; }
.services-list article { display: grid; grid-template-columns: 70px 1fr 60px; gap: 1rem; align-items: center; min-height: 178px; border-bottom: 1px solid #cad2dd; transition: background .25s ease, padding .25s ease; }
.services-list article:hover { background: #edf2f8; padding: 0 1.5rem; }
.service-number { color: var(--blue); font-size: .75rem; font-weight: 700; }
.services-list h3 { font-size: clamp(1.45rem, 2.2vw, 2.25rem); margin-bottom: .55rem; }
.services-list p { margin: 0; color: #6b788b; }
.service-detail { display: block; margin-top: .8rem; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-arrow { justify-self: end; font-size: 1.3rem; color: var(--blue); }
.services-list h3 a:hover, .services-list h3 a:focus-visible { color: var(--blue); }
.trust-block { max-width: var(--max); margin: clamp(5rem, 10vw, 9rem) auto 0; padding-top: clamp(4rem, 7vw, 7rem); border-top: 1px solid #cad2dd; }
.trust-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6vw; align-items: end; }
.trust-heading h2 { font-size: clamp(2.5rem, 4.6vw, 5.2rem); }
.trust-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cad2dd; border-bottom: 1px solid #cad2dd; }
.trust-grid article { padding: 2rem 1.4rem 2.2rem; border-right: 1px solid #cad2dd; }
.trust-grid article:last-child { border-right: 0; }
.trust-grid article > span { color: var(--blue); font-size: .7rem; font-weight: 700; }
.trust-grid h3 { margin: 2.4rem 0 .8rem; font-size: 1.25rem; }
.trust-grid p { margin: 0; color: #66758a; font-size: .9rem; }

.precision-section { display: grid; grid-template-columns: 1.05fr .95fr; background: #dfe5ed; color: var(--ink); }
.precision-image { position: relative; min-height: 680px; overflow: hidden; }
.precision-image img { width: 100%; height: 100%; object-fit: cover; }
.precision-image > span { position: absolute; left: 0; bottom: 0; padding: 1rem 1.4rem; background: var(--blue); color: white; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; }
.precision-copy { padding: clamp(4.5rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.precision-copy h2 { margin-bottom: 2rem; }
.certification-badge { margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid #b8c3d0; display: flex; align-items: center; gap: 1rem; }
.seal { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-weight: 700; }
.certification-badge strong, .certification-badge small { display: block; }
.certification-badge strong { font-family: "Syne"; font-size: 1.1rem; }
.certification-badge small { color: #66768b; margin-top: .2rem; }

.audiences { background: var(--ink); }
.audience-grid { max-width: var(--max); margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.audience-card { min-height: 570px; padding: clamp(2rem, 4vw, 4rem); display: flex; flex-direction: column; justify-content: space-between; }
.audience-card + .audience-card { border-left: 1px solid var(--line); }
.audience-card.insurers { background: var(--blue); }
.audience-card.private { background: var(--ink-soft); }
.card-tag { align-self: flex-start; border: 1px solid rgba(255,255,255,.4); padding: .55rem .8rem; text-transform: uppercase; letter-spacing: .13em; font-size: .66rem; font-weight: 700; }
.audience-card h2 { font-size: clamp(2rem, 3.3vw, 3.8rem); max-width: 570px; }
.audience-card p { max-width: 520px; color: #d2dbea; }
.audience-card ul { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.25); }
.audience-card li { position: relative; padding: .8rem 0 .8rem 1.3rem; border-bottom: 1px solid rgba(255,255,255,.25); }
.audience-card li::before { content: "+"; position: absolute; left: 0; color: white; }

.operations { background: var(--white); color: var(--ink); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.operations-copy h2 { margin: 2.5rem 0 2rem; }
.operations-copy dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 3rem 0 0; }
.operations-copy dl > div { border-left: 1px solid #ccd4df; padding-left: 1rem; }
.operations-copy dt { color: var(--blue); font-family: "Syne"; font-size: clamp(1.5rem, 2.4vw, 2.6rem); font-weight: 700; }
.operations-copy dd { margin: .25rem 0 0; color: #68768a; font-size: .75rem; }
.operations-image { position: relative; min-height: 610px; overflow: hidden; }
.operations-image img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.image-caption { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: .8rem; background: var(--ink); color: white; padding: 1rem 1.3rem; font-size: .78rem; }
.team-banner { position: relative; min-height: 720px; display: flex; align-items: end; overflow: hidden; }
.team-banner > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.team-shade { position: absolute; inset: 0; background: rgba(3,12,25,.46); }
.team-copy { position: relative; z-index: 2; padding: clamp(3rem, 7vw, 7rem); }
.team-copy h2 { font-size: clamp(3rem, 6.5vw, 7rem); }

.contact { background: var(--ink); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); }
.contact h2 { margin: 2.4rem 0 2rem; }
.contact-intro > p { color: var(--muted); max-width: 520px; }
.contact-details { display: grid; gap: 1rem; margin-top: 2.2rem; }
.contact-details a { display: grid; gap: .25rem; }
.contact-details span { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-details strong { font-family: "Cinzel", Georgia, serif; font-size: clamp(1.25rem, 2.4vw, 2rem); font-weight: 600; overflow-wrap: anywhere; }
.contact-note { display: flex; gap: 1rem; max-width: 530px; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #aeb9c9; font-size: .79rem; }
.contact-note > span { flex: 0 0 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--muted); border-radius: 50%; }
.contact-note p { margin: 0; }
.contact-form { display: grid; gap: 1.35rem; align-content: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .55rem; color: #bac5d3; font-size: .76rem; font-weight: 600; letter-spacing: .03em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: white; background: transparent; border: 0; border-bottom: 1px solid #536073; border-radius: 0; padding: .8rem 0; outline: none; font-size: 1rem; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-bright); }
.contact-form option { color: var(--ink); }
.contact-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: start; gap: .8rem; font-weight: 400; }
.consent input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--blue); }
.submit-button { margin-top: .5rem; }
.form-status { min-height: 1.5rem; margin: 0; color: #62eba0; font-size: .85rem; }
footer { min-height: 130px; padding: 2rem clamp(1.25rem, 6vw, 7rem); display: grid; grid-template-columns: 1fr auto auto auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); color: #8d9bae; font-size: .73rem; }
.footer-brand { color: white; }
.footer-brand .brand-symbol { width: 82px; height: 82px; }
.footer-brand .brand-copy strong { font-size: 1.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: white; }

.page-header { background: var(--ink); }
.page-hero { position: relative; min-height: 650px; display: flex; align-items: end; overflow: hidden; padding: 12rem clamp(1.25rem, 7vw, 8rem) 5.5rem; }
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,10,22,.94) 0%, rgba(3,10,22,.76) 52%, rgba(3,10,22,.34) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 980px; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 6.7rem); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 2rem 0 0; color: #d6dfeb; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.breadcrumbs { margin-bottom: 1.5rem; color: #b8c4d3; font-size: .78rem; }
.breadcrumbs a { color: white; }
.content-section { background: var(--white); color: var(--ink); }
.content-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.article-copy h2 { margin: 0 0 1.4rem; font-size: clamp(2.2rem, 4vw, 4.4rem); }
.article-copy h3 { margin: 3rem 0 1rem; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.article-copy p, .article-copy li { color: #536176; }
.article-copy ul { padding-left: 1.2rem; }
.article-copy li + li { margin-top: .65rem; }
.service-aside { position: sticky; top: 120px; padding: 2rem; background: var(--mist); border-top: 4px solid var(--blue); }
.service-aside h2 { font-size: 1.45rem; margin-bottom: 1rem; }
.service-aside p { color: #5d6b7e; }
.service-aside .button { margin-top: 1rem; }
.service-cards { max-width: var(--max); margin: 5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #cad2dd; }
.service-cards article { padding: 2rem; border-right: 1px solid #cad2dd; }
.service-cards article:last-child { border-right: 0; }
.service-cards h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.service-cards p { color: #5f6d80; }
.cta-band { padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem); background: var(--blue); color: white; display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.cta-band h2 { max-width: 760px; font-size: clamp(2.2rem, 4vw, 4.5rem); }
.cta-band .button { background: white; color: var(--ink); }

.legal-page { background: var(--white); color: var(--ink); min-height: 70vh; }
.legal-hero { max-width: var(--max); margin: 0 auto; padding: clamp(8rem, 14vw, 13rem) clamp(1.25rem, 7vw, 8rem) 4rem; }
.legal-hero h1 { max-width: 900px; margin: 1rem 0 1.5rem; font-size: clamp(3.3rem, 8vw, 7rem); line-height: .95; }
.legal-hero > p:last-child { max-width: 760px; color: #536176; font-size: 1.1rem; }
.legal-notice { padding: 1rem 1.25rem; border-left: 4px solid var(--blue); background: var(--mist); }
.legal-content { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.25rem, 7vw, 8rem) 7rem; }
.legal-content h2 { margin: 3rem 0 1rem; font-size: clamp(1.45rem, 2.6vw, 2.3rem); }
.legal-content p { color: #536176; line-height: 1.75; }
.legal-data { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 1.5rem 0 2rem; border: 1px solid #cad2dd; background: #cad2dd; }
.legal-data div { padding: 1.1rem 1.25rem; background: white; }
.legal-data dt { margin-bottom: .35rem; color: #6b788b; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: var(--ink); font-weight: 600; }
.legal-warning { margin-top: 3rem; padding: 1.25rem; border: 1px solid #d7b66b; background: #fff8e9; color: #604d25 !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(57,229,140,.12); } 50% { box-shadow: 0 0 0 10px rgba(57,229,140,.03); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { height: 104px; }
  .site-header .brand-symbol { width: 64px; height: 64px; }
  .brand { gap: .75rem; }
  .brand-copy strong { font-size: 1.5rem; letter-spacing: .09em; }
  .brand-copy small { gap: .4rem; margin-top: .55rem; font-size: .56rem; letter-spacing: .16em; }
  .brand-copy small::before, .brand-copy small::after { width: 10px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 104px 0 auto; display: grid; gap: 0; background: var(--ink); border-top: 1px solid rgba(199,169,107,.28); transform: translateY(-140%); transition: transform .3s ease; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); }
  .nav-cta { border: 0; background: var(--blue); }
  .hero-grid, .hero-index { display: none; }
  .hero-content { margin: 0 1.25rem; width: auto; padding-top: 7.5rem; }
  .hero-status { right: 1.25rem; bottom: 1.25rem; }
  .intro-heading, .precision-section, .operations, .contact { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .service-cards { grid-template-columns: 1fr; }
  .service-cards article { border-right: 0; border-bottom: 1px solid #cad2dd; }
  .service-cards article:last-child { border-bottom: 0; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .trust-heading { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid #cad2dd; }
  .intro-heading { gap: 2rem; }
  .precision-image { min-height: 480px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card + .audience-card { border-left: 0; border-top: 1px solid var(--line); }
  .operations-image { min-height: 480px; }
  footer { grid-template-columns: 1fr; gap: .5rem; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
  .hero { min-height: 880px; align-items: flex-start; }
  .hero-content { padding-top: 8rem; }
  .hero-copy { font-size: 1rem; }
  .hero-status { left: 1.25rem; right: auto; }
  .proof-strip { justify-content: flex-start; gap: .8rem 1rem; }
  .proof-strip > span:nth-of-type(even) { display: none; }
  .section { padding: 5rem 1.25rem; }
  .services-list article { grid-template-columns: 35px 1fr 24px; min-height: 210px; }
  .services-list p { font-size: .9rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid #cad2dd; }
  .trust-grid article:last-child { border-bottom: 0; }
  .precision-copy { padding: 4.5rem 1.25rem; }
  .audience-card { min-height: 530px; padding: 2rem 1.25rem; }
  .operations-copy dl { gap: .35rem; }
  .operations-copy dl > div { padding-left: .6rem; }
  .operations-copy dd { font-size: .66rem; }
  .team-banner { min-height: 600px; }
  .team-copy { padding: 3rem 1.25rem; }
  .field-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 620px; padding: 10rem 1.25rem 4rem; }
  .legal-data { grid-template-columns: 1fr; }
}
