:root {
  color-scheme: light;
  --ink: #10273b;
  --ink-deep: #091925;
  --blue: #2d6386;
  --blue-soft: #dce7eb;
  --paper: #f5f2eb;
  --paper-deep: #e9e4da;
  --white: #fffefa;
  --gold: #c9a365;
  --gold-pale: #ead8b4;
  --muted: #68727a;
  --line: rgba(16, 39, 59, 0.14);
  --shadow: 0 26px 70px rgba(8, 23, 35, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 76px;
  padding: 0 clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(9, 25, 37, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 48px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.12em;
  border: 1px solid currentColor;
}

.brand-copy {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.privacy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cc6ae;
  box-shadow: 0 0 0 4px rgba(140, 198, 174, 0.12);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 163, 101, 0.54);
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 11px;
}

.button-ink {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-light {
  color: var(--ink-deep);
  background: var(--white);
}

.button-gold {
  color: var(--ink-deep);
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-pale);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue);
}

.eyebrow-gold {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 170px clamp(24px, 8vw, 132px) 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 32%, rgba(65, 119, 147, 0.32), transparent 28%),
    linear-gradient(125deg, #0a1c2a 0%, #102d42 58%, #173c54 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 auto auto;
  width: 42%;
  height: calc(100% - 76px);
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(230, 211, 175, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201, 163, 101, 0.7);
}

.orbit-one {
  width: 520px;
  height: 520px;
  right: -130px;
  top: 145px;
}

.orbit-one::before {
  left: 45px;
  top: 68px;
}

.orbit-one::after {
  left: 155px;
  bottom: 4px;
}

.orbit-two {
  width: 310px;
  height: 310px;
  right: 22px;
  top: 250px;
}

.orbit-two::before {
  right: 28px;
  top: 65px;
}

.orbit-two::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(800px, 70vw);
}

.hero h1,
.section-heading h2,
.capability-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(54px, 7.8vw, 110px);
  letter-spacing: -0.054em;
  line-height: 0.9;
}

.hero h1 em {
  display: block;
  color: var(--gold-pale);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
}

.text-link:hover {
  color: var(--gold-pale);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 8vw, 132px);
  bottom: 155px;
  width: min(420px, 32vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  padding: 20px 15px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.market-strip {
  position: absolute;
  z-index: 2;
  inset: auto clamp(24px, 8vw, 132px) 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.market-strip > p {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.market-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-link {
  min-height: 34px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 11px;
  transition: background 160ms ease, color 160ms ease;
}

.market-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.market-link span {
  margin-left: 7px;
  color: var(--gold-pale);
}

.portfolio-section {
  padding: 110px clamp(22px, 5.8vw, 96px) 120px;
}

.section-heading {
  width: min(1280px, 100%);
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.capability-intro h2 {
  max-width: 760px;
  font-size: clamp(42px, 5.3vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p,
.capability-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.explorer-shell {
  width: min(1280px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 102px;
  padding: 23px 22px;
  background: rgba(255, 254, 250, 0.64);
  border: 1px solid var(--line);
}

.filter-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.clear-button {
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 11px;
}

.filter-field {
  margin-bottom: 20px;
  display: block;
}

.filter-field > span:first-child,
.brief-form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-field select,
.filter-field input,
.brief-form select,
.brief-form input {
  width: 100%;
  height: 46px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 12px;
  font-size: 13px;
}

.search-wrap {
  position: relative;
  display: block;
}

.search-wrap svg {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.search-wrap input {
  padding-left: 38px;
}

.confidential-note {
  margin-top: 28px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.confidential-note > span {
  color: var(--gold);
  font-size: 10px;
}

.confidential-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.confidential-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.results-toolbar {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.results-toolbar p {
  margin: 0;
  font-size: 12px;
}

#resultCount {
  font-weight: 700;
}

#activeSummary {
  color: var(--muted);
  text-align: right;
}

.project-grid {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -65px;
  top: -65px;
  border: 1px solid rgba(45, 99, 134, 0.18);
  border-radius: 50%;
  transition: transform 500ms ease;
}

.project-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(45, 99, 134, 0.34);
  box-shadow: 0 18px 45px rgba(21, 39, 52, 0.1);
}

.project-card:hover::before {
  transform: scale(1.5);
}

.project-card-top {
  position: relative;
  z-index: 2;
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card-image {
  position: relative;
  height: 154px;
  margin: 15px 18px 0;
  overflow: hidden;
  display: block;
  background: var(--blue-soft);
}

.project-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 25, 37, 0.17), transparent 55%);
  pointer-events: none;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.035);
}

.project-card-top span:last-child {
  color: var(--muted);
}

.project-card-content {
  padding: 22px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card h3 {
  max-width: 280px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.project-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.card-capital {
  margin-top: 13px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.35;
}

.card-footer {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card-tag {
  padding: 5px 7px;
  color: var(--blue);
  background: #edf2f3;
  font-size: 9px;
  line-height: 1;
}

.card-arrow {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}

.empty-state {
  padding: 90px 24px;
  text-align: center;
  background: rgba(255, 254, 250, 0.56);
  border: 1px solid var(--line);
}

.empty-state > span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.empty-state h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.empty-state p {
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 13px;
}

.capabilities-section {
  padding: 110px clamp(22px, 6.7vw, 110px) 34px;
  color: var(--white);
  background: var(--ink-deep);
}

.capability-intro {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.capability-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

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

.capability-intro > p {
  color: rgba(255, 255, 255, 0.6);
}

.capability-grid {
  width: min(1180px, 100%);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.capability-card {
  min-height: 230px;
  padding: 30px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.capability-card:last-child {
  border-right: 0;
}

.capability-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.capability-card h3 {
  margin: 45px 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.capability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.7;
}

.brief-form {
  width: min(1180px, 100%);
  margin: 72px auto 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.75fr);
  gap: 22px;
  align-items: end;
  background: #102a3e;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brief-heading {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.brief-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.brief-form label > span {
  color: rgba(255, 255, 255, 0.48);
}

.brief-form select,
.brief-form input {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

.brief-form select option {
  color: var(--ink);
  background: var(--white);
}

.brief-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.brief-notes {
  grid-column: span 2;
}

.brief-form .button {
  width: 100%;
}

.form-footnote {
  grid-column: 1 / -1;
  margin: -7px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

footer {
  width: min(1180px, 100%);
  margin: 92px auto 0;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.brand-footer {
  color: var(--white);
}

footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.brief-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: var(--white);
  background: #0c2131;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.brief-dialog::backdrop {
  background: rgba(3, 14, 22, 0.72);
  backdrop-filter: blur(7px);
}

.brief-dialog-shell {
  padding: 30px;
}

.brief-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brief-dialog-header .eyebrow {
  margin-bottom: 8px;
}

.brief-dialog-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
}

.email-preview {
  margin-top: 26px;
  display: grid;
  gap: 13px;
}

.email-preview label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.email-preview input,
.email-preview textarea {
  width: 100%;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  resize: vertical;
}

.email-preview input {
  height: 44px;
}

.email-preview textarea {
  min-height: 210px;
  line-height: 1.55;
}

.brief-dialog-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.dialog-footnote,
.copy-status {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.5;
}

.copy-status {
  min-height: 15px;
  color: var(--gold-pale);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(3, 14, 22, 0.66);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.drawer-backdrop.visible {
  opacity: 1;
}

.project-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(720px, 100%);
  overflow-y: auto;
  color: var(--white);
  background: #0c2131;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-drawer.open {
  transform: translateX(0);
}

.drawer-topbar {
  height: 70px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.drawer-topbar > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.icon-button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.drawer-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--ink);
}

.drawer-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.drawer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(8, 24, 36, 0.56), rgba(8, 24, 36, 0.04) 68%, rgba(8, 24, 36, 0.26));
}

.drawer-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-line {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(234, 216, 180, 0.4);
  border-radius: 50%;
}

.visual-line-a {
  width: 380px;
  height: 380px;
  right: -80px;
  top: -150px;
}

.visual-line-b {
  width: 240px;
  height: 240px;
  right: -2px;
  top: -66px;
}

.visual-index {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--serif);
  font-size: 112px;
  line-height: 1;
}

.drawer-content {
  padding: 38px 34px 42px;
}

.drawer-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.drawer-facts {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-facts > div {
  padding: 20px 16px 20px 0;
}

.drawer-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-thesis {
  margin-top: 32px;
  padding: 22px 24px;
  background: rgba(201, 163, 101, 0.08);
  border-left: 2px solid var(--gold);
}

.drawer-thesis p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

.detail-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-block {
  min-height: 190px;
  padding: 22px;
  background: #0c2131;
}

.detail-block > span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.7;
}

.drawer-facts span,
.drawer-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.drawer-facts strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.drawer-group {
  margin-top: 28px;
}

.drawer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.drawer-tag {
  padding: 8px 10px;
  color: var(--gold-pale);
  background: rgba(201, 163, 101, 0.09);
  border: 1px solid rgba(201, 163, 101, 0.22);
  font-size: 10px;
}

.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.support-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.support-toggle {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  text-align: left;
}

.support-symbol {
  color: var(--gold);
  font-size: 16px;
}

.support-panel {
  padding: 0 38px 15px 13px;
}

.support-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.65;
}

.drawer-disclosure {
  margin-top: 29px;
  padding: 15px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.035);
  border-left: 2px solid var(--gold);
}

.drawer-disclosure > span {
  color: var(--gold);
  font-size: 8px;
}

.drawer-disclosure p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.drawer-cta {
  width: 100%;
  margin-top: 24px;
}

.drawer-nav {
  position: sticky;
  bottom: 0;
  z-index: 3;
  height: 62px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(7, 25, 38, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.drawer-nav button {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  text-align: left;
}

.drawer-nav button:last-child {
  text-align: right;
}

.drawer-nav button:disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: default;
}

.drawer-nav > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

@media (max-width: 1120px) {
  .hero-stats {
    width: 410px;
  }

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

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

  .brief-heading,
  .form-footnote {
    grid-column: 1 / -1;
  }

  .brief-notes {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 940px;
    padding-top: 145px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-stats {
    left: 24px;
    right: 24px;
    bottom: 190px;
    width: auto;
  }

  .market-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading,
  .capability-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .capability-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -10px;
  }

  .explorer-shell {
    grid-template-columns: 1fr;
  }

  .filters {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }

  .filter-heading,
  .confidential-note {
    grid-column: 1 / -1;
  }

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

  .capability-card {
    min-height: 185px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .capability-card:last-child {
    border-bottom: 0;
  }

  .capability-card h3 {
    margin-top: 25px;
  }
}

@media (max-width: 580px) {
  .site-header {
    height: 66px;
    padding: 0 17px;
  }

  .brand-copy,
  .privacy-badge {
    display: none;
  }

  .hero {
    min-height: 970px;
    padding: 126px 20px 35px;
  }

  .hero h1 {
    font-size: clamp(51px, 16vw, 76px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    bottom: 246px;
  }

  .hero-stat {
    padding: 16px 9px;
  }

  .hero-stat strong {
    font-size: 31px;
  }

  .hero-stat span {
    font-size: 8px;
  }

  .market-strip {
    inset: auto 20px 25px;
  }

  .portfolio-section,
  .capabilities-section {
    padding-left: 17px;
    padding-right: 17px;
  }

  .portfolio-section {
    padding-top: 76px;
  }

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

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

  .filter-heading,
  .confidential-note {
    grid-column: auto;
  }

  .results-toolbar {
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  #activeSummary {
    text-align: left;
  }

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

  .project-card {
    min-height: 410px;
  }

  .drawer-facts,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .drawer-facts > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .brief-form {
    padding: 28px 20px;
    grid-template-columns: 1fr;
  }

  .brief-heading,
  .form-footnote {
    grid-column: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }

  .drawer-content {
    padding: 32px 24px 38px;
  }

  .brief-dialog-shell {
    padding: 24px 18px;
  }

  .brief-dialog-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .brief-dialog-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
  z-index: 2;
