


@font-face {
  font-family: 'Licensed';
  src: url('assets/Licensed-Regular.ttf') format('truetype');
  font-weight: 60 150;
  font-stretch: 80% 100%;
  font-style: normal;
}


:root {
  --font-licensed: 'Licensed';
  --black: #000000;
  --white: #ffffff;
  --red: #EE1111;
  --rule: 1px solid #000000;
  --wordmark-w: 76px;

  --space-2: 2px;
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-120: 120px;

  --type-licensed-caption: 9px;
  --type-licensed-body: 13px;
  --type-licensed-display: 32px;
  --type-mono-caption: 9px;
  --type-mono-ui: 11px;
  --type-mono-body: 13px;
}


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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-licensed);
  font-variation-settings: 'wght' 60, 'wdth' 80;
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  text-decoration: underline;
}

img, svg {
  display: block;
}

button {
  font-family: var(--font-licensed);
  border: none;
  background: none;
  padding: 0;
}

input, textarea {
  font-family: var(--font-licensed);
}



.label-caps {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
}

.label-sm {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}

.label-md {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-32);
  height: 52px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  text-decoration: none;
}

.header-logo-mark {
  width: 28px;
  height: 28px;
}

.header-logo-name {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.header-right {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
  color: var(--black);
}


.site-footer {
  border-top: var(--rule);
  padding: var(--space-16) var(--space-32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.site-footer .footer-copy {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}


.page-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
}


body#login {
  overflow: hidden;
}


.login-copyright-block {
  position: fixed;
  top: var(--space-32);
  right: var(--space-32);
  text-align: right;
  font-size: 9px;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--black);
  z-index: 10;
}


.login-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--space-24);
  padding: var(--space-48) var(--space-32);
}


.login-gate {
  width: min(318px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8);
  background: var(--white);
  border: var(--rule);
  box-shadow: 10px 10px 0 var(--black);
}

.login-gate-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-12);
  background: var(--black);
  color: var(--white);
  border: var(--rule);
  border-bottom: none;
}

.login-gate-kicker,
.login-gate-copy,
.login-gate-status {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
}

.login-gate-kicker {
  opacity: 0.7;
}

.login-gate-copy {
  line-height: 1.35;
}

.login-gate-launch {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-12);
  border: var(--rule);
  background: var(--white);
}

.login-gate-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 296px;
  border: var(--rule);
  background: var(--white);
  overflow: hidden;
}

.login-gate-challenge {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

body.login-gate-open .login-gate-challenge {
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
}

body.login-gate-open .login-gate-launch[hidden] {
  display: grid;
}

.login-gate-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.login-gate-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08));
  pointer-events: none;
}

.login-gate-tile {
  position: relative;
  border-right: 1px solid rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(0,0,0,0.72);
  background: transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
  outline: none;
  z-index: 1;
}

.login-gate-tile:nth-child(4n) {
  border-right: none;
}

.login-gate-tile:nth-last-child(-n + 4) {
  border-bottom: none;
}

.login-gate-tile:hover {
  background: rgba(0,0,0,0.05);
}

.login-gate-tile.is-selected {
  outline: 2px solid var(--black);
  outline-offset: -2px;
}

.login-gate-tile.is-wrong {
  background-color: var(--red);
  box-shadow: inset 0 0 0 2px var(--red);
}

.login-gate-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-8);
  border-top: var(--rule);
  padding: var(--space-8) var(--space-4) var(--space-4);
}

.login-gate-launch-brand {
  font-family: monospace;
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9a9a9a;
  justify-self: end;
}

.login-gate-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #8a8a8a;
  background: var(--white);
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.login-gate-checkbox::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: transparent;
}

.login-gate-checkbox.is-checked {
  border-color: var(--black);
}

.login-gate-checkbox.is-open {
  border-color: var(--black);
  background: #f7f7f7;
}

.login-gate-checkbox.is-checked::after {
  content: '';
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  color: var(--black);
}

.login-gate-checkbox svg {
  width: 12px;
  height: 12px;
  display: block;
  pointer-events: none;
}

.login-gate-check-copy {
  flex: 1;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--black);
  line-height: 1.35;
  min-width: 0;
  padding-left: 20px;
}

.login-gate-status {
  white-space: nowrap;
  flex-shrink: 0;
}


.login-logo-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.login-logo-mark img,
.login-logo-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.login-field-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(318px, 100%);
  padding: var(--space-12);
  background: var(--white);
  border: var(--rule);
  box-shadow: 10px 10px 0 var(--black);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease, max-height 240ms ease;
}

body.login-unlocked .login-field-group {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body#login .login-field-label {
  width: 100%;
  margin: 0;
  padding: 0 0 var(--space-8);
  border-bottom: var(--rule);
}

body#login #login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-12);
}

body.login-unlocked .login-gate {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, height 0s linear 220ms, margin 0s linear 220ms;
}

.login-field-label {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px 0;
  padding: 0;
  display: block;
}

.login-request-link {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: var(--space-4);
  padding-top: 8px;
  display: block;
  opacity: 0.48;
  align-self: center;
  text-align: center;
}

.login-request-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.login-input {
  width: 100%;
  min-width: 0;
  height: 44px;
  box-sizing: border-box;
  border: var(--rule);
  background: #f9f9f9;
  font-family: var(--font-licensed);
  font-variation-settings: 'wght' 60, 'wdth' 80;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 var(--space-12);
  text-align: center;
  outline: none;
}

.login-input::placeholder {
  color: #666;
  letter-spacing: 0.04em;
}

.login-input:focus {
  outline: none;
}

.login-input.error {
  color: var(--red);
}

.login-error-msg {
  margin-top: var(--space-8);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: none;
  white-space: nowrap;
  align-self: flex-start;
}

.login-error-msg.visible {
  display: block;
}

.login-submit-btn {
  display: none;
}


.login-footer {
  position: fixed;
  bottom: var(--space-32);
  right: var(--space-32);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
}


body#license .page-wrap {
  padding: 0;
}

.license-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-32);
  height: 52px;
}

.license-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.license-header-logo {
  width: 24px;
  height: 24px;
}

.license-header-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.license-header-right {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
}

.license-page-inner {
  padding-top: 52px;
  max-width: 760px;
  margin: 0 auto;
  padding-left: var(--space-32);
  padding-right: var(--space-32);
  padding-bottom: var(--space-80);
  flex: 1;
}

.license-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: var(--space-64);
  margin-bottom: var(--space-4);
}

.license-tier-name {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: var(--space-8);
  text-transform: uppercase;
}

.license-intro {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #444;
  margin-bottom: var(--space-32);
  max-width: 600px;
}

.license-terms-box {
  height: 450px;
  overflow-y: scroll;
  border: var(--rule);
  padding: var(--space-32);
  margin-bottom: var(--space-24);
  background: var(--white);
  scroll-behavior: smooth;
}


.license-terms-box::-webkit-scrollbar {
  width: 4px;
}
.license-terms-box::-webkit-scrollbar-thumb {
  background: #ccc;
}
.license-terms-box::-webkit-scrollbar-track {
  background: transparent;
}


.license-text-section {
  margin-bottom: var(--space-32);
}

.license-text-section:last-child {
  margin-bottom: 0;
}

.license-section-heading {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-8);
  border-bottom: var(--rule);
}

.license-clause {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-16);
  color: var(--black);
}

.license-clause:last-child {
  margin-bottom: 0;
}

.clause-num {
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-right: var(--space-12);
  opacity: 0.5;
  display: inline-block;
  min-width: 28px;
}

.license-accept-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-20);
  border-top: var(--rule);
}

.license-accept-btn {
  font-family: var(--font-licensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: var(--space-16) var(--space-32);
  cursor: not-allowed;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.license-accept-btn.enabled {
  opacity: 1;
  cursor: pointer;
}

.license-accept-btn.enabled:hover {
  opacity: 0.85;
}

.license-decline-link {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
  text-decoration: underline;
}

.license-decline-link:hover {
  opacity: 0.7;
}

.license-scroll-hint {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: var(--space-8);
}


.card-reveal-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-reveal-overlay.visible {
  opacity: 1;
}

.card-full {
  width: 480px;
  height: 300px;
  background: var(--white);
  border: 2px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: opacity 0.3s ease;
  position: relative;
}

.card-full.visible {
  opacity: 1;
}

.card-full.spinning {
  animation: cardSpin 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card-full.docking {
  animation: cardDock 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes cardDock {
  0%   {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(0.33) translate(calc(50vw - 110px), calc(-50vh + 48px));
    opacity: 0;
  }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-20) var(--space-24);
  border-bottom: var(--rule);
}

.card-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.card-logo-sm {
  width: 28px;
  height: 28px;
}

.card-foundry-name {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
}

.card-type-label {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-24) var(--space-24);
}

.card-id-number {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.card-tier-display {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-16) var(--space-24);
  border-top: var(--rule);
}

.card-dates {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-date-line {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}

.card-qr {
  opacity: 0.85;
}


.hud-card {
  position: fixed;
  top: 52px;
  left: var(--wordmark-w);
  z-index: 600;
  width: 200px;
  background: var(--white);
  border-right: var(--rule);
  border-bottom: var(--rule);
  display: none;
}

.hud-card.active {
  display: block;
}

.hud-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-12);
  border-bottom: var(--rule);
  height: 52px;
}

.hud-logo-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hud-foundry-name {
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hud-body {
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.hud-id-line {
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hud-divider,
.hud-hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0;
}

.hud-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.hud-stat-label {
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.hud-stat-value {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.hud-violations-value {
  color: var(--black);
}

.hud-violations-value.low {
  color: var(--red);
}


.specimen-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.specimen-main {
  flex: 1;
  padding: var(--space-64) var(--space-32);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.specimen-pre-label {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-24);
  color: #999;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
}

.specimen-display {
  --tester-font-size: clamp(42px, 4.2vw, 72px);
  --tester-tracking: 0em;
  --tester-leading: 1.08;
  font-family: var(--font-licensed);
  font-variation-settings: 'wght' 60, 'wdth' 80;
  font-size: var(--tester-font-size);
  line-height: var(--tester-leading);
  letter-spacing: var(--tester-tracking);
  font-weight: 400;
  color: var(--black);
  min-height: 180px;
  outline: none;
  cursor: text;
  word-break: break-word;
  white-space: pre-wrap;
  grid-area: display;
  align-self: center;
  padding: var(--space-24) 0;
}

.specimen-display:empty::before {
  content: attr(data-placeholder);
  color: #ccc;
  pointer-events: none;
}

.specimen-char-bar {
  margin-top: var(--space-24);
  padding-top: var(--space-12);
  border-top: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.specimen-char-count {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.specimen-char-count.near-limit {
  color: var(--red);
}

.specimen-bottom-bar {
  padding: var(--space-24) var(--space-32);
  border-top: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.specimen-tier-info {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.specimen-upgrade-link {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}


.upgrade-main {
  padding: var(--space-64) var(--space-32);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.upgrade-page-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-12);
  color: #999;
}

.upgrade-heading {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: var(--space-64);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--rule);
}

.tier-card {
  border-right: var(--rule);
  padding: var(--space-32) var(--space-24);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-card:last-child {
  border-right: none;
}

.tier-card.current-tier {
  background: var(--black);
  color: var(--white);
}

.tier-current-badge {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 3px 8px;
  display: none;
}

.tier-card.current-tier .tier-current-badge {
  display: block;
}

.tier-name {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-12);
  font-weight: 400;
}

.tier-price {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-32);
}

.tier-price-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.tier-divider {
  border: none;
  border-top: 1px solid currentColor;
  margin-bottom: var(--space-24);
  opacity: 0.2;
}

.tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: var(--space-32);
}

.tier-features li {
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding-left: var(--space-12);
  position: relative;
  color: inherit;
}

.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.tier-features li.restricted {
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-color: currentColor;
}

.tier-select-btn {
  font-family: var(--font-licensed);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: var(--space-12) var(--space-16);
  cursor: pointer;
  transition: opacity 0.15s;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  width: 100%;
}

.tier-card.current-tier .tier-select-btn {
  background: var(--white);
  color: var(--black);
  cursor: not-allowed;
  opacity: 0.5;
}

.tier-select-btn:hover:not(:disabled) {
  opacity: 0.6;
}

.tier-select-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}


.upgrade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upgrade-modal {
  background: var(--white);
  border: var(--rule);
  width: 480px;
  max-width: 90vw;
}

.upgrade-modal-header {
  border-bottom: var(--rule);
  padding: var(--space-20) var(--space-24);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upgrade-modal-title {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.upgrade-modal-close {
  font-size: 16px;
  cursor: pointer;
  opacity: 0.4;
  line-height: 1;
}

.upgrade-modal-close:hover {
  opacity: 1;
}

.upgrade-modal-body {
  padding: var(--space-32) var(--space-24);
}

.upgrade-modal-line {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: var(--space-16);
}

.upgrade-modal-fee {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-24);
  padding-top: var(--space-8);
  border-top: var(--rule);
}

.upgrade-modal-initial-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.upgrade-modal-initial-input {
  width: 100%;
  border: var(--rule);
  border-radius: 0;
  padding: var(--space-12) var(--space-12);
  font-family: var(--font-licensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  outline: none;
  margin-bottom: var(--space-20);
  background: var(--white);
}

.upgrade-modal-fine-print {
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #666;
  margin-bottom: var(--space-24);
}

.upgrade-modal-accept-btn {
  font-family: var(--font-licensed);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: var(--space-16) var(--space-24);
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
}

.upgrade-modal-accept-btn:hover {
  opacity: 0.8;
}

.upgrade-modal-processing {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-top: var(--space-32);
}


.violation-popup {
  position: fixed;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.75), 0 2px 8px rgba(0,0,0,0.5);
  user-select: none;

}

.popup-titlebar {
  background: #2c2c2c;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: grab;
  border-bottom: 1px solid #1a1a1a;
}

.popup-titlebar:active {
  cursor: grabbing;
}

.popup-window-btns {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.popup-win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: transparent;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.popup-btn-close { background: #FF5F57; }

.popup-win-btn:hover { color: rgba(0,0,0,0.5); }

.popup-title-text {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555;
  font-weight: 400;
  flex: 1;
  text-align: center;
  font-family: var(--font-licensed);
}

.popup-camera-area {
  background: #000;
  line-height: 0;
  overflow: hidden;
}

.popup-camera-canvas {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.popup-body {
  padding: 14px 16px 18px;
}

.popup-violation-title {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}

.popup-violation-text {
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  color: #888;
}

body.violation-alert-active {
  background: #d80000;
}

body.violation-alert-active::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 8500;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.06) 0,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 18px
    ),
    rgba(0,0,0,0.04);
  mix-blend-mode: normal;
  opacity: 0.7;
}


.violation-popup {
  background: var(--white);
  color: var(--black);
  border: var(--rule);
  border-radius: 0;
  box-shadow: 12px 12px 0 var(--black);
  overflow: visible;
}

.violation-popup::before {
  content: 'LICENSE VIOLATION';
  position: absolute;
  top: -22px;
  left: -1px;
  height: 22px;
  min-width: 150px;
  border: var(--rule);
  border-bottom: none;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 0 var(--space-8);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.popup-titlebar {
  background: var(--white);
  color: var(--black);
  padding: 8px 10px;
  border-bottom: var(--rule);
  gap: var(--space-8);
}

.popup-win-btn {
  width: 14px;
  height: 14px;
  border: var(--rule);
  border-radius: 0;
  background: var(--white);
  color: transparent;
}

.popup-win-btn:hover {
  background: var(--black);
  color: var(--white);
}

.popup-btn-close {
  background: var(--white);
}

.popup-title-text {
  color: var(--black);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.18em;
  text-align: left;
}

.popup-camera-area {
  background: var(--white);
  border-bottom: var(--rule);
  padding: var(--space-8);
  display: flex;
  justify-content: center;
}

.popup-camera-canvas {
  border: var(--rule);
  display: block;
  width: min(100%, 320px);
  height: auto;
  image-rendering: auto;
}

.popup-body {
  padding: var(--space-16);
}

.popup-violation-title {
  color: var(--red);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.18em;
  border-bottom: var(--rule);
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-12);
}

.popup-violation-text {
  color: var(--black);
  line-height: 1.55;
}


body#not-found {
  background: var(--black);
  color: var(--white);
}

body#not-found .site-footer {
  border-top-color: #222;
  color: var(--white);
}

.page-404 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-80) var(--space-32);
}

.error-code {
  font-size: 160px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-8);
}

.error-heading {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-32);
}

.error-body {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #666;
  max-width: 480px;
  margin-bottom: var(--space-64);
}

.error-return-link {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.5;
}

.error-return-link:hover {
  opacity: 1;
  text-decoration: underline;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}



@media (max-width: 900px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tier-card:nth-child(2) {
    border-right: none;
  }
  .tier-card:nth-child(3) {
    border-top: var(--rule);
  }
  .tier-card:nth-child(4) {
    border-top: var(--rule);
    border-right: none;
  }

  .site-header {
    padding: 0 var(--space-16);
  }

  .specimen-display {
    font-size: 36px;
  }

  .upgrade-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .login-input {
    width: 260px;
    min-width: 0;
  }

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

  .tier-card {
    border-right: none;
    border-top: var(--rule);
  }

  .tier-card:first-child {
    border-top: none;
  }

  .card-full {
    width: 90vw;
    height: auto;
    min-height: 220px;
  }

  .login-copyright-block {
    display: none;
  }

  .error-code {
    font-size: 80px;
  }
}




body#specimen .specimen-wrap {
  padding-left: calc(var(--wordmark-w) + var(--space-32));
  padding-right: calc(270px + var(--space-32));
}


.ticker-sidebar {
  position: fixed;
  right: 0;
  top: 52px;
  bottom: 0;
  width: 270px;
  background: var(--white);
  border-left: var(--rule);
  display: flex;
  flex-direction: column;
  z-index: 400;
  overflow: hidden;
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 11px;
  flex-shrink: 0;
}

.ticker-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: monospace;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: ticker-blink 1s ease-in-out infinite;
}

@keyframes ticker-blink {
  0%, 100% { opacity: 1.0; }
  50%       { opacity: 0.3; }
}

.ticker-divider {
  height: 1px;
  background: var(--black);
  flex-shrink: 0;
}

.ticker-feed {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0 16px;
  display: flex;
  flex-direction: column;
}


.ticker-feed::-webkit-scrollbar { width: 3px; }
.ticker-feed::-webkit-scrollbar-track { background: transparent; }
.ticker-feed::-webkit-scrollbar-thumb { background: #ddd; }

.ticker-entry {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 3px 16px;
  opacity: 0;
  animation: ticker-fade-in 200ms ease forwards;
}

@keyframes ticker-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ticker-time {
  font-size: 8px;
  font-family: monospace;
  color: #bbb;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.ticker-text {
  font-size: 8px;
  font-family: monospace;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--black);
  text-transform: uppercase;
  word-break: break-word;
}

.ticker-entry--red    .ticker-text { color: var(--red); }
.ticker-entry--red    .ticker-time { color: rgba(238,17,17,0.4); }
.ticker-entry--system .ticker-text { color: #888; }
.ticker-entry--editorial .ticker-text { color: #555; }
.ticker-entry--idle   .ticker-text { color: #ccc; }


.sp-section {
  border-top: var(--rule);
  padding-top: var(--space-80);
  padding-bottom: var(--space-120);
}

.sp-section:first-child {
  border-top: none;
  padding-top: calc(var(--space-64) + 16px);
}

.sp-section-inner {
  margin: 0 auto;
  padding: 0 var(--space-32);
}

#section-license .sp-section-inner {
  max-width: 900px;
}

.sp-section-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: var(--space-20);
  font-family: monospace;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
}

.sp-section-heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-40);
  color: var(--black);
  padding: 0 6px;
  line-height: 1;
}

.sp-section-label,
.specimen-pre-label,
.sp-section-heading {
  box-sizing: border-box;
}


#section-charmap {
  min-height: calc(100vh - 52px);
  padding-top: var(--space-16);
  padding-bottom: 60px;
}

.sp-section-inner--charmap {
  max-width: none;
  padding-left: var(--space-32);
  padding-right: var(--space-32);
  height: auto;
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.sp-charmap-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-16);
  padding-left: 0;
  padding-right: 0;
  padding-top: 50px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.sp-charmap-head > div {
  min-width: 0;
}

.sp-charmap-count,
.sp-charmap-sheet-label,
.sp-glyph-detail-label {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-charmap-count {
  margin-top: 0;
  white-space: nowrap;
  align-self: end;
}

.sp-charmap-workbench {
  flex: 1;
  min-height: 0;
  width: min(100%, 1480px);
  align-self: center;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  gap: 0;
  border: var(--rule);
  background: var(--white);
}

.sp-glyph-detail,
.sp-charmap-sheet {
  min-height: 0;
}

.sp-glyph-detail {
  display: flex;
  flex-direction: column;
  border-right: var(--rule);
}

.sp-glyph-detail-label,
.sp-charmap-sheet-label {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--rule);
  padding: 0 var(--space-12);
  background: var(--black);
  color: var(--white);
}

.sp-glyph-display-wrap {
  position: relative;
  flex: 1;
  min-height: 260px;
  --sp-glyph-size: min(34vh, 280px);
  --sp-glyph-shift: 0.14;
  --sp-cap-line-y: 41.5%;
  --sp-baseline-y: 77%;
  border-bottom: var(--rule);
  display: grid;
  place-items: center;
  padding: var(--space-24) var(--space-16);
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 36px 36px;
}

.sp-glyph-detail-char {
  position: absolute;
  inset: 0;
  font-family: var(--font-licensed);
  font-variation-settings: 'wght' 60, 'wdth' 80;
  font-size: var(--sp-glyph-size);
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc(var(--sp-glyph-shift) * 100%));
  z-index: 1;
}

.sp-glyph-guide {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.sp-glyph-guide--cap {
  top: var(--sp-cap-line-y);
  border-top: 1px dashed #777;
}

.sp-glyph-guide--baseline {
  top: var(--sp-baseline-y);
  bottom: auto;
  border-top: 1px solid var(--red);
}

.sp-glyph-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--white);
}

.sp-glyph-meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-12);
  padding: 10px var(--space-12);
  border-right: var(--rule);
  border-bottom: var(--rule);
}

.sp-glyph-meta div:nth-child(2n) {
  border-right: none;
}

.sp-glyph-meta div:nth-last-child(-n + 2) {
  border-bottom: none;
}

.sp-glyph-meta dt,
.sp-glyph-meta dd {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.sp-glyph-meta dt {
  color: #777;
}

.sp-glyph-meta dd {
  margin: 0;
  color: var(--black);
}

.sp-glyph-meta dd.restricted {
  color: var(--red);
}

.sp-charmap-sheet {
  display: flex;
  flex-direction: column;
}

.sp-charmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: clip;
  background: var(--black);
}

#section-charmap .sp-section-label {
  display: inline-flex;
  min-height: 0;
  margin-bottom: 25px;
  padding-left: 0;
  padding-right: 0;
}

#section-charmap .sp-section-heading {
  margin-bottom: 30px;
  line-height: 0.92;
  max-width: 760px;
  padding-left: 0;
  padding-right: 0;
}

.sp-glyph-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  border-top: none;
  border-left: none;
  cursor: default;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  user-select: none;
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 0;
  min-height: 0;
}


.sp-glyph-cell.available:hover {
  background: var(--black);
  border-color: var(--black);
  z-index: 2;
}
.sp-glyph-cell.available:hover .sp-glyph-char {
  color: var(--white);
}
.sp-glyph-cell.available::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
}

.sp-glyph-cell.available:hover::after,
.sp-glyph-cell.available:focus-visible::after {
  border-color: var(--black);
}

.sp-glyph-cell.is-active {
  background: var(--black);
  border-color: var(--black);
  z-index: 2;
}

.sp-glyph-cell.is-active .sp-glyph-char {
  color: var(--white);
}

.sp-glyph-cell.locked.is-active {
  background: var(--red);
  border-color: var(--red);
}


.sp-glyph-cell.locked {
  background: #f3f3f3;
}

.sp-glyph-cell.locked:hover {
  background: var(--red);
  border-color: var(--red);
  z-index: 2;
}
.sp-glyph-cell.locked:hover .sp-glyph-char {
  color: var(--white);
}

.sp-glyph-cell:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
  z-index: 3;
}

.sp-glyph-char {
  font-family: var(--font-licensed);
  font-variation-settings: 'wght' 60, 'wdth' 80;
  font-size: clamp(13px, 1.05vw, 21px);
  line-height: 1;
  display: block;
  transform: translateY(-1px);
}

.sp-glyph-cell.available .sp-glyph-char { color: var(--black); }
.sp-glyph-cell.locked    .sp-glyph-char { color: #d0d0d0; }


.specimen-nav {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.site-header--specimen {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: var(--space-24);
  padding: 0 var(--space-32);
  overflow: visible;
}

.site-header--specimen .header-logo {
  justify-self: center;
}

.site-header--specimen .specimen-nav--left {
  justify-self: start;
}

.site-header--specimen .specimen-nav--right {
  justify-self: end;
}

.specimen-license-menu {
  position: relative;
}

.specimen-nav-btn,
.specimen-nav-link {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: var(--font-licensed);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
}

.specimen-nav-btn:hover,
.specimen-nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.specimen-license-menu .hud-card {
  position: absolute;
  top: calc(100% + 18px);
  left: -33px;
  right: auto;
  z-index: 700;
  width: 248px;
  border: var(--rule);
  background: var(--white);
  display: none;
}

.specimen-license-menu.is-open .hud-card {
  display: block;
}

.specimen-license-menu .hud-body {
  padding: var(--space-12);
}

.specimen-license-menu .hud-id-line {
  color: var(--black);
}

.specimen-license-menu .hud-hr {
  border-top-color: var(--black);
}

body.violation-alert-active .ticker-time,
body.violation-alert-active .ticker-text,
body.violation-alert-active .ticker-label,
body.violation-alert-active .sp-section-label,
body.violation-alert-active .sp-summary-label,
body.violation-alert-active .sp-summary-value,
body.violation-alert-active .co-summary-heading,
body.violation-alert-active .co-summary-legal,
body.violation-alert-active .co-summary-help,
body.violation-alert-active .specimen-pre-label,
body.violation-alert-active .sp-charmap-count,
body.violation-alert-active .sp-charmap-sheet-label,
body.violation-alert-active .sp-glyph-detail-label,
body.violation-alert-active .sp-glyph-meta dt,
body.violation-alert-active .sp-glyph-meta dd,
body.violation-alert-active .sp-license-table td,
body.violation-alert-active .tester-meta,
body.violation-alert-active .login-copyright-block,
body.violation-alert-active .login-footer {
  color: var(--black) !important;
  opacity: 1 !important;
}

.site-header--specimen .specimen-nav--left,
.site-header--specimen .specimen-nav--right {
  align-items: center;
}

body.violation-alert-active .violation-popup .popup-title-text,
body.violation-alert-active .violation-popup .popup-violation-text {
  color: var(--black) !important;
}

.about-modal[hidden] {
  display: none;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 8200;
  background: rgba(255,255,255,0.88);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(52px + var(--space-32)) var(--space-32) var(--space-32);
}

.about-modal-panel {
  width: min(900px, calc(100vw - var(--space-64)));
  max-height: calc(100vh - 104px);
  background: var(--white);
  border: var(--rule);
  box-shadow: 12px 12px 0 var(--black);
  display: flex;
  flex-direction: column;
}

.about-modal-header {
  height: 44px;
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-16);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-modal-close {
  width: 28px;
  height: 28px;
  border: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--type-licensed-body);
  line-height: 1;
}

.about-modal-close:hover {
  background: var(--black);
  color: var(--white);
}

.about-modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
  overflow: auto;
  padding: var(--space-24);
}

.about-modal-intro {
  font-size: var(--type-licensed-body);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: var(--space-20);
}

.about-modal-disclaimer {
  padding-top: var(--space-16);
  border-top: var(--rule);
  color: #555;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.sp-about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-40);
  align-items: start;
}

.sp-about-logo {
  border: var(--rule);
  padding: var(--space-32);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 84px;
}

.sp-about-logo img {
  width: 100%;
  height: auto;
}

.sp-about-copy > p {
  font-size: var(--type-licensed-body);
  letter-spacing: 0.03em;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: var(--space-24);
}

.sp-emblem-list {
  border-top: var(--rule);
}

.sp-emblem-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-16) 0;
  border-bottom: var(--rule);
}

.sp-emblem-item img {
  width: 72px;
  height: 72px;
  border: 1px solid #e8e8e8;
  padding: var(--space-8);
}

.sp-emblem-item h3 {
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: var(--space-8);
}

.sp-emblem-item p {
  font-size: var(--type-licensed-body);
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: #555;
}


.sp-license-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: start;
}

.sp-license-table {
  border-collapse: collapse;
  width: 100%;
}

.sp-license-table td {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: monospace;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.sp-license-key {
  color: #999;
  width: 50%;
  padding-right: 12px;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.sp-license-val {
  color: var(--black);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.sp-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sp-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00c853;
  display: inline-block;
  flex-shrink: 0;
}

.sp-license-desc {
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-transform: none;
  color: #666;
  margin-bottom: var(--space-32);
}

.sp-license-upgrade-btn {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: var(--space-16) var(--space-20);
  border-top: var(--rule);
}


.sp-interest-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.sp-interest-modal-box {
  background: var(--white);
  border: var(--rule);
  padding: var(--space-40);
  max-width: 460px;
  width: calc(100% - var(--space-64));
}

.sp-interest-modal-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-16);
}

.sp-interest-modal-body {
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
  color: #666;
  margin-bottom: var(--space-32);
}

.sp-interest-modal-btns {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

.sp-interest-upgrade-btn {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

.sp-interest-upgrade-btn:hover { opacity: 0.75; text-decoration: none; }

.sp-interest-dismiss-btn {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}


@media (max-width: 1100px) {
  .ticker-sidebar { display: none; }
  body#specimen .specimen-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .sp-section-inner--charmap { height: auto; min-height: calc(100vh - 100px); }
  .sp-charmap-head { padding-left: 0; }
  .sp-charmap-workbench { grid-template-columns: 1fr; }
  .sp-glyph-detail { border-right: none; border-bottom: var(--rule); }
  .sp-glyph-display-wrap { min-height: 220px; }
  .sp-charmap-grid {
    grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
    min-height: 430px;
  }
  .sp-about-layout { grid-template-columns: 1fr; }
  .sp-about-logo {
    position: static;
    width: 180px;
  }
  .about-modal-body { grid-template-columns: 1fr; }
  .about-modal-logo { width: 180px; }
  .sp-license-cols { grid-template-columns: 1fr; gap: var(--space-40); }
}


.enterprise-app-main {
  padding: var(--space-64) var(--space-32);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
}

.enterprise-app-progress {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: var(--space-64);
}

.enterprise-app-question-wrap {
  flex: 1;
}

.enterprise-app-question {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: var(--space-48);
  max-width: 560px;
}

.enterprise-app-textarea {
  width: 100%;
  border: var(--rule);
  background: var(--white);
  font-family: var(--font-licensed);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: var(--space-16);
  resize: vertical;
  outline: none;
  min-height: 160px;
  transition: border-color 0.15s;
}

.enterprise-app-textarea:focus {
  border-color: var(--black);
}

.enterprise-app-wordcount {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-top: var(--space-8);
  text-align: right;
}


.enterprise-app-range-wrap {
  max-width: 440px;
}

.enterprise-app-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: var(--space-16);
}

.enterprise-app-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--black);
  outline: none;
  cursor: pointer;
}

.enterprise-app-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--black);
  cursor: pointer;
}

.enterprise-app-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--black);
  border: none;
  cursor: pointer;
}

.enterprise-app-range-value {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: var(--space-24);
  line-height: 1;
}


.enterprise-app-radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.enterprise-app-radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.enterprise-app-radio-label input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: var(--rule);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.enterprise-app-radio-label input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--black);
  border-radius: 50%;
}

.enterprise-app-conditional {
  padding-top: var(--space-24);
}

.enterprise-app-conditional-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: var(--space-12);
}


.enterprise-app-file-wrap {
  position: relative;
  display: inline-block;
}

.enterprise-app-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.enterprise-app-file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--rule);
  padding: var(--space-16) var(--space-32);
  font-family: var(--font-licensed);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 200px;
}


.enterprise-app-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  cursor: pointer;
  max-width: 520px;
}

.enterprise-app-checkbox {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: var(--rule);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin-top: 3px;
}

.enterprise-app-checkbox:checked::after {
  content: '×';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
}


.enterprise-app-text-input {
  width: 320px;
  height: 48px;
  border: var(--rule);
  border-left: 4px solid var(--black);
  background: var(--white);
  font-family: var(--font-licensed);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 var(--space-16);
  outline: none;
}


.enterprise-app-nav {
  margin-top: var(--space-64);
  padding-top: var(--space-32);
  border-top: var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enterprise-app-prev {
  font-family: var(--font-licensed);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.45;
  padding: 0;
}

.enterprise-app-prev:hover {
  opacity: 1;
}

.enterprise-app-next {
  font-family: var(--font-licensed);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: var(--space-16) var(--space-32);
  cursor: pointer;
  transition: opacity 0.15s;
}

.enterprise-app-next:hover:not(:disabled) {
  opacity: 0.8;
}

.enterprise-app-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


.enterprise-app-processing {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enterprise-app-processing-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
}


.enterprise-app-success {
  max-width: 600px;
  min-height: calc(100vh - 52px);
  margin: 0 auto;
  padding: var(--space-64) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enterprise-app-success-body {
  margin-top: var(--space-48);
}

.enterprise-app-success-line {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: var(--space-24);
}

.enterprise-app-success-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-48);
}

.enterprise-app-success-list li {
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  padding: var(--space-12) 0;
  border-top: var(--rule);
}

.enterprise-app-success-list li:last-child {
  border-bottom: var(--rule);
}

@media (max-width: 600px) {
  .enterprise-app-question {
    font-size: 22px;
  }

  .enterprise-app-text-input {
    width: 100%;
  }
}




.header-left {
  display: flex;
  align-items: center;
}




.label-caps,
.label-sm,
.label-md,
.header-logo-name,
.license-header-title,
.login-field-label,
.login-error-msg,
.login-footer,
.license-heading,
.license-scroll-hint,
.license-section-heading,
.license-accept-btn,
.license-decline-link,
.card-foundry-name,
.card-type-label,
.card-date-line,
.hud-stat-label,
.specimen-pre-label,
.specimen-char-count,
.specimen-tier-info,
.specimen-upgrade-link,
.upgrade-page-label,
.tier-name,
.tier-current-badge,
.tier-select-btn,
.upgrade-modal-title,
.upgrade-modal-fine-print,
.upgrade-modal-processing,
.sp-interest-upgrade-btn,
.sp-interest-dismiss-btn,
.enterprise-app-progress,
.enterprise-app-wordcount,
.enterprise-app-prev,
.enterprise-app-next,
.specimen-nav-btn,
.specimen-nav-link,
.about-modal-header,
.co-topbar-logo,
.co-topbar-cart,
.co-field-label,
.co-form-caption,
.co-back-link,
.co-tier-col-label,
.co-step-disclaimer,
.co-secure-badge,
.co-review-label,
.co-agree-label,
.co-summary-heading,
.co-summary-legal,
.co-summary-help,
.site-footer .footer-copy {
  font-size: var(--type-licensed-caption);
}

body,
input,
textarea,
select,
button,
.header-right,
.login-input,
.license-intro,
.license-clause,
.tier-features li,
.upgrade-modal-line,
.popup-violation-text,
.error-body,
.error-return-link,
.sp-license-desc,
.sp-interest-modal-body,
.about-modal-intro,
.enterprise-app-textarea,
.enterprise-app-radio-label,
.enterprise-app-checkbox-label,
.enterprise-app-success-line,
.enterprise-app-success-list li,
.co-step-subtitle,
.co-field-input,
.co-tier-list,
.co-review-value,
.co-summary-line,
.co-success-id-note {
  font-size: var(--type-licensed-body);
}

.license-tier-name,
.upgrade-heading,
.tier-price,
.error-code,
.enterprise-app-question,
.enterprise-app-range-value,
.co-tier-confirm-name,
.co-processing-title,
.co-success-title,
.co-success-id,
.sp-section-heading {
  font-size: var(--type-licensed-display);
}


.ticker-time,
.page-wordmark-top,
.page-wordmark-bottom,
.co-summary-heading {
  font-size: var(--type-mono-caption);
}

.ticker-label,
.ticker-text,
.tester-meta,
.sp-section-label,
.sp-redacted-box-text,
.sp-redacted-caption {
  font-size: var(--type-mono-ui);
}

.sp-license-table td {
  font-size: var(--type-mono-body);
}

.sp-section-label {
  margin-bottom: var(--space-20);
}

.sp-section-heading {
  letter-spacing: 0.06em;
  margin-bottom: var(--space-32);
}

.sp-license-table td {
  padding: 8px 0;
}

.sp-license-desc,
.license-clause,
.license-intro {
  letter-spacing: 0.03em;
}



.page-wordmark {
  position: fixed;
  left: 0;
  top: 52px;
  bottom: 0;
  width: var(--wordmark-w);
  border-right: var(--rule);
  background: var(--black);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-12) 0;
  overflow: hidden;
  pointer-events: none;
}

.page-wordmark::before,
.page-wordmark::after {
  content: '';
  width: 100%;
  flex-shrink: 0;
}

.page-wordmark::before {
  margin-bottom: var(--space-12);
}

.page-wordmark::after {
  margin-top: var(--space-12);
}

.page-wordmark-top,
.page-wordmark-bottom {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  color: var(--white);
  flex-shrink: 0;
  padding: 0 7px;
}

.page-wordmark-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.page-wordmark-center {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.page-wordmark-rotated {
  position: absolute;
  left: 60%;
  top: 50%;
  font-family: var(--font-licensed);
  font-size: 68px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
  line-height: 1;
  display: block;
}


.license-header { padding-left: calc(var(--wordmark-w) + var(--space-32)); }
.site-footer  { padding-left: calc(var(--wordmark-w) + var(--space-32)); }
.page-wrap    { padding-left: var(--wordmark-w); }
body#license .page-wrap { padding-left: var(--wordmark-w); }




#section-tester {
  padding-top: calc(var(--space-80) + var(--space-40));
  padding-bottom: calc(var(--space-120) + var(--space-40));
}

.tester-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  grid-template-areas:
    "tl tr"
    "display display"
    "display display"
    "bl br";
  row-gap: var(--space-40);
  column-gap: var(--space-24);
  min-height: 420px;
  padding: var(--space-32) 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.tester-shell {
  margin-left: 50px;
}

.tester-layout {
  display: grid;
  grid-template-columns: minmax(210px, 5px) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
.tester-stage {
  min-width: 0;
  padding-right: 70px;
}
.tester-meta {
  position: static;
  font-family: monospace;
  font-size: 10px;
  line-height: 1.5;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.tester-meta--tl { grid-area: tl; }
.tester-meta--tr { grid-area: tr; text-align: right; }
.tester-meta--bl { grid-area: bl; align-self: end; }
.tester-meta--br { grid-area: br; align-self: end; text-align: right; }

.tester-controls {
  justify-self: start;
  width: auto;
  max-width: 250px;
  border: var(--rule);
  background: var(--white);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  box-shadow: 10px 10px 0 var(--black);
}

.tester-controls-head {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: var(--space-8);
  border-bottom: var(--rule);
}

.tester-control {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.tester-control-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-12);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tester-control-value {
  color: #777;
}

.tester-control input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--black);
  outline: none;
  cursor: pointer;
}

.tester-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 0;
  border: var(--rule);
  background: var(--white);
}

.tester-control input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 0;
  border: var(--rule);
  background: var(--white);
}

.tester-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  border: var(--rule);
  padding: var(--space-12);
  background: var(--white);
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.tester-toggle.is-off {
  background: #f5f5f5;
}

.tester-toggle-state {
  color: #777;
}



.sp-redact-bar {
  display: inline-block;
  background: var(--black);
  width: 200px;
  height: 14px;
  vertical-align: middle;
}
.sp-section-heading--violation { color: var(--red); }
.sp-redacted-box {
  width: 600px;
  max-width: 100%;
  height: 280px;
  border: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-32);
}
.sp-redacted-box-text {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 2.2;
  color: #aaa;
}
.sp-redacted-caption {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--red);
  max-width: 600px;
  font-style: italic;
}



@media (max-width: 900px) {
  .page-wordmark { display: none; }
  .site-header  { padding-left: var(--space-16); }
  .license-header { padding-left: var(--space-32); }
  .site-footer  { padding-left: var(--space-32); }
  .page-wrap    { padding-left: 0; }
  body#license .page-wrap { padding-left: 0; }
}



body#checkout {
  min-height: 100vh;
  background: var(--white);
}


.co-topbar {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
  padding: 0 var(--space-32);
  height: 52px;
}
.co-topbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  color: var(--white);
  text-decoration: none;
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.co-topbar-logo svg path,
.co-topbar-logo svg rect,
.co-topbar-logo svg circle {
  fill: var(--white);
  stroke: var(--white);
}
.co-topbar-cart {
  appearance: none;
  border: none;
  background: transparent;
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0;
}
.co-topbar-cart:hover { opacity: 0.7; }

.co-cart-popover {
  position: fixed;
  top: 42px;
  right: 4px;
  width: 320px;
  max-width: calc(100vw - 2 * var(--space-32));
  background: var(--white);
  border: var(--rule);
  box-shadow: 10px 10px 0 var(--black);
  z-index: 900;
}

.co-cart-popover[hidden] {
  display: none;
}

.co-cart-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  border-bottom: var(--rule);
  background: var(--black);
  color: var(--white);
  padding: var(--space-12) var(--space-16);
}

.co-cart-popover-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.co-cart-popover-close {
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}

.co-cart-popover-body {
  padding: var(--space-16);
}

.co-cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-16);
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.08em;
  text-transform: none;
  padding: var(--space-8) 0;
  border-bottom: 1px solid #ececec;
}

.co-cart-summary-line:last-child {
  border-bottom: none;
}

.co-cart-summary-note {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: var(--rule);
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #666;
}


.co-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: calc(100vh - 52px - 80px);
  align-items: start;
}


.co-steps-col {
  border-right: var(--rule);
  padding: var(--space-40);
}


.co-step-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin-bottom: var(--space-48);
  border: var(--rule);
}
.co-step-nav-item {
  min-height: 36px;
  border-right: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.18em;
  color: #999;
  font-weight: 400;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  position: relative;
}
.co-step-nav-item + .co-step-nav-item::before {
  display: none;
}
.co-step-nav-item.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.co-step-nav-item.completed {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.co-step-nav-item.completed::after {
  content: '✓';
  font-size: 10px;
}
.co-step-nav-item.completed span { display: none; }


.co-step-panel { display: block; }
.co-step-panel[hidden] { display: none; }

.co-step-heading {
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: var(--space-8);
}
.co-step-subtitle {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: var(--space-32);
  line-height: 1.6;
  max-width: 520px;
}


.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16) var(--space-24);
  max-width: 560px;
  margin-bottom: var(--space-24);
}
.co-form-grid--single {
  grid-template-columns: 1fr;
}
.co-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.co-field-label {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}
.co-field-input {
  height: 44px;
  border: none;
  border-bottom: 1.5px solid #ccc;
  background: transparent;
  font-family: var(--font-licensed);
  font-size: var(--type-licensed-body);
  font-weight: 400;
  font-variation-settings: 'wght' 60, 'wdth' 80;
  color: var(--black);
  padding: 0;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.co-field-input:focus { border-color: var(--black); }
.co-field-input::placeholder { color: #ccc; }
select.co-field-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: var(--space-20);
  cursor: pointer;
}
.co-field--full {
  grid-column: 1 / -1;
}

.co-form-caption {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  color: #aaa;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-24);
}


.co-continue-btn {
  display: block;
  width: 100%;
  max-width: 560px;
  height: 52px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-licensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-bottom: var(--space-16);
}
.co-continue-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.co-continue-btn:not(:disabled):hover { opacity: 0.8; }

.co-back-link {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  display: block;
  margin-top: var(--space-8);
}
.co-back-link:hover { color: var(--black); }


.co-tier-confirm-name {
  font-size: var(--type-licensed-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}
.co-tier-confirm-price {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: var(--space-24);
}
.co-tier-confirm-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  max-width: 560px;
  margin-bottom: var(--space-24);
}
.co-tier-col-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: var(--space-12);
}
.co-tier-col-label--restricted { color: var(--red); }
.co-tier-list {
  list-style: none;
  font-size: 12px;
  line-height: 2;
  color: var(--black);
}
.co-tier-list--restricted { color: var(--red); }
.co-tier-list--restricted li::before {
  content: '— ';
}

.co-step-disclaimer {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  color: #aaa;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-24);
  font-style: italic;
}


.co-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  border: 1px solid #e8e8e8;
  padding: 6px 12px;
  margin-bottom: var(--space-24);
}
.co-secure-badge::before {
  content: '🔒';
  font-size: 10px;
}


.co-review-lines {
  max-width: 560px;
  border: var(--rule);
  margin-bottom: var(--space-24);
}
.co-review-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-12) var(--space-16);
  border-bottom: 1px solid #e8e8e8;
  gap: var(--space-24);
}
.co-review-row:last-child { border-bottom: none; }
.co-review-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  flex-shrink: 0;
}
.co-review-value {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.08em;
  color: var(--black);
  text-align: right;
}

.co-agree-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  max-width: 560px;
  margin-bottom: var(--space-24);
}
.co-agree-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--black);
  cursor: pointer;
}
.co-agree-label {
  font-size: 10px;
  color: #555;
  line-height: 1.7;
  cursor: pointer;
}


.co-processing-screen,
.co-success-screen {
  max-width: 560px;
  padding: var(--space-40) 0;
}
.co-processing-title,
.co-success-title {
  font-size: var(--type-licensed-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.05;
  margin-bottom: var(--space-12);
}
.co-processing-sub,
.co-success-sub {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: var(--space-24);
}
.co-processing-dots {
  font-size: 20px;
  color: var(--red);
  letter-spacing: 4px;
}
.co-success-id-block {
  border: var(--rule);
  padding: var(--space-24);
  margin-bottom: var(--space-32);
}
.co-success-id-label {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: var(--space-8);
}
.co-success-id {
  font-size: var(--type-licensed-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-family: var(--font-licensed);
  margin-bottom: var(--space-8);
}
.co-success-id-note {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  color: #888;
  line-height: 1.6;
}
.co-proceed-btn {
  display: block;
  width: 100%;
  height: 52px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-licensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
.co-proceed-btn:hover { opacity: 0.8; }


.co-summary-col {
  padding: 0 var(--space-32) var(--space-40);
  position: sticky;
  top: 52px;
  background: var(--white);
  border-left: var(--rule);
}
.co-summary-heading {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 calc(-1 * var(--space-32)) var(--space-24);
  font-family: monospace;
  background: var(--black);
  padding: var(--space-12) var(--space-32);
  border-bottom: var(--rule);
}
.co-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.08em;
  text-transform: none;
  padding: var(--space-12) 0;
  border-bottom: 1px solid #e8e8e8;
  gap: var(--space-16);
}
.co-summary-total {
  font-size: 13px;
  font-weight: 700;
  border-bottom: none;
  border-top: var(--rule);
  padding-top: var(--space-16);
}
.co-summary-legal {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  color: #aaa;
  line-height: 1.7;
  margin-top: var(--space-24);
  text-transform: none;
}
.co-summary-help {
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  text-transform: none;
  color: #aaa;
  margin-top: var(--space-16);
  border-top: 1px solid #e8e8e8;
  padding-top: var(--space-16);
}

@media (max-width: 900px) {
  .co-layout { grid-template-columns: 1fr; }
  .co-steps-col { border-right: none; }
  .co-summary-col { position: static; border-top: var(--rule); }
}



.sp-section {
  padding-top: var(--space-48);
  padding-bottom: var(--space-64);
}

.sp-section:first-child {
  padding-top: var(--space-48);
}

#section-tester {
  padding-top: var(--space-64);
  padding-bottom: var(--space-80);
}

.sp-section-inner,
.upgrade-main,
.enterprise-app-main {
  padding-left: var(--space-24);
  padding-right: var(--space-24);
}

.tester-frame {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.specimen-char-bar {
  margin-top: var(--space-24);
}

.tier-card {
  padding: var(--space-24) var(--space-20);
}

.tier-price,
.upgrade-heading,
.enterprise-app-question {
  margin-bottom: var(--space-32);
}

.license-page-inner {
  padding-bottom: var(--space-48);
}

.license-heading {
  margin-top: var(--space-40);
}

.license-terms-box {
  height: 390px;
  padding: var(--space-24);
}

.co-steps-col,
.co-summary-col {
  padding: var(--space-32);
}



.sp-license-cols {
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 0;
  border: var(--rule);
}

.sp-license-left,
.sp-license-right {
  min-width: 0;
}

.sp-license-left {
  border-right: var(--rule);
}

.sp-license-left::before,
.sp-license-right::before {
  display: flex;
  align-items: center;
  height: 36px;
  border-bottom: var(--rule);
  padding: 0 var(--space-16);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sp-license-left::before {
  content: 'License Record';
}

.sp-license-right::before {
  content: 'Terms Summary';
}

.sp-license-table td {
  padding: var(--space-12) var(--space-16);
  border-bottom: var(--rule);
}

.sp-license-table tr:last-child td {
  border-bottom: none;
}

.sp-license-key {
  width: 42%;
  color: #777;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.sp-license-val {
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
}

.sp-license-right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sp-license-desc {
  flex: 1;
  margin: 0;
  padding: var(--space-20);
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-transform: none;
}

.sp-license-upgrade-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: var(--rule);
  padding: var(--space-16) var(--space-20);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.08em;
}

body#upgrade .page-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-top: 52px;
}

.sp-license-upgrade-btn:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 900px) {
  .sp-license-cols {
    grid-template-columns: 1fr;
  }

  .sp-license-left {
    border-right: none;
    border-bottom: var(--rule);
  }
}



body#license {
  background: #f7f7f7;
}

body#license .page-wrap {
  padding-top: 52px;
}

.license-page-inner {
  max-width: 1040px;
  min-height: calc(100vh - 52px);
  padding-top: var(--space-32);
  padding-left: var(--space-32);
  padding-right: var(--space-32);
  padding-bottom: var(--space-32);
}

.license-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-32);
  align-items: end;
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: var(--space-20) 0;
  margin-bottom: var(--space-20);
}

.license-heading {
  margin: 0 0 var(--space-8);
}

.license-tier-name {
  margin: 0;
  letter-spacing: 0.04em;
}

.license-meta {
  display: grid;
  gap: 0;
  border-top: var(--rule);
}

.license-meta div {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: var(--rule);
  padding: var(--space-8) 0;
}

.license-meta dt,
.license-meta dd {
  font-family: monospace;
  font-size: var(--type-mono-ui);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.license-meta dt {
  color: #777;
}

.license-meta dd {
  margin: 0;
}

.license-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-32);
  align-items: start;
  margin-bottom: var(--space-16);
}

.license-intro {
  max-width: none;
  margin: 0;
}

.license-scroll-hint {
  margin: 0;
  text-align: right;
  color: var(--red);
}

.license-document-shell {
  border: var(--rule);
  background: var(--white);
}

.license-document-label {
  height: 36px;
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  padding: 0 var(--space-16);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.license-terms-box {
  height: min(50vh, 500px);
  border: none;
  margin: 0;
  padding: var(--space-24);
  background: var(--white);
}

.license-text-section {
  margin-bottom: var(--space-24);
}

.license-section-heading {
  margin-bottom: var(--space-12);
}

.license-clause {
  line-height: 1.55;
  margin-bottom: var(--space-12);
}

.license-accept-area {
  background: var(--white);
  border: var(--rule);
  border-top: none;
  padding: var(--space-16);
}

.license-accept-btn {
  min-width: 220px;
}

.license-decline-link {
  opacity: 0.55;
}

@media (max-width: 900px) {
  .license-hero,
  .license-brief {
    grid-template-columns: 1fr;
  }

  .license-scroll-hint {
    text-align: left;
  }

  .license-meta {
    max-width: none;
  }
}



body#enterprise-application .page-wrap {
  min-height: 100vh;
  padding-left: var(--wordmark-w);
}

.enterprise-app-main {
  max-width: none;
  min-height: calc(100vh - 52px);
  padding: 0 var(--space-32) 0 var(--space-32);
  margin: 0;
}

.enterprise-app-shell {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  border-top: var(--rule);
}

.enterprise-app-rail {
  border-right: var(--rule);
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.enterprise-app-progress {
  margin: 0;
  color: var(--black);
}

.enterprise-app-progress-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}

.enterprise-app-progress-node {
  aspect-ratio: 1;
  border-right: var(--rule);
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: var(--type-mono-ui);
  color: #aaa;
}

.enterprise-app-progress-node.active {
  background: var(--black);
  color: var(--white);
}

.enterprise-app-progress-node.completed {
  color: var(--black);
}

.enterprise-app-rail-meta {
  margin-top: auto;
  display: grid;
  gap: var(--space-8);
  font-family: monospace;
  font-size: var(--type-mono-caption);
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.enterprise-app-panel {
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
}

.enterprise-app-panel-header {
  height: 44px;
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-24);
  font-size: var(--type-licensed-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.enterprise-app-question-wrap {
  flex: 1;
  padding: var(--space-32) var(--space-40);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: var(--space-40);
  align-items: start;
}

.enterprise-app-question {
  max-width: none;
  margin: 0;
  line-height: 1.18;
}

.enterprise-app-input-wrap {
  border-left: var(--rule);
  padding-left: var(--space-32);
  min-height: 280px;
}

.enterprise-app-textarea {
  min-height: 220px;
  resize: none;
}

.enterprise-app-range-wrap {
  max-width: none;
}

.enterprise-app-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}

.enterprise-app-radio-label {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: var(--space-16);
}

.enterprise-app-file-label {
  width: 100%;
  min-height: 120px;
}

.enterprise-app-checkbox-label {
  max-width: none;
  border: var(--rule);
  padding: var(--space-20);
}

.enterprise-app-text-input {
  width: 100%;
}

.enterprise-app-nav {
  margin: 0;
  padding: var(--space-20) var(--space-24);
  border-top: var(--rule);
}

.enterprise-app-prev,
.enterprise-app-next {
  min-width: 180px;
}

@media (max-width: 900px) {
  body#enterprise-application .page-wrap {
    padding-left: 0;
  }

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

  .enterprise-app-rail {
    border-right: none;
    border-bottom: var(--rule);
  }

  .enterprise-app-question-wrap {
    grid-template-columns: 1fr;
    padding: var(--space-24);
  }

  .enterprise-app-input-wrap {
    border-left: none;
    padding-left: 0;
  }
}


.label-caps,
.label-sm,
.label-md,
.header-logo-name,
.license-header-title,
.login-field-label,
.login-error-msg,
.login-footer,
.license-heading,
.license-scroll-hint,
.license-section-heading,
.license-accept-btn,
.license-decline-link,
.card-foundry-name,
.card-type-label,
.card-date-line,
.hud-stat-label,
.specimen-pre-label,
.specimen-char-count,
.specimen-tier-info,
.specimen-upgrade-link,
.upgrade-page-label,
.tier-name,
.tier-current-badge,
.tier-select-btn,
.upgrade-modal-title,
.upgrade-modal-fine-print,
.upgrade-modal-processing,
.popup-title-text,
.popup-violation-title,
.sp-interest-upgrade-btn,
.sp-interest-dismiss-btn,
.enterprise-app-progress,
.enterprise-app-wordcount,
.enterprise-app-prev,
.enterprise-app-next,
.specimen-nav-btn,
.specimen-nav-link,
.about-modal-header,
.co-topbar-logo,
.co-topbar-cart,
.co-field-label,
.co-form-caption,
.co-back-link,
.co-tier-col-label,
.co-step-disclaimer,
.co-secure-badge,
.co-review-label,
.co-agree-label,
.co-summary-legal,
.co-summary-help,
.enterprise-app-panel-header,
.sp-emblem-item h3,
.site-footer .footer-copy {
  font-size: var(--type-licensed-caption);
}

body,
input,
textarea,
select,
button,
.header-right,
.login-input,
.license-intro,
.license-clause,
.tier-features li,
.upgrade-modal-line,
.popup-violation-text,
.error-body,
.error-return-link,
.sp-license-desc,
.sp-interest-modal-body,
.about-modal-intro,
.enterprise-app-textarea,
.enterprise-app-radio-label,
.enterprise-app-checkbox-label,
.enterprise-app-success-line,
.enterprise-app-success-list li,
.co-step-subtitle,
.co-field-input,
.co-tier-list,
.co-review-value,
.co-summary-line,
.co-success-id-note,
.sp-about-copy > p,
.sp-emblem-item p {
  font-size: var(--type-licensed-body);
}

.license-tier-name,
.upgrade-heading,
.tier-price,
.error-code,
.enterprise-app-question,
.enterprise-app-range-value,
.co-tier-confirm-name,
.co-processing-title,
.co-success-title,
.co-success-id,
.sp-section-heading {
  font-size: var(--type-licensed-display);
}

.ticker-time,
.page-wordmark-top,
.page-wordmark-bottom,
.co-summary-heading {
  font-size: var(--type-mono-caption);
}

.ticker-label,
.ticker-text,
.tester-meta,
.sp-section-label,
.sp-redacted-box-text,
.sp-redacted-caption,
.enterprise-app-progress-node {
  font-size: var(--type-mono-ui);
}

.sp-license-table td {
  font-size: var(--type-mono-body);
}

@media (max-width: 1100px) {
  .tester-shell {
    margin-left: 0;
  }
  .tester-layout {
    grid-template-columns: 1fr;
  }
  .tester-frame {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tl"
      "tr"
      "display"
      "bl"
      "br";
    min-height: 380px;
  }
  .tester-controls {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .tester-shell {
    margin-left: 0;
  }
  .tester-layout {
    grid-template-columns: 1fr;
  }
  .tester-frame {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tl"
      "tr"
      "display"
      "bl"
      "br";
    row-gap: var(--space-20);
    min-height: 0;
  }

  .tester-controls {
    padding: var(--space-12);
  }

  .tester-meta,
  .tester-meta--tr,
  .tester-meta--br {
    text-align: left;
  }

  .specimen-display {
    min-height: 150px;
    font-size: clamp(34px, 11vw, 52px);
  }
}
