:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --ink: #121826;
  --muted: #657086;
  --line: #d9e0ea;
  --panel: #ffffff;
  --red: #d91d3d;
  --red-dark: #a6122a;
  --teal: #08746d;
  --yellow: #f5b841;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(15, 159, 149, 0.18), transparent 34rem),
    linear-gradient(135deg, #fff7f7 0%, var(--bg) 48%, #eef8f7 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  margin: 0 auto;
  padding: 14px 0 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.site-logo__text {
  background: linear-gradient(135deg, var(--red-dark), var(--teal));
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-logo__mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-menu__link {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
}

.site-menu__link:focus-visible,
.site-menu__link:hover,
.site-menu__link.is-active {
  background: rgba(255, 255, 255, 0.82);
  color: var(--red-dark);
  outline: none;
}

.shell {
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 68px);
  padding: clamp(16px, 3vw, 42px) clamp(20px, 4vw, 52px) clamp(20px, 4vw, 52px);
  place-items: start center;
}

.download-box {
  width: min(1080px, 100%);
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
  padding: clamp(18px, 3vw, 28px);
}

.download-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.product-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.language-picker {
  display: inline-flex;
  align-items: center;
}

.language-picker__select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.language-picker__button {
  min-width: 0;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 8px;
  padding: 0 12px;
}

.language-picker__button span:first-child {
  display: inline-grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.language-picker__button:focus-visible,
.language-picker__button:hover {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 159, 149, 0.14);
  color: var(--ink);
  transform: none;
}

.language-modal[hidden] {
  display: none;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  overscroll-behavior: contain;
  place-items: center;
  padding: 18px;
}

.language-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 38, 0.42);
}

.language-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  width: min(720px, 100%);
  height: min(720px, calc(100vh - 36px));
  height: min(720px, calc(100dvh - 36px));
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.28);
  padding: clamp(18px, 3vw, 26px);
}

.language-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.language-modal__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.15;
}

.language-modal__close {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fbfcfe;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0 0 3px;
}

.language-modal__close:focus-visible,
.language-modal__close:hover {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 159, 149, 0.14);
  color: var(--ink);
  transform: none;
}

.language-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}

.language-modal__option {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 58px;
  border: 1px solid var(--line);
  background: #fbfcfe;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  gap: 2px;
  padding: 9px 12px;
  text-align: left;
  text-decoration: none;
}

.language-modal__option small {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.language-modal__option.is-active,
.language-modal__option:focus-visible,
.language-modal__option:hover {
  border-color: rgba(15, 159, 149, 0.5);
  background: rgba(15, 159, 149, 0.08);
  box-shadow: none;
  color: var(--ink);
  transform: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  width: min(1080px, 100%);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.seo-section {
  width: min(1080px, 100%);
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 4vw, 46px);
}

.matched-article {
  width: min(1080px, 100%);
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(24px, 4vw, 46px);
}

.tools-section {
  width: min(1080px, 100%);
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  padding: clamp(22px, 4vw, 36px);
}

.tools-section__header {
  max-width: 700px;
}

.tools-section__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.tools-section__header p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.tool-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  min-height: 124px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 14px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tool-card:focus-visible,
.tool-card:hover {
  border-color: rgba(8, 116, 109, 0.42);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.tool-card__image {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.tool-card__image img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tool-card__image > span {
  display: inline-grid;
  min-width: 44px;
  min-height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  place-items: center;
}

.tool-card__image--youtube {
  background: linear-gradient(135deg, #d91d3d, #121826);
}

.tool-card__image--mp3 {
  background: linear-gradient(135deg, #08746d, #121826);
}

.tool-card__image--shorts {
  background: linear-gradient(135deg, #d91d3d, #08746d);
}

.tool-card__image--facebook {
  background: #1877f2;
  font-size: 2.8rem;
  font-family: Arial, sans-serif;
}

.tool-card__image--tiktok {
  background: linear-gradient(135deg, #111827, #00f2ea 52%, #ff0050);
  font-size: 1rem;
}

.tool-card__image--instagram {
  background: linear-gradient(135deg, #405de6, #c13584 48%, #f77737);
  font-size: 1.28rem;
}

.tool-card__body {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.tool-card__title {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.tool-card__description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.matched-article__content {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.matched-article__content > :first-child {
  margin-top: 0;
}

.matched-article__content > :last-child {
  margin-bottom: 0;
}

.matched-article__content h1,
.matched-article__content h2,
.matched-article__content h3,
.matched-article__content h4 {
  color: var(--ink);
  line-height: 1.2;
}

.matched-article__content a {
  color: var(--teal);
  font-weight: 700;
}

.seo-intro {
  max-width: 760px;
}

.seo-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.seo-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.step {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 18px;
}

.step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #121826;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  place-items: center;
}

.step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mp3-guide {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.mp3-guide__header {
  max-width: 760px;
}

.mp3-guide h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.mp3-guide__header p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.mp3-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mp3-step {
  min-width: 0;
  border: 1px solid rgba(15, 159, 149, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 250, 249, 0.74));
  padding: 18px;
}

.mp3-step h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.mp3-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mp3-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 24, 38, 0.1), 0 10px 22px rgba(15, 159, 149, 0.12);
  place-items: center;
}

.mp3-icon::before,
.mp3-icon::after {
  position: absolute;
  content: "";
}

.mp3-icon--link::before,
.mp3-icon--link::after {
  width: 15px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 999px;
}

.mp3-icon--link::before {
  left: 9px;
  transform: rotate(-32deg);
}

.mp3-icon--link::after {
  right: 9px;
  transform: rotate(-32deg);
}

.mp3-icon--paste::before {
  top: 10px;
  width: 18px;
  height: 22px;
  border: 2px solid var(--teal);
  border-radius: 4px;
}

.mp3-icon--paste::after {
  top: 7px;
  width: 12px;
  height: 6px;
  border-radius: 5px 5px 2px 2px;
  background: var(--yellow);
}

.mp3-icon--audio::before {
  top: 9px;
  left: 17px;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--teal);
  box-shadow: 7px -3px 0 var(--red);
}

.mp3-icon--audio::after {
  right: 10px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: -7px 3px 0 var(--teal);
}

.mp3-icon--save::before {
  top: 8px;
  width: 2px;
  height: 20px;
  background: var(--teal);
}

.mp3-icon--save::after {
  top: 18px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
}

.mp3-icon--save {
  border-bottom: 3px solid var(--red);
}

.mp3-icon--video::before {
  width: 22px;
  height: 16px;
  border: 2px solid var(--teal);
  border-radius: 5px;
}

.mp3-icon--video::after {
  right: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--red);
}

.mp3-icon--reel::before {
  width: 23px;
  height: 23px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.mp3-icon--reel::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 12px 0 0 var(--yellow), -12px 0 0 var(--teal);
}

.mp3-guide p {
  margin: 0;
}

.hero__media {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, rgba(230, 33, 67, 0.92), rgba(15, 159, 149, 0.82));
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgba(230, 33, 67, 0.92), rgba(15, 159, 149, 0.82));
  content: "";
}

.hero__media::after {
  position: absolute;
  z-index: 1;
  inset: auto 8% 8%;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.playmark {
  position: relative;
  z-index: 2;
  width: clamp(112px, 18vw, 172px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.playmark::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  border-left: 44px solid var(--red);
  content: "";
  transform: translate(-40%, -50%);
}

.timeline {
  position: absolute;
  right: 12%;
  bottom: 13%;
  left: 12%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.35fr;
  gap: 12px;
}

.timeline span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.download-form {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 10px;
  color: #30394b;
  font-size: 0.92rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
}

.input-row--single-action {
  grid-template-columns: 1fr auto;
}

input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 0 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 159, 149, 0.14);
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  gap: 10px;
  padding: 0 22px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(230, 33, 67, 0.28);
  transform: translateY(-1px);
}

.download-button--secondary {
  background: var(--teal);
}

.download-button--secondary:hover {
  background: #0b8179;
  box-shadow: 0 12px 28px rgba(15, 159, 149, 0.28);
}

button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.button-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top: 0;
}

.button-icon::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 2px;
  height: 15px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.button-icon::after {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.status.is-error {
  color: var(--red-dark);
}

.status.is-success {
  color: #08746d;
}

.status--sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.download-loader {
  width: 28px;
  height: 28px;
  margin: 16px auto 0;
  border: 3px solid #e8eef5;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: loader-spin 0.75s linear infinite;
}

.download-loader[hidden] {
  display: none;
}

.download-tasks {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.download-tasks[hidden] {
  display: none;
}

.download-task {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.download-task.has-thumbnail {
  grid-template-columns: 132px minmax(0, 1fr);
}

.download-task.has-thumbnail .download-task__footer {
  grid-column: 1 / -1;
}

.download-task__thumbnail {
  width: 132px;
  height: 100%;
  min-height: 112px;
  background: #e8eef5;
  object-fit: cover;
}

.download-task__thumbnail.is-fallback-thumbnail,
.related-video__thumbnail.is-fallback-thumbnail {
  object-fit: contain;
}

.download-task__thumbnail[hidden] {
  display: none;
}

.download-task__body {
  min-width: 0;
  padding: 12px;
}

.download-task__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-size: 0.86rem;
}

.download-task__top strong,
.download-task__percent {
  flex: 0 0 auto;
}

.download-task__title {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.download-task p {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.download-task progress {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #e8eef5;
}

.download-task progress::-webkit-progress-bar {
  background: #e8eef5;
}

.download-task progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--red);
}

.download-task progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--red);
}

.download-task__footer {
  position: relative;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding: 14px 12px 12px;
  text-align: center;
}

.download-task__footer[hidden] {
  display: none;
}

.download-task__related-button,
.related-video__actions button {
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  padding: 9px 10px;
}

.download-task__related-button {
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--line);
  font-size: 0.74rem;
  padding: 5px 9px;
  transform: translate(-50%, -50%);
}

.download-task__related-button:hover {
  color: var(--red-dark);
}

.download-task__related-button:disabled {
  cursor: wait;
}

.related-videos {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  text-align: left;
}

.related-videos[hidden] {
  display: none;
}

.related-videos__empty {
  margin: 0;
}

.related-video {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.related-video.has-no-thumbnail {
  grid-template-columns: minmax(0, 1fr);
}

.related-video__thumbnail {
  width: 86px;
  height: 100%;
  min-height: 86px;
  background: #e8eef5;
  object-fit: cover;
}

.related-video__thumbnail[hidden] {
  display: none;
}

.related-video__body {
  min-width: 0;
  padding: 9px 9px 9px 0;
}

.related-video.has-no-thumbnail .related-video__body {
  padding-left: 9px;
}

.related-video h4 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.related-video__actions button {
  background: var(--red);
  padding-inline: 12px;
}

.related-video__actions button:nth-child(2) {
  background: var(--teal);
}

.download-task.is-success {
  border-color: rgba(15, 159, 149, 0.28);
  background: #f2fbfa;
}

.download-task.is-success progress::-webkit-progress-value {
  background: var(--teal);
}

.download-task.is-success progress::-moz-progress-bar {
  background: var(--teal);
}

.download-task.is-error {
  border-color: rgba(185, 28, 28, 0.24);
  background: #fff7f7;
}

.download-task.is-error p,
.download-task.is-error .download-task__percent {
  color: var(--red-dark);
}

@media (max-width: 560px) {
  .download-task.has-thumbnail {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .download-task__thumbnail {
    width: 96px;
    min-height: 124px;
  }
}

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

.trim-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.trim-panel[hidden] {
  display: none;
}

.trim-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.trim-panel__eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trim-panel h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.trim-form {
  display: grid;
  gap: 14px;
}

.trim-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.waveform-editor {
  position: relative;
  height: clamp(120px, 18vw, 168px);
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fbfcfe, #edf5f4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: crosshair;
  touch-action: none;
}

.waveform-editor:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 159, 149, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  outline: none;
}

.waveform-editor.is-playing {
  border-color: rgba(245, 184, 65, 0.75);
}

.waveform-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.waveform-selection {
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  left: 0;
  border: 2px solid rgba(15, 159, 149, 0.95);
  border-radius: 8px;
  background: rgba(15, 159, 149, 0.09);
  box-shadow:
    -100vw 0 0 rgba(18, 24, 38, 0.22),
    100vw 0 0 rgba(18, 24, 38, 0.22);
  pointer-events: none;
}

.waveform-handle {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: block;
  width: 20px;
  min-width: 20px;
  height: 74px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(18, 24, 38, 0.24);
  cursor: ew-resize;
  padding: 0;
  pointer-events: auto;
  transform: translateY(-50%);
}

.waveform-handle::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: -4px 0 0 rgba(255, 255, 255, 0.55), 4px 0 0 rgba(255, 255, 255, 0.55);
  content: "";
  transform: translateX(-50%);
}

.waveform-handle:hover,
.waveform-handle:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 14px 34px rgba(230, 33, 67, 0.28);
  transform: translateY(-50%);
}

.waveform-handle--start {
  left: 0;
  transform: translate(-50%, -50%);
}

.waveform-handle--end {
  right: 0;
  transform: translate(50%, -50%);
}

.waveform-handle--start:hover,
.waveform-handle--start:focus-visible {
  transform: translate(-50%, -50%);
}

.waveform-handle--end:hover,
.waveform-handle--end:focus-visible {
  transform: translate(50%, -50%);
}

.waveform-playhead {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(18, 24, 38, 0.1), 0 0 0 6px rgba(245, 184, 65, 0.15);
  pointer-events: none;
  transform: translateX(-50%);
}

.trim-button {
  min-width: 0;
  height: 46px;
  font-size: 0.92rem;
  padding: 0 16px;
}

.trim-button--ghost {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.facebook-page {
  --red: #0f5dc4;
  --red-dark: #0f5dc4;
  --teal: #08746d;
  --yellow: #ffcf45;
}

body.facebook-page {
  background:
    radial-gradient(circle at top left, rgba(24, 119, 242, 0.18), transparent 34rem),
    linear-gradient(135deg, #f4f8ff 0%, var(--bg) 48%, #eef8f7 100%);
}

.facebook-page .hero__media {
  background: linear-gradient(145deg, rgba(24, 119, 242, 0.9), rgba(22, 160, 133, 0.8));
}

.facebook-page .hero__media::before {
  background: linear-gradient(145deg, rgba(24, 119, 242, 0.9), rgba(22, 160, 133, 0.8));
}

.facebook-page .playmark::after {
  border-left-color: var(--red);
}

.tiktok-page {
  --red: #d91d48;
  --red-dark: #d91d48;
  --teal: #007c86;
  --yellow: #f8d84a;
}

body.tiktok-page {
  background:
    radial-gradient(circle at top left, rgba(0, 184, 200, 0.2), transparent 34rem),
    linear-gradient(135deg, #f7fbff 0%, var(--bg) 48%, #fff2f6 100%);
}

.tiktok-page .hero__media {
  background: linear-gradient(145deg, rgba(10, 18, 32, 0.78), rgba(0, 184, 200, 0.7), rgba(255, 47, 95, 0.72));
}

.tiktok-page .hero__media::before {
  background: linear-gradient(145deg, rgba(10, 18, 32, 0.78), rgba(0, 184, 200, 0.7), rgba(255, 47, 95, 0.72));
}

.tiktok-page .playmark::after {
  border-left-color: var(--red);
}

.facebook-phone {
  position: absolute;
  z-index: 2;
  top: 11%;
  left: 11%;
  width: min(170px, 26vw);
  aspect-ratio: 0.58;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.facebook-phone span {
  position: absolute;
  right: 18%;
  left: 18%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.facebook-phone span:nth-child(1) {
  top: 22%;
}

.facebook-phone span:nth-child(2) {
  top: 35%;
}

.facebook-phone span:nth-child(3) {
  top: 48%;
  right: 38%;
}

.tiktok-note {
  position: absolute;
  z-index: 2;
  top: 13%;
  left: 11%;
  width: min(150px, 24vw);
  aspect-ratio: 0.72;
}

.tiktok-note::before {
  position: absolute;
  top: 4%;
  right: 18%;
  width: 34%;
  height: 70%;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: -10px 8px 0 rgba(0, 184, 200, 0.92), 10px -8px 0 rgba(255, 47, 95, 0.92);
  content: "";
}

.tiktok-note::after {
  position: absolute;
  right: 18%;
  bottom: 7%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: -10px 8px 0 rgba(0, 184, 200, 0.92), 10px -8px 0 rgba(255, 47, 95, 0.92);
  content: "";
}

.tiktok-note span {
  position: absolute;
  top: 4%;
  right: 0;
  width: 62%;
  height: 22%;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: -10px 8px 0 rgba(0, 184, 200, 0.92), 10px -8px 0 rgba(255, 47, 95, 0.92);
}

.faq-guide {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.faq-guide h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.faq-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 18px;
}

.faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.site-footer__brand {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 16px;
}

.site-footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer__links a:focus-visible,
.site-footer__links a:hover,
.site-footer__brand:focus-visible,
.site-footer__brand:hover {
  color: var(--red-dark);
  outline: none;
}

.legal-shell {
  width: min(900px, 100%);
  min-height: calc(100vh - 137px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 62px) clamp(20px, 4vw, 52px);
}

.legal-page {
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
  padding: clamp(24px, 5vw, 48px);
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.legal-page__intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.legal-page__section {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.legal-page__section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.32;
}

.legal-page__section p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink);
  line-height: 1.15;
}

.blog-content h1 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.blog-content h2 {
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
}

.blog-content h3 {
  font-size: 1.08rem;
}

.blog-content a,
.legal-page__section a {
  color: var(--teal);
  font-weight: 800;
  text-decoration-color: rgba(8, 116, 109, 0.34);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.blog-content a:focus-visible,
.blog-content a:hover,
.legal-page__section a:focus-visible,
.legal-page__section a:hover {
  color: var(--red-dark);
  outline: none;
  text-decoration-color: rgba(166, 18, 42, 0.42);
}

.blog-content ul,
.blog-content ol {
  color: var(--muted);
  line-height: 1.75;
}

.blog-content table,
.legal-page__section table,
.admin-editor table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 22px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-spacing: 0;
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-content table::-webkit-scrollbar,
.legal-page__section table::-webkit-scrollbar,
.admin-editor table::-webkit-scrollbar {
  height: 10px;
}

.blog-content table::-webkit-scrollbar-thumb,
.legal-page__section table::-webkit-scrollbar-thumb,
.admin-editor table::-webkit-scrollbar-thumb {
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(8, 116, 109, 0.34);
}

.blog-content caption,
.legal-page__section caption,
.admin-editor caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
}

.blog-content thead,
.legal-page__section thead,
.admin-editor thead {
  background: #f5f8fb;
}

.blog-content th,
.blog-content td,
.legal-page__section th,
.legal-page__section td,
.admin-editor th,
.admin-editor td {
  min-width: 150px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.blog-content th,
.legal-page__section th,
.admin-editor th {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-content td,
.legal-page__section td,
.admin-editor td {
  color: var(--muted);
}

.blog-content tbody tr:nth-child(even),
.legal-page__section tbody tr:nth-child(even),
.admin-editor tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.blog-content tr > :last-child,
.legal-page__section tr > :last-child,
.admin-editor tr > :last-child {
  border-right: 0;
}

.blog-content tbody tr:last-child > *,
.legal-page__section tbody tr:last-child > *,
.admin-editor tbody tr:last-child > * {
  border-bottom: 0;
}

.blog-list-shell {
  width: min(1080px, 100%);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  margin-top: 28px;
}

.blog-list__item {
  display: grid;
  min-height: 168px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-list__item span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-list__item strong {
  margin-top: 10px;
  color: var(--teal);
  font-size: 1.08rem;
  line-height: 1.32;
}

.blog-list__item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.blog-list__item:focus-visible,
.blog-list__item:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 116, 109, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.blog-list__item:focus-visible strong,
.blog-list__item:hover strong {
  color: var(--red-dark);
}

.blog-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-nav__item {
  display: grid;
  min-height: 112px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 18px;
  text-decoration: none;
}

.blog-nav__item--next {
  text-align: right;
}

.blog-nav__item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-nav__item strong {
  margin-top: 8px;
  color: var(--teal);
  font-size: 1rem;
  line-height: 1.35;
}

.blog-nav__item:focus-visible,
.blog-nav__item:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 116, 109, 0.14);
  outline: none;
}

.blog-nav__item:focus-visible strong,
.blog-nav__item:hover strong {
  color: var(--red-dark);
}

.admin-shell {
  width: min(1040px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 48px);
}

.admin-panel {
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 40px);
}

.admin-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-panel__header h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.admin-panel__header a,
.admin-list a {
  color: var(--red-dark);
  font-weight: 800;
}

.admin-message {
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.45;
  padding: 12px 14px;
}

.admin-message--success {
  background: #e8f6f4;
  color: #075f59;
}

.admin-message--error {
  background: #fff0f0;
  color: #8f1226;
}

.admin-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.admin-form label {
  margin: 8px 0 0;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-toolbar button {
  min-width: 0;
  height: 40px;
  background: var(--ink);
  padding: 0 14px;
}

.admin-editor {
  min-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  line-height: 1.7;
  padding: 18px;
}

.admin-editor:focus {
  border-color: var(--teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 116, 109, 0.14);
  outline: none;
}

.admin-submit {
  justify-self: start;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-cancel {
  color: var(--red-dark);
  font-weight: 800;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.admin-list h2 {
  margin: 0;
}

.admin-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px 14px;
}

.admin-list__title {
  min-width: 0;
}

.admin-list__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.admin-list__actions form {
  margin: 0;
}

.admin-list__actions button {
  min-width: 0;
  height: 36px;
  background: var(--red-dark);
  font-size: 0.86rem;
  padding: 0 12px;
}

.trim-button--ghost:hover {
  background: #f4f7fb;
  box-shadow: none;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__media {
    min-height: 260px;
  }

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

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

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

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

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .blog-nav {
    grid-template-columns: 1fr;
  }

  .blog-nav__item--next {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: calc(100% - 28px);
  }

  .site-logo {
    flex: 1 1 auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header__right {
    align-items: stretch;
    flex-direction: column;
    display: none;
    flex: 0 0 100%;
    padding: 10px;
    border: 1px solid rgba(18, 24, 38, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
  }

  .site-header.is-menu-open .site-header__right {
    display: flex;
  }

  .site-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px;
    text-align: center;
  }

  .shell {
    padding: 14px;
  }

  .panel {
    padding: 28px 18px 30px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .language-picker,
  .language-picker__button {
    width: 100%;
  }

  .language-modal__grid {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

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

  .tool-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 104px;
    padding: 12px;
  }

  .tool-card__image {
    width: 76px;
    height: 76px;
  }

  .tool-card__image img {
    width: 32px;
    height: 32px;
  }

  .trim-panel__top {
    align-items: stretch;
    flex-direction: column;
  }

  .waveform-handle {
    width: 20px;
    min-width: 20px;
  }

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

  .mp3-steps {
    grid-template-columns: 1fr;
  }

  .facebook-phone {
    width: 112px;
  }

  .tiktok-note {
    width: 106px;
  }
}
