@font-face {
  font-family: InterLocal;
  src: url("./fonts/b2129c009ce46d43-s.p.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: blMelody;
  src: url("./fonts/533bf4339b2d61de-s.p.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: blMelody;
  src: url("./fonts/055cc80c51d745be-s.p.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --canvas: #f7f7f7;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --surface-blue: #eef5ff;
  --ink: #171717;
  --text: #424242;
  --muted: #737373;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --primary: #333333;
  --primary-hover: #424242;
  --accent: #f9b31e;
  --blue: #2563eb;
  --green: #059669;
  --danger: #dc2626;
  --shadow-card: 0 1px 1px rgba(0, 0, 0, 0.04), 0 12px 34px rgba(0, 0, 0, 0.06);
  --shadow-nav: 0 12px 32px -6px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(111, 107, 107, 0.1), 0 1px 3px rgba(63, 70, 75, 0.1);
  --shadow-marketing-card: 0 12px 32px -6px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(111, 107, 107, 0.1), 0 1px 3px rgba(63, 70, 75, 0.1);
  --shadow-dropdown: 0 12px 32px -6px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(111, 107, 107, 0.1), 0 1px 3px rgba(63, 70, 75, 0.1);
  --shadow-button: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.35), inset 0 -1px rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: InterLocal, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.is-modal-open {
  overflow: hidden;
}

body.overflow-hidden {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.font-display {
  font-family: blMelody, InterLocal, ui-sans-serif, system-ui, sans-serif;
}

[hidden] {
  display: none !important;
}

.page {
  min-height: 100vh;
  background: var(--bg);
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 13px;
  z-index: 50;
}

.nav-pill {
  align-items: center;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: var(--shadow-marketing-card);
  display: flex;
  height: 52px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 8px;
  position: relative;
  width: min(calc(100vw - 32px), 1021px);
}

.nav-brand-wrap {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  justify-content: flex-start;
  min-width: 0;
}

.brand-logo {
  align-items: center;
  border-radius: 12px;
  color: #333;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  height: 36px;
  justify-content: flex-start;
  line-height: 1;
  max-width: 124px;
  overflow: hidden;
  padding: 8px 12px;
  text-overflow: ellipsis;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.8);
}

.desktop-nav {
  align-items: center;
  display: none;
  gap: 4px;
  justify-content: center;
}

.desktop-actions {
  align-items: center;
  display: none;
  flex: 1 1 0;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

.nav-trigger,
.nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #333;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  line-height: 20px;
  padding: 8px 10px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  width: max-content;
}

.nav-trigger {
  padding-right: 6px;
}

.nav-trigger svg,
.nav-link svg {
  color: #737373;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  width: 16px;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-link.is-active,
.nav-trigger.is-active,
.nav-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.8);
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-login,
.mobile-nav-trigger,
.icon-button,
.user-logout {
  align-items: center;
  border: 0;
  display: inline-flex;
  justify-content: center;
}

.nav-login {
  background: transparent;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  height: 34px;
  padding: 0 8px;
}

.nav-login:hover,
.mobile-nav-trigger:hover {
  background: rgba(255, 255, 255, 0.8);
}

.primary-button {
  background: #333;
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-button);
  color: #fff;
  transition: background 0.16s ease, transform 0.16s ease;
}

.primary-button:hover {
  background: #424242;
}

.primary-button:active {
  transform: translateY(1px);
}

.outline-button {
  background: #fff;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.nav-cta {
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.4), 1px 4px 8px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  gap: 4px;
  height: 34px;
  justify-content: center;
  min-width: 120px;
  padding: 0 14px;
}

.user-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  display: inline-flex;
  gap: 8px;
  height: 38px;
  max-width: 190px;
  padding: 3px 4px 3px 6px;
}

.user-avatar {
  align-items: center;
  background: var(--surface-soft);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 13px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  overflow: hidden;
  width: 28px;
}

.user-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.user-meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.user-meta strong {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 720;
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-meta span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
}

.user-logout {
  background: transparent;
  border-radius: 8px;
  color: var(--muted);
  flex: 0 0 30px;
  height: 30px;
  width: 30px;
}

.user-logout:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.user-logout svg,
.mobile-nav-trigger svg,
.mobile-close svg {
  height: 18px;
  width: 18px;
}

.mobile-nav-trigger {
  border-radius: 8px;
  color: #737373;
  display: inline-flex;
  height: 34px;
  width: 34px;
}

.dropdown-panel {
  background: #fff;
  background-clip: padding-box;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: var(--shadow-dropdown);
  color: #000;
  display: block;
  padding: 28px;
  position: fixed;
  top: 57px;
  width: min(407px, calc(100vw - 32px));
  z-index: 60;
}

.dropdown-panel.hidden {
  display: none;
}

[data-dropdown="products"] {
  left: 50%;
  max-height: min(70vh, 620px);
  overflow: auto;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 32px));
}

[data-dropdown="templates"] {
  left: max(16px, calc(50% - 321px));
  width: 440px;
}

[data-dropdown="integrations"] {
  left: max(16px, calc(50% - 239px));
  width: 506px;
}

[data-dropdown="resources"] {
  left: min(calc(100vw - 190px), calc(50% + 42px));
  padding: 24px;
  width: 174px;
}

.dropdown-grid {
  display: grid;
  gap: 24px;
}

.dropdown-products-grid {
  grid-template-columns: 1fr;
}

.tool-menu-grid {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.tool-menu-category {
  min-width: 0;
}

.tool-menu-list {
  display: grid;
  gap: 6px;
}

.tool-menu-link {
  align-items: center;
  border-radius: 8px;
  color: #111;
  display: flex;
  font-size: 14px;
  gap: 8px;
  justify-content: space-between;
  line-height: 20px;
  min-height: 30px;
  padding: 5px 8px;
}

.tool-menu-link:hover {
  background: #f9fafb;
}

.tool-menu-main {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: 0;
}

.tool-menu-icon,
.mobile-tool-icon {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 22px;
  height: 22px;
  justify-content: center;
  overflow: hidden;
  width: 22px;
}

.tool-menu-icon img,
.mobile-tool-icon img {
  display: block;
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.tool-menu-icon svg,
.mobile-tool-icon svg {
  color: #111;
  height: 17px;
  stroke-width: 2.3;
  width: 17px;
}

.tool-menu-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-menu-link em {
  background: var(--surface-soft);
  border-radius: 999px;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  line-height: 1;
  padding: 3px 6px;
}

.tool-menu-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 24px;
}

.dropdown-templates-grid {
  grid-template-columns: 180px 180px;
}

.menu-stack,
.dropdown-link-stack {
  display: grid;
  gap: 8px;
}

.menu-item {
  align-items: center;
  border-radius: 8px;
  color: #111;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 14px;
  line-height: 28px;
  padding: 8px 16px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.menu-item:hover,
.integration-menu-item:hover {
  background: #f9fafb;
}

.menu-item svg {
  color: #050505;
  height: 22px;
  stroke-width: 2.6;
  width: 22px;
}

.dropdown-heading {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.dropdown-text-link {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.dropdown-text-link:hover {
  text-decoration: underline;
}

.dropdown-footer-link {
  border-top: 1px solid #e5e7eb;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 12px;
}

.integration-menu-grid {
  column-gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 450px;
  row-gap: 12px;
}

.integration-menu-item {
  align-items: center;
  border-radius: 8px;
  color: #000;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  gap: 8px;
  line-height: 28px;
  padding: 8px;
  transition: background 0.2s ease;
}

.integration-menu-item img {
  flex: 0 0 28px;
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.resource-menu {
  display: grid;
  gap: 16px;
}

.resource-menu a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.mobile-menu {
  background: #fff;
  color: #111827;
  display: none;
  inset: 0;
  padding: 20px 24px 22px;
  position: fixed;
  z-index: 70;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-brand {
  color: #333;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.mobile-close {
  align-items: center;
  border-radius: 8px;
  color: #333;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.mobile-menu-list {
  border-top: 1px solid #e5e7eb;
}

.mobile-section {
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.mobile-section > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111827;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 53px;
  justify-content: space-between;
  padding: 0;
  text-align: left;
  width: 100%;
}

.mobile-section > button svg {
  color: #a3a3a3;
  height: 16px;
  transition: transform 0.2s ease;
  width: 16px;
}

.mobile-section > button.is-active,
.mobile-pricing.is-active {
  color: var(--ink);
  font-weight: 720;
}

.mobile-section.open > button svg {
  transform: rotate(180deg);
}

.mobile-section-content {
  display: none;
  gap: 12px;
  padding-bottom: 18px;
}

.mobile-section.open .mobile-section-content {
  display: grid;
}

.mobile-section-content a {
  color: #4b5563;
  font-size: 16px;
}

.mobile-tool-menu {
  gap: 18px;
}

.mobile-tool-category {
  display: grid;
  gap: 8px;
}

.mobile-tool-category p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  margin: 0;
}

.mobile-tool-category div {
  display: grid;
  gap: 10px;
}

.mobile-tool-category a {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: 0;
}

.mobile-tool-category span {
  color: #4b5563;
  font-size: 15px;
  line-height: 22px;
}

.mobile-tool-category a > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-pricing {
  color: #111827;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 0;
}

.mobile-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.mobile-actions a,
.mobile-actions button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  line-height: 34px;
  padding: 0;
  text-align: center;
  width: 100%;
}

@media (min-width: 900px) {
  .desktop-nav,
  .desktop-actions {
    display: flex;
  }

  .mobile-nav-trigger {
    display: none;
  }
}

.page-main {
  overflow: hidden;
}

.hero-shell {
  background: var(--canvas);
  min-height: 760px;
  overflow: hidden;
  padding: 112px 0 64px;
  position: relative;
}

.hero-inner,
.section-inner,
.footer-inner,
.page-shell {
  margin: 0 auto;
  width: min(var(--container), calc(100% - 48px));
}

.hero-copy {
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
  gap: 8px;
  height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
}

.eyebrow svg {
  color: var(--accent);
  height: 16px;
  width: 16px;
}

.hero-copy h1,
.page-heading h1 {
  color: var(--ink);
  font-size: 68px;
  font-weight: 820;
  line-height: 0.96;
  margin: 0;
}

.hero-copy h1 span,
.page-heading h1 span,
.section-title span {
  color: var(--accent);
}

.hero-copy .lead,
.page-heading .lead {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 700px;
}

.hero-tabs {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  display: inline-flex;
  gap: 4px;
  margin-top: 26px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-tabs::-webkit-scrollbar {
  display: none;
}

.hero-tab {
  align-items: center;
  border: 0;
  border-radius: 10px;
  color: rgba(51, 51, 51, 0.72);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 680;
  gap: 6px;
  height: 38px;
  padding: 0 13px;
  white-space: nowrap;
}

.hero-tab.is-active,
.hero-tab:hover {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.hero-tab svg {
  height: 16px;
  width: 16px;
}

.upload-panel {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 30px auto 0;
  max-width: 680px;
  padding: 14px;
}

.upload-drop {
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 190px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.upload-drop.is-dragover {
  background: var(--surface-blue);
  border-color: var(--blue);
}

.upload-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.upload-icon svg {
  height: 26px;
  width: 26px;
}

.upload-drop h2 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  margin: 0;
}

.upload-drop p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.upload-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 740;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  min-height: 40px;
  padding: 0 16px;
  white-space: nowrap;
}

.btn svg {
  height: 17px;
  width: 17px;
}

.btn.primary {
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.34);
  color: #fff;
}

.btn.primary:hover {
  background: var(--primary-hover);
}

.btn.secondary {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--ink);
}

.btn.secondary:hover {
  background: var(--surface-soft);
}

.btn.link {
  background: transparent;
  color: var(--ink);
  padding: 0 4px;
}

.upload-status {
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  padding: 10px 12px;
  text-align: left;
}

.upload-status[data-type="success"] {
  background: #ecfdf5;
  color: #065f46;
}

.upload-status[data-type="danger"] {
  background: #fef2f2;
  color: #991b1b;
}

.upload-status[data-type="info"],
.upload-status[data-type="warning"] {
  background: #fffbeb;
  color: #92400e;
}

.hero-preview {
  margin: 34px auto 0;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.preview-window {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.window-toolbar {
  align-items: center;
  background: #fbfbfb;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
}

.window-toolbar span {
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.window-toolbar span:nth-child(1) {
  background: #ef4444;
}

.window-toolbar span:nth-child(2) {
  background: #f59e0b;
}

.window-toolbar span:nth-child(3) {
  background: #10b981;
}

.preview-body {
  background: #f8fafc;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  padding: 22px;
}

.document-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 20px;
}

.document-card h3 {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 18px;
  gap: 8px;
  margin: 0 0 18px;
}

.document-card h3 svg {
  height: 20px;
  width: 20px;
}

.pdf-lines,
.word-lines {
  display: grid;
  gap: 10px;
}

.pdf-line,
.word-line {
  background: var(--surface-soft);
  border-radius: 999px;
  height: 12px;
}

.pdf-line:nth-child(2),
.word-line:nth-child(3) {
  width: 78%;
}

.pdf-line:nth-child(3),
.word-line:nth-child(5) {
  width: 62%;
}

.pdf-block {
  background: #fee2e2;
  border-radius: var(--radius);
  height: 72px;
  margin-top: 16px;
}

.word-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.word-grid span {
  background: #dbeafe;
  border-radius: var(--radius);
  height: 46px;
}

.section {
  padding: 76px 0;
}

.section.is-soft {
  background: #fbfbfb;
}

.section-title {
  color: var(--ink);
  font-size: 42px;
  font-weight: 820;
  line-height: 1.08;
  margin: 0;
  text-align: center;
}

.section-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 14px auto 0;
  max-width: 700px;
  text-align: center;
}

.tool-grid,
.feature-grid,
.article-grid,
.pricing-grid,
.task-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.tool-card,
.feature-card,
.article-card,
.pricing-card,
.task-card,
.notice-card,
.empty-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.tool-card,
.feature-card,
.article-card,
.pricing-card {
  padding: 20px;
}

.tool-card.is-default {
  border-color: rgba(249, 179, 30, 0.55);
}

.card-icon {
  align-items: center;
  background: var(--surface-soft);
  border-radius: var(--radius);
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.card-icon svg {
  height: 22px;
  width: 22px;
}

.tool-card h3,
.feature-card h3,
.article-card h3,
.pricing-card h3 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.3;
  margin: 0 0 8px;
}

.tool-card p,
.feature-card p,
.article-card p,
.pricing-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.tool-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.pill {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 12px;
  font-weight: 720;
  height: 26px;
  padding: 0 10px;
}

.pill.is-green {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}

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

.workflow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.workflow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.workflow-step b {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 34px;
}

.workflow-step h3 {
  color: var(--ink);
  font-size: 18px;
  margin: 0 0 8px;
}

.workflow-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 850px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--ink);
  display: flex;
  font-size: 16px;
  font-weight: 720;
  justify-content: space-between;
  line-height: 1.5;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
}

.faq-question svg {
  flex: 0 0 auto;
  height: 18px;
  margin-left: 16px;
  width: 18px;
}

.faq-answer {
  color: var(--muted);
  display: none;
  font-size: 14px;
  line-height: 1.8;
  padding: 0 20px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

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

.article-card img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin-bottom: 16px;
  object-fit: cover;
  width: 100%;
}

.feature-card img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin-bottom: 16px;
  object-fit: cover;
  width: 100%;
}

.article-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  margin-bottom: 10px;
}

.article-search {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 10px;
  margin: 30px auto 0;
  max-width: 740px;
  padding: 10px;
}

.article-search label {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 10px;
  min-width: 0;
}

.article-search label svg {
  color: var(--muted);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.article-search input {
  border: 0;
  color: var(--ink);
  font-size: 15px;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.category-strip a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
}

.category-strip a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.category-strip span {
  color: currentColor;
  opacity: 0.72;
}

.pagination-wrap {
  margin-top: 28px;
  text-align: center;
}

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.article-detail-heading {
  max-width: 900px;
}

.article-detail-meta {
  justify-content: center;
  margin-top: 18px;
}

.article-cover {
  margin: 34px auto 0;
  max-width: 980px;
}

.article-cover img {
  aspect-ratio: 1200 / 620;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  width: 100%;
}

.article-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
  margin: 34px auto 0;
  max-width: 860px;
  padding: 30px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--ink);
  line-height: 1.3;
}

.article-content img {
  border-radius: var(--radius);
  height: auto;
  margin: 18px 0;
}

.page-shell {
  padding: 126px 0 76px;
}

.page-heading {
  text-align: center;
}

.tool-page .page-main {
  background: linear-gradient(180deg, var(--canvas) 0 620px, #fff 620px 100%);
  position: relative;
}

.tool-page .page-main::before {
  background-image: url("./images/askdialog-orb-bg.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  filter: grayscale(1) sepia(1) hue-rotate(168deg) saturate(2.8) brightness(0.98) contrast(0.94) blur(20px);
  height: 820px;
  left: 50%;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  top: -560px;
  transform: translateX(-50%);
  width: min(1320px, 150vw);
}

.tool-shell {
  padding-bottom: 88px;
  position: relative;
  z-index: 1;
}

.tool-page .breadcrumb {
  margin-bottom: 18px;
}

.tool-page-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  max-width: 780px;
  text-align: left;
  width: 100%;
}

.tool-icon-xl {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  flex: 0 0 68px;
  height: 68px;
  justify-content: center;
  margin-bottom: 0;
  width: 68px;
}

.tool-icon-xl img {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.tool-icon-xl svg {
  color: var(--ink);
  height: 34px;
  width: 34px;
}

.tool-page-heading .eyebrow {
  margin-bottom: 12px;
}

.tool-page-heading h1 {
  color: var(--ink);
  flex: 0 1 auto;
  font-size: 48px;
  font-weight: 820;
  line-height: 1.04;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.tool-page-heading .lead {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 720px;
}

.tool-converter-card {
  background: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  color: var(--text);
  margin: 28px auto 0;
  max-width: 1080px;
  padding: 42px 56px 40px;
  width: 100%;
}

.tool-upload-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
  padding: 0;
}

.tool-upload-panel .upload-drop {
  align-content: center;
  background: transparent;
  border: 0;
  gap: 0;
  justify-items: center;
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  position: relative;
  box-shadow: none;
}

.tool-upload-panel .upload-drop::before {
  display: none;
}

.tool-upload-panel .upload-drop.is-dragover {
  background: rgba(238, 245, 255, 0.7);
  border-radius: 12px;
}

.tool-upload-panel .upload-icon {
  background: var(--ink);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
  color: #fff;
  height: 54px;
  margin-bottom: 18px;
  width: 54px;
}

.tool-upload-panel .upload-icon svg {
  height: 25px;
  width: 25px;
}

.tool-upload-panel .upload-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 22px;
  max-width: 640px;
}

.tool-upload-panel .upload-actions {
  margin-bottom: 18px;
}

.tool-upload-panel .upload-drop h2 {
  font-size: 24px;
  line-height: 1.2;
}

.tool-upload-panel .upload-drop p {
  max-width: 640px;
}

.tool-inline-facts {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 680;
  gap: 8px 16px;
  justify-content: center;
  line-height: 1.4;
  margin: 0;
}

.tool-inline-facts span {
  position: relative;
  white-space: nowrap;
}

.tool-inline-facts span + span::before {
  color: rgba(115, 115, 115, 0.55);
  content: "•";
  font-weight: 500;
  left: -11px;
  position: absolute;
}

.tool-side-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.tool-side-notes li {
  align-items: center;
  color: var(--text);
  display: flex;
  font-size: 14px;
  gap: 7px;
  line-height: 1.5;
}

.tool-side-notes li svg {
  color: var(--green);
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.tool-upload-panel .upload-drop.has-queue {
  align-content: stretch;
  min-height: 0;
  text-align: left;
}

.tool-upload-panel .upload-drop.has-queue > .upload-icon,
.tool-upload-panel .upload-drop.has-queue > .upload-copy,
.tool-upload-panel .upload-drop.has-queue > .upload-actions,
.tool-upload-panel .upload-drop.has-queue > .tool-inline-facts,
.tool-upload-panel .upload-drop.has-queue > .tool-side-notes {
  display: none;
}

.batch-queue {
  display: grid;
  gap: 18px;
  width: 100%;
}

.batch-toolbar,
.batch-footer {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.batch-heading {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.batch-heading strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.25;
}

.batch-heading span,
.batch-footer p,
.batch-muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.batch-tools,
.batch-row-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.batch-row-actions {
  flex-wrap: nowrap;
  min-height: 32px;
  min-width: 76px;
  width: 76px;
}

.batch-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.batch-row {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 132px 76px;
  min-height: 70px;
  padding: 13px 0;
}

.batch-row + .batch-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.batch-file {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.batch-file strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 740;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.batch-file span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.batch-state {
  display: grid;
  gap: 7px;
  min-height: 32px;
  padding-top: 2px;
  width: 132px;
}

.batch-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.batch-status-row {
  align-items: center;
  display: flex;
  gap: 7px;
  min-height: 20px;
}

.batch-status.is-uploading,
.batch-status.is-converting {
  color: #92400e;
}

.batch-status.is-succeeded {
  color: #047857;
}

.batch-status.is-failed {
  color: #b91c1c;
}

.batch-progress {
  background: rgba(0, 0, 0, 0.07);
  border-radius: 999px;
  height: 4px;
  overflow: hidden;
}

.batch-progress span {
  background: var(--ink);
  border-radius: inherit;
  display: block;
  height: 100%;
  min-width: 4px;
  transition: width 0.2s ease;
}

.batch-row.is-succeeded .batch-progress span {
  background: var(--green);
}

.batch-row.is-failed .batch-progress span {
  background: #ef4444;
}

.batch-failure-info {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #dc2626;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 14px;
  height: 14px;
  justify-content: center;
  padding: 0;
  width: 14px;
}

.batch-failure-info:hover {
  background: rgba(220, 38, 38, 0.08);
}

.batch-failure-info svg {
  height: 12px;
  width: 12px;
}

.batch-link {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  padding: 5px 0;
  white-space: nowrap;
}

.batch-link:hover {
  text-decoration: underline;
}

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

.batch-icon-link {
  align-items: center;
  border-radius: 8px;
  height: 32px;
  justify-content: center;
  padding: 0;
  width: 32px;
}

.batch-icon-link svg {
  height: 16px;
  width: 16px;
}

.batch-icon-link:hover {
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
  text-decoration: none;
}

.batch-download-button:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--green);
}

.btn.batch-icon-link {
  min-height: 32px;
}

.batch-clear-button {
  flex: 0 0 32px;
}

.batch-retry-button:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}

.batch-action-placeholder {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.batch-action-placeholder svg {
  height: 16px;
  width: 16px;
}

.batch-action-spinner svg {
  animation: batch-spin 0.9s linear infinite;
}

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

.batch-footer {
  border-top: 0;
  padding-top: 0;
}

.batch-footer p {
  margin: 0;
}

.notice-card,
.empty-card {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 24px;
  padding: 18px 20px;
}

.task-workbench {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 30px;
}

.task-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.task-filter a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  height: 36px;
  padding: 0 12px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.task-filter a:hover {
  background: var(--surface-soft);
  border-color: var(--line);
}

.task-filter a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.task-filter svg {
  height: 16px;
  width: 16px;
}

.task-filter-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-filter-count {
  align-items: center;
  display: inline-flex;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  height: auto;
  justify-content: center;
  min-width: 0;
  padding: 0;
}

.task-filter a.is-active .task-filter-count {
  color: inherit;
}

.task-queue-panel {
  min-width: 0;
}

.task-queue-top {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.task-queue-top span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  margin-bottom: 7px;
}

.task-queue-top h2 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 820;
  line-height: 1.1;
  margin: 0;
}

.task-list {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.task-card {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: 10px minmax(0, 1fr) minmax(160px, auto);
  overflow: hidden;
  padding: 0;
}

.task-status-rail {
  background: var(--surface-soft);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.task-status-rail span {
  background: var(--accent);
  border-radius: 0 999px 999px 0;
  display: block;
  height: 100%;
  min-height: 74px;
  width: 100%;
}

.task-card[data-task-status="succeeded"] .task-status-rail span {
  background: var(--green);
}

.task-card[data-task-status="failed"] .task-status-rail span {
  background: var(--danger);
}

.task-main {
  min-width: 0;
  padding: 18px 0 18px 8px;
}

.task-card-head {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-width: 0;
}

.task-card-status {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.task-failure-info {
  flex-basis: 18px;
  height: 18px;
  width: 18px;
}

.task-failure-info svg {
  height: 14px;
  width: 14px;
}

.task-title-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.task-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.25;
  margin: 0;
}

.task-file {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-file svg {
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}

.status-badge {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 24px;
  padding: 0 9px;
}

.status-pending,
.status-processing {
  background: #fffbeb;
  color: #92400e;
}

.status-succeeded {
  background: #ecfdf5;
  color: #047857;
}

.status-failed {
  background: #fef2f2;
  color: #991b1b;
}

.task-meta {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 8px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.task-meta span {
  align-items: baseline;
  display: flex;
  gap: 7px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.task-meta small {
  color: #9b9b93;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 740;
}

.task-error {
  grid-column: 1 / -1;
}

.task-error:not(:empty) {
  color: var(--danger);
}

.task-progress-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 40px;
  margin-top: 14px;
  max-width: 430px;
}

.task-progress {
  background: #ededed;
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
}

.task-progress span {
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 100%;
  min-width: 0;
  transition: width 0.24s ease;
}

.task-progress-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  text-align: right;
}

.task-card[data-task-status="succeeded"] .task-progress span {
  background: var(--green);
}

.task-card[data-task-status="failed"] .task-progress span {
  background: var(--danger);
}

.task-links {
  align-content: center;
  align-items: stretch;
  background: #fafafa;
  border-left: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
  padding: 18px;
}

.pricing-page {
  --pricing-bg: #f7f7f5;
  --pricing-card-line: #dfdfda;
  --pricing-ink: #171717;
  --pricing-muted: #6a6a62;
}

.pricing-main {
  background: var(--pricing-bg);
}

.pricing-shell {
  padding: 132px 0 88px;
}

.pricing-hero {
  margin: 0 auto;
  max-width: 890px;
}

.pricing-eyebrow {
  background: rgba(255, 255, 255, 0.82);
}

.pricing-hero h1 {
  color: var(--pricing-ink);
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 0.98;
}

.pricing-hero h1 span {
  white-space: nowrap;
}

.pricing-hero .lead {
  color: var(--pricing-muted);
  max-width: 660px;
}

.pricing-pill-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.pricing-pill-row span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--pricing-card-line);
  border-radius: 999px;
  color: #343430;
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  white-space: nowrap;
}

.pricing-pill-row svg {
  color: var(--green);
  height: 15px;
  width: 15px;
}

.pricing-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--pricing-card-line);
  border-radius: 14px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 22px;
}

.pricing-card.is-primary {
  border-color: #171717;
  box-shadow: 0 18px 42px rgba(23, 23, 23, 0.1);
  position: relative;
}

.pricing-card-top {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 82px;
}

.pricing-badge {
  background: #171717;
  border-radius: 999px;
  color: #fff;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  padding: 7px 10px;
}

.pricing-card h3 {
  color: var(--pricing-ink);
  font-size: 22px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 10px;
}

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

.pricing-card .price {
  color: var(--pricing-ink);
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 24px 0 14px;
}

.pricing-card .price span {
  font-size: 21px;
  margin-right: 3px;
  vertical-align: 18px;
}

.pricing-score {
  align-items: baseline;
  background: #f7f7f5;
  border: 1px solid #ecece7;
  border-radius: 10px;
  color: #30302c;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px 14px;
}

.pricing-score strong {
  color: var(--pricing-ink);
  font-size: 22px;
  font-weight: 820;
}

.pricing-score span {
  color: var(--pricing-muted);
  font-size: 13px;
  font-weight: 720;
}

.pricing-rate {
  min-height: 46px;
}

.pricing-card ul {
  border-top: 1px solid #ededeb;
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 20px 0 24px;
  padding: 20px 0 0;
}

.pricing-card li {
  align-items: flex-start;
  color: #383834;
  display: flex;
  font-size: 14px;
  gap: 9px;
  line-height: 1.55;
}

.pricing-card li svg {
  color: var(--green);
  flex: 0 0 auto;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.pricing-buy {
  margin-top: auto;
  min-height: 46px;
  width: 100%;
}

.pricing-team,
.pricing-compare,
.pricing-faq {
  margin-top: 72px;
}

.pricing-team {
  background: #fff;
  border: 1px solid var(--pricing-card-line);
  border-radius: 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  overflow: hidden;
  padding: 18px;
}

.pricing-team-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px 30px 26px;
}

.pricing-section-kicker {
  color: #4b4b45;
  display: block;
  font-size: 13px;
  font-weight: 760;
  margin-bottom: 14px;
}

.pricing-team h2,
.pricing-section-heading h2 {
  color: var(--pricing-ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
}

.pricing-team p,
.pricing-section-heading p {
  color: var(--pricing-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 640px;
}

.pricing-team-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pricing-team-media {
  align-items: center;
  background: #eef8f1;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}

.pricing-team-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.pricing-section-heading {
  margin: 0 auto 26px;
  max-width: 760px;
  text-align: center;
}

.pricing-section-heading .section-title {
  font-size: clamp(30px, 4vw, 46px);
}

.pricing-table-wrap {
  background: #fff;
  border: 1px solid var(--pricing-card-line);
  border-radius: 16px;
  overflow-x: auto;
}

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

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #ededeb;
  color: #383834;
  font-size: 14px;
  line-height: 1.5;
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
}

.pricing-table thead th {
  background: #fbfbfa;
  color: var(--pricing-ink);
  font-size: 13px;
  font-weight: 820;
}

.pricing-table tbody th {
  color: var(--pricing-ink);
  font-weight: 760;
  width: 28%;
}

.pricing-table td {
  min-width: 150px;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table td svg {
  color: var(--green);
  display: inline-block;
  height: 16px;
  margin-right: 7px;
  vertical-align: -3px;
  width: 16px;
}

.pricing-faq.section {
  padding-bottom: 0;
}

.footer-cta-section {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.footer-cta-card {
  background: #27282c;
  border-radius: 14px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 470px;
  margin: 0 auto -80px;
  max-width: 1100px;
  overflow: hidden;
}

.footer-cta-copy {
  padding: 48px;
}

.footer-cta-copy h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 24px;
  max-width: 330px;
}

.footer-cta-button {
  background: #ffc700;
  border-radius: 8px;
  color: #171717;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}

.footer-cta-media {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  min-height: 220px;
  position: relative;
}

.footer-cta-img {
  bottom: 0;
  height: auto;
  position: absolute;
  width: 176px;
}

.footer-cta-img-one {
  left: 40px;
  transform: rotate(-6deg);
}

.footer-cta-img-two {
  left: 144px;
  width: 192px;
  z-index: 2;
}

.footer-cta-img-three {
  right: 48px;
  transform: rotate(7deg);
}

.site-footer {
  background: #1f2023;
  color: rgba(255, 255, 255, 0.72);
  padding: 128px 16px 40px;
}

.footer-inner {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.footer-brand {
  color: #ffc700;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
  max-width: 190px;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}

.footer-column h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-column ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column a,
.footer-record a,
.footer-friend-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column a:hover,
.footer-record a:hover,
.footer-friend-links a:hover,
.footer-social-links a:hover {
  color: #fff;
}

.footer-friend-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
}

.footer-friend-links span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.footer-friend-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-friend-links a {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 5px 10px;
}

.footer-record {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 20px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
}

.footer-record-tags,
.footer-record-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-record-tags a,
.footer-record-tags span {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 12px;
}

.footer-record-links a,
.footer-record-links span {
  color: rgba(255, 255, 255, 0.45);
}

.auth-modal {
  align-items: center;
  background: rgba(23, 23, 23, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 80;
}

.auth-dialog {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 380px;
  padding: 28px;
  position: relative;
  text-align: center;
  width: 100%;
}

.auth-dialog h2 {
  color: var(--ink);
  font-size: 24px;
  margin: 0 0 8px;
}

.auth-dialog p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.auth-close {
  background: transparent;
  border-radius: 8px;
  color: var(--muted);
  height: 34px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
}

.auth-close svg {
  height: 18px;
  width: 18px;
}

.auth-qrcode {
  align-items: center;
  background: var(--surface-soft);
  border-radius: var(--radius);
  display: flex;
  height: 236px;
  justify-content: center;
  margin: 0 auto 12px;
  width: 236px;
}

.auth-qrcode img {
  height: 220px;
  object-fit: contain;
  width: 220px;
}

.auth-qrcode div {
  color: var(--muted);
  font-size: 14px;
}

.auth-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 22px;
}

.toast-stack {
  bottom: 22px;
  display: grid;
  gap: 10px;
  max-width: min(420px, calc(100% - 32px));
  position: fixed;
  right: 22px;
  z-index: 100;
}

.toast {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  padding: 12px 14px;
}

.toast[data-type="success"] {
  border-color: #bbf7d0;
  color: #047857;
}

.toast[data-type="danger"] {
  border-color: #fecaca;
  color: #991b1b;
}

@media (max-width: 899px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .nav-pill {
    width: min(100% - 24px, 620px);
  }

  .brand-logo {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .user-meta {
    display: none;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .page-shell {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-shell {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-copy h1,
  .page-heading h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-copy .lead,
  .page-heading .lead {
    font-size: 16px;
  }

  .preview-body,
  .tool-grid,
  .feature-grid,
  .workflow,
  .article-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-shell {
    padding: 108px 0 64px;
  }

  .pricing-hero h1 {
    font-size: 44px;
  }

  .pricing-pill-row {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  .pricing-pill-row span {
    justify-content: center;
  }

  .pricing-grid {
    margin-top: 36px;
  }

  .pricing-card {
    min-height: auto;
    padding: 20px;
  }

  .pricing-card-top {
    min-height: 0;
  }

  .pricing-team,
  .pricing-compare,
  .pricing-faq {
    margin-top: 50px;
  }

  .pricing-team {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .pricing-team-copy {
    padding: 16px 8px 8px;
  }

  .pricing-team-actions {
    align-items: stretch;
    display: grid;
  }

  .pricing-team-media {
    min-height: 230px;
  }

  .pricing-section-heading {
    text-align: left;
  }

  .pricing-section-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-table-wrap {
    border-radius: 12px;
    margin-left: -2px;
    margin-right: -2px;
  }

  .document-card {
    min-height: 210px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .task-workbench {
    grid-template-columns: 1fr;
  }

  .task-card {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .task-main {
    padding: 16px 14px 0 6px;
  }

  .task-links {
    border-left: 0;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 14px 16px 16px;
  }

  .tool-page .page-main {
    background: linear-gradient(180deg, var(--canvas) 0 690px, #fff 690px 100%);
  }

  .tool-page-heading h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .tool-page-heading {
    gap: 12px;
  }

  .tool-page-heading .lead {
    font-size: 16px;
  }

  .tool-converter-card {
    margin-top: 24px;
    padding: 28px 18px 28px;
  }

  .tool-upload-panel .upload-drop {
    min-height: 330px;
    padding: 0;
  }

  .tool-upload-panel .upload-drop.has-queue {
    min-height: 0;
  }

  .tool-upload-panel .upload-icon {
    height: 50px;
    margin-bottom: 16px;
    width: 50px;
  }

  .tool-upload-panel .upload-icon svg {
    height: 24px;
    width: 24px;
  }

  .tool-upload-panel .upload-copy {
    margin-bottom: 20px;
  }

  .tool-upload-panel .upload-drop h2 {
    font-size: 23px;
  }

  .tool-upload-panel .upload-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-bottom: 16px;
    width: 100%;
  }

  .tool-upload-panel .btn {
    justify-self: stretch;
    width: 100%;
  }

  .batch-toolbar,
  .batch-footer {
    align-items: stretch;
    display: grid;
    gap: 14px;
  }

  .batch-tools,
  .batch-row-actions {
    justify-content: flex-start;
  }

  .batch-tools .btn,
  .batch-footer .btn {
    width: 100%;
  }

  .batch-tools .batch-clear-button {
    flex-basis: 32px;
    width: 32px;
  }

  .batch-row {
    align-items: start;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 76px;
    min-height: 0;
    padding: 14px 0;
  }

  .batch-file {
    grid-column: 1 / -1;
  }

  .batch-state {
    grid-column: 1;
    max-width: none;
    width: 100%;
  }

  .batch-row-actions {
    align-self: start;
    grid-column: 2;
    justify-content: flex-end;
  }

  .batch-file strong {
    white-space: normal;
  }

  .tool-inline-facts {
    gap: 7px 13px;
  }

  .tool-side-notes {
    gap: 8px 14px;
  }

  .tool-icon-xl {
    flex-basis: 60px;
    height: 60px;
    width: 60px;
  }

  .tool-icon-xl img {
    height: 52px;
    width: 52px;
  }

  .article-search {
    align-items: stretch;
    display: grid;
  }

  .article-search .btn {
    width: 100%;
  }

  .article-content {
    padding: 22px;
  }

  .footer-cta-card {
    grid-template-columns: 1fr;
    margin-bottom: -64px;
  }

  .footer-cta-copy {
    padding: 34px;
  }

  .footer-cta-copy h2 {
    font-size: 30px;
  }

  .footer-cta-media {
    display: none;
  }

  .site-footer {
    padding-top: 108px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-social-links {
    margin-top: 24px;
  }

  .footer-record {
    display: grid;
    justify-content: stretch;
  }

  .toast-stack {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 640px) {
  .task-workbench {
    margin-top: 24px;
  }

  .task-queue-top {
    align-items: stretch;
    display: grid;
  }

  .task-queue-top .btn {
    width: 100%;
  }

  .task-card-head {
    display: grid;
  }

  .task-card-status {
    justify-self: start;
  }

  .task-meta {
    grid-template-columns: 1fr;
  }

  .task-meta span {
    align-items: flex-start;
    display: grid;
    gap: 3px;
  }

  .task-progress-row {
    max-width: none;
  }

  .task-links {
    display: grid;
  }

  .task-links .btn,
  .task-links .pill {
    width: 100%;
  }

  .task-links .pill {
    justify-content: center;
  }

  .tool-page-heading {
    gap: 12px;
  }

  .tool-page-heading h1 {
    font-size: 32px;
  }

  .tool-icon-xl {
    flex-basis: 60px;
    height: 60px;
    width: 60px;
  }

  .tool-icon-xl img {
    height: 50px;
    width: 50px;
  }

  .dropdown-panel {
    left: 16px !important;
    right: 16px;
    top: 64px;
    width: auto !important;
  }

  .dropdown-grid,
  .dropdown-products-grid,
  .dropdown-templates-grid,
  .integration-menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .integration-menu-item {
    font-size: 16px;
  }

  .footer-cta-section {
    padding: 0 12px;
  }

  .footer-cta-copy {
    padding: 28px;
  }

  .footer-cta-copy h2 {
    font-size: 28px;
    max-width: none;
  }

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

  .footer-record-tags,
  .footer-record-links {
    display: grid;
  }
}

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