: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;
  overflow-x: clip;
}

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-identity {
  display: grid;
  gap: 0.85rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  color: rgba(245, 245, 245, 0.56);
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

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

.footer-links a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.trust-hero {
  padding: 8.5rem 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.1), transparent 34rem),
    var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
}

.trust-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.trust-hero h1 {
  max-width: 52rem;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.trust-hero p:not(.eyebrow) {
  max-width: 45rem;
  margin: 0;
  color: rgba(245, 245, 245, 0.74);
  font-size: 1.06rem;
  line-height: 1.7;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.trust-document {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
}

.trust-document h2 {
  margin: 1.3rem 0 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.trust-document h2:first-child {
  margin-top: 0;
}

.trust-document p,
.trust-document li {
  margin: 0;
  color: rgba(24, 24, 28, 0.72);
  line-height: 1.75;
}

.trust-document ul,
.trust-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.trust-document a {
  color: var(--charcoal);
  font-weight: 800;
  border-bottom: 1px solid rgba(24, 24, 28, 0.34);
}

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

.trust-panel {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--charcoal);
  color: rgba(245, 245, 245, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-panel span,
.trust-card span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-panel li {
  margin-top: 0.45rem;
  line-height: 1.55;
}

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

.trust-card {
  display: grid;
  gap: 0.85rem;
  min-height: 18rem;
  padding: 1.2rem;
  background: var(--charcoal);
  color: rgba(245, 245, 245, 0.74);
  border-radius: 8px;
}

.trust-card h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-card p {
  margin: 0;
  line-height: 1.65;
}

.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;
}

.article-experience-page {
  background: #08080a;
}

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

.article-experience-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-experience-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.72) 48%, rgba(8, 8, 10, 0.36) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.92) 100%);
}

.article-experience-hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4rem;
}

.article-experience-hero .crumb {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--lime);
  font-weight: 900;
  border-bottom: 2px solid rgba(205, 255, 0, 0.44);
}

.article-experience-hero h1 {
  max-width: 13ch;
  margin: 0.85rem 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 4.75rem;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.article-experience-lede {
  max-width: 45rem;
  margin: 1.2rem 0 0;
  color: rgba(245, 245, 245, 0.82);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

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

.article-jumpbar {
  position: sticky;
  top: 4.4rem;
  z-index: 6;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 8, 10, 0.93);
  backdrop-filter: blur(16px);
  padding: 0.6rem max(1rem, calc((100vw - 1180px) / 2));
  scrollbar-width: thin;
}

.article-jumpbar a {
  flex: 0 0 auto;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 999px;
  color: rgba(245, 245, 245, 0.76);
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 900;
}

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

.article-experience-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 4rem 0 5rem;
}

.article-sidebar {
  position: sticky;
  top: 8.4rem;
}

.article-sidebar-card {
  display: grid;
  gap: 0.55rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.05);
  padding: 0.9rem;
}

.article-sidebar-card span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-sidebar-card a {
  color: rgba(245, 245, 245, 0.74);
  font-size: 0.9rem;
  line-height: 1.35;
}

.article-sidebar-card a:hover,
.article-sidebar-card a:focus-visible {
  color: var(--paper);
}

.article-experience-content {
  display: grid;
  gap: 3.2rem;
  min-width: 0;
}

.article-section,
.answer-panel,
.tool-duel,
.choice-lab,
.workflow-strip,
.pros-cons-stage,
.faq-stack,
.final-verdict {
  scroll-margin-top: 8rem;
}

.article-experience-content h2 {
  margin: 0.3rem 0 1rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.article-experience-content h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  line-height: 1.05;
  text-transform: uppercase;
}

.article-experience-content p,
.article-experience-content li {
  color: rgba(245, 245, 245, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
}

.answer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 1rem;
  border: 1px solid rgba(205, 255, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.14), rgba(245, 245, 245, 0.04) 58%),
    #101013;
  padding: 1.3rem;
}

.answer-scoreboard {
  display: grid;
  gap: 0.7rem;
}

.answer-scoreboard article,
.winner-grid article,
.workflow-steps article,
.takeaway-grid article {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.06);
}

.answer-scoreboard article {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
}

.answer-scoreboard span,
.winner-grid span,
.workflow-steps span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-scoreboard strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.tool-card-grid,
.choice-columns,
.pros-cons-grid,
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tool-detail,
.choice-columns details,
.pros-cons-grid details,
.faq-stack details {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #111115;
  overflow: hidden;
}

.tool-detail summary,
.choice-columns summary,
.pros-cons-grid summary,
.faq-stack summary {
  cursor: pointer;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

.tool-detail summary::-webkit-details-marker,
.choice-columns summary::-webkit-details-marker,
.pros-cons-grid summary::-webkit-details-marker,
.faq-stack summary::-webkit-details-marker {
  display: none;
}

.tool-detail summary {
  display: grid;
  gap: 0.35rem;
  min-height: 9rem;
  align-content: end;
  padding: 1rem;
}

.tool-detail summary::after,
.choice-columns summary::after,
.pros-cons-grid summary::after,
.faq-stack summary::after {
  content: "+";
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--font-body);
}

.tool-detail[open] summary::after,
.choice-columns details[open] summary::after,
.pros-cons-grid details[open] summary::after,
.faq-stack details[open] summary::after {
  content: "-";
}

.tool-detail summary span {
  color: var(--lime);
  font-size: 0.8rem;
}

.tool-detail summary strong {
  max-width: 12rem;
  color: var(--paper);
  font-size: 1.55rem;
}

.tool-detail summary::after {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.tool-detail summary {
  position: relative;
}

.tool-detail > div {
  display: grid;
  gap: 0.9rem;
  border-top: 1px solid var(--line-dark);
  padding: 1rem;
}

.firefly-card summary {
  background:
    linear-gradient(145deg, rgba(205, 255, 0, 0.2), transparent 64%),
    #151519;
}

.midjourney-card summary {
  background:
    linear-gradient(145deg, rgba(255, 80, 190, 0.18), rgba(87, 180, 255, 0.12) 64%),
    #151519;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.05);
  padding: 0.42rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.interactive-score-table {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #f5f5f5;
}

.interactive-score-table table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  color: var(--charcoal);
}

.interactive-score-table th,
.interactive-score-table td {
  border-bottom: 1px solid rgba(12, 12, 14, 0.13);
  padding: 0.8rem;
  text-align: left;
  vertical-align: middle;
}

.interactive-score-table thead th {
  background: #101013;
  color: var(--paper);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.interactive-score-table tbody tr:hover {
  background: rgba(205, 255, 0, 0.16);
}

.interactive-score-table td {
  min-width: 11rem;
}

.interactive-score-table td strong {
  display: inline-flex;
  margin-left: 0.45rem;
  color: #3c3c42;
  font-size: 0.84rem;
}

.score-bar {
  width: 6rem;
  height: 0.58rem;
  display: inline-flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.16);
  vertical-align: middle;
}

.score-bar span {
  width: calc((var(--score) / 5) * 100%);
  background: linear-gradient(90deg, var(--lime), #57b4ff);
}

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

.winner-grid article {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.winner-grid h3 {
  font-size: 1.25rem;
}

.choice-columns details,
.pros-cons-grid details,
.faq-stack details {
  padding: 0;
}

.choice-columns summary,
.pros-cons-grid summary,
.faq-stack summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding: 1rem;
}

.choice-columns ul,
.pros-cons-columns,
.faq-stack details p {
  padding: 1rem;
}

.choice-columns ul,
.pros-cons-columns ul {
  margin: 0;
}

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

.workflow-steps article {
  display: grid;
  gap: 0.7rem;
  min-height: 16rem;
  align-content: start;
  padding: 1rem;
}

.workflow-steps h3 {
  font-size: 1.2rem;
}

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

.pros-cons-columns h3 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.faq-stack {
  display: grid;
  gap: 0.75rem;
}

.final-verdict {
  border: 1px solid rgba(205, 255, 0, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(205, 255, 0, 0.12), transparent 48%),
    #111115;
  padding: 1.25rem;
}

.takeaway-grid {
  margin-top: 1rem;
}

.takeaway-grid article {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.takeaway-grid strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.takeaway-grid span {
  color: rgba(245, 245, 245, 0.74);
  line-height: 1.55;
}

.article-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 30;
  width: 0;
  height: 4px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(205, 255, 0, 0.62);
}

.method-card,
.pricing-stage,
.benchmark-stage,
.tool-quiz,
.commercial-note,
.author-card,
.source-panel {
  scroll-margin-top: 8rem;
}

.method-card,
.tool-quiz,
.commercial-note,
.author-card,
.source-panel {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #111115;
  padding: 1.2rem;
}

.method-card {
  border-left: 6px solid var(--lime);
}

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

.pricing-card {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--charcoal);
  padding: 1rem;
}

.pricing-card.is-dark {
  background: #111115;
  color: var(--paper);
}

.pricing-card span {
  color: #4d6100;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card.is-dark span {
  color: var(--lime);
}

.pricing-card strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-card p {
  margin: 0;
  color: rgba(24, 24, 28, 0.72);
}

.pricing-card.is-dark p {
  color: rgba(245, 245, 245, 0.76);
}

.article-note {
  border: 1px solid rgba(205, 255, 0, 0.42);
  border-radius: 8px;
  background: rgba(205, 255, 0, 0.08);
  padding: 0.85rem;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.benchmark-grid article,
.score-lab article {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.06);
  padding: 0.85rem;
}

.benchmark-grid strong,
.score-lab strong {
  display: block;
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.3;
}

.benchmark-placeholder {
  min-height: 8rem;
  display: grid;
  place-items: center;
  margin-top: 0.75rem;
  border: 2px dashed rgba(245, 245, 245, 0.24);
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.56);
  font-size: 0.86rem;
  line-height: 1.4;
  padding: 0.8rem;
  text-align: center;
}

.score-lab {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.score-meter {
  --meter: 50%;
  position: relative;
  display: block;
  height: 0.7rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.12);
  margin-top: 0.45rem;
}

.score-meter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--meter);
  background: linear-gradient(90deg, var(--lime), #57b4ff);
}

.tool-quiz {
  background:
    linear-gradient(145deg, rgba(205, 255, 0, 0.12), transparent 48%),
    #111115;
}

.quiz-question {
  display: none;
  gap: 1rem;
}

.quiz-question.is-active {
  display: grid;
}

.quiz-options {
  display: grid;
  gap: 0.65rem;
}

.quiz-options button,
.quiz-result button {
  min-height: 3.2rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.07);
  color: var(--paper);
  cursor: pointer;
  padding: 0.75rem 0.9rem;
  text-align: left;
  font-weight: 900;
}

.quiz-options button:hover,
.quiz-options button:focus-visible,
.quiz-options button.is-selected {
  border-color: var(--lime);
  background: rgba(205, 255, 0, 0.16);
}

.quiz-actions {
  margin-top: 1rem;
}

.quiz-result {
  margin-top: 1rem;
  border: 1px solid rgba(205, 255, 0, 0.46);
  border-radius: 8px;
  background: rgba(205, 255, 0, 0.1);
  padding: 1rem;
}

.quiz-result h3 {
  margin-bottom: 0.55rem;
}

.author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.author-avatar {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.source-grid a {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.06);
  color: rgba(245, 245, 245, 0.82);
  padding: 0.8rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.portfolio-hero {
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.12), rgba(87, 180, 255, 0.1) 42%, transparent 70%),
    #0c0c0e;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.portfolio-media-link {
  display: block;
  height: 100%;
}

.portfolio-title-link:hover,
.portfolio-title-link:focus-visible {
  color: #526600;
}

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(12, 12, 14, 0.1);
}

.portfolio-media {
  min-height: 24rem;
  background: #101013;
}

.portfolio-media img,
.portfolio-media video,
.portfolio-generated {
  width: 100%;
  height: 100%;
  min-height: 24rem;
}

.portfolio-media img,
.portfolio-media video {
  object-fit: cover;
}

.portfolio-generated {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(205, 255, 0, 0.84), rgba(87, 180, 255, 0.46) 46%, rgba(255, 80, 190, 0.38)),
    #101013;
}

.portfolio-generated span {
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 12, 14, 0.35);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.88);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.2rem;
}

.portfolio-copy h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.portfolio-copy p {
  margin: 0;
  color: rgba(24, 24, 28, 0.72);
  line-height: 1.65;
}

.portfolio-copy .chip-list li {
  border-color: rgba(12, 12, 14, 0.15);
  background: rgba(12, 12, 14, 0.05);
  color: #242428;
}

.portfolio-copy details {
  border: 1px solid rgba(12, 12, 14, 0.13);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.04);
  overflow: hidden;
}

.portfolio-copy summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-copy summary::after {
  content: "+";
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 12, 14, 0.18);
  border-radius: 50%;
}

.portfolio-copy details[open] summary::after {
  content: "-";
}

.portfolio-story {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(12, 12, 14, 0.12);
  padding: 0.9rem;
}

.portfolio-story p,
.portfolio-story li {
  color: rgba(24, 24, 28, 0.74);
}

.portfolio-story figure {
  margin: 0;
}

.portfolio-story img,
.portfolio-story video {
  width: 100%;
  border-radius: 8px;
}

.portfolio-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(12, 12, 14, 0.1);
  padding-top: 0.9rem;
}

.portfolio-foot span {
  color: #4b4b52;
  font-size: 0.86rem;
  font-weight: 900;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.portfolio-project-hero {
  min-height: 78svh;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 78% 18%, rgba(205, 255, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(87, 180, 255, 0.12), transparent 46%),
    #08080a;
}

.portfolio-project-hero-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2rem;
  align-items: end;
  padding: 8rem 0 4rem;
}

.portfolio-project-hero .crumb {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--lime);
  font-weight: 900;
  border-bottom: 2px solid rgba(205, 255, 0, 0.44);
}

.portfolio-project-hero h1 {
  max-width: 12ch;
  margin: 0.85rem 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.portfolio-facts {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.06);
  padding: 1rem;
}

.portfolio-facts dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.portfolio-facts div {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 0.75rem;
}

.portfolio-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.portfolio-facts dt {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-facts dd {
  margin: 0;
  color: rgba(245, 245, 245, 0.84);
  font-weight: 800;
}

.portfolio-project-media-band {
  background: #101013;
  border-bottom: 1px solid var(--line-dark);
  padding: 1rem;
}

.portfolio-project-media {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #08080a;
}

.portfolio-project-media img,
.portfolio-project-media video,
.portfolio-project-media .portfolio-generated {
  width: 100%;
  min-height: 34rem;
}

.portfolio-project-media img,
.portfolio-project-media video {
  object-fit: cover;
}

.portfolio-project-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2rem;
  align-items: start;
  padding: 4rem 0 5rem;
}

.portfolio-project-main {
  min-width: 0;
}

.portfolio-service-panel {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.05);
  padding: 1rem;
}

.portfolio-service-panel .button {
  margin-top: 0.3rem;
}

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

.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;
}

.wp-blog-admin {
  border-top: 0;
  padding-top: 0;
}

.wp-admin-frame {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  min-height: 48rem;
  overflow: hidden;
  border: 1px solid #c3c4c7;
  background: #f0f0f1;
  color: #1d2327;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.wp-admin-menu {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  background: #1d2327;
  color: #c3c4c7;
  padding: 0.9rem 0;
}

.wp-admin-menu-title {
  margin: 0 0.6rem 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0 0.45rem 0.7rem;
  text-transform: uppercase;
}

.wp-admin-menu a {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  border-left: 4px solid transparent;
  color: #c3c4c7;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
}

.wp-admin-menu a:hover,
.wp-admin-menu a:focus-visible,
.wp-admin-menu a.is-current {
  border-left-color: #72aee6;
  background: #2c3338;
  color: #ffffff;
}

.wp-admin-content {
  min-width: 0;
  padding: 1.25rem;
}

.wp-screen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wp-screen-head h2 {
  margin: 0;
  color: #1d2327;
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.25;
  text-transform: none;
}

.wp-add-new {
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid #2271b1;
  border-radius: 3px;
  background: #f6f7f7;
  color: #2271b1;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
}

.wp-add-new:hover,
.wp-add-new:focus-visible {
  border-color: #135e96;
  color: #135e96;
}

.wp-subsubsub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.65rem;
  margin: 0.35rem 0 0;
  padding: 0;
  color: #50575e;
  font-size: 0.82rem;
  list-style: none;
}

.wp-subsubsub span {
  color: #787c82;
}

.wp-list-card,
.wp-meta-box,
.wp-editor-card {
  border: 1px solid #c3c4c7;
  background: #ffffff;
}

.wp-list-card {
  margin-bottom: 1.3rem;
}

.wp-table-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  border-bottom: 1px solid #c3c4c7;
  padding: 0.65rem;
}

.wp-table-tools label {
  color: #50575e;
  font-size: 0.82rem;
  font-weight: 700;
}

.wp-table-tools input,
.wp-post-editor input,
.wp-post-editor select,
.wp-post-editor textarea {
  border: 1px solid #8c8f94;
  border-radius: 3px;
  background: #ffffff;
  color: #1d2327;
  outline: none;
}

.wp-table-tools input {
  min-height: 2rem;
  width: min(18rem, 100%);
  padding: 0.25rem 0.45rem;
}

.wp-table-tools input:focus,
.wp-post-editor input:focus,
.wp-post-editor select:focus,
.wp-post-editor textarea:focus,
.wp-post-editor .rich-visual:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 1px #2271b1;
}

.wp-table-scroll {
  overflow-x: auto;
}

.wp-post-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  background: #ffffff;
  color: #1d2327;
  font-size: 0.88rem;
}

.wp-post-table th,
.wp-post-table td {
  border-bottom: 1px solid #c3c4c7;
  padding: 0.75rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.wp-post-table th {
  color: #2c3338;
  font-weight: 600;
}

.wp-post-table tbody tr:nth-child(odd) {
  background: #f6f7f7;
}

.wp-title-column {
  min-width: 16rem;
}

.wp-title-column strong,
.wp-title-column span {
  display: block;
}

.wp-title-column strong {
  color: #2271b1;
  font-size: 1rem;
  line-height: 1.25;
}

.wp-title-column span {
  margin-top: 0.25rem;
  color: #646970;
  font-size: 0.8rem;
}

.wp-status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f0f0f1;
  color: #2c3338;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.wp-status-pill.status-published {
  background: #d1e7dd;
  color: #0f5132;
}

.wp-status-pill.status-draft {
  background: #fff3cd;
  color: #664d03;
}

.wp-status-pill.status-archived {
  background: #e2e3e5;
  color: #41464b;
}

.wp-actions-cell {
  min-width: 12rem;
}

.wp-actions-cell > a {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: #2271b1;
  font-weight: 700;
}

.wp-actions-cell .admin-status-form {
  grid-template-columns: minmax(7rem, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
}

.wp-actions-cell .admin-status-form select {
  min-height: 2rem;
  border-color: #8c8f94;
  border-radius: 3px;
  background: #ffffff;
  padding: 0.25rem 0.45rem;
}

.wp-actions-cell .admin-status-form .button {
  min-height: 2rem;
  width: auto;
  border-color: #2271b1;
  border-radius: 3px;
  background: #2271b1;
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
}

.wp-post-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 1rem;
  align-items: start;
}

.wp-editor-main,
.wp-editor-sidebar {
  display: grid;
  gap: 1rem;
}

.wp-title-input {
  min-height: 3.1rem;
  width: 100%;
  padding: 0.35rem 0.65rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.wp-title-input::placeholder {
  color: #787c82;
}

.wp-permalink-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  color: #3c434a;
  font-size: 0.84rem;
}

.wp-permalink-row code {
  color: #50575e;
}

.wp-permalink-row input {
  min-height: 1.85rem;
  width: min(18rem, 100%);
  padding: 0.2rem 0.45rem;
}

.wp-editor-tabs {
  min-height: 2.35rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid #c3c4c7;
  background: #f6f7f7;
  padding: 0.45rem 0.55rem 0;
}

.wp-editor-tabs span {
  align-self: center;
  color: #2c3338;
  font-size: 0.82rem;
  font-weight: 800;
}

.wp-editor-tabs div {
  display: flex;
  gap: 0.25rem;
}

.wp-editor-tabs button {
  min-height: 1.9rem;
  border: 1px solid #c3c4c7;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: #f0f0f1;
  color: #2c3338;
  cursor: pointer;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
}

.wp-editor-tabs button.is-active {
  background: #ffffff;
}

.wp-post-editor .rich-toolbar {
  border: 0;
  border-bottom: 1px solid #c3c4c7;
  border-radius: 0;
  background: #f6f7f7;
  padding: 0.45rem;
}

.wp-post-editor .rich-toolbar select,
.wp-post-editor .rich-toolbar button {
  min-height: 1.95rem;
  border-color: #8c8f94;
  border-radius: 3px;
  background: #ffffff;
  color: #1d2327;
  padding: 0.22rem 0.45rem;
  font-size: 0.82rem;
}

.wp-post-editor .rich-toolbar button.is-active,
.wp-post-editor .rich-toolbar button:hover,
.wp-post-editor .rich-toolbar button:focus-visible {
  border-color: #2271b1;
  background: #f0f6fc;
}

.wp-post-editor .rich-visual,
.wp-post-editor .rich-editor textarea {
  min-height: 24rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wp-post-editor .rich-editor textarea {
  width: 100%;
  padding: 1rem;
}

.wp-post-editor .rich-note {
  border-top: 1px solid #c3c4c7;
  background: #f6f7f7;
  color: #646970;
  padding: 0.55rem 0.65rem;
}

.wp-meta-box {
  display: grid;
}

.wp-meta-title {
  min-height: 2.65rem;
  border: 0;
  border-bottom: 1px solid #c3c4c7;
  background: #ffffff;
  color: #1d2327;
  cursor: pointer;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.wp-meta-title:hover,
.wp-meta-title:focus-visible {
  color: #2271b1;
}

.wp-meta-content {
  display: grid;
  gap: 0.6rem;
  padding: 0.75rem;
}

.wp-meta-content label {
  color: #2c3338;
  font-size: 0.82rem;
  font-weight: 700;
}

.wp-meta-content input,
.wp-meta-content select,
.wp-meta-content textarea {
  width: 100%;
  min-height: 2.2rem;
  padding: 0.35rem 0.5rem;
}

.wp-meta-content textarea {
  min-height: 6rem;
  resize: vertical;
}

.wp-publish-box .wp-meta-content {
  background: #f6f7f7;
}

.wp-publish-button {
  min-height: 2.35rem;
  border: 1px solid #2271b1;
  border-radius: 3px;
  background: #2271b1;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
}

.wp-publish-button:hover,
.wp-publish-button:focus-visible {
  background: #135e96;
}

.wp-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.wp-category-list button {
  min-height: 1.85rem;
  border: 1px solid #c3c4c7;
  border-radius: 3px;
  background: #f6f7f7;
  color: #2271b1;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.wp-category-list button:hover,
.wp-category-list button:focus-visible {
  border-color: #2271b1;
}

.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: 1180px) and (min-width: 761px) {
  .nav-shell {
    width: min(100% - 1rem, 1180px);
    gap: 0.7rem;
  }

  .nav-links {
    gap: 0.48rem;
    font-size: 0.8rem;
  }

  .nav-cta {
    padding: 0 0.65rem;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .brand-copy small {
    display: none;
  }

  .nav-links {
    gap: 0.34rem;
    font-size: 0.74rem;
  }

  .nav-cta {
    padding: 0 0.48rem;
  }
}

@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,
  .trust-layout,
  .portfolio-card,
  .portfolio-project-hero-inner,
  .portfolio-project-layout,
  .article-experience-layout,
  .answer-panel {
    grid-template-columns: 1fr;
  }

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

  .article-sidebar {
    position: static;
  }

  .article-sidebar-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-sidebar-card span {
    grid-column: 1 / -1;
  }

  .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;
  }

  .wp-admin-frame,
  .wp-post-editor {
    grid-template-columns: 1fr;
  }

  .wp-admin-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 0.45rem;
  }

  .wp-admin-menu-title {
    width: 100%;
  }

  .wp-admin-menu a {
    border-left: 0;
    border-radius: 3px;
  }

  .wp-admin-menu a:hover,
  .wp-admin-menu a:focus-visible,
  .wp-admin-menu a.is-current {
    border-left-color: transparent;
  }

  .trust-panel {
    position: static;
  }

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

  .portfolio-service-panel {
    position: static;
  }
}

@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;
  }

  .article-experience-hero {
    min-height: auto;
    align-items: end;
  }

  .article-experience-hero-inner {
    padding: 6rem 0 2.25rem;
  }

  .article-experience-hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .article-experience-lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .article-jumpbar {
    position: relative;
    top: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0.8rem;
  }

  .article-jumpbar a {
    min-width: 0;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    padding: 0.55rem 0.45rem;
    text-align: center;
    white-space: normal;
  }

  .article-experience-layout {
    padding: 2.2rem 0 3.5rem;
  }

  .article-experience-content {
    gap: 2.25rem;
  }

  .article-experience-content h2 {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .article-experience-content h3 {
    overflow-wrap: break-word;
  }

  .article-experience-content p,
  .article-experience-content li {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .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,
  .tool-card-grid,
  .choice-columns,
  .pros-cons-grid,
  .pros-cons-columns,
  .pricing-grid,
  .benchmark-grid,
  .winner-grid,
  .workflow-steps,
  .takeaway-grid,
  .source-grid,
  .portfolio-related-grid,
  .article-sidebar-card {
    grid-template-columns: 1fr;
  }

  .workflow-steps article {
    min-height: 0;
  }

  .portfolio-media,
  .portfolio-media img,
  .portfolio-media video,
  .portfolio-generated {
    min-height: 17rem;
  }

  .portfolio-project-hero {
    min-height: auto;
  }

  .portfolio-project-hero-inner {
    padding: 6rem 0 2.5rem;
  }

  .portfolio-project-hero h1 {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 0.98;
  }

  .portfolio-project-media-band {
    padding: 0.65rem;
  }

  .portfolio-project-media img,
  .portfolio-project-media video,
  .portfolio-project-media .portfolio-generated {
    min-height: 18rem;
  }

  .portfolio-project-layout {
    padding: 2.8rem 0 3.5rem;
  }

  .portfolio-copy {
    padding: 1rem;
  }

  .portfolio-copy h3 {
    font-size: 1.55rem;
  }

  .answer-panel,
  .method-card,
  .tool-quiz,
  .commercial-note,
  .author-card,
  .source-panel {
    padding: 1rem;
  }

  .pricing-card strong {
    font-size: 1.55rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .tool-detail summary {
    min-height: 6.5rem;
  }

  .tool-detail summary strong {
    max-width: calc(100% - 2.6rem);
    font-size: 1.28rem;
  }

  .interactive-score-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .interactive-score-table table,
  .interactive-score-table tbody,
  .interactive-score-table tr,
  .interactive-score-table th,
  .interactive-score-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .interactive-score-table table {
    min-width: 0;
    border-collapse: separate;
  }

  .interactive-score-table thead {
    display: none;
  }

  .interactive-score-table tbody {
    display: grid;
    gap: 0.75rem;
  }

  .interactive-score-table tbody tr {
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: #f5f5f5;
    padding: 0.85rem;
  }

  .interactive-score-table th,
  .interactive-score-table td {
    border-bottom: 0;
    padding: 0.35rem 0;
  }

  .interactive-score-table tbody th {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 0.98rem;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .interactive-score-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .interactive-score-table td::before {
    flex: 1 1 auto;
    color: #4a4a50;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .interactive-score-table td:nth-of-type(1)::before {
    content: "Adobe Firefly";
  }

  .interactive-score-table td:nth-of-type(2)::before {
    content: "Midjourney";
  }

  .interactive-score-table td strong {
    margin-left: 0;
    white-space: nowrap;
  }

  .score-bar {
    width: 5rem;
    flex: 0 0 5rem;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .article-experience-meta span {
    flex: 1 1 100%;
    border-radius: 8px;
  }

  .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;
  }

  .wp-admin-content {
    padding: 0.85rem;
  }

  .wp-screen-head,
  .wp-table-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .wp-add-new,
  .wp-table-tools input,
  .wp-publish-button {
    width: 100%;
    justify-content: center;
  }

  .wp-title-input {
    font-size: 1.25rem;
  }

  .wp-actions-cell .admin-status-form {
    grid-template-columns: 1fr;
  }

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

  .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;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .trust-hero {
    padding: 7.5rem 0 3.5rem;
  }

  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
  }
}

@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,
  .trust-hero-inner,
  .article-experience-hero-inner,
  .article-experience-layout {
    width: min(100% - 1.25rem, 1180px);
  }

  .article-experience-hero h1 {
    font-size: 1.95rem;
  }

  .article-experience-lede {
    font-size: 0.95rem;
  }

  .article-experience-content h2 {
    font-size: 1.55rem;
  }

  .article-jumpbar {
    gap: 0.4rem;
    padding: 0.65rem;
  }

  .article-jumpbar a {
    min-height: 2.15rem;
    font-size: 0.74rem;
  }

  .pricing-card strong {
    font-size: 1.35rem;
  }

  .portfolio-media,
  .portfolio-media img,
  .portfolio-media video,
  .portfolio-generated {
    min-height: 14rem;
  }

  .portfolio-project-hero h1 {
    font-size: 1.95rem;
  }

  .portfolio-project-media img,
  .portfolio-project-media video,
  .portfolio-project-media .portfolio-generated {
    min-height: 14rem;
  }

  .portfolio-copy h3 {
    font-size: 1.35rem;
  }

  .portfolio-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-bar {
    width: 4.25rem;
    flex-basis: 4.25rem;
  }
}

@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;
  }
}
