:root {
  --ink: #102033;
  --muted: #637083;
  --line: #dde6ef;
  --panel: #ffffff;
  --soft: #f4f8fb;
  --blue: #0c4a8f;
  --blue-2: #1976d2;
  --green: #2f8c7b;
  --yellow: #efc14f;
  --danger: #b43a31;
  --shadow: 0 16px 40px rgba(16, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, Pretendard, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.65;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: keep-all;
}

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

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

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

h1,
h2,
h3,
p,
li,
dd,
dt,
label,
button,
a {
  word-break: keep-all;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 230, 239, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: url("/public/assets/pressbridge-global-mark.svg") center / contain no-repeat;
  filter: drop-shadow(0 6px 12px rgba(12, 74, 143, 0.18));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.admin-link,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 700;
  white-space: nowrap;
}

.login-link {
  border-color: var(--blue);
  color: var(--blue);
}

.google-button {
  gap: 10px;
  border-color: #cfd8e3;
  background: #ffffff;
  color: #1f2937;
}

.google-button::before {
  content: "G";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.button.secondary-dark {
  border-color: #c8d6e4;
  background: #eef4f9;
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  color: var(--blue);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  max-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 96px 40px 72px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: rgba(10, 24, 40, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 76px;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.2;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.32;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.72;
  text-wrap: pretty;
}

.line-block {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 16px;
  margin: 54px 0 0;
}

.hero-stats div {
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 88px 40px;
}

.page-hero {
  padding: 72px 40px 48px;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.page-hero > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 880px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.14;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
  text-wrap: pretty;
}

.section > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intro-band,
.process-band {
  background: var(--soft);
}

.section-head {
  margin-bottom: 34px;
}

.section-copy {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.icon-box {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  place-items: center;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-green {
  border-color: #cde8df;
  background: #e8f5f1;
  color: #246b5d;
}

.icon-yellow {
  border-color: #f4df9f;
  background: #fff7df;
  color: #9b6c06;
}

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

.page-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-card .icon-box,
.case-card .icon-box,
.case-result-panel .icon-box,
.market-card .icon-box,
.quote-copy .icon-box {
  margin-bottom: 10px;
}

.page-card p {
  color: var(--muted);
  line-height: 1.72;
}

.page-card .button {
  justify-self: start;
  margin-top: 8px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.9fr));
  gap: 20px;
}

.case-card,
.case-result-panel,
.case-step-list article,
.case-note-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.case-card.featured {
  background: #f7fbff;
  border-color: #cfe1f3;
}

.case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e8f5f1;
  color: #246b5d;
}

.case-card p,
.case-detail-main p,
.case-step-list p,
.case-note-box p {
  color: var(--muted);
  line-height: 1.74;
  text-wrap: pretty;
}

.case-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.case-meta {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.case-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-meta dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.case-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.case-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.case-detail.compact {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
}

.case-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 32px;
}

.case-kpis article {
  padding: 18px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
}

.case-kpis span {
  display: block;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.case-kpis strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.case-check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.case-result-panel,
.case-note-box {
  padding: 26px;
}

.case-result-panel {
  position: sticky;
  top: 96px;
}

.case-result-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.case-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-step-list article {
  padding: 22px;
  box-shadow: none;
}

.case-step-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.case-step-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.case-note-box .button {
  margin-top: 16px;
}

.market-grid,
.process-grid,
.metrics-grid,
.public-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.market-card,
.process-grid article,
.metrics-grid article,
.login-panel,
.quote-form,
.lead-list article,
.quote-group {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.flag-bar {
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 28px;
  border-radius: 8px;
}

.flag-bar.indonesia {
  background: linear-gradient(90deg, #d9272e 50%, #ffffff 50%);
  border: 1px solid #e2e8f0;
}

.flag-bar.india {
  background: linear-gradient(90deg, #ff9933 33%, #ffffff 33% 66%, #128807 66%);
  border: 1px solid #e2e8f0;
}

.market-card p,
.process-grid p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.direct-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.direct-contact-card {
  display: grid;
  gap: 5px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
}

.direct-contact-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.direct-contact-card strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1.1;
}

.direct-contact-card small {
  color: var(--muted);
  line-height: 1.45;
}

.direct-contact-card[href]:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(12, 74, 143, 0.12);
}

.market-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.segmented {
  display: inline-flex;
  padding: 4px;
  background: #e8eff6;
  border-radius: 8px;
}

.media-filter {
  display: grid;
  min-width: 220px;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.media-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 14px;
}

.media-list-head h3 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.22;
}

.segment {
  border: 0;
  border-radius: 6px;
  background: transparent;
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  cursor: pointer;
}

.segment.active {
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(16, 32, 51, 0.12);
}

.media-table-wrap,
.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
  word-break: keep-all;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  background: #f8fbfd;
  font-size: 13px;
  text-transform: uppercase;
}

.th-help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.help-tip {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #c8d6e4;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  cursor: help;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.help-tip::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 50;
  width: max-content;
  max-width: 280px;
  padding: 10px 12px;
  border: 1px solid #c8d6e4;
  border-radius: 8px;
  background: #102033;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.22);
  content: attr(data-tip);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  transform: translate(-50%, -4px);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: normal;
}

.help-tip::before {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  z-index: 51;
  width: 9px;
  height: 9px;
  background: #102033;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 140ms ease;
}

.help-tip:hover::after,
.help-tip:focus::after,
.help-tip:focus-visible::after,
.help-tip:hover::before,
.help-tip:focus::before,
.help-tip:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.help-tip:hover::before,
.help-tip:focus::before,
.help-tip:focus-visible::before {
  transform: translateX(-50%) rotate(45deg);
}

td strong {
  display: block;
}

td small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.country-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf4ff;
  font-weight: 800;
  font-size: 13px;
}

.status-pill {
  color: #246b5d;
  background: #e8f5f1;
}

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

.process-grid article {
  padding: 26px;
}

.process-grid .step-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}

.process-grid .icon-box {
  margin-bottom: 18px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.purchase-shell,
.checkout-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 80px;
}

.purchase-hero {
  padding: 72px 0 42px;
}

.purchase-hero h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: 64px;
}

.purchase-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  text-wrap: pretty;
}

.purchase-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-layout {
  grid-template-columns: 360px minmax(0, 1fr);
}

.compact-head {
  margin-bottom: 20px;
}

.selection-count {
  display: inline-grid;
  min-width: 74px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 900;
}

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

.purchase-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.purchase-card.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 74, 143, 0.12);
}

.purchase-card h3 {
  margin-top: 16px;
}

.purchase-card p {
  color: var(--muted);
}

.purchase-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.purchase-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.purchase-card dt {
  color: var(--muted);
  font-weight: 800;
}

.purchase-card dd {
  margin: 0;
}

.selection-panel,
.checkout-summary,
.checkout-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.selection-panel,
.checkout-summary {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.selection-panel h2,
.checkout-summary h2 {
  font-size: 28px;
  line-height: 1.18;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-left: 22px;
}

.selected-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.selected-list strong,
.selected-list span,
.selected-list em {
  display: block;
}

.selected-list span {
  color: var(--muted);
  font-size: 14px;
}

.selected-list em {
  margin-top: 4px;
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.selected-list li.checkout-discount {
  margin-left: -22px;
  padding: 12px 14px;
  border: 1px solid #d7eadf;
  border-radius: 8px;
  background: #f1faf5;
  list-style: none;
}

.selected-list li.checkout-discount b {
  display: block;
  margin-top: 4px;
  color: var(--green);
}

.selected-list li.checkout-discount.muted {
  border-color: var(--line);
  background: #f6f9fc;
}

.selection-help {
  color: var(--muted);
  line-height: 1.68;
  text-wrap: pretty;
}

.selection-panel .button + .button,
.checkout-summary .button + .button {
  margin-top: 10px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.concept-shell {
  width: min(1260px, calc(100% - 48px));
}

.concept-hero {
  padding-bottom: 28px;
}

.concept-tabs {
  position: sticky;
  top: 72px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.concept-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.concept-tabs a:hover,
.concept-tabs a:focus {
  border-color: var(--blue);
  color: var(--blue);
}

.draft-shell {
  width: min(1280px, calc(100% - 48px));
  padding-top: 28px;
}

.draft-hero {
  padding-bottom: 28px;
}

.draft-hero h1 {
  max-width: 980px;
}

.draft-section {
  padding: 54px 0 70px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.draft-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.lane-board,
.shelf-board,
.slot-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lane-board {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  overflow: hidden;
}

.single-lane,
.bundle-lane {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 28px;
}

.single-lane {
  background: #fffaf0;
  border-right: 1px solid var(--line);
}

.bundle-lane {
  background: #f7fbff;
}

.lane-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lane-title strong {
  font-size: 22px;
}

.lane-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #102033;
  font-size: 24px;
  font-weight: 900;
}

.lane-number.bundle {
  background: var(--blue);
  color: #ffffff;
}

.single-ticket,
.bundle-slot,
.shelf-product,
.package-receipt,
.picker-card,
.cart-mode {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.single-ticket {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.single-ticket.selected,
.picker-card.selected {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(239, 193, 79, 0.18);
}

.picker-card.selected:not(.solo) {
  border-color: #cfe1f3;
  background: #f7fbff;
  box-shadow: 0 0 0 3px rgba(12, 74, 143, 0.1);
}

.single-ticket h3,
.bundle-slot strong,
.shelf-product h3,
.picker-card h3 {
  margin: 0;
}

.single-ticket p,
.shelf-product p,
.picker-card p {
  margin: 0;
  color: var(--muted);
}

.single-ticket > strong,
.shelf-product > strong,
.picker-card > strong {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

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

.bundle-slot {
  min-height: 156px;
  padding: 18px;
}

.bundle-slot span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5f1;
  color: #246b5d;
  font-weight: 900;
}

.bundle-slot small {
  margin-top: 8px;
}

.bundle-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
}

.bundle-total span,
.package-receipt span,
.cart-mode span,
.shelf-label span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-total strong,
.package-receipt strong,
.cart-mode b {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.shelf-board {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.shelf-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
}

.single-shelf {
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.bundle-shelf {
  background: #f7fbff;
}

.shelf-label {
  display: grid;
  align-content: center;
  gap: 8px;
}

.shelf-label strong {
  font-size: 24px;
  line-height: 1.24;
}

.hero-product,
.bundle-equation {
  min-width: 0;
}

.hero-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.product-mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #102033;
  font-size: 32px;
  font-weight: 900;
  grid-row: 1 / span 2;
}

.hero-product h3 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-product p {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.hero-product > strong {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}

.bundle-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(170px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.bundle-equation .shelf-product {
  padding: 18px;
}

.plus-sign,
.equals-sign {
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  font-size: 28px;
  font-weight: 900;
}

.equals-sign {
  color: var(--blue);
}

.package-receipt {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border-color: #cfe1f3;
  background: #eef6ff;
}

.slot-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 0;
  overflow: hidden;
}

.purchase-workspace {
  padding: 28px 0 80px;
}

.country-step {
  padding: 48px 0 80px;
}

.country-step-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.country-step-head h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.country-option-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.country-option-card:hover,
.country-option-card:focus-visible {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 20px 42px rgba(15, 95, 169, 0.13);
}

.country-code {
  display: inline-grid;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #0f5fa9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.country-option-card strong {
  align-self: end;
  font-size: 24px;
  line-height: 1.1;
}

.country-option-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.country-card-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.country-card-meta b {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
}

.purchase-country-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.purchase-country-bar div {
  display: grid;
  gap: 2px;
}

.purchase-country-bar span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-country-bar strong {
  font-size: 22px;
}

.purchase-control-head {
  align-items: center;
}

.live-slot-board {
  align-items: start;
}

.media-picker {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #fbfdff;
}

.picker-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.picker-card.solo {
  background: #fffaf0;
}

.picker-main {
  min-width: 0;
}

.picker-description {
  max-width: 520px;
  margin: 12px 0 0 !important;
  color: #42526e !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  word-break: keep-all;
}

.placement-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 650px;
  margin: 12px 0 0;
}

.placement-info div {
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 8px 10px;
  border: 1px solid #d7e4f2;
  border-radius: 8px;
  background: #ffffff;
}

.placement-info dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.placement-info dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  word-break: keep-all;
}

.picker-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.picker-meta small {
  margin: 0;
}

.picker-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: 132px;
}

.picker-actions strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.media-site-link {
  min-width: 126px;
  min-height: 40px;
  padding: 0 12px;
  font-size: 13px;
}

.loading-card {
  min-height: 120px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
}

.slot-cart {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.live-slot-cart {
  position: sticky;
  top: 96px;
}

.cart-mode {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.cart-mode.single {
  border-color: #efd889;
  background: #fffaf0;
}

.cart-mode.bundle {
  border-color: #cfe1f3;
  background: #eef6ff;
}

.cart-mode strong {
  font-size: 18px;
}

.cart-slot {
  display: grid;
  gap: 8px;
}

.slot-rail {
  display: grid;
  gap: 7px;
}

.slot-rail > strong,
.cart-slot > strong.empty-slot {
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 2px;
  min-height: 46px;
  padding: 8px 9px;
  border-radius: 8px;
  background: #ffffff;
}

.cart-item span {
  display: inline-grid;
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5f1;
  color: #246b5d;
  font-size: 11px;
  font-weight: 900;
}

.cart-item strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
}

.cart-item small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item b {
  grid-column: 3;
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 15px;
  white-space: nowrap;
}

.cart-item.empty {
  color: var(--muted);
  border: 1px dashed #c8d6e4;
  background: rgba(255, 255, 255, 0.62);
}

.cart-item.discount {
  border: 1px solid #d7eadf;
  background: #f1faf5;
}

.cart-item.discount b {
  color: var(--green);
}

.bundle-meter b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
}

.cart-grand-total {
  margin: 2px 0;
}

.concept-section {
  padding: 54px 0 64px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 150px;
}

.concept-section h2 {
  font-size: 40px;
}

.timeline-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 16px 0 0;
  padding: 0 12px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

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

.concept-package-card,
.goal-result-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.concept-package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.concept-package-card p {
  color: var(--muted);
}

.concept-package-card .selected-list {
  flex: 1;
}

.goal-concept-layout,
.compare-concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.goal-selector {
  display: grid;
  gap: 14px;
}

.goal-option {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.goal-option strong {
  font-size: 22px;
}

.goal-option span {
  color: var(--muted);
}

.goal-option.active {
  border-color: var(--blue);
  background: #eef6ff;
  box-shadow: 0 0 0 3px rgba(12, 74, 143, 0.1);
}

.goal-result-panel {
  position: sticky;
  top: 150px;
  padding: 24px;
}

.goal-result-panel h3,
.compare-panel h3 {
  font-size: 28px;
  line-height: 1.18;
}

.concept-table-wrap {
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.concept-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.concept-table th,
.concept-table td {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.concept-table th:first-child,
.concept-table td:first-child {
  width: 104px;
}

.concept-table th:nth-child(3),
.concept-table td:nth-child(3) {
  width: 150px;
}

.purchase-table th:nth-child(3),
.purchase-table td:nth-child(3) {
  width: 128px;
}

.purchase-table th:nth-child(4),
.purchase-table td:nth-child(4) {
  width: 150px;
}

.concept-table tr.selected-row td {
  background: #f2f8ff;
}

.table-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.table-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.recognition-cell small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  white-space: normal;
}

.recognition-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: help;
  font-family: inherit;
}

.recognition-pill:focus-visible {
  outline: 3px solid rgba(15, 95, 169, 0.22);
  outline-offset: 2px;
}

.recognition-pill.top {
  background: #eaf4ff;
  color: var(--blue);
}

.recognition-pill.high {
  background: #e8f5f1;
  color: #246b5d;
}

.recognition-pill.mid {
  background: #fff7df;
  color: #806114;
}

.recognition-pill.local {
  background: #f0eefb;
  color: #4f4392;
}

.recognition-pill.pending {
  background: #f2f5f8;
  color: var(--muted);
}

.recognition-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.recognition-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 30;
  display: grid;
  gap: 5px;
  width: min(320px, calc(100vw - 48px));
  padding: 12px 14px;
  border: 1px solid #cad8e8;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(15, 36, 64, 0.16);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  white-space: normal;
  word-break: keep-all;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.recognition-tooltip::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #cad8e8;
  border-bottom: 1px solid #cad8e8;
  background: #ffffff;
  transform: rotate(45deg);
}

.recognition-tooltip span {
  display: block;
}

.recognition-tooltip-wrap:hover .recognition-tooltip,
.recognition-tooltip-wrap:focus-within .recognition-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.sale-mode-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 8px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.sale-mode-pill.single {
  background: #fff7df;
  color: #806114;
}

.sale-mode-pill.bundle {
  background: #e8f5f1;
  color: #246b5d;
}

.rule-pill {
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 5px 10px;
  white-space: normal;
}

.price-cell strong,
.priced-selected-list b,
.order-total strong {
  font-variant-numeric: tabular-nums;
}

.price-cell strong {
  color: var(--blue);
  font-size: 16px;
}

.priced-selected-list b {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 15px;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef6ff;
}

.order-total span {
  color: var(--muted);
  font-weight: 900;
}

.order-total strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.compare-panel {
  top: 150px;
}

.checkout-form {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.checkout-main-column {
  display: grid;
  gap: 18px;
}

.checkout-auth,
.member-strip,
.auth-card,
.member-card,
.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.order-card.focused-order {
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(15, 95, 169, 0.18);
}

.checkout-auth {
  padding: 24px;
}

.checkout-auth-grid,
.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.auth-grid[data-mode="login"],
.auth-grid[data-mode="register"] {
  max-width: 560px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.auth-grid[data-mode="login"] #register-form,
.auth-grid[data-mode="register"] #login-form {
  display: none;
}

.mini-auth-card,
.auth-card {
  display: grid;
  gap: 14px;
}

.mini-auth-card {
  padding: 0;
}

.mini-auth-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.member-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.member-strip div,
.member-card {
  display: grid;
  gap: 4px;
}

.member-strip span,
.member-strip small,
.member-card span {
  color: var(--muted);
  font-weight: 700;
}

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

.payment-card {
  display: flex;
  align-items: start;
  gap: 12px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  cursor: pointer;
}

.payment-card:has(input:checked) {
  border-color: var(--blue);
  background: #eef6ff;
}

.payment-card input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.payment-card strong,
.payment-card small {
  display: block;
}

.payment-card small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.bank-transfer-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #cfe2f5;
  border-radius: 8px;
  background: #f5faff;
}

.tax-invoice-panel,
.tax-profile-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #cfe2f5;
  border-radius: 8px;
  background: #fbfdff;
}

.tax-profile-card {
  margin-top: 18px;
}

.tax-profile-form {
  display: grid;
  gap: 16px;
}

.bank-account-card {
  display: grid;
  gap: 6px;
}

.bank-account-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-account-card strong {
  color: var(--blue);
  font-size: 20px;
}

.bank-account-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.58;
}

.bank-transfer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tax-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tax-profile-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-weight: 700;
}

.tax-profile-summary strong {
  color: var(--ink);
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-section > * {
  width: auto;
  margin: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.optional-label {
  display: inline;
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.label-with-note {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.label-with-note small {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  min-height: 44px;
  padding: 11px 12px;
}

input[type="file"] {
  min-height: auto;
  padding: 10px;
}

.file-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.checkbox-line input {
  width: auto;
  min-height: 0;
}

.checkbox-line span {
  color: var(--ink);
  font-weight: 800;
}

.invoice-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 10px 0 0;
}

.invoice-detail-list div {
  display: grid;
  gap: 3px;
}

.invoice-detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.invoice-detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  justify-content: space-between;
  gap: 28px;
  padding: 30px 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-brand {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 16px;
}

.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  justify-content: flex-end;
}

.footer-business span {
  white-space: normal;
}

.admin-page {
  background: #f4f8fb;
}

.admin-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 36px auto 80px;
}

.login-panel {
  width: min(460px, 100%);
  margin: 80px auto;
  padding: 34px;
}

.login-panel h1,
.admin-dashboard h1 {
  color: var(--ink);
  font-size: 40px;
  line-height: 1.18;
  text-wrap: balance;
}

.login-panel p {
  color: var(--muted);
}

.login-panel form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.admin-controls {
  display: flex;
  gap: 12px;
}

.admin-controls input {
  min-width: 260px;
}

.admin-command-head {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-command-head h1 {
  margin-bottom: 8px;
}

.admin-work-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf2fa;
}

.admin-work-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.admin-work-tab.is-active {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(15, 95, 169, 0.12);
}

.admin-header-nav {
  flex: 1 1 auto;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-header-nav .admin-work-tab {
  position: relative;
  min-height: 40px;
  padding: 0 8px;
  border-radius: 0;
  color: var(--muted);
}

.admin-header-nav .admin-work-tab.is-active {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.admin-header-nav .admin-work-tab.is-active::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.admin-header-actions {
  margin-left: 0;
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: block;
}

.admin-order-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.admin-order-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-layout-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-layout-button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.admin-layout-button.is-active {
  background: var(--blue);
  color: #ffffff;
}

.admin-status-card {
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.admin-status-card.is-active,
.admin-status-card:hover {
  border-color: var(--blue);
  background: #f3f8fd;
}

.admin-status-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-status-card strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.admin-order-workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.7fr);
  gap: 20px;
  align-items: start;
}

.admin-order-queue,
.admin-order-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-order-queue {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.admin-order-list-head {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.admin-order-list-head span,
.admin-order-select small,
.admin-order-select em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.admin-order-select {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.admin-order-select.is-active,
.admin-order-select:hover {
  border-color: var(--blue);
  background: #f3f8fd;
}

.admin-order-select strong {
  font-size: 16px;
  line-height: 1.45;
}

.admin-order-select b {
  color: var(--blue);
}

.admin-payment-list-view:not([hidden]),
.admin-payment-detail-view:not([hidden]),
.admin-content-list-view:not([hidden]),
.admin-content-detail-view:not([hidden]) {
  display: grid;
  gap: 16px;
}

.admin-payment-list-shell,
.admin-content-list-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.admin-payment-list-shell .admin-order-list,
.admin-content-list-shell .admin-order-list {
  display: grid;
  gap: 8px;
}

.admin-payment-list-shell .admin-order-select,
.admin-content-list-shell .admin-order-select {
  grid-template-columns: 132px minmax(280px, 1.7fr) minmax(150px, 0.78fr) minmax(130px, 0.7fr) 90px;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  background: #ffffff;
}

.admin-payment-list-shell .admin-order-select:hover,
.admin-content-list-shell .admin-order-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
}

.admin-payment-list-shell .workflow-pill,
.admin-content-list-shell .workflow-pill {
  justify-self: start;
}

.admin-payment-list-shell .admin-order-select strong,
.admin-payment-list-shell .admin-order-select small,
.admin-payment-list-shell .admin-order-select em,
.admin-payment-list-shell .admin-order-select b,
.admin-content-list-shell .admin-order-select strong,
.admin-content-list-shell .admin-order-select small,
.admin-content-list-shell .admin-order-select em,
.admin-content-list-shell .admin-order-select b {
  min-width: 0;
}

.admin-payment-list-shell .admin-order-select strong,
.admin-content-list-shell .admin-order-select strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
}

.admin-payment-list-shell .admin-order-select small,
.admin-payment-list-shell .admin-order-select em,
.admin-content-list-shell .admin-order-select small,
.admin-content-list-shell .admin-order-select em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-payment-list-shell .admin-order-select b,
.admin-content-list-shell .admin-order-select b {
  justify-self: end;
  font-size: 18px;
  white-space: nowrap;
}

.admin-payment-detail-view,
.admin-content-detail-view {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.admin-payment-detail-toolbar,
.admin-content-detail-toolbar {
  display: flex;
  justify-content: flex-start;
}

.admin-payment-panel.is-detail .admin-order-detail,
.admin-order-panel.is-detail .admin-order-detail {
  min-height: 0;
}

.admin-order-detail {
  min-height: 520px;
  padding: 18px;
}

.admin-detail-card {
  display: grid;
  gap: 18px;
}

.admin-detail-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-detail-head h2 {
  margin: 8px 0 4px;
  font-size: 25px;
  line-height: 1.28;
}

.admin-detail-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-detail-head > strong {
  color: var(--blue);
  font-size: 28px;
  white-space: nowrap;
}

.admin-io-grid,
.admin-detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-detail-meta-compact {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.admin-order-snapshot {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.admin-order-snapshot span {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.admin-order-snapshot b {
  color: var(--muted);
  font-size: 11px;
}

.admin-order-panel.is-table .admin-order-workspace {
  grid-template-columns: 1fr;
}

.admin-order-panel.is-table .admin-order-queue {
  position: static;
}

.admin-order-panel.is-table .admin-order-detail {
  min-height: 0;
}

.admin-order-list.is-table {
  gap: 6px;
}

.admin-order-table-head,
.admin-order-row {
  display: grid;
  grid-template-columns: 120px minmax(220px, 1.45fr) minmax(160px, 1fr) 170px 110px;
  align-items: center;
  gap: 12px;
}

.admin-order-table-head {
  padding: 0 13px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-order-row {
  min-height: 62px;
}

.admin-order-row small,
.admin-order-row em,
.admin-order-row b {
  justify-self: start;
}

.admin-io-grid article {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.admin-io-grid span,
.admin-detail-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-io-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.admin-detail-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-detail-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-detail-section-head h3 {
  margin: 0;
  font-size: 21px;
}

.admin-asset-list a {
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.member-admin-list {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-member-list-head,
.admin-member-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) 80px 90px 120px minmax(160px, 0.9fr) minmax(190px, 1fr);
  align-items: center;
  gap: 12px;
}

.admin-member-list-head {
  padding: 0 14px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-member-row {
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.admin-member-row:hover {
  border-color: var(--blue);
  background: #f3f8fd;
}

.admin-member-person {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-member-person strong,
.admin-member-row b {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.admin-member-person strong {
  font-size: 17px;
}

.admin-member-row .money {
  color: var(--blue);
  white-space: nowrap;
}

.admin-member-person span,
.admin-member-row small,
.admin-member-tax-cell span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-member-row > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.admin-member-tax-cell.is-saved b {
  color: var(--green);
}

.admin-member-tax-cell a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.metrics-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 22px;
}

.metrics-grid article {
  padding: 20px;
  box-shadow: none;
}

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

.metrics-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.public-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.package-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.package-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.package-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.package-card-head h3 {
  margin: 0;
  font-size: 20px;
}

.package-card-head > strong {
  white-space: nowrap;
  color: var(--blue);
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.public-package-card {
  box-shadow: none;
}

.package-quote-button {
  margin-top: 20px;
}

.price-editor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}

.price-editor input {
  width: 62px;
  min-height: 34px;
  padding: 6px 8px;
  border-color: #cfe1f3;
  background: #ffffff;
  font-weight: 800;
}

.price-editor input:disabled {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  opacity: 1;
  -webkit-text-fill-color: var(--ink);
}

.pricing-editing .price-editor input:not(:disabled) {
  border-color: var(--blue);
  background: #ffffff;
}

.note-editor {
  display: grid;
  gap: 8px;
}

.note-display {
  display: block;
}

.note-input {
  display: none;
  width: 100%;
  min-height: 86px;
  resize: vertical;
  padding: 9px 10px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.pricing-editing .note-display {
  display: none;
}

.pricing-editing .note-input {
  display: block;
}

.pricing-editing .note-input:not(:disabled) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 95, 169, 0.08);
}

.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.mini-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.admin-table th,
.admin-table td {
  padding: 13px 10px;
  white-space: nowrap;
}

.admin-table .country-cell {
  width: 88px;
  min-width: 88px;
}

.admin-table .outlet-cell {
  width: 170px;
  min-width: 170px;
}

.admin-table .route-cell {
  width: 92px;
  min-width: 92px;
}

.admin-table .status-cell {
  width: 150px;
  min-width: 150px;
}

.admin-table .price-cell {
  width: 76px;
  min-width: 76px;
}

.admin-table .margin-cell {
  width: 110px;
  min-width: 110px;
}

.admin-table .admin-note-cell {
  width: 300px;
  min-width: 300px;
  max-width: 360px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

.money {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.lead-panel {
  margin-top: 56px;
}

.quote-ledger-panel {
  margin-top: 56px;
  scroll-margin-top: 96px;
}

.admin-help {
  margin: 10px 0 0;
  color: var(--muted);
}

.quote-ledger {
  display: grid;
  gap: 18px;
}

.quote-group {
  overflow: hidden;
  box-shadow: none;
}

.quote-group-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.quote-group-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.quote-group-head h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.quote-group-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.quote-group-head > strong {
  white-space: nowrap;
  color: var(--blue);
  font-size: 20px;
}

.quote-table-wrap {
  overflow: auto;
}

.quote-table th,
.quote-table td {
  white-space: nowrap;
}

.quote-table td:last-child {
  min-width: 420px;
  white-space: normal;
}

.lead-list {
  display: grid;
  gap: 14px;
}

.lead-list article {
  padding: 20px;
  box-shadow: none;
}

.lead-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 10px;
}

.lead-list p {
  margin-bottom: 6px;
  color: var(--muted);
}

.account-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 40px 80px;
}

.auth-card {
  padding: 28px;
}

.auth-card h2 {
  font-size: 30px;
}

.member-panel {
  display: grid;
  gap: 16px;
}

.account-toolbar {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
}

.account-toolbar h1 {
  margin-top: 6px;
  font-size: 32px;
}

.account-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  width: min(100%, 420px);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4fb;
}

.account-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.account-tab:focus-visible {
  outline: 3px solid rgba(25, 118, 210, 0.28);
  outline-offset: 2px;
}

.account-tab.is-active {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(15, 95, 169, 0.12);
}

.account-tab-panel {
  display: grid;
  gap: 16px;
}

.settings-stack {
  display: grid;
  gap: 16px;
}

.account-settings-card,
.tax-profile-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.account-settings-card {
  padding: 18px;
}

.account-settings-card .member-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.settings-stack .tax-profile-card {
  margin-top: 0;
}

.login-required-panel {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  margin: 40px auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.login-required-panel h1 {
  font-size: 38px;
}

.login-required-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.my-news-panel {
  display: grid;
  gap: 18px;
}

.my-news-toolbar {
  align-items: center;
  justify-content: space-between;
}

.my-news-toolbar h1 {
  margin: 0;
}

.my-news-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.62fr);
  gap: 22px;
  align-items: start;
}

.my-news-list-layout {
  display: grid;
  gap: 18px;
}

.news-order-sidebar,
.news-order-board,
.news-editor-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.news-order-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.news-order-board {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.my-news-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.filter-select-field {
  display: grid;
  gap: 6px;
  min-width: 190px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.filter-select-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.news-filter-meta {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-editor-panel {
  min-height: 420px;
  padding: 18px;
}

.write-page-panel {
  width: min(100%, 920px);
  margin: 0 auto;
}

.news-order-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.news-order-list > .empty-state {
  grid-column: 1 / -1;
}

.news-order-button,
.news-order-card {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.news-order-card {
  min-height: 210px;
  align-content: space-between;
}

.news-order-card.my-news-c1-card {
  min-height: 250px;
  gap: 14px;
  padding: 16px;
}

.news-order-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news-order-card-topline strong {
  color: var(--blue);
  font-size: 20px;
  white-space: nowrap;
}

.news-order-button:hover,
.news-order-button.is-active,
.news-order-card:hover,
.news-order-card.is-active {
  border-color: var(--blue);
  background: #f3f8fd;
}

.news-order-button.is-active,
.news-order-card.is-active {
  box-shadow: 0 10px 28px rgba(15, 95, 169, 0.12);
}

.news-order-button:focus-visible {
  outline: 3px solid rgba(25, 118, 210, 0.28);
  outline-offset: 2px;
}

.news-order-button-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.news-order-button-head em {
  color: var(--blue);
  font-style: normal;
}

.news-order-button strong {
  font-size: 17px;
}

.news-order-button small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.news-order-button .workflow-pill {
  width: fit-content;
}

.news-order-card-main,
.news-order-card-foot {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.news-order-card-main h3 {
  margin: 0;
  font-size: 22px;
}

.news-order-card-main p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.news-order-card .workflow-pill {
  width: fit-content;
}

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

.my-news-progress li {
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.news-order-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.news-order-actions .button {
  width: 100%;
  min-height: 42px;
  justify-content: center;
}

.news-order-summary {
  display: grid;
  gap: 12px;
}

.summary-trigger-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.summary-trigger-card > div {
  display: grid;
  gap: 4px;
}

.summary-trigger-card strong {
  font-size: 16px;
}

.compact-summary-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.compact-summary-list div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.compact-summary-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.compact-summary-list dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.compact-order-items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.compact-order-items li {
  display: grid;
  gap: 2px;
}

.compact-order-items strong {
  font-size: 14px;
}

.compact-order-items span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 32, 51, 0.48);
}

.summary-modal {
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 22px;
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.25);
}

.summary-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.summary-modal-head h2 {
  margin: 0;
  font-size: 28px;
}

.icon-close-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.icon-close-button:focus-visible {
  outline: 3px solid rgba(25, 118, 210, 0.28);
  outline-offset: 2px;
}

.summary-modal-body {
  display: grid;
  gap: 14px;
}

.summary-modal-title {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.summary-modal-title strong {
  font-size: 20px;
}

.summary-modal-title span {
  color: var(--muted);
  font-weight: 800;
}

.order-detail-panel {
  border: 0;
  box-shadow: none;
}

.news-editor-head {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.news-editor-head-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.news-editor-head span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.news-editor-head h2 {
  margin: 0;
  font-size: 30px;
}

.order-detail-panel .order-card-head h2 {
  margin: 2px 0 0;
  font-size: 26px;
}

.news-detail-empty {
  display: grid;
  min-height: 360px;
  place-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.news-detail-empty strong {
  color: var(--ink);
  font-size: 22px;
}

.member-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  box-shadow: none;
}

.member-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.member-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.member-card strong {
  overflow-wrap: anywhere;
}

.order-list {
  display: grid;
  gap: 16px;
}

.order-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.my-news-concepts {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 46px 0 82px;
}

.concept-page-title {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.concept-page-title h1 {
  margin: 0;
  font-size: 44px;
}

.my-news-concept-option {
  display: grid;
  gap: 18px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.concept-option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.concept-option-head span {
  display: inline-grid;
  min-width: 52px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: #e9f4f1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.concept-option-head h2 {
  margin: 0;
  font-size: 30px;
}

.inbox-preview,
.board-preview,
.bundle-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(16, 32, 51, 0.08);
}

.inbox-preview {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.inbox-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.inbox-stats div {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.inbox-stats span,
.inbox-row dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.inbox-stats strong {
  color: var(--blue);
  font-size: 30px;
}

.inbox-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inbox-tabs button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.inbox-tabs button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.inbox-list {
  display: grid;
  gap: 10px;
}

.inbox-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.inbox-row.is-priority {
  border-color: rgba(15, 95, 169, 0.45);
  background: #f5faff;
}

.inbox-row h3,
.board-task h3,
.bundle-work-head h3 {
  margin: 8px 0 4px;
  font-size: 20px;
}

.inbox-row p,
.board-task p,
.bundle-work-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.inbox-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.inbox-row dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.board-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.board-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 380px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f8fbfd;
}

.board-column:last-child {
  border-right: 0;
}

.board-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
}

.board-column-head strong {
  font-size: 18px;
}

.board-column-head span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #dff3ec;
  color: var(--green);
  font-weight: 900;
}

.board-task {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.board-task.muted-task {
  box-shadow: none;
}

.board-task .button {
  justify-self: start;
}

.bundle-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f8fbfd;
}

.bundle-work-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.bundle-work-card.is-active {
  border-color: rgba(15, 95, 169, 0.45);
  box-shadow: 0 16px 36px rgba(15, 95, 169, 0.12);
}

.bundle-work-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.bundle-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-progress li {
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.bundle-progress li.done {
  border-color: #bee3d8;
  background: #e9f7f2;
  color: var(--green);
}

.bundle-progress li.active {
  border-color: var(--blue);
  background: #e8f2fc;
  color: var(--blue);
}

.bundle-media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.bundle-media-strip span,
.bundle-media-strip small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.bundle-media-strip small {
  color: var(--muted);
  font-size: 13px;
}

.c-variant-stack {
  display: grid;
  gap: 22px;
}

.c-variant {
  display: grid;
  gap: 12px;
}

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

.variant-label span {
  display: inline-grid;
  min-width: 42px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.variant-label h3 {
  margin: 0;
  font-size: 22px;
}

.bundle-preview-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.compact-card {
  align-content: space-between;
  min-height: 250px;
}

.compact-card .bundle-work-head {
  grid-template-columns: minmax(0, 1fr);
}

.compact-card .bundle-work-head strong {
  color: var(--blue);
  font-size: 20px;
}

.bundle-card-bottom {
  display: grid;
  gap: 14px;
}

.bundle-card-bottom .button {
  width: 100%;
  justify-content: center;
}

.bundle-detail-preview {
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.bundle-mini-list {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #f8fbfd;
}

.bundle-mini-list button {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.bundle-mini-list button.is-active {
  border-color: var(--blue);
  background: #f3f8fd;
  box-shadow: 0 10px 28px rgba(15, 95, 169, 0.12);
}

.bundle-mini-list strong {
  font-size: 16px;
}

.bundle-mini-list small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.bundle-focus-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.bundle-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.bundle-focus-head h3 {
  margin: 8px 0 4px;
  font-size: 30px;
}

.bundle-focus-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.bundle-focus-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.bundle-focus-meta div {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.bundle-focus-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.bundle-focus-meta dd {
  margin: 0;
  font-weight: 900;
}

.bundle-timeline-preview {
  position: relative;
  gap: 0;
  padding: 18px;
}

.timeline-order {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  min-height: 112px;
}

.timeline-status {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  padding-top: 18px;
  color: var(--muted);
  font-weight: 900;
}

.timeline-status::after {
  position: absolute;
  top: 46px;
  bottom: -18px;
  left: 11px;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline-order:last-child .timeline-status::after {
  display: none;
}

.timeline-status span {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 5px solid #dce9f5;
  border-radius: 999px;
  background: #ffffff;
}

.timeline-order.is-current .timeline-status {
  color: var(--blue);
}

.timeline-order.is-current .timeline-status span {
  border-color: var(--blue);
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.timeline-order.is-current .timeline-card {
  border-color: rgba(15, 95, 169, 0.45);
  background: #f5faff;
  box-shadow: 0 16px 36px rgba(15, 95, 169, 0.12);
}

.timeline-card h3 {
  margin: 8px 0 4px;
  font-size: 20px;
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.order-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.workflow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.workflow-pill.pending {
  background: #fff8e6;
  color: #8a5a00;
}

.workflow-pill.review {
  background: #eef6ff;
  color: var(--blue);
}

.workflow-pill.rejected {
  background: #fff1ef;
  color: var(--danger);
}

.workflow-pill.approved {
  background: #e8f5f1;
  color: #246b5d;
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.order-card-head h3 {
  margin: 2px 0 0;
  font-size: 22px;
}

.order-card-head span,
.order-card-head p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-card-head strong {
  color: var(--blue);
  font-size: 24px;
  white-space: nowrap;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.order-meta div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.order-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.order-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.order-item-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-item-list li {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.admin-order-list .order-item-list li {
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 1fr) auto auto;
}

.order-item-list span,
.order-item-list em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.order-item-list b {
  color: var(--blue);
}

.asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asset-list span {
  padding: 7px 9px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.compact-assets {
  margin-top: 2px;
}

.compact-assets span {
  background: #ffffff;
}

.review-message,
.order-content-summary,
.event-list {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.review-message p,
.order-content-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.review-message.rejected {
  border-color: #f2c7c1;
  background: #fff7f5;
}

.review-message.approved {
  border-color: #cde8df;
  background: #f4fbf8;
}

.review-message.payment {
  border-color: #cfe2f5;
  background: #f5faff;
}

.review-message.payment strong {
  color: var(--blue);
}

.order-content-summary div,
.order-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-content-summary a,
.order-content-summary span,
.order-link-list a,
.order-link-list span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.revision-form,
.admin-content-form,
.reject-form,
.report-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.workflow-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 14px;
  align-items: start;
}

.workflow-buttons {
  display: grid;
  gap: 8px;
}

.danger-button {
  border-color: var(--danger);
  background: var(--danger);
}

.event-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.email-log-list span {
  display: grid;
  gap: 2px;
}

.email-log-list small {
  color: #6b7890;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.admin-order-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.admin-order-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.empty-state {
  color: var(--muted);
  font-weight: 700;
}

.account-empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fbfdff;
  text-align: center;
}

.account-empty-state strong {
  color: var(--ink);
  font-size: 20px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .admin-header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
  }

  .admin-header-nav {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
    max-width: none;
    overflow-x: auto;
  }

  .admin-header-nav .admin-work-tab {
    flex: 0 0 auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 680px;
    padding: 74px 22px 50px;
  }

  h1 {
    font-size: 52px;
    line-height: 1.12;
  }

  h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .hero-copy,
  .purchase-hero p:not(.eyebrow),
  .section-copy {
    font-size: 18px;
  }

  .purchase-hero h1 {
    font-size: 46px;
  }

  .hero-stats,
  .market-grid,
  .page-card-grid,
  .case-grid,
  .case-detail,
  .case-detail.compact,
  .case-kpis,
  .case-step-list,
  .public-package-grid,
  .process-grid,
  .quote-section,
  .purchase-layout,
  .checkout-layout,
  .purchase-grid,
  .concept-package-grid,
  .goal-concept-layout,
  .compare-concept-layout,
  .payment-methods,
  .admin-order-summary,
  .admin-order-workspace,
  .admin-io-grid,
  .admin-order-snapshot,
  .admin-detail-meta,
  .admin-member-row,
  .inbox-stats,
  .inbox-row,
  .board-preview,
  .bundle-preview-compact,
  .bundle-detail-preview,
  .bundle-work-head,
  .bundle-focus-head,
  .bundle-focus-meta,
  .bundle-progress,
  .timeline-order,
  .timeline-card,
  .bank-transfer-fields,
  .tax-profile-grid,
  .checkout-fields,
  .checkout-auth-grid,
  .auth-grid,
  .order-meta,
  .member-card,
  .invoice-detail-list,
  .revision-form,
  .admin-content-form,
  .reject-form,
  .report-form,
  .workflow-actions,
  .my-news-layout,
  .news-editor-head-split,
  .news-order-actions,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-payment-list-shell .admin-order-select,
  .admin-content-list-shell .admin-order-select {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .admin-payment-list-shell .admin-order-select b,
  .admin-content-list-shell .admin-order-select b {
    justify-self: start;
  }

  .admin-payment-list-shell,
  .admin-content-list-shell {
    padding: 14px;
  }

  .direct-contact-list {
    grid-template-columns: 1fr;
  }

  .admin-member-list-head {
    display: none;
  }

  .section {
    padding: 68px 22px;
  }

  .account-shell {
    padding: 24px 22px 68px;
  }

  .account-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .account-toolbar h1 {
    font-size: 28px;
  }

  .account-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .my-news-concepts {
    width: min(100% - 32px, 760px);
    padding-top: 28px;
  }

  .concept-page-title h1 {
    font-size: 34px;
  }

  .concept-option-head {
    display: grid;
    justify-content: start;
  }

  .my-news-board-head {
    display: grid;
    align-items: start;
  }

  .filter-select-field {
    width: 100%;
    min-width: 0;
  }

  .inbox-row,
  .admin-order-toolbar,
  .bundle-work-head {
    align-items: stretch;
  }

  .admin-order-toolbar {
    display: grid;
  }

  .admin-layout-switch,
  .admin-controls {
    width: 100%;
  }

  .admin-layout-button,
  .admin-controls input,
  .admin-controls select {
    width: 100%;
  }

  .admin-order-table-head {
    display: none;
  }

  .admin-order-row {
    grid-template-columns: 1fr;
  }

  .inbox-row dl {
    grid-template-columns: 1fr;
  }

  .board-column {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-column:last-child {
    border-bottom: 0;
  }

  .bundle-progress li {
    border-radius: 8px;
  }

  .bundle-mini-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-status::after {
    left: 11px;
  }

  .timeline-status {
    padding-top: 0;
  }

  .news-order-sidebar {
    position: static;
  }

  .member-strip,
  .order-card-head {
    display: grid;
  }

  .order-card-head strong {
    white-space: normal;
  }

  .order-item-list li,
  .admin-order-list .order-item-list li {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 48px 22px 38px;
  }

  .page-hero h1 {
    max-width: 720px;
    font-size: 38px;
    line-height: 1.22;
  }

  .page-hero .line-block {
    display: inline;
  }

  .page-hero .line-block + .line-block::before {
    content: " ";
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.74;
  }

  .section-head.split {
    display: grid;
    align-items: start;
  }

  .media-list-head {
    display: grid;
    gap: 14px;
    margin-top: 8px;
  }

  .media-filter {
    width: 100%;
    min-width: 0;
  }

  .media-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .media-table {
    min-width: 0;
  }

  .media-table,
  .media-table tbody,
  .media-table tr,
  .media-table td {
    display: block;
    width: 100%;
  }

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

  .media-table tr {
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .media-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .media-table td:last-child {
    border-bottom: 0;
  }

  .media-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
  }

  .media-table td[colspan] {
    display: block;
  }

  .media-table td[colspan]::before {
    display: none;
  }

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

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

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

  .admin-shell {
    width: min(100% - 28px, 1280px);
  }

  .admin-controls {
    display: grid;
  }

  .admin-controls input {
    min-width: 0;
  }

  .admin-work-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-order-queue {
    position: static;
  }

  .admin-detail-head {
    display: grid;
  }

  .admin-detail-head > strong {
    white-space: normal;
  }

  .purchase-shell,
  .checkout-shell {
    width: min(100% - 28px, 1220px);
  }

  .selection-panel,
  .checkout-summary,
  .goal-result-panel,
  .case-result-panel,
  .live-slot-cart {
    position: static;
  }

  .concept-tabs {
    position: static;
  }

  .concept-table-wrap {
    border: 0;
    background: transparent;
  }

  .draft-shell {
    width: min(100% - 28px, 1280px);
  }

  .draft-section {
    padding: 46px 0 56px;
  }

  .lane-board,
  .slot-board,
  .shelf-row,
  .bundle-equation {
    grid-template-columns: 1fr;
  }

  .single-lane {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bundle-slots {
    grid-template-columns: 1fr;
  }

  .bundle-total,
  .hero-product {
    display: grid;
    justify-items: start;
  }

  .shelf-row {
    gap: 18px;
  }

  .plus-sign {
    min-height: 20px;
  }

  .slot-cart {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .picker-actions {
    justify-items: stretch;
  }

  .picker-actions strong {
    justify-self: start;
  }

  .concept-table,
  .concept-table tbody,
  .concept-table tr,
  .concept-table td {
    display: block;
    width: 100%;
  }

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

  .concept-table tr {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .concept-table tr.selected-row {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(12, 74, 143, 0.1);
  }

  .concept-table tr.selected-row td {
    background: transparent;
  }

  .concept-table td {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }

  .concept-table td:last-child {
    border-bottom: 0;
  }

  .concept-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.7;
  }

  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  h2 {
    font-size: 29px;
    line-height: 1.28;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 640px;
    padding: 60px 18px 44px;
  }

  .hero-copy,
  .purchase-hero p:not(.eyebrow),
  .section-copy {
    font-size: 17px;
    line-height: 1.76;
  }

  .hero-actions {
    gap: 10px;
  }

  .button,
  .admin-link {
    min-height: 42px;
    padding: 0 14px;
  }

  .section {
    padding: 58px 18px;
  }

  .page-hero {
    padding: 40px 18px 32px;
  }

  .page-hero h1 {
    font-size: 30px;
    line-height: 1.28;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.76;
  }

  .media-table tr {
    padding: 14px;
  }

  .media-table td {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    font-size: 14px;
  }

  .market-card {
    padding: 26px;
  }

  .purchase-hero h1 {
    font-size: 38px;
  }

  .my-news-concepts {
    width: min(100% - 24px, 520px);
  }

  .inbox-preview,
  .bundle-preview {
    padding: 12px;
  }

  .inbox-row,
  .board-column,
  .bundle-work-card {
    padding: 14px;
  }

  .inbox-tabs button {
    flex: 1 1 calc(50% - 8px);
  }

  .concept-option-head h2 {
    font-size: 25px;
  }

  .bundle-work-head .button,
  .bundle-focus-head .button,
  .timeline-card .button,
  .board-task .button,
  .inbox-row .button {
    width: 100%;
    justify-content: center;
  }

  .variant-label h3 {
    font-size: 20px;
  }

  .news-order-card-topline {
    display: grid;
    justify-content: start;
  }

  .bundle-focus-head h3 {
    font-size: 25px;
  }

  .timeline-status {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
  }

  .timeline-status span {
    width: 22px;
    height: 22px;
  }

  .timeline-status::after {
    left: 10px;
  }
}
