.hidden {
  display: none !important;
}

/* -------------------------------------------------------------------------
   Tutorials shell alignment
   ------------------------------------------------------------------------- */

body.tutorials-page {
  background: #070709;
  color: #f5f7fb;
}

body.tutorials-page .tutorials-expanded-view {
  display: block;
  max-width: none;
  padding: 0 0 96px;
  background: transparent;
}

body.tutorials-page .tutorials-expanded-shell {
  max-width: min(100% - (clamp(18px, 4vw, 34px) * 2), 1600px);
  margin: 20px auto;
  border-radius: 24px;
  overflow: clip;
}

body.tutorials-page .tutorials-hero {
  padding-top: 48px;
}

body.tutorials-page .tutorials-exit-btn {
  top: calc(var(--site-shell-nav-height) + 20px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.tutorials-page .tutorials-primary-btn,
body.tutorials-page .tutorials-secondary-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  body.tutorials-page .tutorials-expanded-view {
    padding-bottom: 72px;
  }

  body.tutorials-page .tutorials-hero {
    padding-top: 28px;
  }

  body.tutorials-page .tutorials-exit-btn {
    top: calc(var(--site-shell-nav-height) + 12px);
    right: 14px;
  }
}

/* -------------------------------------------------------------------------
   Shared docs/tutorials-style system for Company + Converter
   ------------------------------------------------------------------------- */

@keyframes standaloneFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes standaloneWatermarkFade {
  to {
    opacity: 1;
  }
}

body.company-page,
body.converter-page {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: #070709;
  color: #999;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.company-page a,
body.converter-page a {
  color: inherit;
  text-decoration: none;
}

body.company-page main,
body.converter-page main {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0 0 96px;
  animation: standaloneFadeInUp .6s ease-out;
}

body.company-page .about-expanded-view,
body.converter-page .converter-expanded-view {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

body.company-page .about-expanded-shell,
body.converter-page .converter-expanded-shell {
  width: auto;
  max-width: min(100% - (clamp(18px, 4vw, 34px) * 2), 1600px);
  margin: 20px auto;
  padding: 0;
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: clip;
}

body.company-page .about-hero,
body.converter-page .converter-hero {
  position: relative;
  min-height: clamp(280px, 35vh, 380px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 48px;
  margin-bottom: 0;
  border-bottom: none;
  animation: standaloneFadeInUp .8s ease-out .1s forwards;
  opacity: 0;
}

body.company-page .about-hero::before,
body.converter-page .converter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: overlay;
}

body.company-page .about-hero::after,
body.converter-page .converter-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

body.company-page .about-hero-text,
body.converter-page .converter-hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  padding: clamp(32px, 5vh, 60px) clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.company-page .about-pill,
body.converter-page .converter-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
  color: #666;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.company-page .about-pill::before,
body.converter-page .converter-pill::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, #666, transparent);
}

body.company-page .about-hero h1,
body.company-page .about-title,
body.converter-page .converter-hero h1,
body.converter-page .converter-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

body.company-page .about-hero p,
body.company-page .about-hero-text > p,
body.converter-page .converter-hero p {
  margin: 0;
  max-width: 600px;
  font-size: clamp(14px, 1rem, 16px);
  line-height: 1.7;
  color: #999;
}

body.company-page .about-hero-actions,
body.converter-page .converter-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

body.company-page .about-primary-btn,
body.company-page .about-secondary-btn,
body.company-page .about-community-btn,
body.converter-page .converter-primary-btn,
body.converter-page .converter-secondary-btn,
body.converter-page .converter-change-file,
body.converter-page .converter-export-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.company-page .about-primary-btn,
body.converter-page .converter-primary-btn,
body.converter-page .converter-export-btn {
  background: #fff;
  color: #0a0a0a;
  border: none;
}

body.company-page .about-primary-btn:hover,
body.converter-page .converter-primary-btn:hover,
body.converter-page .converter-export-btn:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

body.company-page .about-secondary-btn,
body.company-page .about-community-btn,
body.converter-page .converter-secondary-btn,
body.converter-page .converter-change-file {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
}

body.company-page .about-secondary-btn:hover,
body.company-page .about-community-btn:hover,
body.converter-page .converter-secondary-btn:hover,
body.converter-page .converter-change-file:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

body.company-page .about-watermark,
body.converter-page .converter-watermark {
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.03);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
  z-index: 1;
  opacity: 0;
  animation: standaloneWatermarkFade 1.5s ease forwards 0.5s;
}

body.company-page .about-hero-stats,
body.converter-page .converter-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

body.company-page .about-hero-stats li,
body.converter-page .converter-hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  min-width: 80px;
}

body.company-page .about-hero-stats li span,
body.converter-page .converter-hero-stats li span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

body.company-page .about-hero-stats li small,
body.converter-page .converter-hero-stats li small {
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.3;
}

body.company-page .about-section,
body.converter-page .converter-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 60px) clamp(24px, 4vw, 60px);
  animation: standaloneFadeInUp .8s ease-out forwards;
  opacity: 0;
}

body.converter-page .converter-tool-section {
  padding-top: clamp(28px, 4vh, 40px);
}

body.company-page .about-section:nth-of-type(1),
body.converter-page .converter-section:nth-of-type(1) { animation-delay: .25s; }
body.company-page .about-section:nth-of-type(2),
body.converter-page .converter-section:nth-of-type(2) { animation-delay: .35s; }
body.company-page .about-section:nth-of-type(3),
body.converter-page .converter-section:nth-of-type(3) { animation-delay: .45s; }
body.company-page .about-section:nth-of-type(4),
body.converter-page .converter-section:nth-of-type(4) { animation-delay: .55s; }
body.company-page .about-section:nth-of-type(5),
body.converter-page .converter-section:nth-of-type(5) { animation-delay: .65s; }
body.company-page .about-section:nth-of-type(6),
body.converter-page .converter-section:nth-of-type(6) { animation-delay: .75s; }

body.company-page .about-section-header,
body.converter-page .converter-section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

body.company-page .about-section-content,
body.converter-page .converter-section-content {
  flex: 1;
  min-width: 280px;
}

body.company-page .about-section h2,
body.converter-page .converter-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

body.company-page .about-section > p,
body.company-page .about-section-content > p,
body.converter-page .converter-section > p,
body.converter-page .converter-section-content > p {
  margin: 0;
  color: #999;
  line-height: 1.6;
  max-width: 600px;
  font-size: 14px;
}

body.company-page .about-highlight,
body.converter-page .converter-highlight {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}

body.company-page .about-mission-grid,
body.company-page .about-features-grid,
body.company-page .about-community-grid,
body.converter-page .converter-formats-grid,
body.converter-page .converter-usecases-grid,
body.converter-page .converter-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

body.company-page .about-values-grid,
body.converter-page .converter-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

body.company-page .about-mission-card,
body.company-page .about-value,
body.company-page .about-feature,
body.company-page .about-community-card,
body.company-page .story-image-placeholder,
body.company-page .story-text,
body.company-page .timeline-content,
body.company-page .about-cta-content,
body.converter-page .converter-tool,
body.converter-page .converter-file-details,
body.converter-page .converter-export-options,
body.converter-page .converter-format-info,
body.converter-page .converter-step,
body.converter-page .converter-usecase,
body.converter-page .converter-faq {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

body.company-page .about-mission-card:hover,
body.company-page .about-value:hover,
body.company-page .about-feature:hover,
body.company-page .about-community-card:hover,
body.company-page .story-image-placeholder:hover,
body.company-page .story-text:hover,
body.company-page .timeline-content:hover,
body.converter-page .converter-tool:hover,
body.converter-page .converter-file-details:hover,
body.converter-page .converter-export-options:hover,
body.converter-page .converter-format-info:hover,
body.converter-page .converter-step:hover,
body.converter-page .converter-usecase:hover,
body.converter-page .converter-faq:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

body.company-page .mission-icon,
body.company-page .feature-icon,
body.company-page .community-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  white-space: nowrap;
}

body.converter-page .format-icon,
body.converter-page .usecase-icon,
body.converter-page .converter-step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 700;
  color: #ccc;
  transition: transform 0.2s ease;
}

body.converter-page .converter-step:hover > span,
body.converter-page .converter-format-info:hover .format-icon,
body.converter-page .converter-usecase:hover .usecase-icon {
  transform: scale(1.08);
}

body.converter-page .format-icon svg {
  width: 20px;
  height: 20px;
}

body.company-page .about-mission-card h3,
body.company-page .about-value h3,
body.company-page .about-feature h3,
body.company-page .about-community-card h3,
body.company-page .story-text h3,
body.company-page .timeline-content h3,
body.converter-page .converter-format-info h3,
body.converter-page .converter-step h3,
body.converter-page .converter-usecase h3,
body.converter-page .converter-faq h3 {
  margin: 14px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

body.company-page .about-mission-card p,
body.company-page .about-value p,
body.company-page .about-feature p,
body.company-page .about-community-card p,
body.company-page .story-text p,
body.company-page .timeline-content p,
body.converter-page .converter-format-info > p,
body.converter-page .converter-format-info ul li,
body.converter-page .converter-step p,
body.converter-page .converter-usecase p,
body.converter-page .converter-faq p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #999;
}

body.company-page .about-story-content {
  display: grid;
  gap: 16px;
}

body.company-page .about-story-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.company-page .about-story-block.reverse .story-image {
  order: 2;
}

body.company-page .story-image,
body.company-page .story-text {
  min-width: 0;
}

body.company-page .story-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

body.company-page .story-image-placeholder span {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.08);
}

body.company-page .about-values-grid .about-value {
  position: relative;
  padding-top: 64px;
}

body.company-page .value-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.12em;
}

body.company-page .about-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 28px;
}

body.company-page .about-timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

body.company-page .timeline-item {
  position: relative;
}

body.company-page .timeline-marker {
  position: absolute;
  left: -28px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.company-page .timeline-content {
  padding: 20px 24px;
}

body.company-page .timeline-date {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}

body.company-page .about-cta-section {
  padding-top: 8px;
}

body.company-page .about-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

body.company-page .about-cta-content h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

body.company-page .about-cta-content p {
  margin: 0;
  max-width: 560px;
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

body.company-page .about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.converter-page .converter-tool {
  display: grid;
  gap: 20px;
}

body.converter-page .converter-upload-area {
  min-height: 280px;
  padding: 48px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

body.converter-page .converter-upload-area:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

body.converter-page .converter-upload-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

body.converter-page .converter-upload-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.35);
}

body.converter-page .converter-upload-content h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

body.converter-page .converter-upload-content p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

body.converter-page .converter-formats-hint {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.converter-page .converter-file-info {
  display: grid;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

body.converter-page .converter-file-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

body.converter-page .converter-file-info > *,
body.converter-page .converter-file-main > * {
  min-width: 0;
}

body.converter-page .converter-file-preview {
  position: relative;
  display: grid;
  gap: 0;
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

body.converter-page #converterPreviewCanvas {
  display: block;
  width: 100%;
  height: clamp(380px, 38vw, 520px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #18181d;
}

body.converter-page .converter-file-details,
body.converter-page .converter-export-options {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body.converter-page .converter-export-options {
  padding: 18px 18px 16px;
}

body.converter-page .converter-export-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.converter-page .converter-export-header p {
  margin: 6px 0 0;
  max-width: 42ch;
  color: #888;
  font-size: 12px;
  line-height: 1.55;
}

body.converter-page .converter-bg-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 14, 0.82);
  color: #d8d8de;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}

body.converter-page .converter-bg-toggle:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(20, 20, 26, 0.92);
  color: #fff;
}

body.converter-page .converter-preview-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

body.converter-page .converter-preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 14, 0.82);
  color: #f4f4f6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body.converter-page .converter-preview-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  text-align: right;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

body.converter-page .converter-file-details h2,
body.converter-page .converter-export-options h3 {
  margin: 0;
  color: #fff;
}

body.converter-page .converter-file-details h2 {
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
  max-width: min(100%, 30ch);
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.converter-page .converter-export-options h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

body.converter-page .converter-file-details {
  padding: 18px 20px 20px;
}

body.converter-page .converter-file-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

body.converter-page .converter-file-heading {
  display: grid;
  gap: 6px;
  min-width: 0;
}

body.converter-page .converter-file-eyebrow {
  display: inline-flex;
  color: #7f7f86;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.converter-page .converter-file-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

body.converter-page .converter-file-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #d7d7dc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.converter-page .converter-file-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.converter-page .converter-file-meta li {
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #888;
  font-size: 11px;
}

body.converter-page .converter-file-meta li span {
  display: block;
  color: #76767d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.converter-page .converter-file-meta li strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.converter-page .converter-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

body.converter-page .converter-format-option {
  display: block;
  position: relative;
  min-width: 0;
  cursor: pointer;
}

body.converter-page .converter-format-option input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

body.converter-page .converter-format-card {
  display: grid;
  position: relative;
  gap: 5px;
  height: 100%;
  min-height: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.2s ease;
}

body.converter-page .converter-format-card strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.converter-page .converter-format-card small {
  color: #888;
  font-size: 11px;
  line-height: 1.45;
}

body.converter-page .converter-format-option input:checked + .converter-format-card,
body.converter-page .converter-format-option:hover .converter-format-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

body.converter-page .converter-advanced-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  cursor: pointer;
}

body.converter-page .converter-advanced-toggle svg {
  width: 16px;
  height: 16px;
}

body.converter-page .converter-advanced-options {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.converter-page .converter-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #999;
  font-size: 12px;
  line-height: 1.45;
}

body.converter-page .converter-option-row input {
  width: 18px;
  height: 18px;
  accent-color: #fff;
}

body.converter-page .converter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.converter-page .converter-change-file,
body.converter-page .converter-export-btn {
  padding: 11px 18px;
  font-size: 12px;
}

/* Responsive breakpoints - Largest to smallest */

@media (max-width: 1280px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: min(100% - (clamp(16px, 3.5vw, 28px) * 2), 1450px);
    margin: 16px auto;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    max-width: 1100px;
    padding: clamp(28px, 4.5vh, 52px) clamp(20px, 3.5vw, 52px);
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(40px, 7.5vw, 68px);
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(100px, 15vw, 240px);
  }
}

@media (max-width: 1120px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: min(100% - (clamp(14px, 3vw, 24px) * 2), 1300px);
    margin: 14px auto;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    max-width: 1000px;
    padding: clamp(26px, 4vh, 48px) clamp(18px, 3vw, 48px);
  }

  body.converter-page .converter-file-main {
    grid-template-columns: 1fr;
  }

  body.converter-page .converter-file-header {
    align-items: flex-start;
    flex-direction: column;
  }

  body.converter-page .converter-file-summary {
    justify-content: flex-start;
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 1024px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: min(100% - (clamp(12px, 2.5vw, 20px) * 2), 1200px);
    border-radius: 18px;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    max-width: 95%;
    padding: clamp(24px, 3.5vh, 44px) clamp(16px, 2.5vw, 44px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(22px, 2.5vw, 30px);
  }

  body.company-page .about-hero,
  body.converter-page .converter-hero {
    padding-top: 40px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(36px, 6.5vw, 60px);
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(90px, 13vw, 200px);
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.company-page .about-values-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid,
  body.converter-page .converter-steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  body.company-page .about-story-block {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(360px, 35vw, 480px);
  }
}

@media (max-width: 900px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: min(100% - (clamp(10px, 2vw, 16px) * 2), 1100px);
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: clamp(22px, 3vh, 40px) clamp(14px, 2vw, 40px);
  }

  body.company-page .about-hero,
  body.converter-page .converter-hero {
    flex-direction: column;
    padding-top: 36px;
  }

  body.company-page .about-story-block,
  body.company-page .about-story-block.reverse,
  body.converter-page .converter-file-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.company-page .about-story-block.reverse .story-image {
    order: 0;
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.company-page .about-values-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  body.company-page .about-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(340px, 32vw, 440px);
  }
}

@media (max-width: 820px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: min(100% - (clamp(8px, 1.5vw, 14px) * 2), 1000px);
    border-radius: 16px;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    max-width: 100%;
    padding: clamp(20px, 2.5vh, 36px) clamp(12px, 1.5vw, 36px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(20px, 2.2vw, 28px);
  }

  body.company-page .about-section > p,
  body.company-page .about-section-content > p,
  body.converter-page .converter-section > p,
  body.converter-page .converter-section-content > p {
    font-size: 13px;
  }

  body.company-page .about-hero,
  body.converter-page .converter-hero {
    padding-top: 32px;
  }

  body.company-page .about-hero-actions,
  body.converter-page .converter-hero-actions {
    gap: 10px;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn {
    padding: 11px 20px;
    font-size: 12px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(32px, 5.5vw, 48px);
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(80px, 11vw, 160px);
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }

  body.company-page .about-values-grid,
  body.converter-page .converter-steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 20px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(320px, 30vw, 400px);
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.converter-page .converter-file-meta li {
    padding: 10px 12px;
    font-size: 10px;
  }
}

body.converter-page .converter-progress {
  display: grid;
  gap: 10px;
}

body.converter-page .converter-progress-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

body.converter-page .converter-progress-fill {
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.3s ease;
}

body.converter-page #converterProgressText {
  color: #888;
  font-size: 13px;
  font-weight: 600;
}

body.converter-page .converter-format-info ul {
  margin: 16px 0 0;
  padding-left: 18px;
  list-style: none;
}

body.converter-page .converter-format-info ul li {
  position: relative;
  padding: 4px 0 4px 8px;
}

body.converter-page .converter-format-info ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
}

@media (max-width: 768px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    max-width: 100%;
    margin: 12px auto;
    border-radius: 14px;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: clamp(18px, 2vh, 32px) clamp(10px, 1.5vw, 32px);
  }

  body.company-page .about-section-header,
  body.converter-page .converter-section-header {
    align-items: flex-start;
    text-align: left;
  }

  body.company-page .about-section-content,
  body.converter-page .converter-section-content {
    text-align: left;
  }

  body.company-page .about-story-block,
  body.company-page .about-cta-content,
  body.converter-page .converter-file-info {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  body.company-page .about-story-block.reverse .story-image {
    order: 0;
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  body.company-page main,
  body.converter-page main {
    padding-bottom: 72px;
  }

  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    border-radius: 12px;
    margin: 10px auto;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    max-width: 100%;
    padding: clamp(16px, 2vh, 28px) clamp(12px, 1.5vw, 28px);
  }

  body.company-page .about-hero,
  body.converter-page .converter-hero {
    padding-top: 28px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(92px, 26vw, 180px);
  }

  body.company-page .about-hero-stats,
  body.converter-page .converter-hero-stats {
    justify-content: flex-start;
  }

  body.company-page .about-hero-actions,
  body.converter-page .converter-hero-actions,
  body.company-page .about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    width: 100%;
  }

  body.converter-page .converter-file-meta,
  body.converter-page .converter-format-grid {
    grid-template-columns: 1fr;
  }

  body.converter-page .converter-file-preview,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(300px, 62vw, 380px);
  }

  body.converter-page .converter-bg-toggle {
    top: 12px;
    right: 12px;
    padding: 7px 10px;
  }

  body.converter-page .converter-preview-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  body.converter-page .converter-preview-note {
    text-align: left;
  }

  body.converter-page .converter-file-details h2 {
    max-width: 100%;
  }

  body.company-page .about-mission-grid,
  body.company-page .about-features-grid,
  body.company-page .about-community-grid,
  body.converter-page .converter-formats-grid,
  body.converter-page .converter-usecases-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 540px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    border-radius: 12px;
    margin: 8px auto;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: clamp(14px, 1.5vh, 24px) clamp(10px, 1vw, 24px);
  }

  body.company-page .about-hero-text,
  body.converter-page .converter-hero-text {
    padding: clamp(20px, 3vh, 40px) clamp(12px, 2vw, 40px);
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(22px, 5.5vw, 32px);
  }

  body.company-page .about-hero p,
  body.company-page .about-hero-text > p,
  body.converter-page .converter-hero p {
    font-size: 13px;
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(70px, 20vw, 140px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(18px, 2vw, 26px);
  }

  body.company-page .about-mission-card h3,
  body.converter-page .converter-format-info h3,
  body.converter-page .converter-step h3,
  body.converter-page .converter-usecase h3,
  body.converter-page .converter-faq h3 {
    font-size: 15px;
  }

  body.company-page .about-mission-card p,
  body.converter-page .converter-format-info > p,
  body.converter-page .converter-step p,
  body.converter-page .converter-usecase p,
  body.converter-page .converter-faq p {
    font-size: 12px;
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 16px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(280px, 50vw, 350px);
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  body.converter-page .converter-file-meta li {
    padding: 8px 10px;
    font-size: 10px;
  }

  body.converter-page .converter-upload-area {
    padding: 32px 16px;
    min-height: 240px;
  }

  body.converter-page .converter-upload-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
  }

  body.converter-page .converter-upload-content h2 {
    font-size: clamp(22px, 3vw, 28px);
  }

  body.converter-page .converter-upload-content p {
    font-size: 13px;
  }

  body.company-page .about-hero-actions,
  body.converter-page .converter-hero-actions,
  body.company-page .about-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body.company-page main,
  body.converter-page main {
    padding-bottom: 64px;
  }

  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    margin: 6px auto;
    border-radius: 10px;
  }

  body.tutorials-page .tutorials-hero h1,
  body.tutorials-page .tutorials-title,
  body.community-page .community-hero h1,
  body.community-page .community-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title,
  body.company-page .about-hero h1,
  body.company-page .about-title {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  body.tutorials-page .tutorials-hero-stats,
  body.community-page .community-hero-stats,
  body.converter-page .converter-hero-stats,
  body.company-page .about-hero-stats {
    gap: 12px;
  }

  body.tutorials-page .tutorials-section,
  body.community-page .community-section,
  body.converter-page .converter-section,
  body.company-page .about-section {
    padding: 0 12px !important;
  }

  body.company-page .about-cta-buttons {
    flex-direction: column;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
  }

  body.company-page .about-hero-actions,
  body.converter-page .converter-hero-actions,
  body.company-page .about-cta-buttons {
    gap: 8px;
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    margin: 4px auto;
  }

  body.company-page .about-hero-text,
  body.converter-page .converter-hero-text {
    padding: clamp(16px, 2.5vh, 32px) clamp(10px, 1.5vw, 32px);
    gap: 10px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 0.9;
  }

  body.company-page .about-hero p,
  body.company-page .about-hero-text > p,
  body.converter-page .converter-hero p {
    font-size: 12px;
    max-width: 100%;
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(60px, 16vw, 110px);
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: clamp(12px, 1.5vh, 20px) 12px !important;
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 10px;
  }

  body.company-page .about-section > p,
  body.company-page .about-section-content > p,
  body.converter-page .converter-section > p,
  body.converter-page .converter-section-content > p {
    font-size: 12px;
  }

  body.company-page .about-mission-card h3,
  body.company-page .about-value h3,
  body.company-page .about-feature h3,
  body.converter-page .converter-format-info h3,
  body.converter-page .converter-step h3,
  body.converter-page .converter-usecase h3,
  body.converter-page .converter-faq h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  body.company-page .about-mission-card p,
  body.converter-page .converter-format-info > p,
  body.converter-page .converter-step p,
  body.converter-page .converter-usecase p,
  body.converter-page .converter-faq p {
    font-size: 11px;
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 14px;
  }

  body.company-page .about-pill,
  body.converter-page .converter-pill {
    font-size: 10px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(260px, 45vw, 320px);
  }

  body.converter-page .converter-upload-area {
    padding: 24px 12px;
    min-height: 200px;
  }

  body.converter-page .converter-upload-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
  }
}

@media (max-width: 390px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    border-radius: 8px;
  }

  body.company-page .about-hero {
    padding-top: 20px;
  }

  body.company-page .about-hero-text,
  body.converter-page .converter-hero-text {
    padding: clamp(12px, 2vh, 24px) 10px !important;
    gap: 8px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(18px, 4.5vw, 26px);
  }

  body.company-page .about-hero p,
  body.company-page .about-hero-text > p,
  body.converter-page .converter-hero p {
    font-size: 11px;
    line-height: 1.5;
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(50px, 14vw, 90px);
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: 10px 10px !important;
    margin-top: clamp(20px, 3vh, 32px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(14px, 3.5vw, 20px);
  }

  body.company-page .about-section > p,
  body.company-page .about-section-content > p,
  body.converter-page .converter-section > p,
  body.converter-page .converter-section-content > p {
    font-size: 11px;
  }

  body.company-page .about-mission-card h3,
  body.converter-page .converter-format-info h3,
  body.converter-page .converter-step h3,
  body.converter-page .converter-usecase h3 {
    font-size: 13px;
    margin: 10px 0 6px;
  }

  body.company-page .about-mission-card p,
  body.converter-page .converter-format-info > p,
  body.converter-page .converter-step p,
  body.converter-page .converter-usecase p {
    font-size: 10px;
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 12px;
    gap: 10px;
  }

  body.company-page .about-hero-stats li,
  body.converter-page .converter-hero-stats li {
    padding: 8px 12px;
    min-width: 70px;
  }

  body.company-page .about-hero-stats li span,
  body.converter-page .converter-hero-stats li span {
    font-size: 16px;
  }

  body.company-page .about-hero-stats li small,
  body.converter-page .converter-hero-stats li small {
    font-size: 8px;
    max-width: 80px;
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.converter-page .converter-file-meta li {
    padding: 8px 10px;
    font-size: 9px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(240px, 40vw, 300px);
  }

  body.converter-page .converter-upload-area {
    padding: 20px 10px;
    min-height: 180px;
  }

  body.converter-page .converter-upload-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }

  body.converter-page .converter-upload-content h2 {
    font-size: clamp(18px, 3vw, 24px);
  }

  body.converter-page .converter-upload-content p {
    font-size: 11px;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    padding: 10px 16px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    border-radius: 8px;
  }

  body.company-page .about-hero {
    padding-top: 16px;
  }

  body.company-page .about-hero-text,
  body.converter-page .converter-hero-text {
    padding: 10px 8px !important;
    gap: 6px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(16px, 4vw, 24px);
    line-height: 0.85;
  }

  body.company-page .about-hero p,
  body.company-page .about-hero-text > p,
  body.converter-page .converter-hero p {
    font-size: 10px;
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(40px, 12vw, 80px);
  }

  body.company-page .about-pill,
  body.converter-page .converter-pill {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  body.company-page .about-pill::before,
  body.converter-page .converter-pill::before {
    width: 20px;
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: 8px 8px !important;
    margin-top: clamp(16px, 2.5vh, 24px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(12px, 3vw, 18px);
    margin-bottom: 8px;
  }

  body.company-page .about-section > p,
  body.company-page .about-section-content > p,
  body.converter-page .converter-section > p,
  body.converter-page .converter-section-content > p {
    font-size: 10px;
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 10px;
  }

  body.company-page .about-mission-card h3,
  body.converter-page .converter-format-info h3,
  body.converter-page .converter-step h3,
  body.converter-page .converter-usecase h3 {
    font-size: 12px;
    margin: 8px 0 4px;
  }

  body.company-page .about-mission-card p,
  body.converter-page .converter-format-info > p,
  body.converter-page .converter-step p,
  body.converter-page .converter-usecase p {
    font-size: 9px;
  }

  body.company-page .about-hero-stats li,
  body.converter-page .converter-hero-stats li {
    padding: 6px 10px;
    min-width: 60px;
  }

  body.company-page .about-hero-stats li span,
  body.converter-page .converter-hero-stats li span {
    font-size: 14px;
  }

  body.company-page .about-hero-stats li small,
  body.converter-page .converter-hero-stats li small {
    font-size: 7px;
    max-width: 70px;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    padding: 8px 14px;
    font-size: 10px;
    gap: 6px;
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.converter-page .converter-file-meta li {
    padding: 6px 8px;
    font-size: 8px;
  }

  body.converter-page .converter-file-meta li strong {
    margin-top: 4px;
    font-size: 12px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(220px, 35vw, 280px);
  }

  body.converter-page .converter-bg-toggle {
    top: 8px;
    right: 8px;
    padding: 5px 8px;
    font-size: 9px;
  }

  body.converter-page .converter-preview-caption {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  body.converter-page .converter-preview-badge {
    padding: 5px 9px;
    font-size: 8px;
  }

  body.converter-page .converter-upload-area {
    padding: 16px 8px;
    min-height: 160px;
  }

  body.converter-page .converter-upload-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
  }

  body.converter-page .converter-upload-content h2 {
    font-size: clamp(16px, 2.5vw, 22px);
    margin-bottom: 6px;
  }

  body.converter-page .converter-upload-content p {
    font-size: 10px;
  }
}

@media (max-width: 344px) {
  body.company-page .about-expanded-shell,
  body.converter-page .converter-expanded-shell {
    border-radius: 6px;
    margin: 2px auto;
  }

  body.company-page .about-hero {
    padding-top: 12px;
    min-height: auto;
  }

  body.company-page .about-hero-text,
  body.converter-page .converter-hero-text {
    padding: 8px 6px !important;
    gap: 4px;
  }

  body.company-page .about-hero h1,
  body.company-page .about-title,
  body.converter-page .converter-hero h1,
  body.converter-page .converter-title {
    font-size: clamp(14px, 3.5vw, 22px);
    line-height: 0.8;
  }

  body.company-page .about-hero p,
  body.company-page .about-hero-text > p,
  body.converter-page .converter-hero p {
    font-size: 9px;
    max-width: 100%;
  }

  body.company-page .about-watermark,
  body.converter-page .converter-watermark {
    font-size: clamp(32px, 10vw, 70px);
  }

  body.company-page .about-section,
  body.converter-page .converter-section {
    padding: 6px 6px !important;
    margin-top: clamp(12px, 2vh, 20px);
  }

  body.company-page .about-section h2,
  body.converter-page .converter-section h2 {
    font-size: clamp(11px, 2.5vw, 16px);
    margin-bottom: 6px;
  }

  body.company-page .about-section > p,
  body.company-page .about-section-content > p,
  body.converter-page .converter-section > p,
  body.converter-page .converter-section-content > p {
    font-size: 9px;
  }

  body.company-page .about-mission-card,
  body.company-page .about-value,
  body.company-page .about-feature,
  body.company-page .about-community-card,
  body.converter-page .converter-tool,
  body.converter-page .converter-file-details,
  body.converter-page .converter-export-options,
  body.converter-page .converter-format-info,
  body.converter-page .converter-step,
  body.converter-page .converter-usecase,
  body.converter-page .converter-faq {
    padding: 8px;
  }

  body.company-page .about-mission-card h3,
  body.converter-page .converter-format-info h3,
  body.converter-page .converter-step h3,
  body.converter-page .converter-usecase h3 {
    font-size: 11px;
    margin: 6px 0 2px;
  }

  body.company-page .about-mission-card p,
  body.converter-page .converter-format-info > p,
  body.converter-page .converter-step p,
  body.converter-page .converter-usecase p {
    font-size: 8px;
  }

  body.company-page .about-hero-stats li,
  body.converter-page .converter-hero-stats li {
    padding: 4px 8px;
    min-width: 50px;
  }

  body.company-page .about-hero-stats li span,
  body.converter-page .converter-hero-stats li span {
    font-size: 12px;
  }

  body.company-page .about-hero-stats li small,
  body.converter-page .converter-hero-stats li small {
    font-size: 6px;
    max-width: 60px;
  }

  body.company-page .about-primary-btn,
  body.company-page .about-secondary-btn,
  body.company-page .about-community-btn,
  body.converter-page .converter-primary-btn,
  body.converter-page .converter-secondary-btn,
  body.converter-page .converter-change-file,
  body.converter-page .converter-export-btn {
    padding: 6px 10px;
    font-size: 9px;
    gap: 4px;
    border-radius: 6px;
  }

  body.converter-page .converter-file-meta {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  body.converter-page .converter-file-meta li {
    padding: 4px 6px;
    font-size: 7px;
  }

  body.converter-page .converter-file-meta li strong {
    margin-top: 2px;
    font-size: 10px;
  }

  body.converter-page #converterPreviewCanvas {
    height: clamp(200px, 30vw, 260px);
  }

  body.converter-page .converter-bg-toggle {
    top: 6px;
    right: 6px;
    padding: 4px 6px;
    font-size: 7px;
  }

  body.converter-page .converter-preview-caption {
    left: 6px;
    right: 6px;
    bottom: 6px;
    gap: 6px;
  }

  body.converter-page .converter-preview-badge {
    padding: 3px 7px;
    font-size: 7px;
  }

  body.converter-page .converter-preview-note {
    font-size: 9px;
  }

  body.converter-page .converter-upload-area {
    padding: 12px 6px;
    min-height: 140px;
  }

  body.converter-page .converter-upload-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
  }

  body.converter-page .converter-upload-content h2 {
    font-size: clamp(14px, 2vw, 20px);
    margin-bottom: 4px;
  }

  body.converter-page .converter-upload-content p {
    font-size: 9px;
  }
}
