/* Nolaverse public website. Palette and type remain sourced from the shared brand. */
/* The cross-origin consent app keeps its own typography and document contents. */
html[data-consent-ui] {
  --consent-panel-width: min(380px, calc(100% - 32px));
  --consent-panel-height: min(420px, calc(100dvh - 92px));
  --consent-panel-bottom: max(16px, env(safe-area-inset-bottom, 0px));
}
html[data-consent-ui] #concurrence-cmp-frame-573 {
  position: fixed !important;
  inset: auto 16px var(--consent-panel-bottom) auto !important;
  width: var(--consent-panel-width) !important;
  height: var(--consent-panel-height) !important;
  max-height: var(--consent-panel-height) !important;
  transform: none !important;
  border: 1px solid var(--nv-border-gold) !important;
  border-top: 0 !important;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px #0006;
}
html[data-consent-ui][data-consent-dismissed="true"] #concurrence-cmp-frame-573,
html[data-consent-ui] #concurrence-cmp-account-status {
  display: none !important;
}
#consent-panel-controls,
#consent-panel-open {
  position: fixed;
  right: 16px;
  z-index: 2147483647;
  border: 1px solid var(--nv-border-gold);
  background: var(--nv-surface);
  color: var(--nv-white);
  font: 500 14px/1.4 var(--nv-font);
}
#consent-panel-controls {
  bottom: calc(var(--consent-panel-bottom) + var(--consent-panel-height));
  width: var(--consent-panel-width);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 14px;
  border-radius: 12px 12px 0 0;
}
#consent-panel-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0 12px 0 0;
  color: var(--nv-white);
  background: transparent;
  font-size: 26px;
}
#consent-panel-open {
  bottom: var(--consent-panel-bottom);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 20px #0004;
}
#consent-panel-controls[hidden],
#consent-panel-open[hidden] {
  display: none;
}
#consent-panel-controls button:focus-visible,
#consent-panel-open:focus-visible {
  outline: 2px solid var(--nv-gold);
  outline-offset: -4px;
}
:root {
  --ink: var(--nv-bg);
  --ink-soft: var(--nv-surface);
  --brand-deep: var(--nv-surface);
  --brand-field: var(--nv-raised);
  --brand-rich: color-mix(in srgb, var(--nv-plum) 46%, var(--nv-black));
  --violet: var(--nv-violet);
  --violet-light: color-mix(in srgb, var(--nv-violet) 60%, var(--nv-white));
  --text: var(--nv-white);
  --muted: var(--nv-muted);
  --gold: var(--nv-gold);
  --gold-light: var(--nv-gold-light);
  --line: color-mix(in srgb, var(--nv-violet) 35%, transparent);
  --subtle-line: color-mix(in srgb, var(--nv-violet) 18%, transparent);
  --gutter: clamp(24px, 5vw, 88px);
  --max-width: 1280px;
  --section-space: clamp(76px, 8vw, 120px);
  --duration-fast: var(--nv-dur-fast);
  --duration-normal: var(--nv-dur-normal);
  --ease: var(--nv-ease);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--nv-font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(56px, 6.8vw, 98px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
h1 em,
h2 em {
  font-style: normal;
  font-weight: inherit;
}
p {
  line-height: 1.8;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}
::selection {
  background: var(--gold-light);
  color: var(--ink);
}
.wrap {
  width: min(var(--max-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.section-dark {
  color: var(--text);
  background: var(--ink);
}
.section-brand {
  color: var(--text);
  background: var(--brand-field);
}
.eyebrow {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h2 + p {
  margin-top: 26px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-top: 18px;
}
.section-heading > p {
  max-width: 480px;
  color: var(--muted);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: var(--nv-radius-small);
  font-size: 14px;
  font-weight: 500;
  transition:
    background var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease);
}
.button-gold {
  background: var(--gold-light);
  color: var(--nv-black);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--nv-white) 26%, transparent) inset;
}
.button-gold:hover {
  background: var(--text);
}
.button-outline {
  border-color: var(--line);
  background: color-mix(in srgb, var(--nv-violet) 8%, transparent);
}
.button-outline:hover {
  border-color: var(--gold-light);
}
.button span {
  font-size: 20px;
  font-weight: 400;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 46px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  transition:
    color var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease);
}
.text-link span {
  font-size: 23px;
  font-weight: 400;
}
.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--gold-light);
  color: var(--ink);
  padding: 14px 20px;
}
.skip-link:focus {
  top: 16px;
}
/* Near-black source surfaces match the dashboard and investor room. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 20px var(--gutter);
  background: linear-gradient(
    110deg,
    var(--ink),
    var(--ink-soft) 65%,
    var(--ink)
  );
  border-bottom: 1px solid var(--nv-border-gold);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--nv-black) 14%, transparent);
}
.site-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 4px;
  color: var(--text);
}
.site-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.site-endorsement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}
.site-endorsement img {
  display: block;
  width: 105px;
  height: auto;
}
.wordmark {
  flex-shrink: 0;
  display: block;
  width: 210px;
}
.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--muted);
}
.site-header nav a:hover {
  color: var(--violet-light);
}
.menu-toggle {
  display: none;
}
/* Louisiana leads a transparent, future-facing state directory. */
.state-menu {
  position: relative;
}
.state-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.state-menu > summary:hover,
.state-menu[open] > summary {
  color: var(--gold-light);
}
.state-chevron {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--duration-fast) var(--ease);
}
.state-menu[open] .state-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.state-dropdown {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: 320px;
  border: 1px solid var(--nv-border-gold);
  border-radius: var(--nv-radius-small);
  background: var(--ink-soft);
  box-shadow: 0 16px 44px color-mix(in srgb, var(--nv-black) 50%, transparent);
}
.state-intro {
  padding: 22px 22px 17px;
  border-bottom: 1px solid var(--line);
}
.state-intro > p + p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 8px;
}
.state-list {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
  max-height: min(340px, 48dvh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--gold) var(--ink-soft);
}
.state-list li {
  margin: 0;
}
.site-header nav .state-current,
.state-future {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.site-header nav .state-current {
  min-height: 46px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.state-current:hover {
  background: var(--brand-field);
}
.state-list small {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.state-current small {
  color: var(--gold-light);
}
.state-future {
  color: var(--muted);
  cursor: default;
}
@media (max-width: 700px) {
  .site-header:has(.state-menu[open]) {
    max-height: 100dvh;
    overflow-y: auto;
  }
  .state-menu {
    width: 100%;
  }
  .state-menu > summary {
    width: 100%;
    min-height: 47px;
    font-size: 16px;
    justify-content: space-between;
  }
  .state-dropdown {
    position: static;
    width: 100%;
    margin-block: 4px 12px;
    box-shadow: none;
  }
  .state-intro {
    padding: 16px;
  }
  .state-list {
    max-height: min(220px, 27dvh);
  }
}
/* Place footage emerges from black, with restrained plum depth below. */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 710px;
  height: min(860px, calc(100svh - 96px));
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    125deg,
    var(--ink),
    var(--brand-field) 56%,
    var(--ink)
  );
}
.hero-photo,
.hero-video {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  mask-image: linear-gradient(90deg, transparent, var(--nv-black) 35%);
}
.hero-video {
  opacity: 0;
  pointer-events: none;
}
.hero-video.has-frame {
  opacity: 1;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--ink) 92%, transparent),
      color-mix(in srgb, var(--ink) 78%, transparent) 35%,
      color-mix(in srgb, var(--ink) 35%, transparent) 90%
    ),
    linear-gradient(0deg, var(--brand-deep), transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding-block: clamp(70px, 9vh, 115px) 64px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 10px;
}
.gold-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  max-width: 930px;
  font-size: clamp(56px, 6.2vw, 90px);
  margin-top: 32px;
}
.hero h1 em {
  color: var(--gold-light);
}
.hero-copy {
  max-width: 500px;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.hero-actions .text-link {
  border-color: var(--line);
}
.hero-bottom {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: auto;
  padding-block: 22px 28px;
  border-top: 1px solid var(--nv-border-gold);
  font-size: 11px;
  line-height: 1.7;
}
.hero-bottom strong {
  font-weight: 400;
  color: var(--muted);
}
.scroll-note {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  min-height: 44px;
}
.scroll-note span {
  font-size: 24px;
}
.hero-media-details {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: right;
}
.place-note {
  font-size: 9px;
  letter-spacing: 0.05em;
}
.place-note small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}
.hero-motion-toggle {
  min-height: 44px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 11px;
}
.hero-motion-toggle:hover {
  border-color: var(--gold-light);
}
/* Business introduction and markets. */
.intro {
  padding-block: var(--section-space);
  background: linear-gradient(180deg, var(--brand-deep), var(--ink));
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
}
.intro h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  margin-top: 22px;
}
.intro-copy {
  padding-top: 32px;
}
.intro-copy .large-copy {
  font-size: 23px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 18px;
}
.intro-copy > p {
  color: var(--muted);
}
.intro-copy .text-link {
  margin-top: 20px;
}
.asset-horizon {
  padding-block: 10px var(--section-space);
  background: var(--ink);
}
.asset-horizon .section-heading {
  border-top: 1px solid var(--line);
  padding-top: 58px;
}
.asset-horizon h2 {
  font-size: clamp(34px, 3.3vw, 46px);
}
.asset-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.asset-category-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 27px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(
    145deg,
    rgba(45, 19, 72, 0.7),
    rgba(16, 10, 26, 0.9)
  );
}
.asset-card-featured {
  border-color: color-mix(in srgb, var(--gold) 58%, var(--line));
  background: linear-gradient(
    145deg,
    rgba(76, 48, 27, 0.55),
    rgba(40, 18, 62, 0.9)
  );
}
.market-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border: 1px solid var(--violet-light);
  border-radius: 50%;
  font-size: 11px;
  color: var(--gold-light);
}
.asset-category-grid h3 {
  font-size: clamp(23px, 2.4vw, 32px);
  margin-bottom: 12px;
}
.asset-category-grid p {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
}
.launch-note {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.horizon-note {
  margin-top: 24px;
  max-width: 750px;
  font-size: 13px;
  color: var(--muted);
}
/* The asset journey: one connected path, with space for each stage. */
.approach {
  padding-block: var(--section-space);
  background: linear-gradient(130deg, var(--ink), var(--brand-field));
}
summary {
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.platform-roles details[open] summary b {
  transform: rotate(45deg);
}
.journey-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.journey-tabs button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 108px;
  padding: 20px 18px 24px;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  text-align: left;
  font-size: clamp(14px, 1.4vw, 19px);
  color: var(--muted);
  transition:
    color var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease);
}
.journey-tab-number {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.journey-tabs button:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--nv-white) 3%, transparent);
}
.journey-tabs button[aria-selected="true"] {
  color: var(--text);
  border-bottom-color: var(--gold-light);
  background: linear-gradient(
    0deg,
    color-mix(in srgb, var(--gold) 10%, transparent),
    transparent
  );
}
.journey-tabs button[aria-selected="true"] .journey-tab-number {
  color: var(--gold-light);
}
.journey-stage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.journey-stage {
  padding-block: 28px;
}
.journey-stage + .journey-stage {
  border-top: 1px solid var(--line);
}
.journey.is-enhanced .journey-stage {
  border-top: 0;
}
.journey-stage-count {
  display: flex;
  gap: 14px;
  align-items: center;
}
.journey-stage-count span {
  color: var(--muted);
}
.journey-stage h3 {
  margin: 22px 0 24px;
  font-size: clamp(44px, 4.4vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.journey-description {
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}
.journey-next {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 48px;
  padding: 12px 0;
  margin-top: 30px;
  border: 0;
  border-bottom: 1px solid var(--nv-border-gold);
  background: transparent;
  font-size: 14px;
  color: var(--gold-light);
}
.journey-next span {
  font-size: 20px;
  transition: transform var(--duration-fast) var(--ease);
}
.journey-next:hover span {
  transform: translate(3px, -3px);
}
.journey-place img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--nv-radius-small);
}
.journey-place figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  padding-top: 16px;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .token-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
  .journey-tabs button {
    padding-inline: 10px;
  }
  .journey-stage-layout {
    gap: 32px;
  }
  .journey-description {
    font-size: 16px;
  }
  .journey-place img {
    height: 410px;
  }
  .journey-place figcaption {
    flex-direction: column;
    gap: 3px;
  }
}
@media (max-width: 700px) {
  .journey-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
    border-bottom: 0;
  }
  .journey-tabs button {
    min-height: 86px;
    padding: 14px 8px;
    gap: 9px;
    border-bottom-color: var(--line);
    font-size: 14px;
  }
  .journey-stage-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .journey-stage {
    padding-block: 18px;
  }
  .journey-stage h3 {
    margin-block: 18px 20px;
  }
  .journey-next {
    margin-top: 22px;
  }
  .journey-place img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .journey-place figcaption {
    flex-direction: row;
    font-size: 10px;
    gap: 18px;
  }
}
/* Real dashboard screens have their own usable, accessible navigation. */
.continuity {
  padding-block: var(--section-space);
  background: linear-gradient(160deg, var(--brand-deep), var(--ink) 75%);
}
.workspace-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.workspace-intro h2 {
  font-size: clamp(34px, 3.5vw, 50px);
  margin-top: 20px;
}
.workspace-intro h2 em {
  color: var(--gold-light);
}
.workspace-purpose p {
  color: var(--muted);
  font-size: 15px;
}
.workspace-purpose .workspace-disclosure {
  margin-top: 16px;
  font-size: 12px;
}
.workspace-tabs {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}
.workspace-tabs button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 18px 0;
  min-height: 56px;
  text-align: left;
  font-size: 15px;
  color: var(--muted);
}
.workspace-tabs button span {
  display: none;
}
.workspace-tabs button[aria-selected="true"] {
  border-bottom-color: var(--violet);
  color: var(--violet-light);
}
.workspace-tabs button:hover {
  color: var(--text);
}
.workspace-caption {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: end;
  padding: 30px 0 26px;
}
.workspace-caption > div {
  max-width: 810px;
}
.workspace-caption .eyebrow {
  display: none;
}
.workspace-caption h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.workspace-caption p {
  color: var(--muted);
  font-size: 15px;
}
.workspace-caption > a {
  flex-shrink: 0;
  font-size: 12px;
}
.workspace-screen {
  overflow: hidden;
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius-small);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--nv-black) 25%, transparent);
}
.workspace-screen figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--brand-field);
  border-bottom: 1px solid var(--subtle-line);
}
.workspace-screen a,
.workspace-screen img {
  display: block;
  width: 100%;
}
.workspace-screen img {
  height: auto;
}
.workspace-screen a:focus-visible {
  outline-offset: -5px;
}
.workspace-outlook {
  margin-top: 22px;
  max-width: 960px;
}
.workspace-outlook p {
  color: var(--muted);
  font-size: 12px;
}
.workspace-outlook strong {
  color: var(--text);
  font-weight: 500;
}
/* Original partner screen and a clear division of responsibilities. */
.platform {
  padding-block: var(--section-space);
  overflow: clip;
  border-top: 1px solid var(--subtle-line);
  background: linear-gradient(120deg, var(--brand-field), var(--ink));
}
.platform-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 62px;
}
.platform-partners > img {
  width: 220px;
  height: auto;
}
.platform-partners > span {
  color: var(--muted);
  font-size: 25px;
  font-weight: 300;
}
.platform-partners a {
  display: block;
  max-width: 220px;
  min-height: 44px;
}
.platform-partners a img {
  display: block;
  width: 100%;
  height: auto;
}
.platform-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.platform-phone {
  margin-inline: auto;
  max-width: 300px;
  position: relative;
}
.platform-phone::before {
  content: "";
  position: absolute;
  inset: 12% -20% 4%;
  background: radial-gradient(
    ellipse,
    color-mix(in srgb, var(--nv-violet) 12%, transparent),
    transparent 70%
  );
  pointer-events: none;
}
.platform-phone-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--nv-border-gold);
  border-radius: 32px;
  padding: 7px;
  background: var(--ink);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--nv-black) 28%, transparent);
}
.platform-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.platform-phone figcaption {
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
  font-size: 11px;
}
.platform-signup {
  display: flex;
  margin-top: 14px;
  color: var(--text);
  text-align: left;
}
.platform h2 {
  margin-top: 18px;
  font-size: clamp(34px, 3.4vw, 48px);
}
.platform-lead {
  margin-top: 24px;
  color: var(--muted);
}
.platform-roles {
  margin: 30px 0 20px;
}
.platform-roles details {
  border-top: 1px solid var(--line);
}
.platform-roles details:last-child {
  border-bottom: 1px solid var(--line);
}
.platform-roles summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  list-style: none;
  padding-block: 18px;
}
.platform-roles summary h3 {
  font-size: 19px;
  line-height: 1.5;
}
.platform-roles summary h3 span {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  margin-bottom: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platform-roles summary b {
  align-self: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
}
.platform-roles p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}
/* Place, people and their different entry points. */
.louisiana {
  padding-block: var(--section-space);
  background: linear-gradient(140deg, var(--ink), var(--brand-deep));
}
.louisiana-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}
.louisiana-photo {
  position: relative;
}
.louisiana-photo img {
  display: block;
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--nv-radius-small);
  border: 1px solid var(--nv-border-gold);
}
.louisiana-photo > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  padding-top: 15px;
  letter-spacing: 0.06em;
}
.louisiana-content h2 {
  margin-top: 20px;
}
.louisiana-content .large-copy {
  font-size: 22px;
  line-height: 1.5;
  margin-block: 28px 20px;
}
.louisiana-content > p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
}
.louisiana-content .place-detail {
  padding-top: 20px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.louisiana-content .text-link {
  margin-top: 20px;
}
.partners {
  padding-block: 30px var(--section-space);
  background: var(--brand-deep);
}
.partner-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.partner-number {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.partner-story h3 {
  margin: 22px 0 24px;
  font-size: clamp(36px, 3.6vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.partner-path {
  padding: 30px clamp(24px, 3vw, 40px) 18px;
  border: 1px solid var(--nv-border-gold);
  border-radius: var(--nv-radius-small);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--gold) 6%, transparent),
    transparent
  );
}
.partner-path ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: partner-step;
}
.partner-path li {
  counter-increment: partner-step;
  padding-block: 16px;
  border-bottom: 1px solid var(--subtle-line);
  color: var(--muted);
  font-size: 15px;
}
.partner-path li::before {
  content: "0" counter(partner-step);
  color: var(--gold-light);
  margin-right: 22px;
  font-size: 11px;
}
/* Supporting context is lighter and compact. */
.tokenization {
  padding-block: var(--section-space);
  background: linear-gradient(140deg, var(--brand-field), var(--ink));
}
.token-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.token-figure {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.token-figure svg {
  display: block;
  width: clamp(56px, 5vw, 72px);
  height: auto;
  aspect-ratio: 1;
  stroke: var(--gold-light);
  stroke-width: 2.4;
}
.token-figure .fig-accent {
  stroke: var(--gold);
}
.token-figure .fig-check {
  stroke: var(--violet-light);
}
.token-steps.is-visible .token-figure svg :is(path, line, circle) {
  stroke-dasharray: 1;
  animation: fig-draw 0.9s var(--ease) both;
}
.token-steps.is-visible
  li:nth-child(1)
  .token-figure
  svg
  :is(path, line, circle) {
  animation-delay: 0.05s;
}
.token-steps.is-visible
  li:nth-child(2)
  .token-figure
  svg
  :is(path, line, circle) {
  animation-delay: 0.25s;
}
.token-steps.is-visible
  li:nth-child(3)
  .token-figure
  svg
  :is(path, line, circle) {
  animation-delay: 0.45s;
}
.token-steps.is-visible
  li:nth-child(4)
  .token-figure
  svg
  :is(path, line, circle) {
  animation-delay: 0.65s;
}
.token-steps.is-visible .fig-cube:nth-of-type(2) path {
  animation-delay: 0.62s;
}
.token-steps.is-visible .fig-cube:nth-of-type(3) path {
  animation-delay: 0.78s;
}
@keyframes fig-draw {
  from {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
.step-number {
  display: block;
  color: var(--violet-light);
  font-size: 12px;
  margin-bottom: 14px;
}
.token-steps h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.token-steps p {
  color: var(--muted);
  font-size: 15px;
}
.token-example {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-top: 56px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 40px);
  border: 1px solid var(--nv-border-gold);
  border-radius: var(--nv-radius-small);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--gold) 6%, transparent),
    transparent
  );
}
.token-example h3 {
  margin-top: 18px;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.token-example-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.token-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--subtle-line);
  font-size: 13px;
}
.people {
  padding-block: var(--section-space);
}
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 68px;
}
.founders article {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 24px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.founder-portrait {
  display: block;
  width: 94px;
  height: 110px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: var(--nv-radius-small);
}
.founder-portrait-lower {
  object-position: center 4%;
}
.founders .eyebrow {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.07em;
}
.founders h3 {
  font-size: 23px;
  margin: 8px 0 12px;
}
.founders p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.questions {
  padding-block: var(--section-space);
  background: var(--ink);
}
.question-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}
.questions h2 {
  margin-top: 20px;
  font-size: clamp(34px, 3.5vw, 48px);
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-label {
  margin-bottom: 18px;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  padding-block: 24px;
  font-size: 17px;
  line-height: 1.5;
}
.faq-list summary > span {
  font-size: 23px;
  font-weight: 300;
  color: var(--muted);
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list p {
  margin: 0 30px 24px 0;
  color: var(--muted);
  font-size: 15px;
}
.faq-list a {
  color: var(--gold-light);
  text-decoration: underline;
}
.site-footer {
  padding-block: 0 28px;
  background: linear-gradient(160deg, var(--brand-field), var(--ink));
}
.inception-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}
.inception-strip p {
  font-size: 13px;
  color: var(--muted);
}
.inception-strip a {
  max-width: 360px;
}
.inception-strip img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 60px;
  padding-block: 50px;
}
.footer-top > p {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
.footer-top nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
}
.footer-top nav a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}
.quiet-button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  min-height: 44px;
  font-size: 12px;
}
.quiet-button:hover {
  color: var(--text);
}
dialog {
  width: min(680px, calc(100% - 32px));
  max-height: 85svh;
  overflow-y: auto;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: var(--nv-radius);
  padding: 46px;
  color: var(--text);
  background: var(--nv-raised);
}
dialog::backdrop {
  background: color-mix(in srgb, var(--ink) 80%, transparent);
}
dialog h2 {
  font-size: 36px;
  margin-block: 18px 26px;
}
dialog h3 {
  font-size: 23px;
  margin-top: 26px;
}
dialog p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
}
dialog a {
  color: var(--gold-light);
  text-decoration: underline;
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 30px;
  font-weight: 300;
}
.error-page {
  padding-block: 15vh;
}
.error-page h1 {
  margin-block: 24px;
}
.error-page .button {
  margin-top: 28px;
}
/* Responsive composition; no page-level horizontal scrolling. */
@media (min-width: 1700px) {
  .hero-content {
    padding-top: 105px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    gap: 20px;
  }
  .wordmark {
    width: 170px;
  }
  .site-header nav {
    gap: 18px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .section-heading,
  .intro-grid,
  .workspace-intro,
  .platform-layout,
  .louisiana-layout,
  .partner-stage,
  .question-grid {
    gap: 45px;
  }
  .hero-media-details {
    gap: 16px;
  }
  .founders {
    column-gap: 40px;
  }
}
@media (max-width: 950px) {
  .site-header {
    min-height: 86px;
  }
  .site-header nav {
    gap: 15px;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .site-name {
    font-size: 20px;
  }
  .site-endorsement img {
    width: 95px;
  }
  .hero {
    min-height: 700px;
  }
  .hero h1 {
    font-size: clamp(56px, 7.2vw, 78px);
  }
  .hero-copy {
    max-width: 450px;
  }
  .hero-bottom .scroll-note {
    display: none;
  }
  .section-heading {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .intro-grid,
  .workspace-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .intro-copy {
    max-width: 620px;
    padding-top: 0;
  }
  .intro h2 br {
    display: none;
  }
  .workspace-purpose {
    max-width: 750px;
  }
  .asset-category-grid article {
    min-height: 205px;
    padding: 23px;
  }
  .asset-category-grid p {
    font-size: 14px;
  }
  .workspace-caption {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
  .platform-layout {
    gap: 42px;
  }
  .platform-phone {
    max-width: 255px;
  }
  .platform h2 {
    font-size: 35px;
  }
  .louisiana-layout {
    gap: 38px;
  }
  .louisiana-photo img {
    height: 570px;
  }
  .token-steps {
    gap: 24px;
  }
  .token-figure {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .token-steps h3 {
    font-size: 21px;
  }
  .founders {
    grid-template-columns: 1fr;
  }
  .founders article {
    grid-template-columns: 105px 1fr;
    gap: 30px;
  }
  .founder-portrait {
    width: 105px;
    height: 115px;
  }
  .founders p:not(.eyebrow) {
    max-width: 550px;
  }
  .question-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
  }
  .inception-strip {
    gap: 40px;
  }
  .inception-strip a {
    max-width: 280px;
  }
  .footer-top {
    grid-template-columns: 1fr 1.1fr;
    gap: 35px;
  }
  .footer-top > p {
    display: none;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 94px;
  }
  .asset-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .site-header {
    min-height: 80px;
    padding-block: 15px;
    flex-wrap: wrap;
    gap: 0;
  }
  .site-name {
    font-size: 18px;
  }
  .site-endorsement img {
    width: 92px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--text);
    transition: transform var(--duration-fast) var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .site-header nav {
    display: none;
    flex: 1 0 100%;
    margin: 15px 0 0;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav a {
    min-height: 47px;
    font-size: 16px;
  }
  .hero {
    min-height: 745px;
    height: auto;
  }
  .hero-photo,
  .hero-video {
    width: 100%;
    object-position: 61% center;
    mask-image: linear-gradient(180deg, transparent, var(--nv-black) 30%);
  }
  .hero-shade {
    background:
      linear-gradient(
        180deg,
        var(--ink),
        color-mix(in srgb, var(--ink) 73%, transparent) 55%,
        var(--brand-deep)
      ),
      linear-gradient(
        90deg,
        color-mix(in srgb, var(--brand-deep) 40%, transparent),
        transparent
      );
  }
  .hero-content {
    padding-top: 66px;
    padding-bottom: 44px;
  }
  .hero h1 {
    font-size: clamp(48px, 10.6vw, 70px);
    margin-top: 28px;
    max-width: 610px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    gap: 10px;
  }
  .gold-line {
    width: 18px;
  }
  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
    max-width: 410px;
  }
  .hero-actions {
    gap: 16px;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 14px 18px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 22px;
  }
  .hero-bottom {
    align-items: end;
    gap: 20px;
    font-size: 10px;
    padding-bottom: 24px;
  }
  .hero-media-details {
    flex-direction: column;
    align-items: end;
    gap: 12px;
  }
  .hero-bottom .place-note {
    max-width: 180px;
    font-size: 8px;
  }
  .place-note small {
    display: none;
  }
  .hero-motion-toggle {
    font-size: 10px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 560px;
  }
  .section-heading h2 {
    margin-top: 15px;
  }
  .intro-grid {
    gap: 25px;
  }
  .intro-copy .large-copy {
    font-size: 21px;
  }
  .intro-copy > p {
    font-size: 15px;
  }
  .asset-horizon .section-heading {
    padding-top: 40px;
  }
  .asset-category-grid article {
    min-height: 190px;
    padding: 21px;
  }
  .market-number {
    padding-top: 4px;
  }
  .asset-category-grid h3 {
    font-size: 26px;
  }
  .asset-category-grid p {
    font-size: 15px;
  }
  .horizon-note {
    font-size: 12px;
  }
  .workspace-intro {
    margin-bottom: 25px;
  }
  .workspace-intro h2 {
    font-size: 35px;
  }
  .workspace-tabs {
    gap: 22px;
  }
  .workspace-tabs button {
    flex: 1;
    font-size: 12px;
    line-height: 1.6;
    padding-block: 16px;
  }
  .workspace-caption h3 {
    font-size: 24px;
  }
  .workspace-caption p {
    font-size: 14px;
  }
  .workspace-screen figcaption {
    font-size: 8px;
    padding: 10px 12px;
    letter-spacing: 0.025em;
    gap: 16px;
  }
  .workspace-screen figcaption span:first-child {
    max-width: 55%;
  }
  .workspace-screen figcaption span:last-child {
    text-align: right;
  }
  .workspace-outlook p {
    font-size: 12px;
  }
  .platform-partners {
    justify-content: start;
    gap: 22px;
    margin-bottom: 42px;
  }
  .platform-partners > img {
    width: 43%;
  }
  .platform-partners a {
    max-width: 38%;
    display: flex;
    align-items: center;
  }
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .platform-story {
    grid-row: 1;
  }
  .platform h2 {
    font-size: 36px;
  }
  .platform-lead {
    font-size: 15px;
  }
  .platform-phone {
    max-width: 250px;
  }
  .louisiana-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .louisiana-photo img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .louisiana-content .large-copy {
    font-size: 21px;
  }
  .louisiana-content > p:not(.eyebrow):not(.large-copy) {
    font-size: 15px;
  }
  .partner-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .partner-story h3 {
    margin-block: 18px 20px;
    font-size: 32px;
  }
  .partner-path {
    padding: 22px 20px 12px;
  }
  .partner-path ol {
    margin-top: 10px;
  }
  .token-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .token-steps li {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 4px 22px;
  }
  .token-figure {
    grid-row: span 3;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }
  .token-figure svg {
    width: 62px;
  }
  .step-number {
    margin-bottom: 6px;
  }
  .step-number {
    grid-row: span 2;
    padding-top: 4px;
    margin: 0;
  }
  .token-steps h3 {
    font-size: 23px;
    margin: 0;
  }
  .token-steps p {
    grid-column: 2;
  }
  .token-example {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
    padding: 24px 20px;
  }
  .token-example h3 {
    margin-top: 12px;
  }
  .token-example-body p {
    font-size: 15px;
  }
  .token-note {
    font-size: 12px;
  }
  .founders article {
    grid-template-columns: 76px 1fr;
    gap: 20px;
    padding-block: 25px;
  }
  .founder-portrait {
    width: 76px;
    height: 94px;
  }
  .founders h3 {
    font-size: 22px;
  }
  .founders .eyebrow {
    font-size: 8px;
  }
  .founders p:not(.eyebrow) {
    font-size: 14px;
  }
  .question-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq-list summary {
    font-size: 16px;
    gap: 24px;
    padding-block: 21px;
  }
  .faq-list p {
    margin-right: 0;
    font-size: 14px;
  }
  .inception-strip {
    align-items: start;
    flex-direction: column;
    gap: 26px;
    padding-block: 36px;
  }
  .inception-strip a {
    max-width: 290px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 36px;
  }
  .footer-top .wordmark {
    width: 180px;
  }
  .footer-top nav {
    gap: 0 20px;
  }
  .footer-bottom {
    align-items: start;
    gap: 30px;
  }
  .quiet-button {
    text-align: right;
    font-size: 11px;
  }
  dialog {
    padding: 40px 24px 30px;
  }
  dialog h2 {
    font-size: 30px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 45px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
  }
  .hero-bottom > span {
    max-width: 115px;
  }
  .workspace-tabs {
    gap: 16px;
  }
  .workspace-tabs button {
    font-size: 11px;
  }
  .founders article {
    grid-template-columns: 64px 1fr;
    gap: 17px;
  }
  .founder-portrait {
    width: 64px;
    height: 86px;
  }
  .founders h3 {
    font-size: 20px;
  }
  .partner-tabs {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Platform Terms of Use page */
.legal-body {
  background: var(--ink);
}
.legal-page {
  padding-block: clamp(48px, 6vw, 96px) var(--section-space);
}
.legal-head {
  max-width: 760px;
  padding-bottom: 34px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.legal-head h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.legal-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}
.legal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px 32px;
  margin: 34px 0;
}
.legal-meta dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 7px;
}
.legal-meta dd {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.legal-copy {
  max-width: 760px;
}
.legal-copy h2 {
  margin: 56px 0 18px;
  padding-top: 26px;
  border-top: 1px solid var(--subtle-line);
  font-size: clamp(24px, 2.4vw, 31px);
  letter-spacing: -0.03em;
}
.legal-copy h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-copy h3 {
  margin: 34px 0 14px;
  font-size: 17px;
  color: var(--gold-light);
}
.legal-copy p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.legal-copy ul {
  margin: 0 0 22px;
  padding-left: 22px;
}
.legal-copy li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.legal-foot {
  max-width: 760px;
  margin-top: 60px;
  padding: 30px clamp(22px, 3vw, 36px);
  border: 1px solid var(--nv-border-gold);
  border-radius: var(--nv-radius-small);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--gold) 6%, transparent),
    transparent
  );
}
.legal-foot h2 {
  font-size: 21px;
  margin-bottom: 12px;
}
.legal-foot p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--subtle-line);
  font-size: 12.5px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .legal-copy h2 {
    margin-top: 40px;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
