:root {
  --navy: #071a38;
  --navy-2: #0c2b59;
  --ink: #101722;
  --muted: #596270;
  --paper: #ffffff;
  --soft: #f4f4f0;
  --line: #d8dde3;
  --red: #c91f2a;
  --accent: #b6a07a;
  --shadow: 0 24px 64px rgba(5, 18, 38, 0.15);
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
}

.skip-link:focus {
  top: 20px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom: 1px solid rgba(7, 26, 56, 0.1);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
}

.is-scrolled .brand img,
.menu-active .brand img {
  filter: none;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.74;
}

.primary-nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.primary-nav a {
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--red);
}

.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 26, 56, 0.18);
}

.button-header {
  min-height: 40px;
  padding-inline: 16px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.is-scrolled .button-header,
.menu-active .button-header {
  border-color: var(--navy);
  background: var(--navy);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: max(690px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  background: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 27, 0.9) 0%, rgba(4, 12, 27, 0.68) 54%, rgba(4, 12, 27, 0.3) 100%),
    linear-gradient(0deg, rgba(4, 12, 27, 0.72), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 145px 0 32px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fff;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 6.3vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 700px;
  margin: 25px 0 0;
  color: #e5e9ef;
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 29px;
}

.capability-line {
  margin-top: clamp(44px, 8vh, 74px);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #e8edf2;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.capability-line i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ff4d59;
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: 38px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
}

.scroll-cue span {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  animation: scroll 1.7s infinite;
}

@keyframes scroll {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(23px); opacity: 0; }
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(42px, 8vw, 105px);
}

.editorial-grid h2,
.section-heading h2,
.leadership h2,
.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.25vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.editorial-grid .statement {
  max-width: 900px;
  margin: 28px 0 13px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.25vw, 1.95rem);
  line-height: 1.4;
}

.editorial-grid div > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 45px;
}

.wide-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.wide-heading > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-row {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 0.2s ease;
}

.capability-row:hover {
  padding-left: 10px;
}

.capability-row > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.capability-row p {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--muted);
}

.capability-row b {
  font-size: 25px;
  font-weight: 400;
}

.story {
  min-height: 500px;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: var(--soft);
}

.story-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-featured .story-image img {
  object-position: 50% 50%;
}

.story-alternate .story-image img {
  object-position: 50% 58%;
}

.story-content {
  padding: clamp(34px, 5.5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-category {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-category > span {
  margin-right: 9px;
  padding-right: 9px;
  border-right: 1px solid currentColor;
}

.story h3,
.patent-study h3,
.impact-callout h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.35vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.story-content > p:not(.story-category),
.story-content li {
  color: var(--muted);
}

.story-content ul {
  margin-block: 10px;
  padding-left: 19px;
}

.text-link {
  width: fit-content;
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.story-alternate {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.story-alternate .story-image {
  order: 2;
}

.outcome {
  color: var(--navy) !important;
  font-weight: 750;
}

.patent-study {
  margin-top: 8px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.patent-intro {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 50px;
  align-items: end;
}

.patent-intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.patent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

@media (min-width: 1200px) {
  .patent-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }
}

.patent-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.patent-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: #aeb7c2;
  box-shadow: 0 14px 30px rgba(7, 26, 56, 0.1);
}

.patent-card figure {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.patent-image {
  aspect-ratio: 17 / 22;
  padding: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e9edf2;
}

.patent-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.patent-card figcaption {
  padding: 12px 12px 14px;
}

.patent-card figcaption span {
  display: block;
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.patent-card h4 {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.3;
}

.patent-card figcaption::after {
  content: "View official record \2192";
  display: block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-callout {
  margin-top: 44px;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.impact-callout .graphic-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.2rem, 9vw, 7.5rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.18);
}

.impact-callout p:not(.story-category) {
  max-width: 680px;
  margin-bottom: 0;
  color: #c6d0dd;
}

.text-link-light {
  color: #fff;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-heading-light h2 {
  max-width: 880px;
}

.process-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article {
  min-height: 240px;
  padding: 27px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid span {
  color: #ff6670;
  font-size: 11px;
  font-weight: 850;
}

.process-grid h3 {
  margin: 54px 0 10px;
  font-size: 24px;
}

.process-grid p {
  margin: 0;
  color: #bbc6d4;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-top: 3px solid var(--red);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 240, 0.94)),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(7, 26, 56, 0.08) 26px 27px);
  color: var(--ink);
}

.industry-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(7, 26, 56, 0.13);
  border-radius: 50%;
}

.industry-card > span {
  color: rgba(7, 26, 56, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: 1;
}

.industry-card div {
  position: relative;
  z-index: 2;
}

.industry-card p {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industry-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.35vw, 2rem);
  font-weight: 500;
  line-height: 1.16;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 90px);
  align-items: center;
}

.leader-photo {
  align-self: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 26, 56, 0.12);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.leadership .lead {
  max-width: 800px;
  margin-top: 25px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
}

.leadership p:not(.eyebrow):not(.lead) {
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
}

.credential-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-row span {
  padding: 7px 11px;
  border: 1px solid #c7cdd4;
  font-size: 11px;
  font-weight: 800;
}

.leadership-actions {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta {
  background: var(--red);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
  align-items: end;
}

.cta p {
  color: #fff;
  font-size: 17px;
}

.cta-actions {
  margin: 23px 0 15px;
  display: flex;
  gap: 9px;
}

.cta small {
  color: #fff;
}

footer {
  background: #061329;
  color: #aab4c2;
}

.footer-grid {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

footer p {
  margin: 0;
}

footer div:nth-child(3) {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer a {
  font-size: 13px;
  text-decoration: none;
}

footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--navy);
}

.patent-page {
  background: #eef1f4;
}

.patent-record-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--navy);
  color: #fff;
}

.patent-record-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.patent-record-header .brand img {
  filter: brightness(0) invert(1);
}

.patent-record-back {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.patent-record-back:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.patent-record-hero {
  padding: 64px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(182, 160, 122, 0.2), transparent 32%),
    linear-gradient(135deg, #071a38 0%, #0b2a57 62%, #071a38 100%);
  color: #fff;
}

.patent-record-grid {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.patent-record-plaque {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.patent-record-plaque img {
  width: 100%;
  height: auto;
}

.patent-record-number {
  margin: 0 0 13px;
  color: #d9c9aa;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.patent-record-summary h1 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.patent-record-facts {
  max-width: 900px;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.patent-record-facts div {
  padding: 18px 20px 19px 0;
}

.patent-record-facts div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.patent-record-facts dt {
  color: #b8c5d6;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.patent-record-facts dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.patent-record-actions {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.patent-record-note {
  margin: 18px 0 0;
  color: #d9c9aa;
  font-size: 13px;
  font-weight: 700;
}

.patent-record-actions .button {
  min-height: 46px;
}

.patent-document-section {
  padding: 58px 0 82px;
}

.patent-document-heading {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.55fr);
  gap: 50px;
  align-items: end;
}

.patent-document-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.patent-document-heading > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.patent-document-frame {
  overflow: hidden;
  border: 1px solid #c9d0d9;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 26, 56, 0.12);
}

.patent-document-bar {
  min-height: 56px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
}

.patent-document-bar a {
  font-weight: 800;
  text-underline-offset: 4px;
}

.patent-preview-button {
  position: relative;
  width: 100%;
  height: min(900px, 80svh);
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #e8ebef;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.patent-preview-button img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(7, 26, 56, 0.16);
  transition: transform 0.25s ease;
}

.patent-preview-button:hover img {
  transform: scale(1.008);
}

.patent-preview-action {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(360px, calc(100% - 36px));
  padding: 13px 18px;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 26, 56, 0.94);
  box-shadow: 0 12px 30px rgba(7, 26, 56, 0.28);
  text-align: center;
}

.patent-preview-action b {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.patent-preview-action small {
  margin-top: 2px;
  color: #c6d0dd;
  font-size: 10px;
}

.patent-preview-button.is-loading {
  cursor: progress;
}

.patent-preview-button[hidden],
.patent-pdf-frame[hidden] {
  display: none;
}

.patent-pdf-frame {
  width: 100%;
  height: min(1000px, 80svh);
  display: block;
  border: 0;
  background: #e8ebef;
}

.patent-pdf-fallback {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.patent-pdf-fallback a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .primary-nav,
  .button-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav.is-open {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 22px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-line {
    flex-wrap: wrap;
  }

  .capability-line i {
    display: none;
  }

  .wide-heading,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .story,
  .story-alternate {
    grid-template-columns: 1fr;
  }

  .story-alternate .story-image {
    order: 0;
  }

  .story-image {
    min-height: 360px;
  }

  .patent-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(100% - 40px, 1180px);
  }

  .brand img {
    width: 44px;
  }

  .brand strong {
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    display: block;
    padding-top: var(--header-height);
    background-position: 72% center;
  }

  .hero-video {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(4, 12, 27, 0.92) 0%, rgba(4, 12, 27, 0.62) 72%, rgba(4, 12, 27, 0.42) 100%);
  }

  .hero-content {
    padding: 34px 0 43px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.55rem, 11.8vw, 3.4rem);
    line-height: 1.01;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1.03rem;
  }

  .hero-actions {
    margin-top: 25px;
    flex-direction: column;
    align-items: stretch;
  }

  .capability-line,
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .editorial-grid h2,
  .section-heading h2,
  .leadership h2,
  .cta h2 {
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.1;
  }

  .editorial-grid .statement {
    margin-top: 22px;
    font-size: 1.25rem;
  }

  .editorial-grid div > p:last-child,
  .wide-heading > p {
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .capability-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 23px 0;
  }

  .capability-row b {
    display: none;
  }

  .capability-row h3 {
    font-size: 1.45rem;
  }

  .capability-row p {
    font-size: 14px;
    line-height: 1.55;
  }

  .story {
    min-height: 0;
    margin-bottom: 52px;
  }

  .story-image {
    min-height: 0;
  }

  .story-image img {
    height: 245px;
  }

  .story-content {
    padding: 29px 23px 32px;
  }

  .story h3,
  .patent-study h3,
  .impact-callout h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
  }

  .story-content ul {
    padding-left: 17px;
  }

  .patent-study {
    padding: 37px 0;
  }

  .patent-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .patent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .patent-image {
    padding: 5px;
  }

  .patent-card figcaption {
    padding: 10px;
  }

  .patent-card h4 {
    font-size: 12px;
  }

  .patent-card figcaption::after {
    margin-top: 8px;
    font-size: 8px;
  }

  .patent-record-nav {
    min-height: 68px;
  }

  .patent-record-back {
    padding: 8px 10px;
    font-size: 10px;
  }

  .patent-record-hero {
    padding: 34px 0 40px;
  }

  .patent-record-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .patent-record-plaque {
    width: 126px;
    padding: 6px;
  }

  .patent-record-summary h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .patent-record-facts {
    margin-top: 25px;
    grid-template-columns: 1fr;
  }

  .patent-record-facts div {
    padding: 13px 0;
  }

  .patent-record-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .patent-record-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .patent-document-section {
    padding: 40px 0 56px;
  }

  .patent-document-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .patent-document-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .patent-pdf-frame {
    height: 68svh;
  }

  .patent-preview-button {
    height: 68svh;
    padding: 12px;
  }

  .patent-preview-action {
    bottom: 15px;
  }

  .impact-callout {
    margin-top: 34px;
    padding: 29px 23px 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-callout .graphic-number {
    font-size: 4.7rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .process-grid article,
  .process-grid article:nth-child(3) {
    min-height: 0;
    padding: 24px 22px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .process-grid h3 {
    margin: 28px 0 8px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 250px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .leader-photo {
    width: min(195px, 58vw);
  }

  .leadership .lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .leadership-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid small {
    grid-column: auto;
  }
}

@media (max-width: 400px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

}

@media (max-height: 720px) and (max-width: 760px) {
  .hero {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}
