:root {
  color-scheme: light;
  --paper: #f5f2ea;
  --surface: #fffdf8;
  --ink: #1a1a1f;
  --muted: #6f6d70;
  --line: #dcd7ce;
  --violet: #7257f5;
  --violet-dark: #5138d4;
  --violet-soft: #eeeafe;
  --peach: #ff775f;
  --peach-soft: #ffede8;
  --mint: #67b995;
  --mint-soft: #e5f5ee;
  --shadow: 0 24px 70px rgba(35, 30, 47, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(114, 87, 245, 0.09), transparent 24rem),
    radial-gradient(circle at 6% 30%, rgba(255, 119, 95, 0.08), transparent 23rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

::selection {
  color: #fff;
  background: var(--violet);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 11px;
  background: linear-gradient(145deg, #876df9, #5d43e7);
  box-shadow: 0 8px 18px rgba(95, 67, 231, 0.24);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: #555259;
}

.header-nav a {
  transition: color 160ms ease;
}

.header-nav a:hover {
  color: var(--violet-dark);
}

.privacy-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #3b755d;
  background: rgba(229, 245, 238, 0.86);
  border: 1px solid rgba(103, 185, 149, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-section {
  position: relative;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 690px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 78px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(0.2px);
}

.hero-section::before {
  width: 330px;
  height: 330px;
  right: -140px;
  top: 28px;
  border: 1px solid rgba(114, 87, 245, 0.12);
}

.hero-section::after {
  width: 126px;
  height: 126px;
  left: -80px;
  bottom: 70px;
  border: 1px dashed rgba(255, 119, 95, 0.27);
}

.hero-copy {
  padding-bottom: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: var(--peach);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--peach-soft);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(47px, 4.8vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.hero-second-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-chunk {
  display: inline-block;
}

.accent-word {
  position: relative;
  z-index: 0;
  color: var(--violet);
  white-space: nowrap;
}

.accent-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4px;
  right: -7px;
  bottom: 3px;
  height: 14px;
  background: rgba(255, 119, 95, 0.25);
  border-radius: 999px 65% 999px 55%;
  transform: rotate(-1.8deg);
}

.hero-lede {
  max-width: 565px;
  margin: 28px 0 27px;
  color: #5d5a60;
  font-size: 17px;
  line-height: 1.8;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 17px;
}

.hero-proof div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #47434b;
  font-size: 12px;
  font-weight: 660;
}

.hero-proof svg {
  color: var(--violet);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 49px;
  color: #77737b;
  font-size: 12px;
  font-weight: 650;
}

.scroll-cue svg {
  transition: transform 180ms ease;
}

.scroll-cue:hover svg {
  transform: translateY(3px);
}

.converter-column {
  position: relative;
}

.converter-column::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 30px -27px -28px 31px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(114, 87, 245, 0.12), rgba(255, 119, 95, 0.12));
  transform: rotate(2.2deg);
}

.converter-card {
  min-height: 535px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(49, 43, 58, 0.045);
  backdrop-filter: blur(18px);
}

.card-topline {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.step-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.11em;
}

.card-topline h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: #3f725c;
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(103, 185, 149, 0.17);
}

.dropzone {
  position: relative;
  min-height: 330px;
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1.5px dashed #bcb5d3;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.8), rgba(255, 253, 248, 0.8)),
    radial-gradient(circle at 50% 30%, rgba(114, 87, 245, 0.14), transparent 11rem);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.dropzone:hover,
.dropzone.is-dragging {
  border-color: var(--violet);
  background: var(--violet-soft);
  transform: translateY(-2px);
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-orbit {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 87, 245, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(114, 87, 245, 0.035);
}

.upload-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 18px;
  background: linear-gradient(145deg, #876cf9, #6549ea);
  box-shadow: 0 12px 25px rgba(96, 67, 231, 0.27);
}

.dropzone strong {
  margin-bottom: 7px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.dropzone > span:not(.upload-orbit) {
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 650;
}

.dropzone small {
  margin-top: 17px;
  color: #918d94;
  font-size: 11px;
}

.format-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  color: #7b777f;
  font-size: 11px;
  line-height: 1.55;
}

.format-note svg {
  flex: 0 0 auto;
  color: var(--violet);
  margin-top: 1px;
}

.panel-hidden {
  display: none !important;
}

.file-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.file-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 13px;
}

.file-copy {
  min-width: 0;
}

.file-copy strong,
.file-copy small {
  display: block;
}

.file-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.file-copy small {
  margin-top: 3px;
  color: #8a858d;
  font-size: 10px;
}

.text-action {
  padding: 7px 9px;
  color: var(--violet-dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 720;
}

.video-stage {
  position: relative;
  height: 218px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #18171b;
  border-radius: 17px;
}

.video-stage video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.live-chip,
.result-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(14, 13, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.live-rings {
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.play-button {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, background 160ms ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.27);
  transform: scale(1.05);
}

.play-button .pause-icon {
  display: none;
}

.video-stage.is-playing .play-icon {
  display: none;
}

.video-stage.is-playing .pause-icon {
  display: block;
}

.video-timecode {
  position: absolute;
  right: 11px;
  bottom: 10px;
  padding: 4px 7px;
  color: white;
  background: rgba(10, 9, 12, 0.64);
  border-radius: 7px;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.timeline-block {
  margin-top: 17px;
}

.timeline-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
}

.timeline-labels output {
  color: var(--violet-dark);
  font-variant-numeric: tabular-nums;
}

.range-shell {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}

.range-shell::before,
.range-progress {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 999px;
}

.range-shell::before {
  width: 100%;
  background: #e2ded9;
}

.range-progress {
  width: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--violet), var(--peach));
}

.range-shell input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  cursor: pointer;
  background: transparent;
}

.range-shell input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.range-shell input::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  appearance: none;
  background: #fff;
  border: 4px solid var(--violet);
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(50, 35, 104, 0.24);
}

.range-shell input::-moz-range-track {
  height: 4px;
  background: transparent;
}

.range-shell input::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 4px solid var(--violet);
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(50, 35, 104, 0.24);
}

.timeline-block p {
  margin: 5px 0 0;
  color: #908b92;
  font-size: 9px;
}

.compatibility {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0;
  color: #367057;
  font-size: 10px;
  font-weight: 650;
}

.compatibility.warning {
  color: #a45e28;
}

.primary-button,
.secondary-button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #7c60f8, #6245e7);
  box-shadow: 0 12px 24px rgba(91, 63, 216, 0.24);
}

.primary-button svg:last-child {
  margin-left: auto;
  margin-right: 15px;
}

.primary-button svg:first-child {
  margin-left: 15px;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 15px 28px rgba(91, 63, 216, 0.31);
}

.primary-button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.under-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 20px 0 0;
  color: #77737a;
  font-size: 10px;
}

.processing-panel {
  min-height: 405px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.processing-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--violet);
}

.processing-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

.processing-ring.ring-two {
  inset: 12px;
  border-top-color: transparent;
  border-right-color: var(--peach);
  animation-duration: 1s;
  animation-direction: reverse;
}

.processing-panel strong {
  font-size: 18px;
}

.processing-panel p {
  margin: 8px 0 24px;
  color: var(--muted);
  font-size: 11px;
}

.progress-track {
  width: min(100%, 280px);
  height: 7px;
  overflow: hidden;
  background: #e9e5df;
  border-radius: 999px;
}

.progress-track span {
  width: 12%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--violet), var(--peach));
  border-radius: inherit;
  transition: width 260ms ease;
}

.processing-panel small {
  margin-top: 8px;
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 750;
}

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

.result-panel {
  min-height: 405px;
}

.success-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.success-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(59, 137, 102, 0.25);
}

.success-heading span:not(.success-mark) {
  color: #397458;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.success-heading h3 {
  margin: 3px 0 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.result-preview {
  position: relative;
  height: 145px;
  overflow: hidden;
  background: #201e22;
  border-radius: 16px;
}

.result-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.result-live-badge {
  font-size: 8px;
}

.result-files {
  margin: 13px 0;
  overflow: hidden;
  border: 1px solid #e4dfd7;
  border-radius: 14px;
}

.result-files > div {
  min-height: 52px;
  padding: 8px 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.result-files > div + div {
  border-top: 1px solid #e9e4de;
}

.result-file-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.image-file {
  color: #a55140;
  background: var(--peach-soft);
}

.video-file {
  color: var(--violet-dark);
  background: var(--violet-soft);
}

.result-files strong,
.result-files small {
  display: block;
}

.result-files strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.result-files small {
  margin-top: 2px;
  color: #918b92;
  font-size: 9px;
}

.result-files a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #5f5a65;
  border-radius: 9px;
  transition: background 150ms ease, color 150ms ease;
}

.result-files a:hover {
  color: var(--violet-dark);
  background: var(--violet-soft);
}

.download-button {
  min-height: 45px;
  font-size: 12px;
}

.download-button svg:first-child {
  margin-left: 0;
}

.secondary-button {
  min-height: 43px;
  margin-top: 9px;
  color: var(--violet-dark);
  background: var(--violet-soft);
}

.restart-button {
  margin: 11px auto 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #716d75;
  cursor: pointer;
  background: transparent;
  font-size: 10px;
  font-weight: 650;
}

.how-section,
.import-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 150px auto 0;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 50px;
}

.section-number {
  min-width: 45px;
  padding-top: 7px;
  color: var(--peach);
  border-top: 2px solid var(--peach);
  font-size: 11px;
  font-weight: 850;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  position: relative;
  min-height: 255px;
  padding: 29px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(62, 57, 69, 0.09);
  border-radius: 23px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(33, 29, 43, 0.08);
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.step-icon.peach {
  color: #a94c38;
  background: var(--peach-soft);
}

.step-icon.violet {
  color: var(--violet-dark);
  background: var(--violet-soft);
}

.step-icon.mint {
  color: #37775b;
  background: var(--mint-soft);
}

.step-count {
  position: absolute;
  top: 16px;
  right: 21px;
  color: rgba(32, 29, 37, 0.07);
  font-size: 53px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.steps-grid h3 {
  margin: 25px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.steps-grid p {
  margin: 0;
  color: #706c73;
  font-size: 13px;
  line-height: 1.75;
}

.privacy-banner {
  position: relative;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 220px;
  margin: 130px auto 0;
  padding: 43px 55px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.11), transparent 16rem),
    linear-gradient(135deg, #282533, #18171d);
  border-radius: 30px;
}

.privacy-banner::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: -145px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.privacy-illustration {
  display: flex;
  align-items: center;
}

.device-frame {
  width: 62px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #c9bffa;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.device-frame.accent {
  color: #ffc0b4;
}

.privacy-path {
  width: 83px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.privacy-path span {
  width: 5px;
  height: 5px;
  background: #8a74ed;
  border-radius: 50%;
}

.privacy-path span:nth-child(2) {
  opacity: 0.65;
}

.privacy-path span:nth-child(3) {
  opacity: 0.35;
}

.mini-label {
  color: #a995ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.privacy-banner h2 {
  margin: 8px 0 10px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.privacy-banner p {
  max-width: 580px;
  margin: 0;
  color: #b9b5bf;
  font-size: 12px;
  line-height: 1.75;
}

.banner-shield {
  color: var(--mint);
}

.import-section {
  margin-bottom: 140px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.import-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 19px;
}

.import-card {
  min-height: 300px;
  padding: 31px;
  background: rgba(255, 253, 248, 0.75);
  border: 1px solid rgba(62, 57, 69, 0.1);
  border-radius: 24px;
}

.import-card.preferred {
  border-color: rgba(114, 87, 245, 0.2);
  box-shadow: inset 0 4px 0 var(--violet);
}

.import-card-top {
  min-height: 49px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.platform-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 15px;
}

.recommended {
  padding: 6px 9px;
  color: #fff;
  background: var(--violet);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.import-card h3 {
  margin: 21px 0 16px;
  font-size: 20px;
}

.import-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.import-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f5b63;
  font-size: 12px;
  line-height: 1.65;
}

.import-card li + li {
  margin-top: 10px;
}

.import-card li span {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.import-card > p {
  margin: 0;
  color: #666269;
  font-size: 13px;
  line-height: 1.8;
}

.honest-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 13px;
  color: #7a512d;
  background: #fff1df;
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.55;
}

.honest-note svg {
  flex: 0 0 auto;
}

footer {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: #858188;
  border-top: 1px solid #ddd8d0;
  font-size: 10px;
}

.footer-brand {
  color: var(--ink);
  font-size: 14px;
}

.footer-brand .brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}

footer p {
  margin: 0;
}

footer > span:last-child {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 25px;
  max-width: min(calc(100% - 32px), 500px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: rgba(26, 25, 30, 0.94);
  border-radius: 13px;
  box-shadow: 0 16px 35px rgba(18, 16, 23, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 12px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

:focus-visible {
  outline: 3px solid rgba(114, 87, 245, 0.38);
  outline-offset: 3px;
}

@media (max-width: 950px) {
  .hero-section {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .converter-column {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .privacy-banner {
    grid-template-columns: 180px 1fr;
  }

  .banner-shield {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 30px), var(--max-width));
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .privacy-pill span {
    display: none;
  }

  .privacy-pill {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
  }

  .hero-section,
  .how-section,
  .privacy-banner,
  .import-section,
  footer {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .hero-section {
    margin-top: 43px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-second-line {
    white-space: normal;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    margin-top: 32px;
  }

  .converter-card {
    min-height: 510px;
    padding: 22px;
    border-radius: 24px;
  }

  .dropzone {
    min-height: 315px;
  }

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

  .how-section,
  .import-section {
    margin-top: 105px;
  }

  .steps-grid article {
    min-height: 220px;
  }

  .privacy-banner {
    margin-top: 90px;
    padding: 35px 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy-illustration {
    transform: scale(0.9);
    transform-origin: left center;
  }

  .privacy-banner h2 {
    font-size: 23px;
  }

  .import-section {
    margin-bottom: 90px;
  }

  footer {
    min-height: 155px;
    padding: 25px 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  footer > span:last-child {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .hero-section {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .converter-card {
    padding: 18px;
  }

  .card-topline h2 {
    font-size: 20px;
  }

  .dropzone {
    min-height: 300px;
  }

  .video-stage {
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
