:root {
  --ink: #07101f;
  --ink-2: #0b172b;
  --ink-3: #13233d;
  --paper: #f5f7fa;
  --white: #ffffff;
  --mist: #dfe6ee;
  --muted: #69788c;
  --blue: #286cff;
  --blue-soft: #76a3ff;
  --line: rgba(7, 16, 31, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1200px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.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: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: 140px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(7, 16, 31, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  animation: header-in .35s ease both;
}
@keyframes header-in { from { transform: translateY(-100%); } }
.nav-shell {
  width: var(--shell);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
  font-style: italic;
  letter-spacing: -.11em;
  text-indent: -.08em;
}
.brand-copy { display: grid; gap: 1px; line-height: 1.2; }
.brand-copy strong { font-size: 15px; letter-spacing: .015em; }
.brand-copy span { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.site-nav > a:not(.nav-cta) { color: rgba(255,255,255,.76); transition: color .2s ease; }
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--white); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 46%, rgba(40,108,255,.32), transparent 23%),
    linear-gradient(125deg, #07101f 0%, #0b172b 55%, #11284a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,16,31,.92) 0%, rgba(7,16,31,.72) 43%, rgba(7,16,31,.10) 72%, rgba(7,16,31,.28) 100%);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .74; }
.hero-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,16,31,.06), rgba(7,16,31,.45)); }
.hero-grid {
  position: relative;
  z-index: 3;
  min-height: 840px;
  padding-top: 190px;
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 80px;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.eyebrow span { width: 34px; height: 1px; background: var(--blue-soft); }
.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .9;
}
.hero h1 em, .contact h2 em { color: var(--blue-soft); font-weight: 400; }
.hero-lede { max-width: 590px; margin-bottom: 38px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(40,108,255,.22); }
.button-primary:hover, .button-primary:focus-visible { background: #4a84ff; }
.text-link { font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.28); padding-block: 8px; }
.text-link span { margin-left: 10px; color: var(--blue-soft); }
.hero-note {
  justify-self: end;
  width: min(330px, 100%);
  margin-top: 280px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.26);
}
.note-index { display: block; margin-bottom: 12px; color: var(--blue-soft); font-size: 12px; letter-spacing: .16em; }
.hero-note p { margin: 0; color: rgba(255,255,255,.68); font-family: var(--display); font-size: 19px; line-height: 1.5; }
.hero-rail {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: rgba(7,16,31,.58);
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.46);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.hero-rail i { width: 3px; aspect-ratio: 1; background: var(--blue-soft); border-radius: 50%; }

.section-label { display: flex; align-items: center; gap: 16px; color: var(--muted); }
.section-label span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.section-label p { margin: 0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.section-label-light { color: rgba(255,255,255,.48); }
.section-label-light span { color: var(--blue-soft); }
.kicker { margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.kicker-light { color: rgba(255,255,255,.5); }

.statement { background: var(--white); }
.statement-grid { display: grid; grid-template-columns: 220px 1fr; gap: 70px; align-items: start; }
.statement-copy h2, .process h2, .faq h2 {
  max-width: 860px;
  margin-bottom: 54px;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.statement-copy h2 span, .process h2 span, .faq h2 span, .profile-copy h2 span { color: var(--blue); font-style: italic; }
.statement-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; max-width: 820px; }
.statement-columns p { margin: 0; color: #536175; line-height: 1.85; }

.services { color: var(--white); background: var(--ink); }
.section-head { display: grid; grid-template-columns: 220px 1fr; gap: 70px; margin-bottom: 70px; }
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
}
.section-head h2 span { color: var(--blue-soft); font-style: italic; }
.service-list { border-top: 1px solid var(--line-light); }
.service-card {
  min-height: 166px;
  padding: 32px 4px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  transition: background .25s ease, padding .25s ease;
}
.service-card:hover { padding-inline: 22px; background: var(--ink-2); }
.service-no { color: var(--blue-soft); font-size: 11px; letter-spacing: .14em; }
.service-card h3 { margin-bottom: 9px; font-family: var(--display); font-size: 29px; font-weight: 400; }
.service-card p { max-width: 670px; margin: 0; color: rgba(255,255,255,.56); line-height: 1.7; }
.service-tag { justify-self: end; padding: 8px 13px; color: rgba(255,255,255,.5); border: 1px solid var(--line-light); border-radius: 999px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.services-note { max-width: 620px; margin: 30px 0 0 auto; color: rgba(255,255,255,.4); font-size: 13px; }

.process { background: #edf1f6; }
.process-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: 100px; }
.process-intro { position: sticky; top: 150px; align-self: start; }
.process-intro .section-label { margin-bottom: 70px; }
.process h2 { margin-bottom: 0; font-size: clamp(46px, 5vw, 68px); }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; border-top: 1px solid var(--line); }
.process-list li { padding: 34px 0; display: grid; grid-template-columns: 70px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.process-list h3 { margin-bottom: 10px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.process-list p { margin: 0; color: var(--muted); }

.profile { min-height: 800px; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--ink); }
.profile-art {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(40,108,255,.38), transparent 22%),
    linear-gradient(135deg, #0c1b31, #07101f 55%, #17365c);
  border-right: 1px solid var(--line-light);
}
.profile-art::before, .profile-art::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.profile-art::before { width: 520px; height: 520px; }
.profile-art::after { width: 720px; height: 720px; }
.profile-letter { position: relative; z-index: 2; font-family: var(--display); font-size: clamp(125px, 16vw, 230px); font-style: italic; letter-spacing: -.12em; text-indent: -.08em; color: rgba(255,255,255,.93); text-shadow: 0 26px 50px rgba(0,0,0,.28); }
.profile-orbit { position: absolute; z-index: 3; width: 430px; height: 110px; border: 1px solid rgba(118,163,255,.6); border-radius: 50%; transform: rotate(-18deg); }
.profile-art p { position: absolute; bottom: 36px; left: 40px; margin: 0; color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .25em; }
.profile-copy { padding-inline: clamp(50px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.profile-copy .section-label { margin-bottom: 70px; }
.profile-copy h2 { margin-bottom: 34px; font-family: var(--display); font-size: clamp(44px, 4.5vw, 67px); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.profile-copy > p:not(.kicker) { max-width: 610px; color: rgba(255,255,255,.6); line-height: 1.8; }
.profile-signature { margin-top: 28px; color: var(--blue-soft); font-family: var(--display); font-size: 25px; font-style: italic; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(500px, 1.3fr); gap: 100px; }
.faq-grid .section-label { margin-bottom: 70px; }
.faq h2 { margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 23px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-family: var(--sans); font-size: 24px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -4px 0 28px; color: var(--muted); line-height: 1.8; }

.contact { padding-block: 120px; color: var(--white); background: var(--blue); }
.contact-grid { display: grid; grid-template-columns: 1fr 430px; gap: 100px; align-items: center; }
.eyebrow-light { color: rgba(255,255,255,.66); }
.eyebrow-light span { background: var(--white); }
.contact h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 6.3vw, 90px); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.contact h2 em { color: var(--white); opacity: .65; }
.contact-card { padding: 34px; background: rgba(7,16,31,.16); border: 1px solid rgba(255,255,255,.32); border-radius: 4px; }
.contact-card > div { padding: 16px 0 20px; display: grid; gap: 5px; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-card > div > span { color: rgba(255,255,255,.63); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-card strong { font-size: 17px; }
.contact-value-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.contact-address { min-width: 0; display: grid; gap: 3px; }
.contact-address small { color: rgba(255,255,255,.7); font-size: 13px; }
.contact-card a { color: var(--white); text-decoration: none; }
.contact-link { flex: 0 0 auto; padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.contact-phone { width: max-content; font-size: 20px; font-weight: 800; letter-spacing: .04em; }
.profile-actions { margin-top: 5px; display: flex; align-items: flex-start; flex-wrap: wrap; gap: 9px; }
.profile-actions a { max-width: 100%; padding: 8px 11px; border: 1px solid rgba(255,255,255,.3); border-radius: 2px; font-size: 13px; font-weight: 700; transition: background .2s ease, border-color .2s ease; }
.profile-actions a:hover, .profile-actions a:focus-visible { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); }
.contact-card p { margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }

.site-footer { padding-block: 48px; color: rgba(255,255,255,.55); background: #050b15; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto; gap: 50px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 13px; color: var(--white); }
.footer-brand > div { display: grid; line-height: 1.3; }
.footer-brand strong { font-size: 14px; }
.footer-brand > div span { color: rgba(255,255,255,.5); font-size: 11px; }
.footer-grid > p { max-width: 480px; margin: 0; font-size: 12px; }
.footer-meta { display: grid; justify-items: end; gap: 4px; font-size: 11px; }

:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 48px, 760px); }
  .section-pad { padding-block: 100px; }
  .menu-toggle {
    position: relative;
    z-index: 30;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    padding: 120px 32px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { width: min(420px, 100%); padding: 13px 0; text-align: center; font-family: var(--display); font-size: 29px; }
  .site-nav .nav-cta { margin-top: 14px; font-family: var(--sans); font-size: 15px; }
  .hero { min-height: 850px; }
  .hero-grid { min-height: 790px; padding-top: 160px; grid-template-columns: 1fr; gap: 20px; }
  .hero-note { display: none; }
  .hero-copy { align-self: center; }
  .statement-grid, .section-head, .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .statement-grid > .section-label, .section-head > .section-label { margin-bottom: 10px; }
  .service-card { grid-template-columns: 60px 1fr; }
  .service-tag { display: none; }
  .process-intro { position: static; }
  .process-intro .section-label, .faq-grid .section-label, .profile-copy .section-label { margin-bottom: 45px; }
  .profile { grid-template-columns: 1fr; }
  .profile-art { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .profile-art::before { width: 380px; height: 380px; }
  .profile-art::after { width: 540px; height: 540px; }
  .profile-orbit { width: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { justify-items: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 36px); }
  .section-pad { padding-block: 78px; }
  .nav-shell { min-height: 74px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy span { font-size: 9px; }
  .hero { min-height: 780px; }
  .hero::before { background: linear-gradient(90deg, rgba(7,16,31,.94), rgba(7,16,31,.55)); }
  .hero-media img { object-position: 64% center; opacity: .56; }
  .hero-grid { min-height: 720px; padding-top: 125px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(57px, 17vw, 76px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-rail { gap: 13px; overflow: hidden; white-space: nowrap; font-size: 8px; }
  .statement-columns { grid-template-columns: 1fr; gap: 18px; }
  .statement-copy h2, .process h2, .faq h2 { margin-bottom: 34px; font-size: 42px; }
  .section-head h2 { font-size: 52px; }
  .service-card { min-height: auto; padding-block: 26px; grid-template-columns: 34px 1fr; gap: 12px; }
  .service-card:hover { padding-inline: 8px; }
  .service-card h3 { font-size: 23px; line-height: 1.25; }
  .service-card p { font-size: 14px; }
  .process-grid { gap: 38px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 8px; }
  .profile-art { min-height: 400px; }
  .profile-art::before { width: 280px; height: 280px; }
  .profile-art::after { width: 410px; height: 410px; }
  .profile-letter { font-size: 145px; }
  .profile-orbit { width: 260px; height: 70px; }
  .profile-copy { padding-inline: 22px; }
  .faq-list summary { font-size: 19px; line-height: 1.35; }
  .contact { padding-block: 80px; }
  .contact h2 { font-size: 58px; }
  .contact-card { padding: 24px; }
  .contact-value-row { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@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; }
}
