@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg-1: #f8fbff;
  --bg-2: #eff4ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: #071225;
  --text: #111827;
  --muted: #5b6475;
  --border: #e5e7eb;
  --primary: #145cff;
  --primary-strong: #0716a8;
  --primary-soft: #eef4ff;
  --accent: #13b8f5;
  --secondary: #7c3aed;
  --magenta: #b832f6;
  --success: #10b981;
  --danger: #ef4444;
  --brand-gradient: linear-gradient(135deg, #13b8f5 0%, #145cff 45%, #b832f6 100%);
  --brand-gradient-deep: linear-gradient(135deg, #0716a8 0%, #145cff 50%, #7c3aed 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(19, 184, 245, 0.12) 0%, rgba(20, 92, 255, 0.1) 45%, rgba(184, 50, 246, 0.12) 100%);
  --shadow-lg: 0 32px 82px rgba(15, 23, 42, 0.13);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.09);
  --shadow-sm: 0 10px 26px rgba(15, 23, 42, 0.07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-size: 0.97rem;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 92, 255, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.1), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(19, 184, 245, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
  opacity: 0.32;
}

body.picker-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 92, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(184, 50, 246, 0.08), transparent 14%),
    radial-gradient(circle at 50% 90%, rgba(19, 184, 245, 0.06), transparent 20%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.45rem 0 0;
}

.site-nav {
  position: relative;
  margin: 0 0.8rem;
  padding: 0.1rem 0;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9));
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  border-radius: 0 0 1.9rem 1.9rem;
}

.site-nav .container-xxl {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.site-nav__brand-shell {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
}

.site-nav__brand-copy {
  display: grid;
  gap: 0.15rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(20, 92, 255, 0.12);
}

.site-nav__brand-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.site-nav__brand-note {
  max-width: 25rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.site-nav__toggler {
  border-radius: 1rem;
  border: 1px solid rgba(20, 92, 255, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0.85rem;
}

.site-nav__toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(20, 92, 255, 0.16);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  line-height: 0;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 255, 0.92));
  border: 1px solid rgba(20, 92, 255, 0.14);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.brand-mark:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.1);
}

.brand-mark__logo {
  width: clamp(8.6rem, 11vw, 10.9rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(20, 92, 255, 0.18));
}

.navbar-mobile-brand {
  display: none;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 255, 0.88));
  border: 1px solid rgba(20, 92, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.navbar-mobile-brand__logo {
  width: min(11.2rem, 60vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(20, 92, 255, 0.16));
}

.navbar-mobile-brand p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.site-nav__collapse {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-left: auto;
  width: 100%;
}

.site-nav__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(242, 246, 255, 0.92);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.site-nav .nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-trigger {
  cursor: pointer;
  font: inherit;
}

.nav-trigger--menu {
  font-weight: 800;
}

.nav-link--category {
  white-space: nowrap;
}

.site-nav .nav-link:hover,
.nav-trigger:hover,
.site-nav .nav-link:focus-visible,
.nav-trigger:focus-visible {
  color: var(--primary-strong);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 92, 255, 0.18);
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--primary-strong);
  background: #fff;
  transform: translateY(-1px);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.site-nav__actions .btn {
  min-width: 10rem;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  color: #fff !important;
  background: var(--brand-gradient);
  box-shadow: 0 18px 30px rgba(20, 92, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.78rem 1.1rem;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(20, 92, 255, 0.3);
}

.btn-outline-secondary {
  border-radius: 999px;
  border-color: rgba(20, 92, 255, 0.16);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-secondary:hover {
  color: var(--text);
  background: #fff;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1030;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__panel {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 1.85rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 255, 0.97));
  border: 1px solid rgba(20, 92, 255, 0.12);
  box-shadow: 0 28px 70px rgba(12, 25, 58, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: min(72vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mega-menu__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0.9rem 0.95rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 255, 0.96));
  border: 1px solid rgba(20, 92, 255, 0.08);
}

.mega-menu__intro-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.mega-menu__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  background: rgba(20, 92, 255, 0.08);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu__eyebrow i {
  font-size: 0.9rem;
}

.mega-menu__title {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.mega-menu__description {
  margin: 0;
  max-width: 54rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mega-menu__intro-chip {
  flex: 0 0 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 92, 255, 0.11), rgba(184, 50, 246, 0.12));
  border: 1px solid rgba(20, 92, 255, 0.12);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}

.mega-menu__groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.25rem, 1fr));
  gap: 0.9rem;
  align-self: stretch;
  width: 100%;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  border: 1px solid rgba(20, 92, 255, 0.09);
  box-shadow: 0 12px 28px rgba(12, 25, 58, 0.06);
}

.mega-col--card {
  min-height: 100%;
}

.mega-col__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.mega-col__heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.mega-col__heading i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.8rem;
  background: var(--primary-soft);
  color: var(--primary);
}

.mega-col__heading-text {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
}

.mega-col__heading-text span {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
}

.mega-col__heading-text small {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-col__open {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(20, 92, 255, 0.08);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.mega-col__open:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-1px);
}

.mega-col__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.4rem, 1fr));
  gap: 0.48rem;
}

.mega-col__links a {
  display: flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.54rem 0.7rem;
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 255, 0.98));
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: 0 8px 16px rgba(12, 25, 58, 0.03);
  color: var(--text);
  font-weight: 650;
  transition: color 0.18s ease, transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  font-size: 0.87rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.mega-col__links a:hover {
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-color: rgba(20, 92, 255, 0.14);
  transform: translateY(-1px);
}

.mega-col__links a:focus-visible,
.mega-col__open:focus-visible,
.mega-menu__eyebrow:focus-visible,
.mega-menu__intro-chip:focus-visible {
  outline: 2px solid rgba(20, 92, 255, 0.24);
  outline-offset: 2px;
}

.site-main {
  position: relative;
  z-index: 1;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.home-hero__copy {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.05rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-hero__copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.65vw, 2.85rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  max-width: 15ch;
}

.home-hero__subtitle {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-hero__actions {
  margin-top: 0.2rem;
}

.home-hero__chips {
  margin-top: 0.2rem;
}

.home-hero__panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-hero__panel-head {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(20, 92, 255, 0.08);
}

.home-hero__panel-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.home-hero__panel-head strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.home-hero__stats {
  display: grid;
  gap: 0.45rem;
}

.home-hero__stat {
  display: grid;
  gap: 0.1rem;
  min-height: 3.9rem;
  padding: 0.68rem 0.8rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(247, 248, 255, 0.9), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 92, 255, 0.08);
}

.home-hero__stat span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.home-hero__stat strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.home-hero__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-hero__formats span {
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.home-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.home-summary__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 7rem;
  padding: 0.78rem 0.85rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-summary__card span {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-summary__card strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.home-summary__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
  align-items: stretch;
}

.home-stats__card {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-stats__card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-stats__card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  letter-spacing: -0.04em;
}

.home-stats__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.home-workspace {
  margin-top: 0.75rem;
}

.convert-page {
  display: grid;
  gap: 1rem;
}

.convert-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.convert-page__hero-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.06), transparent 22%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.09), transparent 24%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.convert-page__hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.convert-page__hero-lead {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.convert-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.convert-page__hero-points {
  margin-top: 0.05rem;
}

.convert-page__hero-visual {
  min-width: 0;
}

.convert-page__visual-card {
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.05), transparent 20%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.convert-page__visual-frame {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(20, 92, 255, 0.08);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.convert-page__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.convert-page__visual-copy {
  display: grid;
  gap: 0.3rem;
}

.convert-page__visual-copy span {
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.convert-page__visual-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.convert-page__visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.convert-page__visual-chips span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-hero--corporate {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.home-hero--corporate .home-hero__copy {
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.06), transparent 20%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.08), transparent 22%),
    rgba(255, 255, 255, 0.88);
}

.home-hero--corporate .home-hero__copy h1 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 0.98;
}

.home-hero--corporate .home-hero__subtitle {
  font-size: 0.98rem;
  max-width: 44rem;
}

.home-hero--corporate .home-hero__actions {
  margin-top: 0.35rem;
  gap: 0.75rem;
}

.home-hero--corporate .home-hero__chips {
  margin-top: 0.35rem;
}

.home-hero--corporate .hero-points span {
  background: rgba(20, 92, 255, 0.06);
}

.home-hero__visual {
  min-width: 0;
}

.home-hero__card {
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
}

.home-hero__card-title {
  margin: 0;
}

.home-hero--corporate .home-hero__actions .btn {
  min-width: 10.75rem;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border-radius: 0.95rem;
  box-shadow: 0 14px 24px rgba(20, 92, 255, 0.11);
  font-size: 0.88rem;
}

.home-hero--corporate .home-hero__actions .btn-outline-secondary {
  background:
    linear-gradient(135deg, rgba(19, 184, 245, 0.18), rgba(20, 92, 255, 0.16) 52%, rgba(184, 50, 246, 0.2));
  border-color: rgba(20, 92, 255, 0.14);
  color: var(--primary-strong);
  box-shadow: 0 14px 24px rgba(20, 92, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

.home-hero--corporate .home-hero__actions .btn-outline-secondary:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(19, 184, 245, 0.95), rgba(20, 92, 255, 0.95) 55%, rgba(184, 50, 246, 0.96));
  border-color: transparent;
}

.home-hero__art {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(20, 92, 255, 0.08);
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.home-hero__art img {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero__card-grid {
  margin-top: 0.1rem;
}

.home-hero__card-grid div {
  align-items: center;
}

.home-hero__card-grid strong {
  font-size: 0.94rem;
}

.home-stats--featured {
  margin-top: 0.75rem;
}

.home-stats__card--accent {
  background: linear-gradient(135deg, #071225 0%, #122b63 50%, #145cff 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.home-stats__card--accent span,
.home-stats__card--accent p {
  color: rgba(255, 255, 255, 0.74);
}

.home-stats__card--accent strong {
  color: #fff;
}

.home-stats__card--accent-secondary {
  background: linear-gradient(135deg, #4f16ff 0%, #8c3af7 42%, #ff4fa3 100%);
  border-color: rgba(255, 255, 255, 0.09);
}

.home-stats__card--accent-secondary span,
.home-stats__card--accent-secondary p {
  color: rgba(255, 255, 255, 0.78);
}

.home-stats__card--accent-secondary strong {
  color: #fff;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  align-items: stretch;
}

.home-feature-card {
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-feature-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.home-feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 1.1rem;
}

.home-feature-card h2 {
  margin: 0;
  font-size: 1rem;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-story__visual {
  min-width: 0;
}

.home-story__frame {
  height: 100%;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(20, 92, 255, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.home-story__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story__copy {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 0.35rem 0.15rem 0.35rem 0.2rem;
}

.home-story__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.home-story__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-story__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.home-story__step {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0.95rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(238, 240, 255, 0.82), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.home-story__step span {
  display: inline-flex;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-story__step strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.home-story__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

.convert-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seo-copy-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(20, 92, 255, 0.12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.seo-copy {
  display: grid;
  gap: 0.85rem;
}

.seo-copy__intro {
  display: grid;
  gap: 0.5rem;
}

.seo-copy__intro h2,
.seo-copy__grid h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.seo-copy__intro h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
}

.seo-copy__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.seo-copy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.seo-copy__grid article {
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(180deg, rgba(238, 240, 255, 0.8), rgba(255, 255, 255, 0.95));
}

.seo-copy__grid h3 {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.seo-copy__grid p,
.seo-copy__grid li {
  color: var(--text);
  line-height: 1.65;
  font-size: 0.94rem;
}

.seo-copy__grid ul,
.seo-copy__grid ol {
  margin: 0;
  padding-left: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-copy h1 {
  margin: 0.75rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-subtitle {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 92, 255, 0.12);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-points i {
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 2rem;
  background: var(--brand-gradient-soft);
  filter: blur(12px);
}

.hero-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(184, 50, 246, 0.2), transparent 65%);
}

.hero-card__chip {
  display: inline-flex;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-card__title {
  margin-top: 1rem;
  font-size: 1.7rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card__metric {
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
  border: 1px solid rgba(20, 92, 255, 0.1);
}

.hero-card__metric strong {
  display: block;
  font-size: 1.4rem;
}

.hero-card__metric span {
  color: var(--muted);
}

.hero-card__list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-card__list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 92, 255, 0.08);
}

.hero-card__list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card__list strong {
  text-align: right;
  font-size: 0.95rem;
}

.page-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.page-banner h1 {
  margin: 0.9rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  font-family: "Space Grotesk", sans-serif;
}

.page-banner__text {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-banner__stats {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.page-banner__stats div {
  min-width: 7.5rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.75);
  box-shadow: var(--shadow-sm);
}

.page-banner__stats strong {
  display: block;
  font-size: 1.15rem;
}

.page-banner__stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.converter-shell {
  display: grid;
  gap: 1rem;
}

.converter-shell__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  padding: 0 0.2rem;
}

.converter-shell__header h1,
.converter-shell__header h2 {
  margin: 0.55rem 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.converter-shell__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.converter-shell__chips {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.converter-shell__chips span {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 92, 255, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.78rem;
}

.upload-card {
  padding: 0.7rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.dropzone {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon description"
    "icon actions"
    "progress progress";
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: center;
  text-align: left;
  border-radius: 1.35rem;
  padding: 1rem 1rem 1rem 1.05rem;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
    var(--brand-gradient-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(20, 92, 255, 0.22);
}

.dropzone::after {
  content: "";
  position: absolute;
  inset: auto -8% -35% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  filter: blur(2px);
}

.dropzone.is-dragover {
  transform: translateY(-1px);
  box-shadow: 0 28px 70px rgba(20, 92, 255, 0.3);
}

.dropzone__icon {
  grid-area: icon;
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0;
  align-self: center;
  justify-self: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
}

.dropzone h3 {
  grid-area: title;
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.dropzone p {
  grid-area: description;
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-size: 0.88rem;
}

.dropzone__actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.dropzone .btn {
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.dropzone .btn-outline-light {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

.dropzone .btn-outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.upload-progress {
  grid-area: progress;
  width: min(25rem, 100%);
  height: 0.35rem;
  margin: 0.35rem 0 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.upload-progress span,
.progress-indicator span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #fff, rgba(255, 255, 255, 0.2));
  animation: loadingSlide 1.4s linear infinite;
}

.file-list-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.file-list-meta h3 {
  margin-bottom: 0.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
}

.file-list-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.file-list-meta__count {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.75);
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 0.79rem;
}

.file-list-meta__actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.batch-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 14px 28px rgba(20, 92, 255, 0.08);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.batch-action-btn:hover {
  transform: translateY(-2px);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(20, 92, 255, 0.12);
}

.batch-action-btn--primary {
  border-color: transparent;
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 18px 30px rgba(20, 92, 255, 0.22);
}

.batch-action-btn--primary:hover {
  color: #fff;
  box-shadow: 0 22px 36px rgba(20, 92, 255, 0.28);
}

.batch-action-btn--secondary {
  border-color: rgba(20, 92, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.96));
  color: var(--primary-strong);
}

.batch-action-btn--secondary:hover {
  color: var(--primary);
  border-color: rgba(20, 92, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(224, 234, 255, 0.98));
}

.batch-action-btn i {
  font-size: 0.96rem;
  line-height: 1;
}

.batch-action-btn:focus-visible,
.btn-download:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(20, 92, 255, 0.14);
}

.batch-action-btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.bulk-convert-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 92, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

.bulk-convert-status__copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.bulk-convert-status__copy strong {
  color: var(--text);
  font-weight: 800;
}

.bulk-convert-status__copy span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.bulk-convert-status__bar {
  grid-column: 1 / -1;
  width: 100%;
  height: 0.38rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(229, 231, 235, 0.92);
}

.bulk-convert-status__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(19, 184, 245, 0.25), var(--primary), rgba(184, 50, 246, 0.55));
  transition: width 0.22s ease;
}

.bulk-convert-status__cancel {
  justify-self: end;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.24);
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: none;
}

.bulk-convert-status__cancel:hover {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.12);
}

.bulk-convert-status__cancel:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.file-list {
  display: grid;
  gap: 0.8rem;
}

.file-row,
.empty-state {
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.file-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  grid-template-areas:
    "main output actions convert"
    "status status status status";
  gap: 0.65rem 0.75rem;
  padding: 0.75rem;
  align-items: center;
}

.file-row__main {
  grid-area: main;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.file-badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(20, 92, 255, 0.24);
}

.file-title {
  font-weight: 800;
  word-break: break-word;
  font-size: 0.9rem;
}

.file-meta {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.file-row__output {
  grid-area: output;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.file-row__label {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
}

.output-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 7.2rem;
  padding: 0.56rem 0.78rem;
  border-radius: 999px;
  background: rgba(238, 244, 255, 0.92);
  border: 1px solid rgba(20, 92, 255, 0.14);
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 0.86rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.output-picker:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(20, 92, 255, 0.14);
}

.file-row__actions {
  grid-area: actions;
  display: flex;
  gap: 0.45rem;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: rgba(20, 92, 255, 0.22);
}

.icon-btn--danger:hover {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}

.file-row__convert {
  grid-area: convert;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.btn-convert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 7.8rem;
  padding: 0.64rem 0.88rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 16px 28px rgba(20, 92, 255, 0.24);
}

.btn-convert:hover {
  color: #fff;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-width: 8.2rem;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 92, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.94));
  color: var(--primary-strong);
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 14px 28px rgba(20, 92, 255, 0.12);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-download i {
  font-size: 0.98rem;
  line-height: 1;
}

.btn-download:hover {
  color: var(--primary-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(224, 234, 255, 0.98));
  border-color: rgba(20, 92, 255, 0.24);
  box-shadow: 0 18px 34px rgba(20, 92, 255, 0.18);
  transform: translateY(-1px);
}

.file-row__status {
  grid-area: status;
  display: grid;
  gap: 0.65rem;
}

.status-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.progress-indicator {
  width: 100%;
  height: 0.33rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(229, 231, 235, 0.85);
}

.progress-indicator span {
  width: 55%;
  background: linear-gradient(90deg, rgba(19, 184, 245, 0.25), var(--primary), rgba(184, 50, 246, 0.5));
}

.file-row__settings {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.15rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(247, 248, 255, 0.95);
  border: 1px solid rgba(20, 92, 255, 0.14);
}

.file-row.is-settings-open {
  box-shadow: var(--shadow-md);
}

.row-settings__field {
  display: grid;
  gap: 0.35rem;
}

.row-settings__field span {
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.row-settings__input {
  width: 100%;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.row-settings__input:focus {
  border-color: rgba(20, 92, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(20, 92, 255, 0.1);
}

.row-settings__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.row-settings__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.row-settings__save,
.row-settings__reset {
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.row-settings__save {
  border: 0;
  background: var(--brand-gradient);
  color: #fff;
}

.row-settings__save:hover {
  color: #fff;
}

.row-settings__reset {
  border: 1px solid rgba(107, 114, 128, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
}

.row-settings__reset:hover {
  color: var(--text);
  background: #fff;
}

.empty-state {
  display: grid;
  gap: 0.45rem;
  place-items: center;
  min-height: 11rem;
  padding: 1.6rem 1.2rem;
  text-align: center;
}

.empty-state__icon {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.1rem;
  margin-bottom: 0.85rem;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 1.45rem;
}

.empty-state h3 {
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.empty-state p {
  color: var(--muted);
  margin: 0.4rem auto 0;
  max-width: 38rem;
}

.format-picker {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.format-picker.is-open {
  opacity: 1;
  pointer-events: auto;
}

.format-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(12px);
}

.format-picker__dialog {
  position: relative;
  width: min(1100px, calc(100vw - 1.4rem));
  max-height: min(82vh, 800px);
  margin: 3vh auto;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.format-picker__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem 0.85rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.format-picker__header h3 {
  margin: 0.35rem 0 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.format-picker__header p {
  margin: 0;
  color: var(--muted);
}

.format-picker__search {
  padding: 0.8rem 1.2rem 0.45rem;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(229, 231, 235, 0.95);
}

.search-field i {
  color: var(--muted);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

.format-picker__body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.7rem 1.2rem 1.2rem;
  overflow: hidden;
}

.format-picker__categories {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding-right: 0.35rem;
  overflow: auto;
}

.category-btn {
  width: 100%;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.8rem 0.9rem;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  font-size: 0.92rem;
}

.category-btn:hover,
.category-btn.is-active {
  transform: translateY(-1px);
  background: var(--primary-soft);
  border-color: rgba(20, 92, 255, 0.18);
  color: var(--primary-strong);
}

.format-picker__content {
  min-height: 0;
  overflow: auto;
  padding-right: 0.15rem;
}

.format-group {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.format-group__title {
  font-weight: 800;
  color: var(--text);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.55rem;
}

.format-option {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 0.75rem;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  font-size: 0.9rem;
}

.format-option:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 92, 255, 0.22);
  box-shadow: 0 14px 24px rgba(20, 92, 255, 0.1);
  background: #fff;
}

.format-option__name {
  font-weight: 800;
  color: var(--text);
}

.format-option__ext {
  color: var(--muted);
  font-size: 0.8rem;
}

.format-no-results {
  padding: 1.1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px dashed rgba(20, 92, 255, 0.16);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer {
  padding: 0 0 1rem;
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(184, 50, 246, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(19, 184, 245, 0.22), transparent 28%),
    linear-gradient(135deg, #071225 0%, #0b1730 48%, #122957 100%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(7, 18, 37, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-card__brand {
  display: grid;
  gap: 0.55rem;
  max-width: 46rem;
}

.footer-card__logo {
  width: min(11.2rem, 46vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(20, 92, 255, 0.28));
}

.footer-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.94rem;
}

.footer-card__aside {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.footer-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(19, 184, 245, 0.24), rgba(20, 92, 255, 0.28), rgba(184, 50, 246, 0.22));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-card__badge--inline {
  padding: 0.3rem 0.55rem;
  font-size: 0.76rem;
  white-space: nowrap;
}

.footer-card__footerline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.45rem;
}

.footer-card__stats {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.footer-card__stat {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-card__stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-card__stat strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-card__meta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: #fff;
}

.site-main h1,
.site-main h2,
.site-main h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  letter-spacing: -0.04em;
}

.site-main h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
  line-height: 1;
}

.site-main h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.06;
}

.site-main h3 {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.14;
}

.site-main p,
.site-main li {
  line-height: 1.65;
  font-size: 0.92rem;
}

.upload-card .dropzone h3 {
  color: rgba(255, 255, 255, 0.96);
}

.upload-card .dropzone p {
  color: rgba(255, 255, 255, 0.8);
}

.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: grid;
  gap: 0.65rem;
  width: min(24rem, calc(100vw - 1.5rem));
}

.toast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: var(--shadow-md);
  animation: toastIn 0.22s ease;
}

.toast-item__dot {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 0.35rem;
}

.toast-item--success .toast-item__dot { background: var(--success); }
.toast-item--error .toast-item__dot { background: var(--danger); }
.toast-item--warning .toast-item__dot { background: #f59e0b; }

.toast-item__title {
  font-weight: 800;
}

.toast-item__text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.toast-item__close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.admin-dashboard {
  display: grid;
  gap: 1.25rem;
}

.admin-dashboard__hero {
  display: grid;
  gap: 0.7rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(71, 141, 255, 0.2), transparent 44%),
    linear-gradient(135deg, #0f172a, #13213f 55%, #0a1020);
  color: #fff;
  box-shadow: 0 26px 60px rgba(10, 16, 32, 0.25);
}

.admin-dashboard__hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: -0.03em;
}

.admin-dashboard__hero p {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.admin-dashboard__meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  align-items: baseline;
  margin-top: 0.2rem;
}

.admin-dashboard__meta span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.56);
}

.admin-dashboard__meta strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.admin-stats-card {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
}

.admin-stats-card__icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 16px 24px rgba(20, 92, 255, 0.2);
}

.admin-stats-card__body {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.admin-stats-card__title {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-stats-card__body strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.admin-stats-card__body small {
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-stats-card__body p {
  margin: 0.08rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.admin-table-card {
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-lg);
}

.admin-table-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.admin-table-card__header h2 {
  margin: 0.14rem 0 0;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.admin-table-card__header p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.admin-table {
  margin: 0;
}

.admin-table thead th {
  padding-top: 0;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.admin-table tbody td {
  padding: 0.9rem 0.3rem;
  border-top: 1px solid rgba(229, 231, 235, 0.72);
  font-size: 0.94rem;
}

.admin-table__date {
  font-weight: 800;
}

.admin-table__day {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-empty-state {
  padding: 1.4rem 1.2rem;
  border-radius: 1.1rem;
  background: rgba(247, 248, 255, 0.95);
  border: 1px dashed rgba(20, 92, 255, 0.2);
}

.admin-empty-state strong {
  display: block;
  margin-bottom: 0.35rem;
}

.bulk-download-active .site-header,
.bulk-download-active .site-main,
.bulk-download-active .site-footer {
  pointer-events: none;
  user-select: none;
}

.bulk-download-modal .modal-dialog {
  max-width: 30rem;
}

.bulk-download-modal__content {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(66, 133, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(11, 16, 31, 0.99), rgba(7, 10, 20, 0.97));
  color: #fff;
  box-shadow: 0 34px 80px rgba(5, 10, 25, 0.45);
  overflow: hidden;
}

.bulk-download-modal__body {
  padding: 2rem 1.5rem;
}

.bulk-download-modal__spinner {
  width: 3rem;
  height: 3rem;
  color: #8db4ff;
  margin-bottom: 1rem;
}

.bulk-download-modal__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bulk-download-modal__text {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

@keyframes loadingSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .convert-page__hero {
    grid-template-columns: 1fr;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

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

  .home-stats {
    grid-template-columns: 1fr;
  }

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

  .converter-shell__header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .admin-table-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .convert-page__hero-copy {
    padding: 1rem;
  }

  .convert-page__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .convert-page__hero-actions .btn {
    width: 100%;
  }

  .convert-page__visual-card {
    padding: 0.9rem;
  }

  .bulk-convert-status {
    grid-template-columns: 1fr;
  }

  .bulk-convert-status__cancel {
    justify-self: start;
  }

  .file-list-meta__actions {
    justify-content: flex-start;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-table-card {
    padding: 1rem;
  }

}

@media (max-width: 991.98px) {
  .site-nav {
    margin: 0 0.5rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }

  .site-nav__brand-shell {
    flex: 1 1 auto;
  }

  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.85rem;
    width: 100%;
    padding-top: 0.15rem;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-radius: 1.15rem;
    padding: 0.55rem;
  }

  .site-nav__links .nav-item {
    width: 100%;
  }

  .site-nav .nav-link,
  .nav-trigger {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
  }

  .site-nav__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav__actions .btn {
    width: 100%;
  }

  .navbar-mobile-brand {
    display: grid;
  }

  .brand-mark__logo {
    width: min(9.5rem, 58vw);
  }

  .mega-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .mega-menu.is-open {
    display: block;
  }

  .mega-menu__panel {
    margin-top: 0.4rem;
    border-radius: 1.25rem;
    gap: 0.8rem;
  }

  .mega-menu__intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .mega-menu__intro-chip {
    align-self: flex-start;
  }

  .mega-menu__groups {
    grid-template-columns: 1fr;
  }

  .mega-col__links {
    grid-template-columns: 1fr;
  }

  .page-banner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

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

  .file-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "output"
      "actions"
      "convert"
      "status";
  }

  .file-row__convert {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .format-picker__body {
    grid-template-columns: 1fr;
  }

  .format-picker__categories {
    grid-auto-flow: column;
    grid-auto-columns: minmax(10rem, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.4rem;
  }

  .home-hero__actions {
    gap: 0.55rem;
  }
}

@media (max-width: 767.98px) {
  .home-hero__copy {
    padding: 1rem 1rem 1.05rem;
  }

  .home-hero__copy h1 {
    max-width: none;
  }

  .home-hero__panel {
    padding: 0.85rem;
  }

  .home-hero__stats {
    gap: 0.45rem;
  }

  .home-summary {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .dropzone {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "description"
      "actions"
      "progress";
    justify-items: center;
    text-align: center;
    padding: 1.15rem;
  }

  .dropzone__icon {
    width: 2.9rem;
    height: 2.9rem;
  }

  .dropzone p {
    max-width: 34rem;
  }

  .dropzone__actions {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .footer-card__logo {
    width: min(9.5rem, 62vw);
  }

  .dropzone__actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .file-list-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .row-settings__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .file-list-meta__actions {
    width: 100%;
  }

  .seo-copy__grid {
    grid-template-columns: 1fr;
  }

  .seo-copy-card {
    padding: 1.1rem;
  }

  .format-picker__dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
    border-radius: 1.2rem;
  }

  .format-picker__categories {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-right: 0;
    padding-bottom: 0;
  }

  .category-btn {
    padding: 0.82rem 0.95rem;
    text-align: center;
    white-space: normal;
  }

  .site-nav__actions {
    grid-template-columns: 1fr;
  }

  .home-hero__formats {
    gap: 0.35rem;
  }
}

@media (max-width: 1199.98px) {
  .home-hero--corporate {
    grid-template-columns: 1fr;
  }

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

  .home-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-hero--corporate .home-hero__copy {
    padding: 1rem;
  }

  .home-hero--corporate .hero-actions,
  .home-hero--corporate .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero--corporate .home-hero__actions .btn {
    width: 100%;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-story__steps {
    grid-template-columns: 1fr;
  }
}
