:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-muted: #f0f4f5;
  --text: #14201f;
  --muted: #5f6f73;
  --border: #d7e2e4;
  --accent: #08795f;
  --accent-dark: #075b49;
  --accent-blue: #1f6feb;
  --danger: #b42318;
  --shadow: 0 10px 26px rgba(15, 36, 41, 0.055);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
  letter-spacing: 0;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 650;
  background: var(--surface);
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  max-width: 360px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.landing-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-bottom: 1px solid rgba(215, 226, 228, 0.8);
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-grid {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 410px);
  align-items: start;
  gap: 36px;
  padding: 34px 0 52px;
}

.hero-copy {
  min-width: 0;
  padding-top: clamp(12px, 3vh, 34px);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(8, 121, 95, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-weight: 750;
  font-size: 14px;
}

.availability::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(8, 121, 95, 0.12);
}

.hero-copy h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.summary {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.asset-proof {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(15, 36, 41, 0.035);
}

.asset-proof img {
  width: 132px;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: contain;
}

.asset-proof span,
.content-card-meta {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.asset-proof strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.asset-proof p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-row,
.trust-row,
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.price-row div,
.facts-grid div {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.price-row div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.price-row span,
.facts-grid dt {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.price-row strong,
.facts-grid dd {
  margin: 6px 0 0;
  display: block;
  font-size: 17px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.trust-strip span {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(8, 121, 95, 0.16);
  border-radius: 8px;
  background: rgba(237, 244, 246, 0.78);
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip small {
  color: var(--muted);
  line-height: 1.4;
}

.advisor-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.advisor-card strong {
  font-size: 15px;
}

.advisor-card span,
.advisor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.advisor-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.marketplace-home {
  padding-bottom: 56px;
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  gap: 28px;
  align-items: stretch;
  padding: 36px 0 26px;
}

.market-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(40px, 5.8vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.market-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.market-search input,
.market-search select {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.92);
}

.market-summary-panel {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 200px;
  padding: 22px;
  border: 1px solid rgba(8, 121, 95, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(15, 36, 41, 0.045);
}

.market-summary-panel span {
  font-size: 46px;
  line-height: 1;
  font-weight: 850;
  color: var(--accent-dark);
}

.market-summary-panel strong {
  font-size: 18px;
}

.market-summary-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.domain-market {
  padding-top: 32px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.section-heading p,
.section-heading h2 {
  margin: 0;
}

.section-heading p,
.section-heading span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading h2 {
  margin-top: 4px;
  font-size: clamp(26px, 3.2vw, 38px);
}

.domain-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.domain-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 248px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(15, 36, 41, 0.035);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.domain-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--accent), rgba(31, 111, 235, 0.65));
  opacity: 0.78;
}

.domain-card:hover {
  border-color: rgba(8, 121, 95, 0.28);
  box-shadow: 0 12px 28px rgba(15, 36, 41, 0.065);
  transform: translateY(-1px);
}

.domain-card small {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(8, 121, 95, 0.16);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(237, 244, 246, 0.9);
  font-weight: 800;
}

.domain-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 30px);
  overflow-wrap: anywhere;
}

.domain-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 14px;
}

.domain-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.domain-card dl div {
  min-height: 62px;
  padding: 8px;
  border: 1px solid rgba(215, 226, 228, 0.8);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.72);
}

.domain-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.domain-card dd {
  margin: 3px 0 0;
  font-weight: 800;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.domain-card .button {
  width: 100%;
}

.empty-state {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state p {
  margin-top: 8px;
  color: var(--muted);
}

.market-pagination {
  margin-top: 24px;
}

.inquiry-panel,
.auth-panel,
.edit-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.inquiry-panel {
  position: relative;
  border-color: rgba(8, 121, 95, 0.22);
  align-self: start;
  position: sticky;
  top: 18px;
}

.inquiry-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.inquiry-panel h2,
.auth-panel h1,
.form-shell h1 {
  margin: 0 0 18px;
}

.form-lead,
.form-assurance {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-assurance {
  margin: 12px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(8, 121, 95, 0.14);
  border-radius: 8px;
  background: rgba(237, 244, 246, 0.72);
}

.form-error-summary {
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #f0b4ae;
  border-radius: 8px;
  background: #fff4f2;
  color: #8f1d13;
}

.form-error-summary strong {
  display: block;
  margin-bottom: 8px;
}

.form-error-summary ul {
  margin: 0;
  padding-left: 18px;
}

.field-help,
.field-error {
  font-size: 12px;
  line-height: 1.45;
}

.field-help {
  color: var(--muted);
  font-weight: 600;
}

.field-error {
  color: #b42318;
  font-weight: 750;
}

label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(8, 121, 95, 0.18);
  border-color: var(--accent);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  color: var(--danger);
  font-size: 13px;
}

.facts-band {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding: 34px 0 52px;
}

.ad-slot {
  margin-top: 22px;
  min-height: 90px;
  border: 1px solid rgba(31, 111, 235, 0.24);
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.ad-slot.compact {
  min-height: 64px;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 720px);
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--border);
  padding: 34px 0 60px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

.content-band-copy {
  max-width: 240px;
}

.content-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 720px;
  gap: 14px;
}

.content-card {
  position: relative;
  display: block;
  min-width: 0;
  width: 100%;
  max-width: 720px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(15, 36, 41, 0.035);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.content-card[open] {
  border-color: rgba(8, 121, 95, 0.36);
  box-shadow: 0 14px 30px rgba(15, 36, 41, 0.07);
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(31, 111, 235, 0.7));
}

.content-card-with-media {
  display: grid;
}

.content-card-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  cursor: pointer;
  list-style: none;
}

.content-card-summary-row::-webkit-details-marker {
  display: none;
}

.content-card-with-media > .content-card-summary-row {
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
}

.content-card:hover {
  border-color: rgba(8, 121, 95, 0.35);
  box-shadow: 0 12px 28px rgba(15, 36, 41, 0.065);
  transform: translateY(-1px);
}

.content-card-media {
  display: block;
  min-width: 0;
  background: var(--surface-muted);
}

.content-list img,
.content-card-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  background: var(--surface-muted);
}

.content-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 18px 22px 16px 28px;
}

.content-card-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(8, 121, 95, 0.16);
  border-radius: 999px;
  background: rgba(237, 244, 246, 0.9);
  line-height: 1.2;
}

.content-card-title,
.content-card-summary-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.content-card-title {
  width: 100%;
  max-width: none;
  font-size: 18px;
  line-height: 1.35;
}

.content-card-summary-text {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.content-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.content-card-action {
  color: var(--accent-dark);
  font-weight: 800;
}

.content-card[open] .content-card-action {
  color: var(--muted);
}

.content-card[open] .content-card-arrow {
  transform: rotate(-90deg);
}

.content-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(8, 121, 95, 0.1);
  color: var(--accent-dark);
  font-weight: 900;
  transition: transform 150ms ease;
}

.content-card-expanded {
  display: grid;
  gap: 14px;
  margin: 0 22px 18px 28px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.content-card-expanded p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.content-card-expanded-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-weight: 800;
}

.content-card-collapse-label {
  color: var(--accent-dark);
}

.content-card-source-link {
  color: var(--accent-dark);
}

.facts-band h2 {
  margin: 0 0 10px;
}

.facts-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.facts-grid div {
  min-height: auto;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.facts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.facts-grid div:nth-child(n + 5) {
  grid-column: span 3;
}

.facts-grid div:target {
  border-color: rgba(31, 111, 235, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.08);
}

.mobile-sticky-cta {
  display: none;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  background: #fbfdfd;
  overflow: auto;
}

.sidebar a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.sidebar .brand {
  color: var(--text);
  margin-bottom: 18px;
}

.sidebar .active,
.sidebar a:hover {
  background: #e6f4ef;
  color: var(--text);
}

.admin-main {
  padding: 24px;
}

.admin-topbar,
.panel-heading,
.toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-topbar,
.panel-heading {
  justify-content: space-between;
}

.toolbar {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.toolbar input,
.toolbar select {
  flex: 1 1 180px;
  width: auto;
  min-width: 160px;
  max-width: 280px;
}

.toolbar select {
  flex: 0 1 190px;
}

.toolbar input[type="date"] {
  flex-basis: 164px;
  min-width: 152px;
}

.toolbar input[type="number"] {
  flex-basis: 150px;
  min-width: 140px;
}

.toolbar .button {
  flex: 0 0 auto;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 26px;
}

.admin-topbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-note {
  margin: 16px 0 0;
  max-width: 880px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--muted);
  line-height: 1.55;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.realtime-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kpi-grid div,
.inspector,
.table-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.kpi-grid div {
  padding: 14px 16px;
  box-shadow: none;
}

.kpi-grid span {
  color: var(--muted);
  font-size: 13px;
}

.kpi-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.ops-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.ops-overview a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.ops-overview strong {
  font-size: 17px;
}

.ops-overview span {
  color: var(--muted);
  line-height: 1.45;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.metric-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.metric-card span,
.metric-card small {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 750;
}

.status-open {
  background: #e5f7ef;
  color: #0a604a;
}

.status-closed {
  background: #fee4e2;
  color: var(--danger);
}

.status-muted {
  background: #eef3f4;
  color: var(--muted);
}

.trend-bars,
.experiment-scoreboard,
.readiness-heatmap,
.ops-chart {
  display: grid;
  gap: 12px;
  margin: 18px;
  min-width: 320px;
}

.trend-bar,
.experiment-score,
.readiness-heat,
.ops-check {
  display: grid;
  grid-template-columns: 160px minmax(140px, 1fr) 120px;
  align-items: center;
  gap: 12px;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-muted);
}

.bar-fill {
  display: block;
  width: var(--value, 0%);
  height: 100%;
  background: var(--accent);
}

.bar-fill.warning {
  background: #c77800;
}

.bar-fill.danger {
  background: var(--danger);
}

.readiness-heat {
  grid-template-columns: 180px minmax(140px, 1fr) 80px;
}

.ops-check {
  grid-template-columns: 180px minmax(140px, 1fr) minmax(180px, 2fr);
}

.visual-note {
  margin: 0 18px 18px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 14px;
}

.table-panel {
  overflow: auto;
  box-shadow: none;
}

.json-panel {
  max-width: 100%;
  margin: 16px;
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.panel-heading,
.inspector {
  padding: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}

td.cell-main {
  min-width: 260px;
  max-width: 560px;
  white-space: normal;
  line-height: 1.45;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.table-actions form {
  margin: 0;
}

.empty-row {
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
  white-space: normal;
}

th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

tbody tr:hover {
  background: #f7fbfa;
}

.inspector p,
.inspector li {
  color: var(--muted);
  line-height: 1.55;
}

.toolbar {
  margin: 18px 0 12px;
}

.form-shell,
.auth-shell {
  width: min(720px, calc(100% - 40px));
  margin: 50px auto;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: auto;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 82px;
  }

  .landing-shell {
    width: min(100% - 24px, 1120px);
  }

  .hero-grid,
  .market-hero,
  .facts-band,
  .content-band,
  .admin-shell,
  .admin-grid,
  .kpi-grid,
  .ops-overview,
  .metric-grid,
  .trend-bar,
  .experiment-score,
  .readiness-heat,
  .ops-check {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .landing-nav,
  .admin-topbar,
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .toolbar input,
  .toolbar select,
  .toolbar .button {
    width: 100%;
    max-width: none;
  }

  .nav-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-grid {
    gap: 28px;
    padding: 20px 0 36px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .summary {
    margin-top: 12px;
    font-size: 15px;
  }

  .asset-proof {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .asset-proof img {
    width: min(100%, 260px);
  }

  .inquiry-panel {
    position: relative;
    top: auto;
  }

  .trust-row,
  .price-row,
  .trust-strip,
  .content-list,
  .market-search,
  .domain-card-grid {
    grid-template-columns: 1fr;
  }

  .content-band {
    justify-content: stretch;
  }

  .content-list,
  .content-card {
    max-width: none;
  }

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

  .facts-grid div:nth-child(n + 5) {
    grid-column: auto;
  }

  .market-hero {
    gap: 18px;
    padding: 24px 0 22px;
  }

  .market-hero h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .market-summary-panel {
    min-height: auto;
    padding: 18px;
  }

  .market-summary-panel span {
    font-size: 38px;
  }

  .domain-market {
    padding-top: 22px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-card {
    min-height: auto;
    gap: 12px;
    padding: 16px;
  }

  .domain-card h3 {
    font-size: 25px;
  }

  .domain-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .domain-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .domain-card dl div {
    min-height: 58px;
    padding: 7px;
  }

  .domain-card dt {
    font-size: 11px;
  }

  .domain-card dd {
    font-size: 13px;
  }

  .content-card-summary-row,
  .content-card-with-media > .content-card-summary-row {
    grid-template-columns: 1fr;
  }

  .content-card-with-media {
    display: block;
  }

  .content-list img,
  .content-card-media img {
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }

  .content-card-body {
    max-width: none;
    padding: 18px 18px 16px;
  }

  .content-card-title {
    font-size: 18px;
  }

  .content-card-summary-text,
  .content-card-expanded p {
    font-size: 14px;
  }

  .content-card-expanded {
    margin: 0 18px 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(215, 226, 228, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(15, 36, 41, 0.18);
    backdrop-filter: blur(12px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .mobile-sticky-cta.is-hidden-over-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  main:has(#news .content-card[open]) .mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 750;
    background: var(--surface);
  }

  .mobile-sticky-cta a.button-primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    display: none;
  }
}
