:root {
  color-scheme: light;
  --page: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-soft: #f7f9fc;
  --ink: #101828;
  --muted: #667085;
  --subtle: #98a2b3;
  --line: #e4e7ec;
  --primary: #1877f2;
  --primary-dark: #0d5fd1;
  --primary-soft: #eaf2ff;
  --success: #079455;
  --success-soft: #ecfdf3;
  --danger: #d92d20;
  --danger-soft: #fff1f0;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 24px 70px rgba(20, 45, 90, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
[hidden] { display: none !important; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.32;
  pointer-events: none;
}
.ambient-one {
  inset-inline-start: -15rem;
  top: -16rem;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.5), transparent 68%);
}
.ambient-two {
  inset-inline-end: -17rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(111, 76, 255, 0.26), transparent 70%);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  background: rgba(244, 247, 251, 0.82);
  border-bottom: 1px solid rgba(228, 231, 236, 0.78);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #2b88ff, #1266d5);
  color: white;
  font: 800 33px/1 Arial, sans-serif;
  box-shadow: 0 11px 25px rgba(24, 119, 242, 0.27);
}

.brand-icon-image {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  border-radius: 14px;
}

.brand-copy { display: grid; min-width: 0; }
.brand-copy strong { max-width: 230px; overflow: hidden; font-size: 17px; letter-spacing: -0.2px; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy small {
  display: none;
  max-width: 220px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-control {
  position: relative;
  min-width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 13px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}
.language-control .globe {
  width: 19px;
  height: 19px;
  color: var(--primary);
}
.language-control svg,
.link-icon svg,
.shield-icon svg,
.download-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.language-control select {
  width: 100%;
  min-width: 0;
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.select-arrow {
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-55%);
  color: var(--muted);
  pointer-events: none;
}

.page-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 34px;
}
.hero {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
h1, h2, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(32px, 4.1vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}
.trust-row i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-style: normal;
  font-size: 11px;
}

.download-panel,
.result-card,
.progress-card {
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.download-panel { padding: 30px; }
.panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 19px;
}
.step-number {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}
.panel-heading h2,
.media-copy h2,
.progress-card h2 { margin-bottom: 5px; }
.panel-heading h2 { font-size: 20px; letter-spacing: -0.35px; }
.panel-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

#analyze-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}
.url-field {
  position: relative;
  min-width: 0;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-inline: 17px;
  border: 1px solid #d0d5dd;
  border-radius: 17px;
  background: #fbfcfe;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.url-field:focus-within {
  border-color: #84adf5;
  background: white;
  box-shadow: 0 0 0 5px rgba(24, 119, 242, 0.1);
}
.link-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--primary);
}
.url-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  direction: ltr;
  text-align: left;
  font-size: 14px;
}
.url-field input::placeholder { color: var(--subtle); }

.primary-button,
.download-button,
.secondary-button,
.ghost-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}
.primary-button {
  min-width: 230px;
  padding: 0 21px;
  background: linear-gradient(135deg, #2082ff, #1265d4);
  color: white;
  box-shadow: 0 13px 28px rgba(24, 119, 242, 0.28);
}
.primary-button:hover,
.download-button:hover,
.secondary-button:hover,
.ghost-button:hover { transform: translateY(-1px); }
.primary-button:disabled,
.download-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button-arrow {
  font-size: 20px;
  transition: transform 0.18s ease;
}
[dir="rtl"] .button-arrow { transform: rotate(180deg); }
.primary-button:hover .button-arrow { transform: translateX(3px); }
[dir="rtl"] .primary-button:hover .button-arrow { transform: rotate(180deg) translateX(3px); }
.button-spinner {
  width: 19px;
  height: 19px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
.primary-button.is-loading .button-arrow { display: none; }
.primary-button.is-loading .button-spinner { display: inline-block; }

.alert {
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid #fecdca;
  border-radius: var(--radius-sm);
  background: var(--danger-soft);
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}
.alert-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fee4e2;
  font-weight: 900;
}
.media-preview {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
}
.thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px;
  background: #e9eef6;
}
.thumbnail-wrap img,
.thumbnail-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.play-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding-inline-start: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.media-copy { min-width: 0; }
.media-copy h2 {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.55;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  color: var(--muted);
  font-size: 12px;
}
.meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.meta-line span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #84adf5;
}

.format-tabs {
  margin-top: 19px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 6px;
  border: 1px solid #e4e7ec;
  border-radius: 17px;
  background: #f2f4f7;
}
.format-tab {
  min-height: 48px;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}
.format-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(16, 24, 40, 0.08);
}
.tab-icon { margin-inline-end: 5px; }

.quality-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}
.quality-option { position: relative; }
.quality-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.quality-option label {
  min-height: 94px;
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.quality-option label:hover {
  transform: translateY(-1px);
  border-color: #a7c7f9;
  box-shadow: var(--shadow-sm);
}
.quality-option input:focus-visible + label { outline: 3px solid rgba(24, 119, 242, 0.2); }
.quality-option input:checked + label {
  border-color: var(--primary);
  background: #f5f9ff;
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.08);
}
.quality-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.quality-title { font-size: 17px; }
.quality-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  color: transparent;
  font-size: 11px;
}
.quality-option input:checked + label .quality-check {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.quality-detail {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.download-button {
  width: 100%;
  min-height: 58px;
  margin-top: 17px;
  padding: 0 20px;
  background: linear-gradient(135deg, #2082ff, #1265d4);
  color: white;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.27);
}
.download-icon { width: 22px; height: 22px; }

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.status-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.progress-card h2 { font-size: 20px; line-height: 1.45; }
.progress-percent {
  min-width: 75px;
  color: var(--primary);
  font-size: 30px;
  font-weight: 900;
  text-align: end;
}
.progress-track {
  height: 12px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eef5;
}
.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1877f2, #7a5af8);
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.3);
  transition: width 0.35s ease;
}
.progress-details {
  min-height: 22px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
}
.progress-card.is-ready .progress-bar { background: linear-gradient(90deg, #12b76a, #32d583); }
.ready-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--success-soft);
  color: #067647;
  font-size: 13px;
  font-weight: 800;
}
.success-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d1fadf;
}
.action-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.secondary-button {
  padding: 0 16px;
  border: 1px solid #b2ccf4;
  background: var(--primary-soft);
  color: #175cd3;
}
.ghost-button {
  padding: 0 16px;
  border: 1px solid var(--line);
  background: white;
  color: #344054;
}

.site-footer {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 max(32px, env(safe-area-inset-bottom));
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.site-footer p { margin-bottom: 4px; }
.copyright-line { color: var(--subtle); }
.noscript { width: min(940px, calc(100% - 32px)); margin: 16px auto; }
.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;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .site-header { padding-inline: 14px; }
  .page-shell { width: min(100% - 24px, 940px); padding-top: 48px; }
  h1 { letter-spacing: -1.5px; }
  .download-panel, .result-card, .progress-card { padding: 21px; border-radius: 23px; }
  #analyze-form { grid-template-columns: 1fr; }
  .primary-button { min-width: 0; min-height: 56px; width: 100%; }
  .media-preview { grid-template-columns: 165px minmax(0, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 540px) {
  .site-header { position: static; background: transparent; border-bottom: 0; backdrop-filter: none; }
  .brand-copy small {
  display: none; display: none; }
  .language-control { min-width: 138px; }
  .page-shell { padding-top: 30px; }
  .hero { margin-bottom: 25px; }
  h1 { font-size: clamp(28px, 8.8vw, 36px); line-height: 1.2; letter-spacing: -.8px; }
  .trust-row { gap: 7px; }
  .trust-row > span { padding: 7px 10px; font-size: 11px; }
  .panel-heading { gap: 11px; }
  .download-panel, .result-card, .progress-card { padding: 17px; border-radius: 20px; }
  .url-field { height: 56px; }
  .media-preview { grid-template-columns: 1fr; gap: 14px; }
  .thumbnail-wrap { max-height: 240px; }
  .media-copy h2 { font-size: 17px; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-option label { min-height: 82px; }
  .progress-top { align-items: flex-start; }
  .progress-percent { min-width: auto; font-size: 25px; }
  .progress-details { align-items: flex-start; flex-direction: column; gap: 4px; }
  .action-row { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .brand-copy strong { max-width: 150px; font-size: 14px; }
}

@media (max-width: 370px) {
  .header-inner { gap: 8px; }
  .brand-icon-image { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
  .language-control { min-width: 122px; padding-inline-start: 10px; }
  .language-control .globe { display: none; }
  .trust-row > span { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* AdSense placements stay visually separate from all download controls. */
.ad-zone {
  width: min(940px, calc(100% - 32px));
  min-height: 90px;
  margin-inline: auto;
  display: grid;
  align-content: center;
  overflow: hidden;
  border-radius: 18px;
}
.ad-zone--top {
  margin-top: 8px;
  margin-bottom: 42px;
}
.ad-zone--bottom {
  margin-top: 52px;
  margin-bottom: 34px;
}
.ad-label {
  display: block;
  margin-bottom: 8px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
.adsbygoogle { width: 100%; display: block; }

@media (max-width: 540px) {
  .ad-zone { width: min(100% - 24px, 940px); min-height: 70px; }
  .ad-zone--top { margin-bottom: 34px; }
  .ad-zone--bottom { margin-top: 44px; }
}

/* Paste action and SEO content */
.paste-button {
  min-height: 60px;
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #cfd8e6;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.paste-button:hover {
  border-color: #84adf5;
  background: var(--primary-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(24,119,242,.1);
}
.paste-button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.paste-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.seo-content {
  margin-top: 58px;
  padding-top: 8px;
}
.seo-heading {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}
.seo-heading h2 { margin-bottom: 8px; font-size: clamp(25px, 4vw, 34px); letter-spacing: -.8px; }
.seo-heading p { margin: 0; color: var(--muted); line-height: 1.75; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.article-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(228,231,236,.96);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(16,24,40,.07);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.article-card:hover { transform: translateY(-3px); border-color: #b9d2fb; box-shadow: 0 18px 40px rgba(16,24,40,.11); }
.article-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}
.article-card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.45; }
.article-card p { flex: 1; margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.article-card span:last-child { color: var(--primary); font-size: 13px; font-weight: 850; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
  margin-bottom: 14px;
}
.footer-links a { color: #475467; text-decoration: none; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--primary); text-decoration: underline; }

/* Informational and legal pages */
.content-page-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 72px;
}
.content-breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.content-breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: 750; }
.content-breadcrumbs span { margin-inline: 8px; color: var(--subtle); }
.content-article {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(228,231,236,.96);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
}
.content-article header { margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.content-article h1 { margin-bottom: 13px; font-size: clamp(32px, 6vw, 49px); line-height: 1.18; }
.content-article .page-intro { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.85; }
.content-article .updated { display: block; margin-top: 14px; color: var(--subtle); font-size: 12px; }
.content-section + .content-section { margin-top: 29px; }
.content-section h2 { margin-bottom: 10px; font-size: 23px; }
.content-section p { margin: 0 0 11px; color: #344054; line-height: 1.95; }
.content-section p:last-child { margin-bottom: 0; }
.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 760px) {
  #analyze-form { grid-template-columns: 1fr 1fr; }
  .url-field { grid-column: 1 / -1; }
  .paste-button, .primary-button { width: 100%; min-width: 0; min-height: 56px; padding-inline: 12px; }
  .article-grid { grid-template-columns: 1fr; }
  .seo-content { margin-top: 44px; }
}

@media (max-width: 430px) {
  .paste-button, .primary-button { font-size: 12px; gap: 6px; }
  .paste-button svg { width: 18px; height: 18px; }
  .content-page-shell { width: min(100% - 24px, 900px); padding-top: 28px; }
  .content-article { padding: 21px; border-radius: 22px; }
}
@media (min-width: 761px) {
  #analyze-form { grid-template-columns: minmax(0, 1fr) auto auto; }
}
