:root {
  color-scheme: dark;
  --bg: #090909;
  --bg-raised: #11110f;
  --paper: #f1efe8;
  --ink: #10100f;
  --muted: #aaa79e;
  --line: #302f2b;
  --line-light: rgba(241, 239, 232, 0.18);
  --accent: #ff5a1f;
  --accent-soft: #ffb08f;
  --green: #b6e36f;
  --max: 1240px;
  --gutter: clamp(1.1rem, 3vw, 2.5rem);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 90, 31, 0.14), transparent 24rem),
    var(--bg);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.04rem;
  line-height: 1.64;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
p,
blockquote,
figure {
  margin-top: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--paper);
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: -0.04em;
}

.wordmark-text {
  display: block;
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.wordmark-copy {
  display: grid;
  gap: 0.25rem;
}

.wordmark-domain {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--accent-soft);
}

.nav-cta {
  padding: 0 1rem;
  border: 1px solid var(--paper);
}

.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  min-height: calc(100svh - 5.25rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 0 clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.7rem, 7.4vw, 7.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
  white-space: normal;
}

.hero-intro {
  max-width: 48rem;
  margin-bottom: 2rem;
  color: #d1cec5;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
  line-height: 1.62;
}

.hero-intro strong {
  color: var(--paper);
  font-weight: 700;
}

.hero-proofline {
  max-width: 44rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.035);
  color: #c8c5bc;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.025em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-proofline strong {
  color: var(--paper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--paper);
}

.button-quiet {
  border-color: var(--line-light);
  color: var(--paper);
}

.button-quiet:hover {
  border-color: var(--paper);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  margin: 0;
  justify-self: end;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.76;
  border: 1px solid var(--line-light);
  background: #1a1a18;
  box-shadow: 1rem 1rem 0 rgba(255, 90, 31, 0.1);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(9, 9, 9, 0.5)),
    linear-gradient(90deg, rgba(255, 90, 31, 0.1), transparent 40%);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) contrast(1.04);
  object-fit: cover;
  object-position: 50% 24%;
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-rail {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 10rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem var(--gutter);
  border-right: 1px solid var(--line-light);
}

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

.proof-item strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-item-accent {
  background: var(--accent);
  color: var(--ink);
}

.proof-item-accent span {
  color: rgba(16, 16, 15, 0.72);
}

.section {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading h2,
.contact h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.9;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.section-note {
  max-width: 34rem;
  margin-bottom: 0.5rem;
  color: #c8c5bc;
  font-size: 1.1rem;
  line-height: 1.65;
}

.story {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  color: var(--ink);
  clip-path: inset(0 -100vmax);
}

.story > .section-heading h2 {
  max-width: 18ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.story-arc {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.2);
  background: rgba(16, 16, 15, 0.2);
  grid-template-columns: minmax(0, 1fr) 8.5rem minmax(0, 1fr);
  gap: 1px;
}

.story-chapter {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  padding: clamp(1.8rem, 3.2vw, 3rem);
  background: #f7f2e8;
}

.story-chapter-now {
  background: #ece6da;
}

.story-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
  color: #68645b;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-kicker span {
  color: #bc3510;
}

.story-chapter h3 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.story-chapter > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: #45423b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-chapter strong {
  color: var(--ink);
  font-weight: 700;
}

.story-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.25rem 0.8rem;
  background: var(--ink);
  box-shadow: inset 1px 0 var(--accent), inset -1px 0 var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.story-bridge i {
  display: block;
  width: 1px;
  height: 9rem;
  background: linear-gradient(var(--accent), var(--paper));
}

.story-thesis {
  max-width: 56rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  padding-left: clamp(1.25rem, 3vw, 2rem);
  border-left: 5px solid var(--accent);
  color: #2f2d29;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.venture-group + .venture-group {
  margin-top: clamp(2.7rem, 4.5vw, 4.5rem);
}

.group-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 3px solid var(--paper);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.group-title span:last-child {
  color: var(--muted);
}

.group-title strong {
  margin-right: 0.6rem;
  color: var(--accent-soft);
}

.venture-directory {
  border-top: 1px solid var(--line-light);
}

.venture-row {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 3.5rem 15.25rem minmax(15rem, 1fr) minmax(17rem, 20rem);
  align-items: center;
  gap: 1.2rem;
  isolation: isolate;
}

.venture-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 -1rem;
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.07), rgba(255, 255, 255, 0.018) 55%, transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.venture-row:hover::before,
.venture-row:focus-within::before {
  opacity: 1;
}

.venture-number {
  align-self: start;
  padding-top: 0.3rem;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
}

.venture-brand {
  display: flex;
  min-width: 0;
  min-height: 6.4rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.82rem;
  padding: 0.2rem 0;
  color: var(--paper);
}

.brand-mark {
  display: block;
  width: 5.25rem;
  height: 5.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-words {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand-words strong {
  color: var(--paper);
  font-size: 0.95rem;
  letter-spacing: -0.025em;
}

.brand-words small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-honest {
  color: #f0c85f;
}

.logo-honest .brand-mark {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(212, 167, 44, 0.12);
}

.logo-honest .brand-words small {
  color: #d4a72c;
}

.logo-lingolead .brand-lockup {
  display: block;
  width: min(100%, 16.5rem);
  height: auto;
  border-radius: 0.7rem;
  box-shadow: 0 0 28px rgba(54, 201, 180, 0.08);
}

.corbday-live-lockup {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(19, 38, 43, 0.14);
  border-radius: 0.55rem;
  background: #f4f0e7;
  color: #13262b;
  box-shadow: 0 0 28px rgba(46, 109, 130, 0.1);
  white-space: nowrap;
}

.corbday-live-mark {
  position: relative;
  display: grid;
  width: 2.125rem;
  height: 2.125rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid #13262b;
  border-radius: 50% 50% 50% 10px;
  background: #13262b;
  color: #fffdf7;
  transform: rotate(-4deg);
}

.corbday-live-mark i {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
}

.corbday-live-mark b {
  position: relative;
  font-family: "Bahnschrift SemiCondensed", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.125rem;
  transform: rotate(4deg);
}

.corbday-live-word {
  font-family: "Bahnschrift SemiCondensed", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.corbday-live-lockup > small {
  padding-left: 2px;
  color: #6c706d;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: clamp(0.42rem, 0.55vw, 0.5rem);
  font-weight: 850;
  letter-spacing: 0.14em;
}

.logo-corbin {
  min-height: 8.5rem;
}

.logo-corbin img {
  display: block;
  width: min(100%, 14.25rem);
  height: 8rem;
  max-height: none;
  filter: none;
  opacity: 1;
  object-fit: contain;
  object-position: left center;
}

.logo-ambassador {
  gap: 0.72rem;
  color: var(--paper);
}

.logo-ambassador .brand-mark {
  width: 5.85rem;
  height: 5.85rem;
  filter: none;
}

.logo-ambassador .brand-words strong {
  color: #f1ede4;
  font-size: 0.9rem;
  letter-spacing: 0.045em;
}

.logo-ambassador .brand-words small {
  color: #e2614f;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.logo-rpg .brand-mark {
  width: 5.5rem;
  height: 5.5rem;
  filter: drop-shadow(0 10px 24px rgba(126, 227, 255, 0.13));
}

.logo-rpg .brand-words small {
  color: #bf9cff;
}

.logo-listing {
  color: #fff4d5;
}

.listing-monogram {
  color: #ffb74f;
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.12em;
  text-shadow: 0 2px 16px rgba(255, 145, 36, 0.24);
}

.logo-listing .brand-words small {
  color: #ffb74f;
}

.venture-copy {
  min-width: 0;
  padding: 0.25rem 0.35rem 0.25rem 0;
}

.venture-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.status-live {
  border-color: rgba(182, 227, 111, 0.42);
  background: rgba(182, 227, 111, 0.06);
  color: var(--green);
}

.status-building {
  border-color: rgba(255, 90, 31, 0.46);
  background: rgba(255, 90, 31, 0.08);
  color: var(--accent-soft);
}

.status-private {
  border-style: dashed;
  color: var(--muted);
}

.venture-copy h3 {
  max-width: 19ch;
  margin: 0.85rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.venture-copy p {
  max-width: 40rem;
  margin: 0.75rem 0 1rem;
  color: #c9c6bd;
  font-size: 1rem;
  line-height: 1.62;
}

.venture-copy p strong {
  color: #f5f1e8;
  font-weight: 700;
}

.venture-copy .venture-alias {
  margin: 0.36rem 0 -0.25rem;
  color: #d8cbb8;
  font-family: var(--display);
  font-size: 0.88rem;
  font-style: italic;
}

.venture-card-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-transform: uppercase;
}

.venture-card-link:hover {
  color: var(--accent-soft);
}

.venture-card-link-muted {
  color: var(--muted);
  text-decoration: none;
}

.venture-thumb {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #11181b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 9;
}

.venture-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 220ms ease, filter 220ms ease;
  object-fit: contain;
  object-position: center center;
}

.venture-row:hover .venture-thumb img,
.venture-row:focus-within .venture-thumb img {
  transform: none;
  filter: saturate(1.04);
}

.venture-thumb-listing img {
  filter: contrast(1.03) saturate(1.05);
}

.venture-row:hover .venture-thumb-listing img,
.venture-row:focus-within .venture-thumb-listing img {
  filter: contrast(1.05) saturate(1.08);
}

.venture-shot-label {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 13, 16, 0.92);
  color: #f6eee1;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.principles {
  border-top: 1px solid var(--line-light);
}

.principles-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

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

.principles-grid span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.principles-grid h3 {
  margin-top: 4rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.principles-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact {
  display: grid;
  width: 100%;
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: var(--accent);
  color: var(--ink);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.contact .eyebrow {
  color: rgba(16, 16, 15, 0.72);
}

.contact-copy > p:last-child {
  max-width: 44rem;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.contact-copy strong {
  font-weight: 800;
}

.contact-actions {
  width: min(100%, 31rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(16, 16, 15, 0.38);
  background: rgba(16, 16, 15, 0.07);
  justify-self: end;
}

.button-light {
  width: 100%;
  min-height: 4rem;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
}

.button-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.domain-card {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  background: rgba(241, 239, 232, 0.32);
  color: rgba(16, 16, 15, 0.9);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.6;
}

.domain-card span {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.domain-card small {
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.domain-card strong {
  font-size: clamp(1rem, 2vw, 1.3rem);
  overflow-wrap: anywhere;
}

.domain-card small {
  color: rgba(16, 16, 15, 0.68);
  text-transform: none;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0.25rem;
  gap: 1rem;
}

.contact-social a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(16, 16, 15, 0.48);
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-social a:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.source-note {
  display: grid;
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: 2.2rem 0 4.5rem;
  border-top: 1px solid var(--line-light);
  color: #aaa79e;
  font-family: var(--mono);
  font-size: 0.76rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.source-note p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  min-height: 10rem;
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 2rem;
  color: #b8b5ac;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wordmark-footer {
  width: max-content;
}

.site-footer p {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--paper);
  text-decoration-color: var(--accent);
  text-underline-offset: 0.25em;
}

.social-links a:hover {
  color: var(--accent-soft);
}

.not-found {
  display: grid;
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  min-height: calc(100svh - 5.25rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
  align-items: center;
}

.not-found > div {
  max-width: 58rem;
}

.not-found-code {
  margin: 0 0 -0.18em;
  color: rgba(255, 90, 31, 0.16);
  font-family: var(--display);
  font-size: clamp(7rem, 23vw, 20rem);
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.not-found h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.not-found p:not(.eyebrow, .not-found-code) {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: #cbc8bf;
  font-size: 1.12rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.48fr);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 6.2rem);
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section-heading-wide,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .story-bridge {
    min-height: 7rem;
    flex-direction: row;
  }

  .story-bridge i {
    width: min(28vw, 10rem);
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--paper));
  }

  .venture-row {
    grid-template-columns: 3.25rem 15rem minmax(0, 1fr);
  }

  .venture-number {
    grid-column: 1;
    grid-row: 1;
  }

  .venture-brand {
    grid-column: 2;
    grid-row: 1;
  }

  .venture-copy {
    grid-column: 3;
    grid-row: 1;
  }

  .venture-thumb {
    max-height: 23rem;
    grid-column: 2 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 7;
  }

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

  .contact-actions {
    max-width: 32rem;
  }

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

  .site-footer > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
  }

  .site-nav {
    display: grid;
    overflow: visible;
    grid-template-columns: max-content max-content;
    justify-content: start;
    column-gap: 1rem;
    row-gap: 0;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .nav-cta {
    padding: 0;
    border: 0;
    color: var(--accent-soft);
  }

  .hero {
    padding-top: 3.5rem;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    margin-bottom: 2rem;
    font-size: clamp(2.85rem, 12vw, 4.3rem);
    line-height: 0.88;
  }

  .hero-intro {
    font-size: 1.1rem;
    line-height: 1.68;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    gap: 0.9rem;
  }

  .hero-portrait {
    width: min(100%, 27rem);
    margin-top: 1rem;
    justify-self: start;
  }

  .hero-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    padding-right: 0.35rem;
    padding-left: 0.35rem;
  }

  .proof-item {
    min-height: 8rem;
    padding: 1.1rem;
  }

  .proof-item strong {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading h2,
  .contact h2 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .story-chapter {
    min-height: 0;
    padding: 2rem 1.4rem;
  }

  .story-kicker {
    margin-bottom: 3rem;
  }

  .story-chapter h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .story-thesis {
    font-size: 1.25rem;
  }

  .group-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .venture-row {
    padding: 1.25rem 0;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 1rem;
  }

  .venture-number {
    grid-column: 1;
    grid-row: 1;
  }

  .venture-brand {
    min-height: 6.4rem;
    grid-column: 2;
    grid-row: 1;
  }

  .logo-corbin {
    min-height: 8.5rem;
  }

  .venture-copy {
    padding-right: 0;
    grid-column: 2;
    grid-row: 2;
  }

  .venture-thumb {
    max-height: none;
    grid-column: 1 / -1;
    grid-row: 3;
    aspect-ratio: 16 / 9;
  }

  .venture-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .venture-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .venture-card-link[href] {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--line-light);
    text-decoration: none;
  }

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

  .principles-grid article {
    min-height: 13rem;
  }

  .principles-grid h3 {
    margin-top: 2.8rem;
  }

  .contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .contact-actions {
    padding: 1.25rem;
    justify-self: stretch;
  }

  .source-note,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > :last-child {
    grid-column: auto;
  }
}

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

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