:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --panel-strong: #eff6ff;
  --text: #0f172a;
  --text-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --success: #047857;
  --warning: #b45309;
  --warning-bg: #fff7ed;
  --danger: #b91c1c;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1120px;
  --nav-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 180px);
  color: var(--text);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-main {
  padding: 28px 0 64px;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 12px;
  color: var(--text-soft);
  border-radius: 999px;
  transition: background-color 120ms ease, color 120ms ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.card,
.section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.section {
  padding: 24px;
  margin-bottom: 18px;
}

.hero {
  padding: 30px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), rgba(96, 165, 250, 0));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 12px;
}

.lead {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.muted-list,
.assumptions,
.link-list,
.source-note ul,
.related-group ul,
.warnings ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.muted-list li,
.assumptions li,
.link-list li,
.source-note li,
.related-group li,
.warnings li {
  margin: 0 0 8px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.calculator-card,
.result-card {
  padding: 24px;
}

.result-card {
  position: sticky;
  top: calc(var(--nav-h-live) + 20px);
}

.result-card.is-updated {
  animation: resultPulse 600ms ease;
}

@keyframes resultPulse {
  0% { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
  40% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.08); }
  100% { box-shadow: var(--shadow); }
}

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

.field {
  min-width: 0;
}

.field--featured {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.field--featured .field-help {
  color: #1d4ed8;
}

.field[hidden] {
  display: none !important;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.field-help {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.field .control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field .control {
  min-width: 0;
}

.field .control > input,
.field .control > select,
.field .control > .custom-select,
.field .control > .control-select {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.control-select {
  position: relative;
}

.control-select-ready {
  align-items: stretch;
}

.result-card {
  scroll-margin-top: calc(var(--nav-h-live) + 16px);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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


.custom-select {
  position: relative;
  width: 100%;
}

.native-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.select-trigger {
  position: relative;
  width: 100%;
  min-height: 46px;
  padding: 10px 42px 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--text);
  font: inherit;
  text-align: left;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.select-trigger:hover {
  border-color: #94a3b8;
}

.select-trigger[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff5f5;
}

.select-trigger-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-trigger-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.92rem;
  pointer-events: none;
  transition: transform 120ms ease;
}

.custom-select.is-open .select-trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.custom-select.is-open .select-trigger-icon {
  transform: translateY(-50%) rotate(180deg);
}

.select-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  overflow: auto;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.custom-select.opens-up .select-panel {
  top: auto;
  bottom: calc(100% + 8px);
}

.custom-select.is-open .select-panel {
  display: block;
}

.select-option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.select-option:hover,
.select-option:focus-visible {
  background: #eff6ff;
  outline: none;
}

.select-option.is-selected {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
}

.prefix {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 0 12px;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  color: var(--text-soft);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

input:hover,
select:hover {
  border-color: #94a3b8;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  outline: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff5f5;
}

.field-checkbox {
  display: grid;
  gap: 10px;
  align-items: start;
}

.field-checkbox label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  margin: 0;
  padding: 12px 14px;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  cursor: pointer;
  overflow-wrap: anywhere;
}

.field-checkbox .field-help {
  margin-top: 0;
}

.field-checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  box-shadow: none;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  min-width: 0;
  max-width: 100%;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--accent-hover) 0%, #1e40af 100%);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: #94a3b8;
}

.btn-tertiary {
  color: var(--accent);
  background: var(--panel-strong);
}

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

.metric-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.metric-card h3 {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.metric-card p {
  margin: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metric-card--mild {
  border-color: rgba(217, 119, 6, 0.24);
  background: linear-gradient(180deg, #fffaf0 0%, #fff7ed 100%);
}

.metric-card--mild h3,
.metric-card--mild p {
  color: #9a3412;
}

.metric-card--notable,
.metric-card--severe {
  border-color: rgba(185, 28, 28, 0.2);
  background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
}

.metric-card--notable h3,
.metric-card--notable p,
.metric-card--severe h3,
.metric-card--severe p {
  color: #b91c1c;
}

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

.breakdown-table th,
.breakdown-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.breakdown-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text-soft);
}

.breakdown-table td {
  text-align: right;
  font-weight: 800;
}

.source-registry-table th,
.source-registry-table td {
  text-align: left;
  vertical-align: top;
}

.source-registry-table thead th {
  font-weight: 800;
  color: var(--text);
}

.source-registry-table tbody td {
  font-weight: 600;
  color: var(--text-soft);
}

.formula-box {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  white-space: pre-wrap;
  border-radius: var(--radius-lg);
  background: #0b1220;
  color: #e5eefc;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

details + details {
  margin-top: 10px;
}

details[open] {
  border-color: #bfdbfe;
  background: #f8fbff;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-soft);
}

.related-group + .related-group {
  margin-top: 16px;
}

.related-group h3 {
  color: var(--text-soft);
}

.link-list,
.related-group ul,
.source-note ul {
  display: grid;
  gap: 8px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumbs {
  margin-bottom: 14px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #94a3b8;
}



.result-interpretation ul {
  margin: 12px 0 0;
}

.status-chip-wrap {
  margin: 2px 0 14px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.status-chip.is-threshold-reached {
  border-color: rgba(180, 83, 9, 0.22);
  background: #fff7ed;
  color: #9a3412;
}

.status-chip.is-threshold-below {
  border-color: rgba(3, 105, 161, 0.2);
  background: #f0f9ff;
  color: #0c4a6e;
}

.result-primary-cta {
  margin: 0 0 12px;
}

.result-primary-cta .btn {
  width: 100%;
  justify-content: center;
}
.result-context-note {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 119, 6, 0.18);
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.94rem;
  font-weight: 700;
}

.result-context-note--notable {
  border-color: rgba(217, 119, 6, 0.24);
  background: #fff7ed;
  color: #9a3412;
}

.result-context-note--severe {
  border-color: rgba(185, 28, 28, 0.22);
  background: #fef2f2;
  color: #b91c1c;
}
.warnings {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #fdba74;
  border-radius: var(--radius-md);
  background: var(--warning-bg);
  color: #9a3412;
}

.warnings:empty {
  display: none;
}

.source-note a {
  word-break: break-word;
}

.site-footer {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 0 26px;
}

.footer-links .muted {
  margin-left: auto;
}

.is-copied {
  border-color: rgba(4, 120, 87, 0.2);
  background: rgba(4, 120, 87, 0.08);
  color: var(--success);
}

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

@media (max-width: 960px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .result-card {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .page-main {
    padding-top: 20px;
  }

  .nav-inner {
    align-items: flex-start;
    padding: 12px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero,
  .section,
  .calculator-card,
  .result-card {
    padding: 20px;
  }

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

  .footer-links .muted {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.provider-etsy{background:linear-gradient(180deg,#fffdfb,#fff7ef)}.provider-ebay{background:linear-gradient(180deg,#fbfffd,#f2fbf7)}.provider-gumroad{background:linear-gradient(180deg,#fffdfc,#fff6f3)}.provider-shopify{background:linear-gradient(180deg,#fcfffd,#f4fcf7)}



.hub-jump-nav {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hub-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hub-jump-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease;
}

.hub-jump-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #fdfefe;
}

.hub-jump-label {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hub-jump-text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}


.hub-jump-nav-tabs {
  position: sticky;
  top: 12px;
  z-index: 8;
  padding: 10px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
}

.hub-jump-nav-tabs .hub-jump-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  scrollbar-width: thin;
}

.hub-jump-nav-tabs .hub-jump-link {
  flex: 0 0 auto;
  min-width: 170px;
  padding: 12px 16px;
  border-radius: 999px;
}

.hub-jump-nav-tabs .hub-jump-text {
  font-size: 0.86rem;
}

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

.hub-directory-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hub-directory-group h3 {
  margin-bottom: 12px;
}

.compact-link-list {
  margin-top: 0;
}

.compact-link-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .hub-jump-grid,
  .hub-directory-grid {
    grid-template-columns: 1fr;
  }

  .hub-directory-group,
  .hub-jump-link {
    padding: 16px;
  }
}


@media (max-width: 720px) {
  .select-trigger {
    min-height: 48px;
  }

  .select-panel {
    left: -2px;
    right: -2px;
    border-radius: 16px;
  }

  .form-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .breadcrumbs ol {
    gap: 8px;
  }

  .hero h1,
  .section h2,
  .metric-card p {
    overflow-wrap: anywhere;
  }
}


.quick-action-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.quick-action-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.quick-action-card:hover {
  transform: translateY(-1px);
  border-color: #93c5fd;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}

.quick-action-card h3 {
  margin: 0 0 8px;
}

.quick-action-card p {
  margin: 0 0 14px;
  color: var(--text-soft);
}

.quick-action-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--accent);
}

@media (max-width: 720px) {
  .quick-action-grid {
    grid-template-columns: 1fr;
  }
}

.freshness-note,
.verification-note {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 6px;
  align-items: center;
  margin: 10px 0 0;
  padding: 9px 14px;
  border: 1px solid #86efac;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 52%, #ecfdf5 100%);
  color: #14532d;
  box-shadow: 0 10px 24px rgba(22, 101, 52, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.freshness-note strong,
.verification-note strong {
  color: #052e16;
  font-weight: 800;
}

.freshness-note-updated {
  border-color: #6ee7b7;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 52%, #f0fdf4 100%);
}

.freshness-note-reviewed {
  border-color: #86efac;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 52%, #ecfdf5 100%);
}

.freshness-note-verified {
  border-color: #4ade80;
  background: linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 52%, #dcfce7 100%);
}


.rights-rules {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rights-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.rights-rules-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.rights-rules-do {
  background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
}

.rights-rules-dont {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf8 100%);
}

.rights-rules-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rights-rules-card h3 {
  margin: 0 0 10px;
}

.rights-rules-card .muted-list {
  margin-bottom: 0;
}

.process-diagram {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.process-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 14px;
}

.process-step {
  flex: 1 1 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.process-step h3 {
  margin: 0 0 8px;
}

.process-step p {
  margin: 0;
}

.process-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-arrow {
  align-self: center;
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 800;
}

.methodology-link {
  padding-top: 0;
}

.methodology-link a {
  font-weight: 700;
}

@media (max-width: 720px) {
  .rights-rules-grid,
  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}


@media (max-width: 720px) {
  .field .control {
    flex-wrap: nowrap;
  }

  .field .control > input,
  .field .control > select,
  .field .control > .custom-select,
  .field .control > .control-select {
    min-width: 0;
  }

  .prefix {
    padding-inline: 10px;
  }
}
