@font-face {
  font-family: "Public Sans Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./assets/public-sans-latin.woff2") format("woff2");
}

:root {
  --blue: #003e73;
  --blue-bright: #005ea8;
  --blue-dark: #002b50;
  --ink: #1f2328;
  --muted: #57606a;
  --surface: #f6f8fa;
  --surface-blue: #eef6fc;
  --border: #d0d7de;
  --white: #fff;
  --success: #1a7f37;
  --warning: #bf8700;
  --max: 75rem;
  --read: 45rem;
  --shadow: 0 1px 2px rgb(31 35 40 / 8%), 0 8px 24px rgb(31 35 40 / 8%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Public Sans Variable", "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue-bright);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--blue-dark);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #face00;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.reading {
  max-width: var(--read);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.usa-banner {
  padding: 0.45rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.usa-banner .container {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.flag-mark {
  width: 1.15rem;
  height: 0.72rem;
  background:
    linear-gradient(to bottom, #b22234 0 14%, #fff 14% 28%, #b22234 28% 42%, #fff 42% 56%, #b22234 56% 70%, #fff 70% 84%, #b22234 84%);
  box-shadow: inset 0.52rem 0 0 #3c3b6e;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.brand-subtitle {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.65rem);
}

.nav-links > a:not(.button) {
  padding: 1.65rem 0;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  border-bottom-color: var(--blue-bright);
  color: var(--blue);
}

.menu-button {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border: 2px solid var(--blue-bright);
  background: var(--blue-bright);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.button-outline {
  background: transparent;
  color: var(--blue);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}

.button-light:hover {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  position: absolute;
  inset: 0 0 0 auto;
  width: 42%;
  background:
    linear-gradient(135deg, transparent 0 46%, rgb(0 94 168 / 8%) 46% 47%, transparent 47% 58%, rgb(0 62 115 / 7%) 58% 59%, transparent 59%),
    linear-gradient(to right, transparent, var(--surface-blue));
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero h1,
.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--blue-bright);
  font-size: 0.28em;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 41rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.mission-list {
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--blue);
  list-style: none;
}

.mission-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-list li::after {
  color: var(--blue-bright);
  content: "—";
}

.hero-photo {
  overflow: hidden;
  margin: 0;
  background: var(--blue-dark);
  border: 1px solid var(--border);
  box-shadow: 0 1.5rem 4rem rgb(0 43 80 / 18%);
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
}

.hero-photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-photo figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  background: var(--blue-dark);
  border-top: 1px solid rgb(255 255 255 / 25%);
  color: var(--white);
  font-size: 0.68rem;
}

.hero-photo figcaption span:first-child {
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-photo-note {
  color: #b9d6ec;
  letter-spacing: 0.04em;
}

.trust-strip {
  background: var(--blue-dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 1.2rem 1.4rem;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
}

.trust-item span {
  color: #b9d6ec;
  font-size: 0.74rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 6rem) 0;
}

.section-muted {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(18rem, 0.45fr);
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-header h2,
.split h2,
.cta h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-header > p {
  margin: 0;
  color: var(--muted);
}

.section-blue .section-header h2,
.section-blue .section-header > p,
.section-blue .eyebrow {
  color: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
  min-height: 18rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 rgb(31 35 40 / 4%);
}

.card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3.8rem;
  height: 0.3rem;
  background: var(--blue-bright);
  content: "";
}

.card-index {
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card h3 {
  margin: 2rem 0 0.75rem;
  color: var(--blue-dark);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.plain-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  content: "■";
  font-size: 0.42rem;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.market {
  min-height: 10rem;
  padding: 1.5rem;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.market-number {
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.market h3 {
  margin: 2.1rem 0 0;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.6fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.check-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.project-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.project-meta {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--blue-dark);
  color: var(--white);
}

.project-meta .eyebrow,
.project-meta p {
  color: #b9d6ec;
}

.project-meta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.project-system {
  display: grid;
  min-height: 26rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--border);
}

.project-visual {
  min-width: 0;
  background: var(--surface);
}

.project-visual img {
  width: 100%;
  height: 100%;
  min-height: 27rem;
  object-fit: cover;
  object-position: left center;
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.experience-award {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--blue-dark);
  color: var(--white);
}

.experience-award span {
  color: #b9d6ec;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-award strong {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.experience-award small {
  margin-top: 0.8rem;
  color: #b9d6ec;
  font-weight: 700;
}

.experience-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.experience-copy h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.experience-copy .button {
  margin-top: 1rem;
}

.case-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.case-summary h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.case-facts {
  margin: 0;
  border-top: 3px solid var(--blue-bright);
}

.case-facts div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.case-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.source-note {
  padding: 1.5rem;
  background: var(--surface-blue);
  border-left: 0.3rem solid var(--blue-bright);
  color: var(--muted);
  font-size: 0.88rem;
}

.source-note strong {
  color: var(--blue-dark);
}

.source-note p {
  margin: 0.4rem 0 0;
}

.page-hero.case-hero {
  background: var(--blue-dark);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.case-hero .eyebrow {
  color: #8fc8ec;
}

.page-hero.case-hero h1 {
  color: var(--white);
}

.page-hero.case-hero p:last-child {
  color: #dbeaf4;
}

.case-hero-media {
  overflow: hidden;
  margin: 0;
  background: #071726;
  border: 1px solid rgb(255 255 255 / 18%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 32%);
}

.case-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-hero-media figcaption {
  padding: 0.65rem 0.85rem;
  color: #b9d6ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.case-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.case-video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.case-video-card:hover {
  transform: translateY(-0.2rem);
  border-color: var(--blue-bright);
  box-shadow: 0 1rem 2.5rem rgb(0 43 80 / 16%);
  color: var(--ink);
}

.case-video-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--blue-dark);
}

.case-video-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-mark {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  padding-left: 0.18rem;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 30%);
  color: var(--blue);
  font-size: 1.05rem;
}

.case-video-copy {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 1.4rem 1.4rem;
}

.case-video-copy small {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-video-copy strong {
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.25;
}

.case-video-copy > span {
  margin-top: 0.2rem;
  color: var(--blue-bright);
  font-size: 0.84rem;
  font-weight: 800;
}

.media-attribution {
  max-width: var(--read);
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.system-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: var(--surface);
}

.system-cell span {
  color: var(--blue-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.system-cell strong {
  margin-top: 0.35rem;
  color: var(--blue-dark);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--blue);
  color: var(--white);
}

.cta h2 {
  color: var(--white);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--surface-blue);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page-hero p:last-child {
  max-width: var(--read);
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.detail {
  padding-top: 1.4rem;
  border-top: 3px solid var(--blue-bright);
}

.detail h2,
.detail h3 {
  margin: 0 0 0.7rem;
  color: var(--blue-dark);
  font-size: 1.3rem;
  line-height: 1.2;
}

.detail p {
  margin: 0;
  color: var(--muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 30%;
  background: var(--surface);
  color: var(--blue-dark);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.6rem;
  background: #fff8c5;
  border: 1px solid #d4a72c;
  color: #633c01;
  font-size: 0.75rem;
  font-weight: 800;
}

.status::before {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--warning);
  border-radius: 50%;
  content: "";
}

.timeline {
  margin: 2rem 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.timeline li::before {
  position: absolute;
  top: 0.45rem;
  left: -0.48rem;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--blue-bright);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue-bright);
  content: "";
}

.timeline strong {
  display: block;
  color: var(--blue-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-details {
  margin: 0;
}

.contact-details div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0.3rem 0 0;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #8c959f;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: #071e33;
  color: #d6e6f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.6fr);
  gap: 3rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-division {
  margin: 0.55rem 0 0;
  color: #9fb9cc;
  font-size: 0.85rem;
}

.footer-heading {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: #d6e6f2;
  font-size: 0.86rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(255 255 255 / 15%);
  color: #9fb9cc;
  font-size: 0.75rem;
}

.notice {
  padding: 1rem 1.2rem;
  background: #ddf4ff;
  border-left: 0.3rem solid var(--blue-bright);
}

.notice p {
  margin: 0;
}

@media (max-width: 62rem) {
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-links[data-open="true"] {
    display: grid;
  }

  .nav-links > a:not(.button) {
    padding: 0.7rem 0;
    border-bottom: 0;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .section-header,
  .split,
  .case-hero-grid,
  .case-summary,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 55%;
    opacity: 0.7;
  }

  .mission-list {
    max-width: 32rem;
  }

  .hero-photo {
    max-width: 48rem;
  }

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

@media (max-width: 43rem) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero::before {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .trust-grid,
  .market-grid,
    .detail-grid,
    .card-grid,
    .case-video-grid,
    .experience-panel,
    .project-panel,
    .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .market-grid {
    border-top: 0;
  }

  .card {
    min-height: 0;
  }

  .project-system {
    min-height: 22rem;
  }

  .project-visual img {
    min-height: 0;
    object-fit: contain;
  }

  .cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media print {
  .usa-banner,
  .site-header,
  .site-footer,
  .hero-actions,
  .cta {
    display: none;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .section,
  .page-hero {
    padding: 1.5rem 0;
  }
}
