:root {
  --ink: #0b1220;
  --ink-soft: #334155;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --line: #dce6ef;
  --blue: #1769ff;
  --blue-dark: #0a48c9;
  --teal: #0699ab;
  --orange: #ffab2e;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(10, 30, 60, .14);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  color: #fff;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 15, 28, .93);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.is-inner .site-header {
  background: rgba(7, 15, 28, .96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(42vw, 230px);
  padding: 0;
  background: transparent;
}

.brand img {
  width: clamp(148px, 18vw, 230px);
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 7px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-cta:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/workspace.png") center 30% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 9, 18, .86) 0%, rgba(4, 15, 33, .45) 36%, rgba(23, 105, 255, .94) 76%, #1769ff 100%),
    linear-gradient(90deg, rgba(6, 18, 35, .65), transparent 60%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255,255,255,.04), 0 0 0 148px rgba(255,255,255,.03);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 820px;
  padding-top: 155px;
  padding-bottom: 58px;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow { color: #fff; }
.eyebrow span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255,171,46,.16);
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 780;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 em {
  display: block;
  color: #fff;
  font-style: normal;
  text-shadow: 0 0 60px rgba(23, 105, 255, .55);
}

.hero-lower {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, .72fr);
  gap: 70px;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: 750;
}

.hero-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-tags span + span { margin-left: -6px; }

.hero-action { max-width: 510px; }
.hero-action > p { margin: 0 0 28px; color: rgba(255,255,255,.84); font-size: 18px; line-height: 1.65; }

.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 0;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,.2); }
.button-light { color: var(--ink); background: #fff; }
.button-dark { width: 100%; color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--blue-dark); }
.text-link { font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.5); }

.signal-strip { color: #fff; background: var(--ink); }
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.signal-grid > div {
  display: grid;
  min-height: 145px;
  align-items: center;
  padding: 30px 38px;
  grid-template-columns: auto 1fr;
  gap: 22px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.signal-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.signal-grid strong { font-size: 54px; letter-spacing: -.05em; line-height: 1; }
.signal-grid span { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.45; }

.section { padding: 112px 0; }
.section-heading h2,
.outcomes-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 760;
  letter-spacing: -.05em;
  line-height: 1.04;
}
.section-heading > p:last-child { margin-top: 24px; color: var(--ink-soft); font-size: 18px; }
.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .62fr);
  gap: 80px;
  margin-bottom: 60px;
}
.split-heading > p { margin: 0 0 6px; }

.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 60px 100px;
}
.about-copy { padding-top: 35px; }
.about-copy p { color: var(--ink-soft); }
.about-copy .lead { color: var(--ink); font-size: 21px; line-height: 1.6; }
.inline-link { display: inline-flex; gap: 8px; margin-top: 12px; color: var(--blue); font-weight: 800; border-bottom: 2px solid currentColor; }
.about-image {
  position: relative;
  margin: 15px 0 0;
  grid-column: 1 / -1;
}
.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
}
.about-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  max-width: 390px;
  padding: 22px;
  color: #fff;
  background: rgba(7, 18, 34, .9);
  grid-template-columns: auto 1fr;
  gap: 18px;
  backdrop-filter: blur(12px);
}
.about-image figcaption span { color: var(--orange); font-size: 13px; font-weight: 800; }
.about-image figcaption p { margin: 0; line-height: 1.5; }

.services { background: var(--mist); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 460px;
  padding: 42px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-featured { color: #fff; background: var(--blue); border-color: var(--blue); }
.service-no { position: absolute; top: 34px; right: 34px; color: #8da0b5; font-size: 13px; font-weight: 800; }
.service-card-featured .service-no { color: rgba(255,255,255,.58); }
.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 66px;
  color: var(--blue);
  background: #edf4ff;
  place-items: center;
  border-radius: 50%;
}
.service-card-featured .service-icon { color: #fff; background: rgba(255,255,255,.16); }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 16px; font-size: 27px; letter-spacing: -.03em; }
.service-card p { max-width: 510px; margin: 0 0 24px; color: #536477; }
.service-card-featured p { color: rgba(255,255,255,.78); }
.service-card ul { display: flex; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; gap: 8px; }
.service-card li { padding: 6px 11px; color: #46586a; background: #f4f7fa; border-radius: 999px; font-size: 13px; font-weight: 700; }
.service-card-featured li { color: #fff; background: rgba(255,255,255,.13); }

.outcomes { color: #fff; background: var(--ink); }
.outcomes-grid { display: grid; align-items: center; grid-template-columns: 1.04fr .96fr; gap: 92px; }
.outcomes-visual { position: relative; }
.outcomes-visual::before {
  content: "";
  position: absolute;
  inset: -30px auto auto -30px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(rgba(255,171,46,.72) 2px, transparent 2px);
  background-size: 16px 16px;
}
.outcomes-visual img { position: relative; width: 100%; height: 630px; object-fit: cover; border-radius: 4px; }
.floating-card {
  position: absolute;
  right: -30px;
  bottom: 40px;
  display: flex;
  max-width: 300px;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}
.status-dot { width: 10px; height: 10px; margin-top: 8px; background: #15a46c; border-radius: 50%; box-shadow: 0 0 0 6px rgba(21,164,108,.14); }
.floating-card p { margin: 0; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #637488; }
.floating-card strong { margin-top: 4px; line-height: 1.35; }
.kicker-light { color: #63d6e1; }
.outcomes-copy > h2 { margin-bottom: 48px; }
.outcome-list article { display: grid; padding: 26px 0; grid-template-columns: 48px 1fr; gap: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.outcome-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.outcome-list article > span { color: var(--orange); font-size: 13px; font-weight: 800; }
.outcome-list h3 { margin: 0 0 8px; font-size: 21px; }
.outcome-list p { margin: 0; color: rgba(255,255,255,.64); }

.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.process-step > span { color: var(--blue); font-size: 13px; font-weight: 850; }
.step-line { position: relative; height: 1px; margin: 24px 0 30px; background: var(--line); }
.step-line::before { content: ""; position: absolute; top: -5px; left: 0; width: 11px; height: 11px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 6px #e6efff; }
.process-step h3 { margin: 0 0 12px; font-size: 27px; letter-spacing: -.03em; }
.process-step p { margin: 0; color: var(--ink-soft); }

.capabilities { color: #fff; background: var(--blue); }
.capabilities-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; }
.capabilities-intro h2 { margin: 0 0 48px; font-size: clamp(40px, 5vw, 65px); letter-spacing: -.05em; line-height: 1.05; }
.capability-tabs { display: flex; flex-direction: column; align-items: flex-start; }
.capability-tabs button {
  width: 100%;
  padding: 17px 0;
  color: rgba(255,255,255,.66);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, padding .2s ease;
}
.capability-tabs button::after { content: "↗"; float: right; opacity: 0; }
.capability-tabs button[aria-selected="true"] { padding-left: 12px; color: #fff; font-weight: 800; }
.capability-tabs button[aria-selected="true"]::after { opacity: 1; }
.capability-panels { display: flex; min-height: 600px; align-items: stretch; }
.capability-panel {
  position: relative;
  width: 100%;
  padding: 64px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 4px;
}
.capability-panel::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  background: rgba(23,105,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(23,105,255,.04);
}
.panel-label { display: inline-block; padding: 7px 11px; color: var(--blue); background: #eaf2ff; border-radius: 999px; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.capability-panel h3 { max-width: 440px; margin: 120px 0 25px; font-size: clamp(38px, 5vw, 64px); letter-spacing: -.05em; line-height: 1; }
.capability-panel > p { max-width: 540px; color: var(--ink-soft); font-size: 18px; }
.capability-panel ul { position: relative; z-index: 1; margin: 35px 0 0; padding: 0; list-style: none; }
.capability-panel li { padding: 12px 0; border-top: 1px solid var(--line); font-weight: 700; }
.capability-panel li::before { content: "✓"; margin-right: 10px; color: var(--teal); }

.standards { background: var(--mist); }
.centered { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.standard-grid article { min-height: 300px; padding: 32px; background: #fff; }
.standard-grid span { color: var(--blue); font-size: 13px; font-weight: 850; }
.standard-grid h3 { margin: 78px 0 14px; font-size: 22px; }
.standard-grid p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq .section-heading p:last-child { max-width: 440px; }
.accordion-item { border-top: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: 1px solid var(--line); }
.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.accordion-item button b { color: var(--blue); font-size: 24px; font-weight: 400; }
.accordion-content { overflow: hidden; }
.accordion-content p { margin: -5px 40px 26px 0; color: var(--ink-soft); }

.contact { padding: 112px 0; color: #fff; background: linear-gradient(135deg, #0b1220 0%, #10254a 100%); }
.contact-grid { display: grid; align-items: start; grid-template-columns: .88fr 1.12fr; gap: 90px; }
.contact-copy h2 { margin-bottom: 30px; }
.contact-copy > p:not(.kicker) { max-width: 520px; color: rgba(255,255,255,.68); font-size: 18px; }
.contact-note { display: flex; gap: 12px; margin-top: 38px; color: rgba(255,255,255,.85); }
.contact-note span { color: var(--orange); }
.contact-form { padding: 40px; color: var(--ink); background: #fff; border-radius: 4px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; font-size: 14px; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f7f9fb;
  border: 1px solid #d7e0e8;
  border-radius: 5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,105,255,.12); }
.contact-form .is-invalid { border-color: #cf3030; box-shadow: 0 0 0 4px rgba(207,48,48,.1); }
.form-status { min-height: 24px; margin: 14px 0 0; color: #176a51; font-size: 14px; font-weight: 750; }
.privacy-note { margin: 8px 0 0; color: #6b7b8c; font-size: 12px; text-align: center; }
.contact-form [data-validate-for],
.comment-form [data-validate-for] { display: block; margin-top: 5px; color: #b42318; font-size: 12px; font-weight: 650; }
.contact-success { min-height: 360px; padding: 52px 42px; color: var(--ink); background: #fff; border-radius: 4px; box-shadow: var(--shadow); }
.contact-success > span { display: grid; width: 56px; height: 56px; margin-bottom: 28px; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: 25px; }
.contact-success h3 { margin: 0 0 12px; font-size: 30px; letter-spacing: -.03em; }
.contact-success p { margin: 0; color: var(--ink-soft); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.content-page { min-height: 70vh; padding: 170px 0 110px; background: var(--mist); }
.content-hero { max-width: 900px; margin-bottom: 70px; }
.content-hero.compact { margin-bottom: 48px; }
.content-hero h1 { margin: 0 0 24px; font-size: clamp(46px, 7vw, 82px); letter-spacing: -.06em; line-height: 1; }
.content-hero > p:not(.kicker) { max-width: 740px; margin: 0; color: var(--ink-soft); font-size: 19px; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.article-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(10, 30, 60, .12); }
.article-card-media { display: grid; height: 230px; overflow: hidden; place-items: center; color: rgba(255,255,255,.8); background: linear-gradient(135deg, var(--blue-dark), var(--teal)); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-card:hover .article-card-media img { transform: scale(1.035); }
.article-card-body { padding: 26px; }
.article-card-category { margin: 0 0 12px !important; color: var(--blue) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.035em; line-height: 1.18; }
.article-card-body > p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.article-card-meta { display: flex; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 18px; color: #718096; border-top: 1px solid var(--line); font-size: 13px; }
.article-card-meta a { color: var(--blue); font-weight: 750; }
.article-sidebar { position: sticky; top: 120px; display: grid; gap: 22px; }
.sidebar-block, .article-search { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.sidebar-block h2 { margin: 0 0 14px; font-size: 19px; }
.sidebar-block p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.sidebar-block nav { display: grid; }
.sidebar-block nav a { display: flex; justify-content: space-between; padding: 11px 0; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.article-search { display: flex; padding: 8px; }
.article-search input { min-width: 0; width: 100%; padding: 10px 12px; border: 0; outline: 0; }
.article-search button { flex: 0 0 auto; min-width: 44px; color: #fff; background: var(--blue); border: 0; border-radius: 7px; cursor: pointer; }
.content-hero .article-search { max-width: 720px; margin-top: 30px; }
.content-hero .article-search .button { min-width: 110px; }
.article-pagination { margin-top: 45px; }
.article-pagination ul { display: flex; gap: 8px; padding: 0; list-style: none; }
.article-pagination a, .article-pagination span { display: grid; min-width: 42px; height: 42px; padding: 0 10px; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.empty-state { grid-column: 1 / -1; padding: 55px; text-align: center; background: #fff; border: 1px solid var(--line); }
.error-page .empty-state { max-width: 820px; }
.error-page h1 { margin: 0 0 12px; font-size: clamp(42px, 7vw, 72px); letter-spacing: -.055em; line-height: 1; }
.error-page .empty-state > p:not(.kicker) { margin: 0 0 28px; color: var(--ink-soft); }

.article-shell { max-width: 940px; }
.article-back { display: inline-block; margin-bottom: 42px; color: var(--blue); font-weight: 750; }
.article-header { max-width: 850px; margin-bottom: 42px; }
.article-header h1 { margin: 18px 0 22px; font-size: clamp(44px, 6.8vw, 76px); letter-spacing: -.06em; line-height: 1.03; }
.article-lead { color: var(--ink-soft); font-size: 20px; }
.article-categories { display: flex; flex-wrap: wrap; gap: 8px; }
.article-categories a { padding: 6px 10px; color: var(--blue); background: #e8f0ff; border-radius: 999px; font-size: 12px; font-weight: 800; }
.article-meta { display: flex; gap: 9px; color: #66788b; font-size: 14px; }
.article-meta a { color: var(--blue); font-weight: 750; }
.article-cover { width: 100%; max-height: 560px; margin-bottom: 48px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.article-body { max-width: 760px; margin: 0 auto; color: #26364a; font-size: 18px; line-height: 1.85; }
.article-body h2, .article-body h3 { color: var(--ink); line-height: 1.2; }
.article-body h2 { margin-top: 48px; font-size: 34px; }
.article-body h3 { margin-top: 36px; font-size: 25px; }
.article-body img { height: auto; margin: 32px auto; border-radius: 9px; }
.article-body a { color: var(--blue); text-decoration: underline; }
.article-body blockquote { margin: 35px 0; padding: 8px 0 8px 25px; color: var(--ink); border-left: 4px solid var(--blue); font-size: 21px; }
.author-box { display: grid; max-width: 760px; margin: 65px auto 0; padding: 30px; grid-template-columns: 82px 1fr; gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.author-box img, .author-profile img { width: 82px; height: 82px; object-fit: cover; border-radius: 50%; }
.author-box span { color: #75869a; font-size: 12px; text-transform: uppercase; }
.author-box h2 { margin: 2px 0 7px; font-size: 22px; }
.author-box p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.author-profile { display: grid; grid-template-columns: 110px 1fr; gap: 28px; align-items: center; }
.author-profile img { width: 110px; height: 110px; }
.comments-section { max-width: 760px; margin: 70px auto 0; padding-top: 45px; border-top: 1px solid var(--line); }
.comment-list > h2, .comment-form > h2 { margin: 0 0 26px; font-size: 27px; }
.comment-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.comment-avatar { display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-weight: 850; }
.comment-item h3 { display: inline; margin: 0 8px 0 0; font-size: 16px; }
.comment-item time { color: #7a8b9d; font-size: 12px; }
.comment-item p { margin: 10px 0 0; color: var(--ink-soft); }
.comment-empty { color: var(--ink-soft); }
.comment-form { margin-top: 42px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.comment-form label { display: block; margin-bottom: 18px; font-size: 14px; font-weight: 800; }
.comment-form input, .comment-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; background: #f7f9fb; border: 1px solid #d7e0e8; border-radius: 5px; }
.comment-success { margin-top: 35px; padding: 24px; color: #176a51; background: #e9f8f2; border: 1px solid #bce7d7; border-radius: 8px; }

.about-page-image { width: 100%; max-height: 610px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.about-page-content { max-width: 780px; margin: 58px auto; color: var(--ink-soft); font-size: 19px; line-height: 1.85; }
.about-page-content h2 { color: var(--ink); font-size: 34px; line-height: 1.2; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 70px 0; background: var(--line); border: 1px solid var(--line); }
.about-values article { min-height: 260px; padding: 32px; background: #fff; }
.about-values span { color: var(--blue); font-size: 13px; font-weight: 850; }
.about-values h2 { margin: 58px 0 12px; font-size: 24px; }
.about-values p { margin: 0; color: var(--ink-soft); }
.about-cta { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 48px; color: #fff; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 12px; }
.about-cta h2 { margin: 0 0 9px; font-size: 34px; }
.about-cta p { max-width: 620px; margin: 0; color: rgba(255,255,255,.72); }

.site-footer { padding: 72px 0 28px; color: #fff; background: #050b14; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .8fr 1fr; gap: 55px; }
.footer-grid .brand img { width: clamp(164px, 19vw, 230px); }
.footer-brand p, .footer-contact p { color: rgba(255,255,255,.55); font-size: 14px; }
.footer-grid h3 { margin: 4px 0 20px; color: #8da0b5; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.74); font-size: 14px; }
.footer-grid > div > a:hover { color: #fff; }
.footer-contact .footer-email { color: #fff !important; font-size: 18px !important; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.35); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 24px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.service-grid .reveal:nth-child(2), .standard-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .standard-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(4), .standard-grid .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1060px) {
  .primary-nav { gap: 18px; }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; }
  .outcomes-grid, .contact-grid { gap: 55px; }
  .capabilities-shell { gap: 48px; }
  .capability-panel { padding: 45px; }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-contact { grid-column: 2 / 4; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .article-sidebar > .article-search { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header { padding: 12px 0; }
  .brand { max-width: min(52vw, 190px); }
  .brand img { width: clamp(142px, 44vw, 190px); }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: -1;
    display: flex;
    width: min(82vw, 360px);
    padding: 112px 30px 35px;
    background: rgba(7, 15, 28, .98);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .primary-nav.is-open { transform: translateX(0); box-shadow: -30px 0 60px rgba(0,0,0,.25); }
  .primary-nav a { padding: 13px 0 !important; }
  .nav-cta { margin-top: 14px; padding-inline: 18px !important; text-align: center; }
  .hero-lower { grid-template-columns: 1fr; gap: 36px; }
  .hero-tags { order: 2; flex-wrap: wrap; }
  .hero-tags span + span { margin-left: 0; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid > div { min-height: 105px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
  .about-grid, .split-heading, .outcomes-grid, .capabilities-shell, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; }
  .split-heading { gap: 25px; }
  .outcomes-visual { max-width: 650px; }
  .outcomes-copy { order: -1; }
  .capabilities-intro h2 { max-width: 720px; }
  .capability-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .capability-panel h3 { margin-top: 70px; }
  .faq-grid { gap: 50px; }
  .content-page { padding-top: 145px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section, .contact { padding: 78px 0; }
  .hero { min-height: 760px; }
  .hero-inner { min-height: 760px; padding-top: 130px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(46px, 15vw, 70px); }
  .hero-action > p { font-size: 16px; }
  .hero-tags { gap: 7px; }
  .hero-tags span { padding: 6px 10px; font-size: 12px; }
  .signal-grid > div { padding-inline: 20px; }
  .section-heading h2, .outcomes-copy h2, .contact-copy h2 { font-size: 39px; }
  .about-grid { gap: 35px; }
  .about-image img { height: 410px; }
  .about-image figcaption { position: relative; right: auto; bottom: auto; max-width: none; }
  .service-grid, .process-grid, .field-row { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 30px; }
  .service-icon { margin-bottom: 45px; }
  .outcomes-visual img { height: 440px; }
  .floating-card { right: 12px; bottom: 18px; max-width: calc(100% - 24px); }
  .capability-tabs { grid-template-columns: 1fr; }
  .capability-panel { min-height: 530px; padding: 32px 26px; }
  .capability-panel h3 { margin-top: 75px; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid article { min-height: 230px; }
  .standard-grid h3 { margin-top: 45px; }
  .contact-form { padding: 27px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .content-page { padding: 125px 0 75px; }
  .content-hero { margin-bottom: 45px; }
  .content-hero h1, .article-header h1 { font-size: clamp(40px, 12vw, 58px); }
  .article-grid, .article-sidebar, .about-values { grid-template-columns: 1fr; }
  .article-card-media { height: 210px; }
  .article-shell { width: min(calc(100% - 28px), 940px); }
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 29px; }
  .author-box, .author-profile { grid-template-columns: 1fr; }
  .comment-form { padding: 24px 19px; }
  .about-cta { align-items: flex-start; padding: 32px 25px; flex-direction: column; }
  .about-cta h2 { font-size: 29px; }
}

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