:root {
  --bg: #111110;
  --bg2: #181716;
  --card: #1e1d1b;
  --hover: #252320;
  --gold: #c9a84c;
  --goldl: #dfc278;
  --paper: #f5f4f2;
  --w85: rgba(245, 244, 242, .9);
  --w70: rgba(245, 244, 242, .75);
  --w55: rgba(245, 244, 242, .55);
  --w40: rgba(245, 244, 242, .48);
  --rule: rgba(255, 255, 255, .08);
  --grule: rgba(201, 168, 76, .2);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--nav-h);
  overflow-x: hidden;
  background: var(--bg);
  color: var(--paper);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

p, li {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

h1, h2, h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  left: -999px;
  top: 10px;
  z-index: 1400;
  background: var(--gold);
  color: var(--bg);
  padding: .75rem 1rem;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 10px;
}

:focus-visible {
  outline: 2px solid var(--goldl);
  outline-offset: 3px;
}

/* Canonical navigation */
#main-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(17, 17, 16, .98);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  transition: background .15s, border-color .15s, box-shadow .15s;
}

#main-nav.scrolled {
  background: #111110;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .48);
}

.nav-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#main-nav .site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -16px;
  line-height: 0;
  opacity: 1;
  transition: opacity .3s;
}

#main-nav .site-logo:hover {
  opacity: .8;
}

#main-nav .site-logo img {
  display: block;
  width: auto;
  height: 56px;
}

#main-nav .nav-links {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

#main-nav .nav-links a {
  color: rgba(245, 244, 242, .6);
  font-family: "DM Mono", monospace;
  font-size: .7rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s;
}

#main-nav .nav-links a:hover,
#main-nav .nav-links a.active {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

#main-nav .nav-cta {
  min-height: 44px;
  padding: .65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg);
  font-family: "DM Mono", monospace;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s;
}

#main-nav .nav-cta:hover {
  background: var(--goldl);
}

.nav-ham {
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: transform .3s, opacity .3s;
}

/* Canonical full-screen mobile navigation */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
  background: var(--bg);
  -webkit-overflow-scrolling: touch;
}

.mob-nav.open {
  display: flex;
}

.mob-nav-hdr {
  height: 92px;
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: rgba(13, 14, 13, .98);
  border-bottom: 1px solid var(--rule);
}

.mob-logo {
  width: 180px;
  max-width: 58vw;
  height: 60px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  line-height: 0;
}

.mob-logo img {
  width: 180px;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.mob-close {
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
}

.mob-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.5;
}

.mob-links {
  flex: 1;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .03);
}

.mob-link {
  min-height: 62px;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  color: rgba(245, 244, 242, .82);
  font-family: "DM Mono", monospace;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
}

.mob-link:hover,
.mob-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, .035);
}

.mob-chev {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-top: 1.5px solid rgba(245, 244, 242, .3);
  border-right: 1.5px solid rgba(245, 244, 242, .3);
  transform: rotate(45deg);
}

.mob-ft {
  padding: 1.35rem 1.4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  border-top: 1px solid var(--rule);
}

.mob-util {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(245, 244, 242, .55);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mob-util:hover {
  color: var(--gold);
}

.mob-util svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mob-cta-link {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 44px;
  padding: .9rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg);
  font-family: "DM Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.mob-cta-link:hover {
  background: var(--goldl);
}

/* Terms index */
.hero {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(201, 168, 76, .035) 1px, transparent 1px),
    linear-gradient(rgba(201, 168, 76, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 60px 60px;
  border-bottom: 1px solid var(--rule);
}

.hero::after {
  content: "";
  position: absolute;
  right: -16rem;
  bottom: -24rem;
  width: 52rem;
  height: 52rem;
  border: 1px solid rgba(201, 168, 76, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgba(201, 168, 76, .018),
    0 0 0 15rem rgba(143, 168, 192, .016);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  box-sizing: content-box;
  width: min(980px, calc(100vw - 8.8rem));
  max-width: min(980px, calc(100vw - 8.8rem));
  margin: 0 auto 0 max(4.4rem, calc((100vw - 1360px) / 2 + 4.4rem));
  padding: 6.8rem 0 5.6rem;
}

.eyebrow,
.section-label,
.term-type {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .18em;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  flex-shrink: 0;
  background: var(--gold);
}

h1 {
  max-width: 940px;
  margin: 0 0 1.6rem;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 4.15vw, 4.35rem);
  font-weight: 300;
  line-height: 1.06;
}

h1 em {
  color: var(--gold);
  font-weight: 300;
}

.lede {
  max-width: 720px;
  margin: 0;
  color: var(--w70);
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.75rem;
  color: var(--w40);
  font-family: "DM Mono", monospace;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.intro {
  background: var(--bg2);
  border-bottom: 1px solid var(--rule);
}

.intro-inner,
.terms-section,
.closing {
  max-width: 1360px;
  margin: 0 auto;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
}

.intro-inner {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  align-items: start;
  gap: 5rem;
}

.intro h2,
.section-head h2,
.closing h2,
.cta h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p,
.section-intro,
.closing-copy {
  color: var(--w70);
  font-size: .96rem;
  line-height: 1.78;
}

.intro-copy p {
  margin: 0 0 .9rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy strong {
  color: var(--paper);
  font-weight: 600;
}

.term-nav {
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.25rem 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  background: rgba(17, 17, 16, .98);
  border-bottom: 1px solid var(--rule);
}

.term-nav a {
  min-height: 44px;
  padding: .7rem .85rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  color: var(--w55);
  font-family: "DM Mono", monospace;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s, background .2s;
}

.term-nav a:hover {
  background: rgba(201, 168, 76, .05);
  border-color: var(--gold);
  color: var(--goldl);
}

.terms-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: calc(var(--nav-h) + 5rem);
}

.terms-section:nth-of-type(even) {
  background: var(--bg2);
}

.section-head {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  align-items: start;
  gap: 5rem;
}

.section-label {
  padding-top: .65rem;
  color: var(--gold);
  font-size: .66rem;
  letter-spacing: .16em;
}

.section-intro {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--w55);
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.term-card {
  padding: 2.25rem;
  background: var(--card);
  scroll-margin-top: calc(var(--nav-h) + 6rem);
  transition: background .25s;
}

.term-card:hover {
  background: var(--hover);
}

.term-card--wide {
  grid-column: 1 / -1;
}

.term-type {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .14em;
}

.term-card h3 {
  margin: 0 0 .8rem;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.3;
}

.definition {
  max-width: 68ch;
  margin: 0;
  color: var(--w70);
  font-size: .94rem;
  line-height: 1.78;
}

.use-note {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--w55);
  font-size: .78rem;
  line-height: 1.65;
}

.use-note strong {
  color: var(--paper);
}

.boundary {
  max-width: none;
  padding-right: max(3.5rem, calc((100vw - 1360px) / 2 + 3.5rem));
  padding-left: max(3.5rem, calc((100vw - 1360px) / 2 + 3.5rem));
  background: #0d0d0c;
}

.boundary .term-card {
  background: rgba(255, 255, 255, .025);
}

.boundary .term-card:hover {
  background: rgba(201, 168, 76, .035);
}

.industry-sources {
  max-width: 880px;
  margin: 1.4rem 0 0;
  color: var(--w55);
  font-size: .76rem;
  line-height: 1.7;
}

.industry-sources a,
.source-links a {
  color: var(--goldl);
  border-bottom: 1px solid rgba(201, 168, 76, .35);
}

.industry-sources a:hover,
.source-links a:hover {
  color: var(--paper);
  border-color: var(--gold);
}

.closing {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 5rem;
  background: var(--bg2);
}

.closing-copy {
  max-width: 720px;
}

.closing-copy p {
  margin: 0 0 1rem;
}

.source-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}

.cta {
  padding: 6.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(90deg, rgba(201, 168, 76, .025) 1px, transparent 1px),
    linear-gradient(rgba(201, 168, 76, .025) 1px, transparent 1px),
    var(--bg);
  background-size: 60px 60px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-solid,
.btn-audit {
  min-height: 44px;
  padding: .9rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.btn-solid {
  background: var(--gold);
  color: var(--bg);
}

.btn-solid:hover {
  background: var(--goldl);
}

.btn-audit {
  border: 1px solid var(--gold);
  color: var(--goldl);
}

.btn-audit:hover {
  background: rgba(201, 168, 76, .06);
  color: var(--paper);
}

/* Canonical footer */
.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #111110;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer .ft-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 35.2px 56px 19.2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: start;
  gap: 48px;
}

.site-footer .ft-logo-link {
  margin-bottom: 12.8px;
  display: inline-block;
  line-height: 0;
  transition: opacity .25s;
}

.site-footer .ft-logo-link:hover {
  opacity: .75;
}

.site-footer .ft-logo-link img {
  width: auto;
  height: 32px;
}

.site-footer .ft-tag,
.site-footer .ft-entity,
.site-footer .ft-col-hd,
.site-footer .ft-links a,
.site-footer .ft-copy {
  font-family: "DM Mono", "Courier New", monospace;
}

.site-footer .ft-tag {
  margin: 0;
  color: rgba(245, 244, 242, .5);
  font-size: 9.6px;
  line-height: 1.55;
  letter-spacing: .768px;
  text-transform: uppercase;
}

.site-footer .ft-entity {
  max-width: 700px;
  margin: 0;
  color: rgba(245, 244, 242, .62);
  font-size: 9.6px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .576px;
}

.site-footer .ft-col-hd {
  margin: 0 0 8.8px;
  color: var(--gold);
  font-size: 9.28px;
  letter-spacing: 1.6704px;
  text-transform: uppercase;
}

.site-footer .ft-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer .ft-links a {
  padding: 2.4px 0;
  display: flex;
  align-items: center;
  gap: 6.4px;
  color: rgba(245, 244, 242, .5);
  font-size: 9.92px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .6944px;
  text-transform: uppercase;
  transition: color .2s;
}

.site-footer .ft-links a:hover {
  color: var(--gold);
}

.site-footer .ft-social-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 13px;
  color: currentColor;
}

.site-footer .ft-social-icon svg {
  width: 13px;
  height: 13px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .ft-social-icon--email {
  color: rgba(245, 244, 242, .55);
}

.site-footer .ft-social-icon--whatsapp {
  color: #25d366;
}

.site-footer .ft-social-icon--linkedin {
  color: #0a66c2;
}

.site-footer .ft-social-icon--x {
  color: var(--paper);
}

.site-footer .ft-social-icon--instagram {
  color: #e4405f;
}

.site-footer .ft-bottom {
  max-width: 1360px;
  margin: 4.8px auto 0;
  padding: 4.8px 56px 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.site-footer .ft-copy {
  margin: 0;
  color: #8fa8c0;
  font-size: 9.6px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .672px;
}

@media (max-width: 1100px) {
  .site-footer .ft-grid,
  .site-footer .ft-bottom {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 900px) {
  #main-nav .site-logo img {
    height: 44px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 5rem 1.4rem 4rem;
  }

  .intro-inner,
  .section-head,
  .closing {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-inner,
  .terms-section,
  .closing {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .intro-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .term-nav {
    padding: 1rem 1.4rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .term-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .terms-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .boundary {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .closing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cta {
    padding: 5rem 1.4rem;
  }

  .site-footer .ft-grid {
    padding: 24px 22.4px 16px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer .ft-bottom {
    padding: 4.8px 22.4px 12.8px;
  }

  .site-footer .ft-links {
    gap: 0;
  }

  .site-footer .ft-links a {
    min-height: 32px;
    padding: 2px 0;
  }

  .site-footer .ft-entity {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .term-grid {
    grid-template-columns: 1fr;
  }

  .term-card--wide {
    grid-column: auto;
  }

  .term-card {
    padding: 1.75rem 1.4rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-solid,
  .btn-audit {
    width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
    line-height: 1.08;
  }

  .intro h2,
  .section-head h2,
  .closing h2,
  .cta h2 {
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.12;
  }

  .hero-inner {
    padding: 4.25rem 1.2rem 3.5rem;
  }

  .intro-inner,
  .terms-section,
  .closing {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .term-nav {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .boundary {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .cta {
    padding: 4.5rem 1.2rem;
  }

  .mob-nav-hdr {
    height: 88px;
    padding: 0 1.2rem;
  }

  .mob-logo {
    width: 168px;
    height: 56px;
  }

  .mob-logo img {
    width: 168px;
    max-height: 56px;
  }

  .mob-link {
    min-height: 58px;
    padding: 1.05rem 1.2rem;
    font-size: .78rem;
  }

  .mob-ft {
    padding: 1.2rem 1.2rem 1.8rem;
  }

  .site-footer .ft-grid {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .site-footer .ft-bottom {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
