:root {
  --ink: #0a1524;
  --ink-soft: #26364a;
  --navy: #07101d;
  --navy-soft: #0b182a;
  --navy-raised: #0d1c31;
  --blue: #2479e9;
  --ice: #dbeaff;
  --paper: #f4f6f7;
  --paper-deep: #e9edf0;
  --white: #ffffff;
  --gold: #d8b975;
  --muted: #718094;
  --line: rgba(10, 21, 36, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
blockquote {
  margin-top: 0;
}

section,
details {
  scroll-margin-top: 1rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(8rem, 1fr);
  align-items: center;
  min-height: 6.2rem;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ice);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name em {
  color: #9caabd;
  font-style: normal;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.7rem);
}

.primary-nav a,
.header-link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-link {
  justify-self: end;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold);
}

.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: 2.6rem;
  right: 0;
  display: grid;
  width: min(19rem, 86vw);
  padding: 0.75rem;
  color: var(--white);
  background: rgba(7, 16, 29, 0.98);
  border: 1px solid var(--line-dark);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.32);
}

.mobile-nav nav a {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
}

.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible,
.mobile-nav nav a[aria-current="page"] {
  color: var(--gold);
}

.subpage {
  background: var(--paper);
}

.subpage-dark {
  background: var(--navy);
}

.subpage .site-header {
  position: absolute;
  background: var(--navy);
}

.subpage-main {
  padding-top: 6.2rem;
}

.subpage-main > .section {
  min-height: calc(100svh - 6.2rem);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 48rem;
  height: min(58rem, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 20, 0.97) 0%, rgba(4, 13, 26, 0.78) 42%, rgba(4, 13, 26, 0.1) 73%),
    linear-gradient(0deg, rgba(3, 9, 17, 0.92) 0%, transparent 43%);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 90rem);
  margin: 0 auto;
  padding: 10rem 0 7.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  color: #bdc7d5;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.4rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.hero h1,
.contact .section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.8vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.hero h1 i,
.contact .section-title i {
  color: var(--ice);
  font-weight: 400;
}

.hero-copy {
  width: min(100%, 39rem);
  margin: 2.3rem 0 0;
  color: #c1ccda;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 14.5rem;
  padding: 1rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  transition: background-color 180ms ease, color 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.button span {
  color: var(--blue);
  font-size: 1rem;
}

.button:hover span,
.button:focus-visible span {
  color: inherit;
}

.hero-actions p {
  margin: 0;
  color: #91a1b5;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  right: 4vw;
  bottom: 6.8rem;
  z-index: 2;
  width: min(23rem, 25vw);
  padding: 1.35rem 1.5rem;
  background: rgba(6, 15, 28, 0.68);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.hero-index > p {
  margin: 0 0 1rem;
  color: #91a1b5;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-index ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-index li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-index li span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #73849a;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 3rem;
  height: 1px;
  background: #607289;
}

.section {
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 2fr);
  gap: 4vw;
  padding: clamp(5.5rem, 9vw, 9rem) 4vw;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.65rem;
  color: var(--muted);
}

.section-label span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
}

.section-label p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label.light {
  color: #8e9caf;
}

.kicker,
.mini-label {
  margin: 0 0 1.2rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title,
.team-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.1vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.about-content,
.thesis-content,
.approach-content {
  max-width: 72rem;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 5vw;
  margin-top: 3.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.lead-copy {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.4;
}

.body-copy p {
  margin: 0 0 1.25rem;
  color: #566477;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 4.5rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts div {
  min-height: 9.5rem;
  padding: 1.6rem 1.3rem;
  border-right: 1px solid var(--line);
}

.company-facts div:last-child {
  border-right: 0;
}

.company-facts dt,
.disclosure-grid dt {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.company-nature {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
  gap: 3vw;
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--white);
  border-left: 2px solid var(--gold);
}

.company-nature p {
  margin-bottom: 0;
}

.company-nature > p:last-child {
  color: #4d5c70;
}

.thesis {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.thesis .section-title em {
  color: var(--blue);
  font-weight: 400;
}

.thesis-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4vw;
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.thesis-intro p {
  margin: 0;
  color: #566477;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.thesis-grid article {
  min-height: 17rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis-grid article > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.thesis-grid h2,
.thesis-grid h3,
.criteria-block h2,
.criteria-block h3,
.process-block > h2,
.process-block > h3,
.operating-grid h2,
.operating-grid h3,
.risk-panel h2,
.risk-panel h3,
.founder-standard h2,
.founder-standard h3 {
  margin: 2.4rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.thesis-grid p {
  margin-bottom: 0;
  color: #5a687a;
}

blockquote {
  margin: 4.5rem 0 0;
  padding: 2.3rem 0 0 4vw;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold);
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.25;
}

.focus,
.team {
  color: var(--white);
  background: var(--navy);
}

.focus > .focus-heading,
.focus > .focus-grid,
.focus > .focus-note,
.team > .team-heading,
.team > .team-grid,
.team > .disclosure-grid {
  grid-column: 2;
}

.focus-heading,
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: 5vw;
  margin: 2.2rem 0 4.5rem;
}

.focus-heading p,
.team-heading p {
  margin: 0 0 0.6rem;
  color: #96a4b7;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.focus-card {
  min-height: 29rem;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 200ms ease, transform 200ms ease;
}

.focus-card:hover {
  background: var(--navy-raised);
  transform: translateY(-0.25rem);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.stage {
  padding: 0.28rem 0.55rem;
  color: #9eb2ca;
  border: 1px solid rgba(158, 178, 202, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.focus-card h2,
.focus-card h3 {
  margin: 5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.1;
}

.focus-card > p {
  min-height: 6.5rem;
  margin-bottom: 1.7rem;
  color: #9ba9ba;
}

.focus-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.focus-card li {
  color: #c8d2df;
  font-size: 0.9rem;
}

.focus-card li::before {
  margin-right: 0.6rem;
  color: var(--blue);
  content: "—";
}

.focus-note {
  max-width: 46rem;
  margin: 2rem 0 0 auto;
  color: #8494a9;
  font-size: 0.9rem;
}

.approach {
  background: var(--paper);
}

.approach-intro {
  max-width: 65rem;
}

.approach-intro > p:last-child {
  max-width: 50rem;
  margin: 2rem 0 0;
  color: #566477;
  font-size: 1.05rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 20rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles h2,
.principles h3 {
  margin: 4.5rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.principles p {
  margin: 0;
  color: #5a687a;
}

.criteria-block {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  gap: 5vw;
  margin-top: 6rem;
}

.criteria-block h2,
.criteria-block h3 {
  margin-top: 0;
}

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

.criteria-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.criteria-list span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-block {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.process-block > h2,
.process-block > h3 {
  max-width: 42rem;
  margin-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 17rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-grid h3,
.process-grid h4 {
  margin: 4rem 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

.process-grid p {
  margin: 0;
  color: #5a687a;
  font-size: 0.92rem;
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.operating-grid article {
  min-height: 18rem;
  padding: 2.2rem;
  background: var(--white);
}

.operating-grid h2,
.operating-grid h3 {
  margin-top: 2.5rem;
}

.operating-grid p:last-child {
  margin-bottom: 0;
  color: #5a687a;
}

.risk-panel {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1.5fr);
  gap: 4vw;
  margin-top: 5rem;
  padding: 3rem;
  color: var(--white);
  background: var(--navy);
}

.risk-panel .mini-label {
  color: var(--gold);
}

.risk-panel h2,
.risk-panel h3 {
  margin-top: 0;
}

.risk-panel p:last-child {
  margin-bottom: 0;
  color: #a6b3c3;
}

.founder-standard {
  margin-top: 5rem;
  padding: 3rem 0 0 4vw;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold);
}

.founder-standard h2,
.founder-standard h3 {
  margin-top: 0;
}

.founder-standard p:last-child {
  max-width: 55rem;
  margin-bottom: 0;
  color: #5a687a;
}

.team {
  align-items: start;
}

.team > .section-label {
  grid-row: 1 / span 3;
}

.team-heading {
  margin-top: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.profile {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
  min-height: 31rem;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.profile-featured {
  grid-column: 1 / -1;
  grid-template-columns: 14rem minmax(0, 1fr);
  align-items: center;
  min-height: 22rem;
  background: var(--navy-raised);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid rgba(216, 185, 117, 0.32);
}

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

.profile-role,
.profile-focus {
  margin: 0 0 1.3rem;
  color: #8fa0b5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile h3 {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.profile-bio {
  max-width: 48rem;
  color: #aab6c5;
}

.profile-meta {
  margin: 1.5rem 0 0.8rem;
  color: var(--ice);
}

.profile-focus {
  margin-bottom: 0;
  color: #70849d;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 4.5rem 0 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.disclosure-grid div {
  min-height: 10rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line-dark);
}

.disclosure-grid div:last-child {
  border-right: 0;
}

.disclosure-grid dt {
  color: #798a9f;
}

.disclosure-grid dd {
  margin: 0;
  color: #d2dae5;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
}

.contact {
  color: var(--white);
  background: #091525;
  border-top: 1px solid var(--line-dark);
}

.contact-inner {
  max-width: 72rem;
}

.contact .section-title {
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 6vw;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.contact-copy p {
  margin-bottom: 1.5rem;
  color: #aab6c5;
}

.contact-channels {
  border-top: 1px solid var(--line-dark);
}

.contact-channels a {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 180ms ease;
}

.contact-channels a:hover,
.contact-channels a:focus-visible {
  color: var(--gold);
}

.contact-channels span {
  color: #7e90a8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channels strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-channels b {
  color: var(--blue);
  font-size: 1rem;
}

.submission-note {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(0, 1.55fr);
  gap: 4vw;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.035);
  border-left: 2px solid var(--gold);
}

.submission-note .mini-label {
  color: var(--gold);
}

.submission-note p {
  margin-bottom: 0;
  color: #9eacbd;
}

.contact-legal {
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line-dark);
}

.contact-legal .mini-label {
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.contact-legal h2,
.contact-legal h3 {
  margin: 0 0 2.5rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.contact-legal details {
  border-top: 1px solid var(--line-dark);
}

.contact-legal details:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.contact-legal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

.contact-legal summary::-webkit-details-marker {
  display: none;
}

.contact-legal summary::after {
  color: var(--blue);
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
}

.contact-legal details[open] summary::after {
  content: "−";
}

.contact-legal details p {
  max-width: 54rem;
  margin: 0;
  padding: 0 0 1.8rem;
  color: #9eacbd;
}

footer {
  padding: 3.5rem 4vw 2rem;
  color: #9ba8b9;
  background: #040b14;
}

.footer-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-primary p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
}

.footer-meta p {
  margin: 0;
  color: #65758a;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(13rem, 1fr) auto minmax(5rem, 0.4fr);
  }

  .primary-nav {
    gap: 1rem;
  }

  .primary-nav a {
    font-size: 0.7rem;
  }

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

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

  .profile,
  .profile-featured {
    grid-column: auto;
    grid-template-columns: 12rem minmax(0, 1fr);
    min-height: auto;
  }

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

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

  .company-facts div:nth-child(2),
  .disclosure-grid div:nth-child(2) {
    border-right: 0;
  }

  .company-facts div:nth-child(-n + 2),
  .disclosure-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .disclosure-grid div:nth-child(-n + 2) {
    border-bottom-color: var(--line-dark);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .header-link {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-index {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 20, 0.97), rgba(4, 13, 26, 0.62)),
      linear-gradient(0deg, rgba(3, 9, 17, 0.9), transparent 48%);
  }

  .section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .section-label {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .section-label.light {
    border-bottom-color: var(--line-dark);
  }

  .team > .section-label {
    grid-row: auto;
  }

  .focus > .focus-heading,
  .focus > .focus-grid,
  .focus > .focus-note,
  .team > .team-heading,
  .team > .team-grid,
  .team > .disclosure-grid {
    grid-column: 1;
  }

  .about-story,
  .thesis-intro,
  .company-nature,
  .criteria-block,
  .risk-panel,
  .submission-note,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .focus-heading,
  .team-heading {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

  .principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .principles h2,
  .principles h3 {
    margin-top: 2.5rem;
  }

  .operating-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .profile-featured {
    grid-column: auto;
  }

  .contact-layout {
    gap: 2rem;
  }

  .footer-primary,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 5.2rem;
    padding: 0 5vw;
  }

  .brand-name {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .header-link {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 44rem;
    height: 100svh;
  }

  .hero-content {
    width: 90vw;
    padding-bottom: 6rem;
  }

  .hero h1,
  .contact .section-title {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.7rem;
  }

  .eyebrow span {
    margin-top: 0.65rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 4.5rem 5vw;
  }

  .section-title,
  .team-heading h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .company-facts,
  .disclosure-grid,
  .thesis-grid,
  .focus-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .company-facts div,
  .disclosure-grid div,
  .company-facts div:nth-child(2),
  .disclosure-grid div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .disclosure-grid div,
  .disclosure-grid div:nth-child(2) {
    border-bottom-color: var(--line-dark);
  }

  .company-facts div:last-child,
  .disclosure-grid div:last-child {
    border-bottom: 0;
  }

  .company-nature,
  .risk-panel,
  .submission-note,
  .operating-grid article {
    padding: 1.6rem;
  }

  .thesis-grid article,
  .focus-card {
    min-height: auto;
  }

  .focus-card h2,
  .focus-card h3 {
    margin-top: 3.2rem;
  }

  .focus-card > p {
    min-height: auto;
  }

  .process-grid li {
    min-height: 14rem;
  }

  .profile,
  .profile-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .profile-photo {
    max-width: 14rem;
  }

  .contact-channels a {
    grid-template-columns: 1fr auto;
  }

  .contact-channels span {
    grid-column: 1 / -1;
  }

  .footer-primary p {
    line-height: 1.7;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
