:root {
  color-scheme: dark;
  --charcoal: #0c0c0e;
  --ink: #18181c;
  --panel: #1c1c20;
  --paper: #f5f5f5;
  --muted: #aaaab0;
  --muted-dark: #5c5c66;
  --lime: #cdff00;
  --line-dark: rgba(245, 245, 245, 0.13);
  --line-light: rgba(12, 12, 14, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --font-display: Montserrat, "Segoe UI", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--charcoal);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(12, 12, 14, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 12, 14, 0.9);
  border-color: var(--line-dark);
}

.nav-shell {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  min-height: 4.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(205, 255, 0, 0.7);
  background: rgba(205, 255, 0, 0.1);
  color: var(--lime);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-logo {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.98rem;
}

.brand-copy small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.92rem;
}

.nav-links a {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--lime);
}

.nav-links a.is-active {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

.nav-cta {
  padding: 0 0.9rem;
  border: 1px solid rgba(205, 255, 0, 0.62);
  border-radius: 8px;
  color: var(--lime) !important;
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 14, 0.96) 0%, rgba(12, 12, 14, 0.79) 36%, rgba(12, 12, 14, 0.18) 72%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.3) 0%, rgba(12, 12, 14, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 5.6rem;
  padding-bottom: 2.2rem;
}

.eyebrow,
.section-kicker,
.work-type,
.package-label {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 38rem;
  margin: 1.1rem 0 0;
  color: rgba(245, 245, 245, 0.84);
  font-size: 1.18rem;
  line-height: 1.62;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button-primary {
  background: var(--lime);
  color: var(--charcoal);
}

.button-secondary {
  background: rgba(245, 245, 245, 0.07);
  border-color: var(--line-dark);
  color: var(--paper);
}

.button-secondary.light {
  background: transparent;
  border-color: var(--line-light);
  color: var(--charcoal);
}

.button-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.button:hover,
.button:focus-visible,
.package-card a:hover,
.package-card a:focus-visible {
  transform: translateY(-1px);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: rgba(245, 245, 245, 0.72);
}

.hero-metrics span {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.45);
}

.hero-metrics strong {
  color: var(--lime);
  font-family: var(--font-display);
}

.band-light {
  background: var(--paper);
  color: var(--charcoal);
}

.band-dark {
  background: var(--ink);
  color: var(--paper);
}

.band-deep {
  background: var(--charcoal);
  color: var(--paper);
}

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

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.8rem 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.intro-copy p {
  margin: 0;
  color: #37373d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.trait-list li {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--charcoal);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.work-card,
.package-card,
.process-list li {
  border-radius: 8px;
}

.service-card {
  min-height: 15.6rem;
  padding: 1.2rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.62;
}

.service-index {
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.layer-stack {
  display: grid;
  gap: 0.55rem;
}

.layer-stack div {
  min-height: 3rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(205, 255, 0, 0.12), rgba(245, 245, 245, 0.025));
  color: rgba(245, 245, 245, 0.9);
}

.layer-stack span {
  width: 2.25rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}

.work-card {
  min-height: 27rem;
  border: 1px solid var(--line-light);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.work-visual {
  min-height: 15rem;
  border-bottom: 1px solid var(--line-light);
}

.feature-work {
  min-height: 31rem;
}

.image-backed {
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.04), rgba(12, 12, 14, 0.78)),
    url("assets/layer-nine-hero-1100.webp") center / cover;
}

.lime-grid {
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.36), rgba(12, 12, 14, 0.78)),
    repeating-linear-gradient(90deg, rgba(12, 12, 14, 0.28) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(12, 12, 14, 0.18) 0 1px, transparent 1px 22px),
    #d8ff31;
}

.dark-grid {
  background:
    radial-gradient(circle at 70% 28%, rgba(205, 255, 0, 0.66), transparent 18%),
    linear-gradient(145deg, rgba(245, 245, 245, 0.14), rgba(12, 12, 14, 0.96)),
    repeating-linear-gradient(90deg, rgba(245, 245, 245, 0.12) 0 1px, transparent 1px 24px),
    var(--charcoal);
}

.work-copy {
  padding: 1.15rem;
}

.work-copy h3 {
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.work-copy p:not(.work-type) {
  margin: 0.7rem 0 0;
  color: #4f4f58;
  line-height: 1.6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  min-height: 15rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  background: rgba(245, 245, 245, 0.04);
}

.process-list span {
  display: inline-flex;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 2.2rem;
}

.process-list h3 {
  font-size: 1.1rem;
}

.process-list p {
  margin: 0.6rem 0 0;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.56;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  min-height: 28rem;
  padding: 1.2rem;
  border: 1px solid var(--line-light);
  background: #ffffff;
  display: grid;
  gap: 1rem;
  align-content: start;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
}

.package-featured {
  border-color: rgba(205, 255, 0, 0.92);
  box-shadow: 0 20px 60px rgba(205, 255, 0, 0.16);
}

.package-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.package-price {
  margin: 0;
  color: #34343a;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.package-card li {
  min-height: 2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #505059;
}

.package-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.24);
}

.package-card a {
  align-self: end;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--paper);
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.comparison-table {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.35fr 0.8fr;
  min-height: 3.7rem;
  border-bottom: 1px solid var(--line-dark);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span {
  display: flex;
  align-items: center;
  padding: 0.85rem;
  color: rgba(245, 245, 245, 0.78);
}

.comparison-row span + span {
  border-left: 1px solid var(--line-dark);
}

.comparison-head {
  background: rgba(205, 255, 0, 0.1);
}

.comparison-head span {
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cta-panel h2 {
  max-width: 54rem;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(245, 245, 245, 0.72);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 7.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner p {
  margin: 0;
  max-width: 34rem;
  text-align: right;
}

.detail-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.detail-hero::before,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.detail-hero::before {
  background: url("assets/layer-nine-hero-1800.webp") center right / cover;
  opacity: 0.72;
}

.detail-hero::after {
  background:
    linear-gradient(90deg, rgba(12, 12, 14, 0.97) 0%, rgba(12, 12, 14, 0.84) 42%, rgba(12, 12, 14, 0.36) 100%),
    linear-gradient(180deg, rgba(12, 12, 14, 0.42), rgba(12, 12, 14, 0.92));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  align-items: end;
}

.crumb {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 1.2rem;
  color: rgba(245, 245, 245, 0.72);
  font-weight: 800;
}

.crumb:hover,
.crumb:focus-visible {
  color: var(--lime);
}

.detail-hero h1 {
  max-width: 12ch;
  margin: 0.8rem 0 0;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.96;
}

.detail-lede {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(245, 245, 245, 0.82);
  font-size: 1.12rem;
  line-height: 1.62;
}

.detail-summary {
  border: 1px solid rgba(205, 255, 0, 0.38);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.68);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.detail-summary p {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.55;
}

.detail-summary strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  min-height: 14rem;
  padding: 1.15rem;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
}

.detail-card.dark {
  border-color: var(--line-dark);
  background: rgba(245, 245, 245, 0.04);
  box-shadow: none;
}

.detail-card span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.detail-card h3 {
  font-size: 1.28rem;
}

.detail-card p,
.detail-card li {
  color: #505059;
  line-height: 1.58;
}

.detail-card.dark p,
.detail-card.dark li {
  color: rgba(245, 245, 245, 0.72);
}

.detail-card ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
}

.detail-card li {
  display: flex;
  gap: 0.5rem;
}

.detail-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.5rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--lime);
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-strip li {
  min-height: 11rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(205, 255, 0, 0.1), rgba(245, 245, 245, 0.035));
}

.timeline-strip span {
  display: inline-block;
  margin-bottom: 1.8rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.timeline-strip h3 {
  font-size: 1.1rem;
}

.timeline-strip p {
  margin: 0.55rem 0 0;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.55;
}

.detail-cta {
  display: grid;
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.detail-cta h2 {
  max-width: 56rem;
}

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

.market-preview,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.asset-grid {
  align-items: stretch;
}

.asset-card {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.asset-card.is-hidden {
  display: none;
}

.asset-visual {
  min-height: 12rem;
  border-bottom: 1px solid var(--line-light);
}

.shop-card .asset-visual {
  min-height: 14rem;
}

.asset-copy {
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.asset-type {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-copy h3 {
  font-size: 1.28rem;
}

.asset-copy p:not(.asset-type) {
  margin: 0;
  color: #505059;
  line-height: 1.55;
}

.asset-copy strong {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.asset-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.asset-meta span {
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #4f4f58;
  font-size: 0.78rem;
  font-weight: 800;
}

.asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.market-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.2rem;
}

.market-head .section-heading {
  margin-bottom: 0;
}

.cart-panel {
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
}

.cart-panel strong,
.cart-panel > span {
  display: block;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.cart-panel p {
  margin: 0.65rem 0;
  color: #505059;
  line-height: 1.5;
}

.checkout-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.checkout-form label {
  color: #34343a;
  font-size: 0.86rem;
  font-weight: 900;
}

.checkout-form input {
  width: 100%;
  border: 1px solid rgba(12, 12, 14, 0.2);
  border-radius: 8px;
  background: #f7f7f7;
  color: var(--charcoal);
  padding: 0.75rem 0.8rem;
}

.checkout-form .button {
  width: 100%;
  margin-top: 0.25rem;
}

.checkout-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.cart-clear {
  min-height: 2.35rem;
  margin-top: 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: transparent;
  color: var(--charcoal);
  font-weight: 900;
  cursor: pointer;
}

.cart-clear:hover,
.cart-clear:focus-visible {
  border-color: var(--lime);
  background: rgba(205, 255, 0, 0.18);
}

.checkout-status {
  margin-top: 0.8rem !important;
  border: 1px solid rgba(205, 255, 0, 0.65);
  border-radius: 8px;
  background: rgba(205, 255, 0, 0.14);
  color: #25252a !important;
  padding: 0.75rem;
}

.market-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.market-toolbar button {
  min-height: 2.55rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 0.55rem 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.market-toolbar button.is-active,
.market-toolbar button:hover,
.market-toolbar button:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
}

.web-lines {
  background:
    linear-gradient(135deg, rgba(12, 12, 14, 0.96), rgba(205, 255, 0, 0.28)),
    repeating-linear-gradient(0deg, rgba(245, 245, 245, 0.12) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(245, 245, 245, 0.1) 0 1px, transparent 1px 28px),
    var(--charcoal);
}

.deck-lines {
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.46), rgba(12, 12, 14, 0.74)),
    repeating-linear-gradient(90deg, rgba(12, 12, 14, 0.26) 0 1px, transparent 1px 52px),
    #efffc0;
}

.motion-lines {
  background:
    radial-gradient(circle at 68% 34%, rgba(205, 255, 0, 0.86), transparent 14%),
    linear-gradient(115deg, rgba(12, 12, 14, 0.98), rgba(245, 245, 245, 0.11)),
    repeating-linear-gradient(115deg, rgba(205, 255, 0, 0.16) 0 2px, transparent 2px 22px),
    var(--charcoal);
}

.seller-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.seller-grid > .button {
  grid-column: 1 / -1;
  width: max-content;
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.seller-steps article {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.04);
}

.seller-steps span {
  display: block;
  margin-bottom: 1.7rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.seller-steps p {
  margin: 0.55rem 0 0;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.55;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.form-note {
  max-width: 33rem;
  color: #505059;
  line-height: 1.65;
}

.seller-form {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.15rem;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.seller-form label,
.check-row {
  color: #34343a;
  font-weight: 900;
}

.seller-form input,
.seller-form select,
.seller-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 12, 14, 0.2);
  border-radius: 8px;
  background: #f7f7f7;
  color: var(--charcoal);
  padding: 0.82rem 0.9rem;
  outline: none;
}

.seller-form input:focus,
.seller-form select:focus,
.seller-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.28);
}

.check-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.45;
}

.check-row input {
  width: auto;
  margin-top: 0.2rem;
}

.registration-result {
  margin: 0;
  border: 1px solid rgba(205, 255, 0, 0.65);
  border-radius: 8px;
  background: rgba(205, 255, 0, 0.14);
  color: #25252a;
  padding: 0.85rem;
  line-height: 1.5;
}

.registration-result.is-error,
.checkout-status.is-error {
  border-color: rgba(255, 95, 95, 0.72);
  background: rgba(255, 95, 95, 0.12);
}

.blog-filter,
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.blog-filter {
  justify-content: flex-end;
}

.blog-filter a,
.blog-categories a {
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 0.55rem 0.8rem;
  font-weight: 900;
}

.blog-filter a.is-active,
.blog-filter a:hover,
.blog-filter a:focus-visible,
.blog-categories a.is-active,
.blog-categories a:hover,
.blog-categories a:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
}

.blog-categories {
  margin-bottom: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  min-height: 18rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(12, 12, 14, 0.07);
}

.blog-card h3 {
  margin-top: 0.5rem;
  font-size: 1.28rem;
  line-height: 1.12;
}

.blog-card p:not(.asset-type) {
  color: #505059;
  line-height: 1.6;
}

.blog-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-card-foot span {
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: #4f4f58;
  font-size: 0.78rem;
  font-weight: 800;
}

.text-link {
  width: max-content;
  color: var(--charcoal);
  font-weight: 900;
  border-bottom: 2px solid var(--lime);
}

.text-link:hover,
.text-link:focus-visible {
  color: #4d6100;
}

.article-shell {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 5rem;
}

.article-shell .crumb {
  color: var(--lime);
  font-weight: 900;
}

.article-shell h1 {
  max-width: 12ch;
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.article-meta span {
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-excerpt {
  max-width: 48rem;
  color: rgba(245, 245, 245, 0.78);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-body {
  max-width: 46rem;
  margin-top: 2rem;
}

.article-body p {
  color: rgba(245, 245, 245, 0.82);
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-display);
  line-height: 1.05;
  text-transform: uppercase;
}

.article-body h2 {
  font-size: 2rem;
}

.article-body h3 {
  font-size: 1.55rem;
}

.article-body blockquote {
  margin: 2rem 0;
  border-left: 4px solid var(--lime);
  padding: 0.2rem 0 0.2rem 1rem;
  color: rgba(245, 245, 245, 0.86);
  font-size: 1.2rem;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  color: rgba(245, 245, 245, 0.82);
  line-height: 1.8;
}

.article-body a {
  color: var(--lime);
  border-bottom: 1px solid currentColor;
}

.article-body figure {
  margin: 2rem 0;
}

.article-body img,
.article-body video {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #050506;
}

.article-body figcaption {
  margin-top: 0.55rem;
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-page {
  min-height: 100svh;
  background: #101013;
}

.admin-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.admin-topbar {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.admin-topbar .button {
  min-height: 2.5rem;
}

.admin-login-grid,
.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.55fr);
  gap: 2rem;
  align-items: start;
  padding: 5rem 0 2.5rem;
}

.admin-login-grid h1,
.admin-hero h1,
.admin-setup h1 {
  max-width: 12ch;
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-login {
  margin-top: 0.25rem;
}

.admin-card {
  margin-top: 4rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 1.2rem;
}

.admin-card h1 {
  color: var(--charcoal);
}

.admin-card p {
  color: #505059;
  line-height: 1.65;
}

.admin-card code,
.admin-card pre {
  color: var(--charcoal);
}

.admin-card pre {
  overflow-x: auto;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #f7f7f7;
  padding: 1rem;
}

.admin-tabs,
.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-tabs {
  justify-content: flex-end;
}

.admin-tabs a,
.admin-stats a {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.05);
  color: var(--paper);
}

.admin-tabs a {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  font-weight: 900;
}

.admin-tabs a:hover,
.admin-tabs a:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
}

.admin-alert {
  margin: 0 0 1rem;
  border: 1px solid rgba(205, 255, 0, 0.65);
  border-radius: 8px;
  background: rgba(205, 255, 0, 0.14);
  color: var(--paper);
  padding: 0.85rem;
}

.admin-alert.is-error {
  border-color: rgba(255, 95, 95, 0.72);
  background: rgba(255, 95, 95, 0.12);
}

.admin-stats {
  margin-bottom: 2rem;
}

.admin-stats a {
  min-height: 7.5rem;
  flex: 1 1 13rem;
  display: grid;
  align-content: space-between;
  padding: 1rem;
}

.admin-stats span {
  color: rgba(245, 245, 245, 0.72);
  font-weight: 900;
}

.admin-stats strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.admin-section {
  scroll-margin-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 2rem;
}

.admin-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-section-head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.admin-section-head span {
  color: rgba(245, 245, 245, 0.7);
  font-weight: 900;
}

.admin-records {
  display: grid;
  gap: 0.85rem;
}

.admin-record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.24fr);
  gap: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.admin-record h3 {
  margin-top: 0.45rem;
  font-size: 1.35rem;
}

.admin-record p,
.admin-record small {
  color: #505059;
  line-height: 1.55;
}

.admin-record dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0.85rem 0;
}

.admin-record dt {
  color: #777780;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-record dd {
  margin: 0.2rem 0 0;
  color: var(--charcoal);
  font-weight: 800;
}

.admin-record dd a {
  color: #4d6100;
  border-bottom: 1px solid var(--lime);
}

.admin-status-form {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.admin-status-form select {
  width: 100%;
  border: 1px solid rgba(12, 12, 14, 0.2);
  border-radius: 8px;
  background: #f7f7f7;
  color: var(--charcoal);
  padding: 0.82rem 0.9rem;
  outline: none;
}

.admin-status-form .button {
  width: 100%;
}

.admin-blog-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.admin-blog-form .admin-form-wide,
.admin-blog-form > button {
  grid-column: 1 / -1;
}

.rich-editor {
  gap: 0.65rem;
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #f7f7f7;
  padding: 0.5rem;
}

.rich-toolbar select,
.rich-toolbar button {
  min-height: 2.25rem;
  border: 1px solid rgba(12, 12, 14, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 0.35rem 0.55rem;
  font-weight: 900;
}

.rich-toolbar button {
  cursor: pointer;
}

.rich-toolbar button.is-active,
.rich-toolbar button:hover,
.rich-toolbar button:focus-visible {
  border-color: var(--lime);
  background: rgba(205, 255, 0, 0.22);
}

.rich-visual {
  min-height: 20rem;
  overflow: auto;
  border: 1px solid rgba(12, 12, 14, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  padding: 1rem;
  outline: none;
  line-height: 1.65;
}

.rich-visual:empty::before {
  content: "Write the blog body here. Drag images or videos into this space.";
  color: #777780;
}

.rich-visual:focus,
.rich-visual.is-dragging {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.28);
}

.rich-visual h2,
.rich-visual h3,
.rich-visual h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.rich-visual figure {
  margin: 1rem 0;
}

.rich-visual img,
.rich-visual video {
  max-width: 100%;
  border-radius: 8px;
  background: #101013;
}

.rich-visual figcaption {
  color: #676770;
  font-size: 0.9rem;
}

.rich-editor textarea {
  min-height: 20rem;
  font-family: "Courier New", monospace;
}

.rich-note {
  margin: 0;
  color: #62626c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-items {
  display: grid;
  gap: 0.4rem;
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
}

.admin-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  color: var(--charcoal);
  font-weight: 800;
}

.admin-items span {
  color: #505059;
}

@media (max-width: 1020px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

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

  .feature-work,
  .work-card {
    min-height: 24rem;
  }

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

  .comparison-grid,
  .system-grid,
  .detail-hero-inner,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .timeline-strip,
  .market-preview,
  .asset-grid,
  .blog-grid,
  .seller-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-head,
  .seller-grid,
  .admin-login-grid,
  .admin-hero,
  .admin-record,
  .registration-grid {
    grid-template-columns: 1fr;
  }

  .blog-filter {
    justify-content: flex-start;
  }

  .admin-tabs {
    justify-content: flex-start;
  }

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

  .admin-blog-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 4rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    height: calc(100svh - 4rem);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    background: rgba(12, 12, 14, 0.985);
    border-bottom: 1px solid var(--line-dark);
    transform: translate(-50%, -120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 3.2rem;
    border-bottom-color: var(--line-dark);
  }

  .nav-cta {
    margin-top: 0.7rem;
    justify-content: center;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 12, 14, 0.98) 0%, rgba(12, 12, 14, 0.78) 58%, rgba(12, 12, 14, 0.34) 100%),
      linear-gradient(180deg, rgba(12, 12, 14, 0.38), rgba(12, 12, 14, 0.82));
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 1.3rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .detail-hero {
    min-height: 76svh;
  }

  .detail-hero-inner {
    padding: 5.5rem 0 3rem;
  }

  .detail-hero h1 {
    font-size: 2.7rem;
  }

  .detail-lede {
    font-size: 1rem;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions,
  .detail-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    gap: 0.5rem;
  }

  .hero-metrics span {
    flex: 1 1 100%;
  }

  .section-inner {
    padding: 4rem 0;
  }

  .intro-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .service-grid,
  .package-grid,
  .detail-grid,
  .timeline-strip,
  .market-preview,
  .asset-grid,
  .blog-grid,
  .blog-grid.compact,
  .seller-steps,
  .process-list {
    grid-template-columns: 1fr;
  }

  .seller-grid > .button,
  .asset-actions .button {
    width: 100%;
  }

  .market-toolbar button {
    flex: 1 1 auto;
  }

  .blog-filter a,
  .blog-categories a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .article-shell {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .admin-shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .admin-topbar,
  .admin-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-login-grid,
  .admin-hero {
    padding-top: 3rem;
  }

  .admin-tabs a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .admin-record dl {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 13rem;
  }

  .package-card {
    min-height: 25rem;
  }

  .comparison-table {
    border-radius: 8px;
  }

  .comparison-row,
  .comparison-head {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    padding: 0.7rem 0;
  }

  .comparison-row span {
    min-height: 2.2rem;
    padding: 0.35rem 0.85rem;
  }

  .comparison-row span + span {
    border-left: 0;
  }

  .footer-inner {
    min-height: 10rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-content {
    width: min(100% - 1.25rem, 1180px);
  }

  .detail-hero-inner {
    width: min(100% - 1.25rem, 1180px);
  }

  .section-inner,
  .nav-shell,
  .footer-inner {
    width: min(100% - 1.25rem, 1180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
