:root {
  color-scheme: light;
  --bg: #fff5f2;
  --surface: #ffffff;
  --surface-soft: #fff8f6;
  --text: #101828;
  --muted: #667085;
  --border: #eadfe3;
  --primary: #e8292f;
  --primary-hover: #c91e25;
  --accent: #f7a44c;
  --blue: #2559d6;
  --green: #168447;
  --success: #168447;
  --success-bg: #e9f9ef;
  --error: #b5293c;
  --error-bg: #fff0f2;
  --warning: #9a5a00;
  --warning-bg: #fff7df;
  --info: #245b9f;
  --info-bg: #eef5ff;
  --shadow: 0 22px 70px rgba(16, 24, 40, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(90deg, #fff3f7 0%, #fff1ee 55%, #fff3e3 100%);
  color: var(--text);
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px max(22px, calc((100vw - 1260px) / 2));
  background: linear-gradient(90deg, #e94791 0%, #ff6a67 55%, #ffb163 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.7);
  object-fit: cover;
  flex: 0 0 auto;
}
.top-nav { display: flex; align-items: center; gap: 20px; font-weight: 800; }
.top-nav a { color: #fff; text-decoration: none; opacity: 0.94; }
.top-nav a:hover { opacity: 1; text-decoration: underline; }

main {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  min-height: 0;
  padding: 34px 0 30px;
}
.hero-main { min-width: 0; }
.hero-copy { max-width: 920px; }
.eyebrow {
  margin: 0 0 11px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.08;
}
.hero-lead {
  max-width: 780px;
  margin-bottom: 22px;
  color: #3f4858;
  font-size: 18px;
  line-height: 1.65;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span {
  padding: 9px 12px;
  border: 1px solid #ffd6bd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #97450f;
  font-size: 13px;
  font-weight: 800;
}
.tool-shell {
  margin: 24px auto 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tabs {
  display: flex;
  gap: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.tab-button {
  min-height: 62px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  background: transparent;
  color: #404a5c;
  font-weight: 900;
}
.tab-button.is-active {
  color: #fff;
  background: var(--primary);
}
.pro-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #fff3bf;
  color: #8b5100;
  font-size: 11px;
}
.tab-button.is-active .pro-pill { background: rgba(255, 255, 255, 0.22); color: #fff; }

.tab-panel { padding: 32px 40px 40px; }
.tab-panel[hidden] { display: none; }

.section-heading, .report-heading, .progress-header, .field-header, .action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-heading { margin-bottom: 22px; }
.section-heading h2 { margin-bottom: 7px; font-size: 28px; line-height: 1.18; }
.section-heading p, .report-heading p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }

label { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 900; }
.field-header label { margin-bottom: 0; }
.input-row { display: flex; gap: 10px; }
input, textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #cfd4dc;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
input { height: 56px; padding: 0 18px; }
textarea { min-height: 190px; padding: 15px 16px; resize: vertical; line-height: 1.55; }
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232, 41, 47, 0.12); }
input:disabled, textarea:disabled { opacity: 0.75; }
.field-help { margin: 8px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.single-guide-link { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.single-guide-link a, .center-link a, .feature-grid a, .seo-link-grid a { color: var(--info); font-weight: 800; text-decoration: none; }
.single-guide-link a:hover, .center-link a:hover, .feature-grid a:hover, .seo-link-grid a:hover { text-decoration: underline; }

button {
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.14s ease, opacity 0.14s ease, background 0.14s ease;
}
button:active:not(:disabled) { transform: translateY(1px); }
button:disabled { cursor: not-allowed; opacity: 0.62; }
.secondary-button {
  min-width: 92px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  white-space: nowrap;
}
.primary-button {
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: white;
}
.primary-button:hover:not(:disabled) { background: var(--primary-hover); }
.action-row { align-items: stretch; }
.action-row .primary-button { flex: 1 1 auto; }
.danger-button { margin-top: 14px; padding: 0 20px; background: var(--error-bg); color: var(--error); }
.text-button { padding: 5px 0; background: transparent; color: var(--primary); font-size: 13px; }
.compact-primary { width: auto; min-height: 44px; margin: 0; padding: 0 18px; }
.button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.is-disabled-link {
  pointer-events: none;
  opacity: 0.62;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.is-loading .spinner { display: inline-block; }

.status { margin-top: 18px; padding: 13px 15px; border-radius: 6px; font-size: 14px; line-height: 1.5; }
.status-success { background: var(--success-bg); color: var(--success); }
.status-error { background: var(--error-bg); color: var(--error); }
.status-info { background: var(--info-bg); color: var(--info); }
.status-warning { background: var(--warning-bg); color: var(--warning); }

.count-badge, .extension-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.count-badge.is-over-limit { background: var(--error-bg); color: var(--error); }
.extension-online { background: var(--success-bg); color: var(--success); }
.extension-offline { background: var(--warning-bg); color: var(--warning); }

.premium-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 24px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid #ffd08b;
  border-radius: 8px;
  background: #fff9ed;
}
.premium-gate.is-unlocked {
  border-color: #b7e4c7;
  background: #effaf3;
}
.premium-gate h3 { margin-bottom: 8px; font-size: 22px; }
.premium-gate p { margin: 5px 0 0; color: #6a4b14; line-height: 1.5; }
.premium-gate.is-unlocked p { color: #23693c; }
.lock-label {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.license-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.license-form input { height: 48px; }
.license-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.license-status-success { color: var(--success); }
.license-status-error { color: var(--error); }
.license-status-warning { color: var(--warning); }
.license-status-info { color: var(--info); }
.premium-locked [data-premium-content] {
  position: relative;
  opacity: 0.42;
  filter: grayscale(0.16);
}
.premium-locked [data-premium-content]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.52);
}

.folder-access-card, .extension-card, .channel-folder-note, .progress-card, .report-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
}
.folder-access-card, .extension-card, .channel-folder-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.folder-icon, .extension-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(32, 35, 48, 0.08);
}
.folder-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 6px;
}
.folder-copy p, .extension-card p, .channel-folder-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.folder-state {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.folder-state-empty { background: #f2f4f7; color: var(--muted); }
.folder-state-ready { background: var(--success-bg); color: var(--success); }
.folder-state-warning { background: var(--warning-bg); color: var(--warning); }
.folder-state-error { background: var(--error-bg); color: var(--error); }
.folder-actions, .extension-actions { display: flex; align-items: stretch; gap: 9px; }
.folder-actions { min-width: 168px; flex-direction: column; }
.muted-text-button { color: var(--muted); }
.compatibility-warning {
  margin: 12px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(173, 112, 0, 0.18);
  border-radius: 6px;
  background: var(--warning-bg);
  color: var(--warning);
  line-height: 1.5;
}

.progress-header > div { display: flex; flex-direction: column; gap: 3px; }
.progress-header span { color: var(--muted); font-size: 13px; }
.progress-track { height: 9px; margin-top: 14px; overflow: hidden; border-radius: 999px; background: #edf0f4; }
.progress-bar { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: width 0.3s ease; }
.summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 17px; }
.summary-box { padding: 13px 14px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); }
.summary-box span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 12px; }
.summary-box strong { font-size: 22px; }
.summary-success strong { color: var(--success); }
.summary-failed strong { color: var(--error); }

.report-heading { margin-bottom: 15px; }
.report-heading h3 { margin-bottom: 4px; font-size: 18px; }
.report-heading p { max-width: 760px; font-size: 12px; overflow-wrap: anywhere; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); }
table { width: 100%; min-width: 860px; border-collapse: collapse; }
th, td { padding: 12px 13px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; font-size: 13px; }
th { position: sticky; top: 0; z-index: 1; background: #f8fafc; color: var(--muted); font-size: 11px; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(232, 41, 47, 0.035); }
td a { color: var(--info); text-decoration: none; }
td a:hover { text-decoration: underline; }
.cell-index { width: 48px; color: var(--muted); }
.cell-filename, .cell-result, .cell-error { overflow-wrap: anywhere; }
.cell-filename { max-width: 240px; }
.cell-result, .cell-error { max-width: 330px; }
.cell-result { color: var(--muted); }
.cell-error { color: var(--error); }
.result-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; white-space: nowrap; font-size: 11px; font-weight: 900; }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-failed { background: var(--error-bg); color: var(--error); }
.badge-loading { background: var(--info-bg); color: var(--info); }
.badge-queued { background: #f2f4f7; color: var(--muted); }
.badge-paused { background: var(--warning-bg); color: var(--warning); }
.mini-spinner { width: 11px; height: 11px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin 0.72s linear infinite; }

.scan-options {
  margin: 14px 0 2px;
  padding: 12px 14px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  background: #fff;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.checkbox-row + .checkbox-row { margin-top: 9px; }
.checkbox-row input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--primary); }
.scan-progress-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.scan-progress-head strong { font-size: 17px; }
.scan-progress-head p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.pulse-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(232, 41, 47, 0.35);
  animation: pulse 1.35s infinite;
}
.channel-result-heading { gap: 18px; }
.result-actions { display: flex; align-items: center; gap: 10px; }
.certainty-note { margin: 0 0 14px; padding: 12px 14px; border-radius: 6px; font-size: 13px; line-height: 1.5; }
.certainty-success { background: var(--success-bg); color: var(--success); }
.certainty-warning { background: var(--warning-bg); color: var(--warning); }
.channel-table-wrap table { min-width: 780px; }
.channel-download-state { white-space: nowrap; }
.channel-row-downloaded { background: rgba(22, 132, 71, 0.045); }
#channel-downloaded-count { display: inline-flex; margin-top: 8px; }
.session-memory-note { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.content-band {
  margin: 30px 0;
  padding: 42px 56px;
  background: #fff;
  border: 1px solid var(--border);
}
.content-band h2 {
  margin-bottom: 22px;
  text-align: center;
  font-size: 32px;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.format-grid article, .feature-grid article {
  padding: 18px;
  border: 1px solid #d7e7ff;
  background: #f0f7ff;
}
.feature-grid article:nth-child(2n) {
  border-color: #ffd6bd;
  background: #fff8f0;
}
.feature-grid article:nth-child(3n) {
  border-color: #d8eadf;
  background: #f0fbf4;
}
.feature-grid h3 { margin-bottom: 8px; }
.feature-grid p { color: #3f4858; line-height: 1.62; }
.format-grid code {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  background: #f2f4f7;
}
.center-link { margin: 18px 0 0; text-align: center; }
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-link-grid a {
  display: block;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}
.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 28px;
}
.pricing-band h2 { text-align: left; margin-bottom: 10px; }
.price-box {
  padding: 24px;
  border: 1px solid #ffd08b;
  background: #fff9ed;
}
.price-box span { display: block; color: var(--muted); font-size: 13px; font-weight: 900; }
.price-box strong { display: block; margin: 8px 0; color: var(--primary); font-size: 28px; }
.guide-band ol {
  max-width: 850px;
  margin: 0 auto;
  color: #3f4858;
  font-size: 17px;
  line-height: 1.8;
}
.faq-band details {
  max-width: 900px;
  margin: 12px auto;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: #fff;
}
.faq-band summary { cursor: pointer; font-weight: 900; }
.faq-band p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.site-footer {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 24px;
  color: #5e6675;
  font-size: 13px;
  line-height: 1.55;
}
.site-footer p { margin: 4px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 15px;
  text-align: left;
}
.footer-grid a {
  display: block;
  margin: 7px 0;
  color: #5e6675;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--primary); text-decoration: underline; }

.seo-page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 10px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb a { color: var(--info); font-weight: 800; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.seo-article {
  padding: 42px 54px;
  border: 1px solid var(--border);
  background: #fff;
}
.seo-article h1 {
  margin-bottom: 15px;
  font-size: clamp(34px, 4vw, 52px);
}
.seo-lead {
  color: #3f4858;
  font-size: 18px;
  line-height: 1.68;
}
.seo-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}
.seo-cta-row .secondary-button { min-height: 44px; }
.seo-article-section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.seo-article-section h2, .seo-related h2 {
  margin-bottom: 12px;
  font-size: 26px;
  text-align: left;
}
.seo-article-section p, .seo-article-section li {
  color: #3f4858;
  font-size: 16px;
  line-height: 1.72;
}
.seo-article-section ul { margin: 0; padding-left: 20px; }
.seo-related {
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.admin-main {
  width: min(1180px, calc(100% - 32px));
}
.admin-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 52px);
}
.admin-login-form {
  max-width: 680px;
  margin-bottom: 18px;
}
.admin-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.admin-section h2 {
  margin-bottom: 16px;
  text-align: left;
  font-size: 24px;
}
.admin-grid-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
}
.admin-grid-form label {
  margin-bottom: 0;
}
.admin-grid-form input {
  margin-top: 8px;
}
.admin-table {
  min-width: 980px;
}
.admin-action-button {
  min-height: 38px;
  margin: 0 6px 6px 0;
  padding: 0 12px;
}

.single-progress-card { margin-top: 14px; padding: 16px 18px; }
.progress-bar.is-indeterminate {
  width: 24% !important;
  animation: rednote-progress-indeterminate 1.15s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 41, 47, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(232, 41, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 41, 47, 0); }
}
@keyframes rednote-progress-indeterminate {
  0% { transform: translateX(-120%); }
  55% { transform: translateX(180%); }
  100% { transform: translateX(410%); }
}

@media (max-width: 900px) {
  .site-header { position: static; flex-direction: column; align-items: flex-start; }
  .top-nav { flex-wrap: wrap; gap: 12px 18px; }
  .hero-section { grid-template-columns: 1fr; gap: 24px; padding-top: 34px; }
  .premium-gate, .pricing-band { grid-template-columns: 1fr; }
  .format-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  main, .site-footer { width: min(100% - 24px, 1260px); }
  .site-header { gap: 10px; padding: 12px; }
  .brand { max-width: 100%; font-size: 17px; }
  .brand span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .top-nav { width: 100%; flex-wrap: nowrap; gap: 14px; overflow-x: auto; padding-bottom: 2px; font-size: 13px; }
  .top-nav a { flex: 0 0 auto; }
  .hero-section { padding-top: 18px; }
  h1 { font-size: 30px; }
  .hero-lead { margin-bottom: 12px; font-size: 15px; line-height: 1.55; }
  .hero-badges { margin-top: 14px; }
  #single-panel .section-heading { display: none; }
  .tabs { overflow-x: auto; }
  .tab-button { flex: 0 0 auto; min-height: 56px; padding: 0 16px; }
  .tab-panel { padding: 24px 18px; }
  .section-heading, .report-heading, .action-row { align-items: flex-start; flex-direction: column; }
  .input-row { flex-direction: column; }
  .secondary-button, .danger-button { min-height: 46px; }
  .summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .folder-access-card, .extension-card, .channel-folder-note { grid-template-columns: 1fr; }
  .folder-actions, .extension-actions, .result-actions { width: 100%; flex-direction: column; }
  .license-form { grid-template-columns: 1fr; }
  .admin-grid-form { grid-template-columns: 1fr; }
  .content-band { padding: 30px 20px; }
  .seo-link-grid { grid-template-columns: 1fr; }
  .seo-page { width: min(100% - 24px, 960px); padding-top: 22px; }
  .seo-article { padding: 30px 20px; }
  .seo-cta-row { align-items: stretch; flex-direction: column; }
}
