:root {
  --ink: #101010;
  --paper: #f6ffe8;
  --panel: #fffdf6;
  --muted: #615f57;
  --lime: #dfff69;
  --pink: #ff91c8;
  --purple: #b9a3ff;
  --blue: #94d9ff;
  --yellow: #ffd85c;
  --orange: #ffab64;
  --shadow: #101010;
  --border: 3px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(16, 16, 16, .13) 1.25px, transparent 0);
  background-size: 26px 26px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(125deg, transparent 0 48%, rgba(255, 145, 200, .12) 48% 52%, transparent 52%),
    linear-gradient(-125deg, transparent 0 72%, rgba(148, 217, 255, .14) 72% 76%, transparent 76%);
}

.dark {
  --ink: #f6f0df;
  --paper: #151229;
  --panel: #211b39;
  --muted: #beb5d4;
  --lime: #dfff69;
  --pink: #ff84bd;
  --purple: #a88cff;
  --blue: #63d7ff;
  --yellow: #ffe16e;
  --orange: #ff9c5c;
  --shadow: #050409;
}

.dark body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(223, 255, 105, .15) 1.15px, transparent 0),
    linear-gradient(90deg, rgba(255, 132, 189, .04) 1px, transparent 1px),
    linear-gradient(rgba(99, 215, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px, 72px 72px, 72px 72px;
}

.dark body::before {
  background:
    repeating-linear-gradient(-12deg, transparent 0 18px, rgba(223, 255, 105, .025) 18px 20px),
    radial-gradient(circle at 80% 12%, rgba(255, 132, 189, .14), transparent 22rem),
    radial-gradient(circle at 12% 62%, rgba(99, 215, 255, .09), transparent 24rem);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--lime);
  color: #111;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 20;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand-bat {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  background: var(--ink);
  color: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
  transform: rotate(-5deg);
  font-size: 23px;
}

.dark .brand-bat {
  background: var(--lime);
  color: #111;
  border-color: #050409;
  box-shadow: 4px 4px 0 var(--pink);
}

.brand-word {
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -.04em;
}

.brand-sticker {
  position: absolute;
  left: 70px;
  bottom: -14px;
  white-space: nowrap;
  padding: 2px 7px;
  color: #111;
  background: var(--yellow);
  border: 2px solid #111;
  font-size: .62rem;
  font-weight: 800;
  transform: rotate(-2deg);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-link,
.mini-button,
.theme-toggle {
  border: 2px solid var(--ink);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--shadow);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}

.mini-link,
.mini-button {
  padding: 8px 12px;
}

.theme-toggle {
  width: 43px;
  height: 41px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.mini-link:hover,
.mini-button:hover,
.theme-toggle:hover,
.mini-link:focus-visible,
.mini-button:focus-visible,
.theme-toggle:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 5px 5px 0 var(--shadow);
  outline: none;
  background: var(--lime);
  color: #111;
}

.theme-dark-icon {
  display: none;
}

.dark .theme-light-icon {
  display: none;
}

.dark .theme-dark-icon {
  display: inline;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-block: 3px solid #111;
  color: #111;
  background: var(--lime);
  transform: rotate(-.45deg) scale(1.01);
  box-shadow: 0 4px 0 rgba(0, 0, 0, .16);
}

.marquee-track {
  min-width: max-content;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 9px 0;
  font-family: "Bungee", sans-serif;
  font-size: .76rem;
  letter-spacing: .04em;
  animation: marquee 24s linear infinite;
}

.marquee-track i {
  font-style: normal;
  color: #a80057;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.background-doodles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--shadow);
  opacity: .82;
}

.blob-one {
  width: 170px;
  height: 170px;
  left: -78px;
  top: 18%;
  border-radius: 44% 56% 62% 38%;
  background: var(--blue);
  transform: rotate(18deg);
}

.blob-two {
  width: 145px;
  height: 95px;
  right: -48px;
  top: 36%;
  background: var(--pink);
  transform: rotate(-12deg);
}

.blob-three {
  width: 190px;
  height: 190px;
  right: 3%;
  bottom: 2%;
  border-radius: 50%;
  background: var(--purple);
  opacity: .42;
}

.scribble {
  position: absolute;
  font-family: "Bungee", sans-serif;
  color: var(--ink);
  opacity: .44;
}

.scribble-one {
  top: 24%;
  right: 8%;
  font-size: 66px;
  transform: rotate(12deg);
}

.scribble-two {
  bottom: 30%;
  left: 5%;
  font-size: 58px;
  transform: rotate(-15deg);
}

.scribble-three {
  top: 66%;
  right: 8%;
  padding: 7px 12px;
  border: 3px dashed var(--ink);
  font-size: 22px;
  transform: rotate(9deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .65fr);
  align-items: center;
  gap: clamp(30px, 8vw, 90px);
  padding-block: clamp(68px, 10vw, 126px) 52px;
}

.eyebrow,
.tiny-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 800;
}

.eyebrow span {
  display: inline-block;
  padding: 4px 8px;
  color: #111;
  background: var(--lime);
  border: 2px solid #111;
  box-shadow: 3px 3px 0 #111;
  transform: rotate(-2deg);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: clamp(3.2rem, 8.3vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  color: #111;
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::before {
  content: "";
  position: absolute;
  inset: 9% -2% -2%;
  z-index: -1;
  background: var(--pink);
  border: 3px solid #111;
  transform: rotate(-1.5deg);
  box-shadow: 7px 7px 0 #111;
}

.dark .hero h1 em {
  color: #111;
}

.hero-lede {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.38rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-chips span {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--panel);
  box-shadow: 3px 3px 0 var(--shadow);
  font-size: .82rem;
  font-weight: 800;
  transform: rotate(var(--tilt, 0deg));
}

.hero-chips span:nth-child(1) { --tilt: -1.5deg; background: var(--yellow); color: #111; }
.hero-chips span:nth-child(2) { --tilt: 1deg; background: var(--blue); color: #111; }
.hero-chips span:nth-child(3) { --tilt: -1deg; background: var(--purple); color: #111; }

.hero-note {
  position: relative;
  padding: 34px 28px 28px;
  color: #111;
  background: var(--yellow);
  border: 3px solid #111;
  box-shadow: 10px 10px 0 #111;
  transform: rotate(3deg);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-note strong {
  font-family: "Bungee", sans-serif;
  font-size: .98rem;
}

.hero-note p {
  margin-bottom: 0;
  font-weight: 650;
}

.tape {
  position: absolute;
  width: 88px;
  height: 24px;
  left: 50%;
  top: -13px;
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(255, 255, 255, .62);
  border-inline: 1px dashed rgba(0, 0, 0, .35);
}

.note-doodle {
  position: absolute;
  right: 12px;
  bottom: -34px;
  font-size: 44px;
  font-weight: 900;
  transform: rotate(17deg);
}

.converter-shell {
  position: relative;
  margin-bottom: 120px;
}

.converter-card {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 48px);
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 15px 15px 0 var(--shadow);
}

.dark .converter-card {
  background:
    linear-gradient(135deg, rgba(255, 132, 189, .08), transparent 28%),
    var(--panel);
  border-color: var(--ink);
}

.corner-label {
  position: absolute;
  top: -18px;
  left: 30px;
  padding: 6px 12px;
  color: #111;
  background: var(--lime);
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  font-family: "Bungee", sans-serif;
  font-size: .72rem;
  transform: rotate(-2deg);
}

.converter-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.converter-heading h2,
.section-title-row h2,
.truth-card h2 {
  margin: 0;
  font-family: "Bungee", sans-serif;
  letter-spacing: -.035em;
}

.converter-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.privacy-stamp {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #111;
  background: var(--pink);
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 5px 5px 0 #111;
  text-align: center;
  font-family: "Bungee", sans-serif;
  font-size: .65rem;
  line-height: 1.2;
  transform: rotate(8deg);
}

.drop-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px) 22px;
  text-align: center;
  color: #111;
  background: var(--purple);
  border: 4px dashed #111;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.drop-zone:hover,
.drop-zone:focus-visible,
.drop-zone.is-dragging {
  outline: none;
  transform: translate(-3px, -3px) rotate(-.25deg);
  box-shadow: 9px 9px 0 #111;
  background: var(--blue);
}

.drop-zone.is-dragging {
  background: var(--lime);
}

.drop-zone-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(45deg, #111 25%, transparent 25%),
    linear-gradient(-45deg, #111 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #111 75%),
    linear-gradient(-45deg, transparent 75%, #111 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}

.upload-glyph {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--panel);
  border: 4px solid #111;
  border-radius: 50% 46% 52% 44%;
  box-shadow: 6px 6px 0 #111;
  transform: rotate(-4deg);
}

.upload-glyph svg {
  width: 47px;
}

.drop-title {
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: -.03em;
}

.drop-help {
  margin: 7px 0 20px;
  font-weight: 800;
}

.select-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  color: #111;
  background: var(--lime);
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
  font-family: "Bungee", sans-serif;
  font-size: .83rem;
  transform: rotate(-1deg);
}

.select-button b {
  font-size: 1.1rem;
}

.drop-smallprint {
  margin: 20px 0 0;
  font-size: .75rem;
  font-weight: 700;
  opacity: .7;
}

.upload-notice {
  margin-top: 18px;
  padding: 12px 15px;
  color: #111;
  background: var(--yellow);
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  font-weight: 800;
}

.queue {
  margin-top: 34px;
}

.queue-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--ink);
}

.queue-top h3 {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

.clear-button {
  padding: 7px 9px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  box-shadow: 3px 3px 0 var(--shadow);
  font-size: .75rem;
  font-weight: 800;
  cursor: pointer;
}

.clear-button:hover,
.clear-button:focus-visible {
  outline: none;
  color: #111;
  background: var(--pink);
}

.file-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.file-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--panel);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--shadow);
  transform: rotate(var(--file-tilt, 0deg));
}

.file-item:nth-child(odd) { --file-tilt: -.15deg; }
.file-item:nth-child(even) { --file-tilt: .15deg; }
.file-item.is-complete { background: color-mix(in srgb, var(--lime) 35%, var(--panel)); }
.file-item.is-error { background: color-mix(in srgb, var(--pink) 38%, var(--panel)); }

.file-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--pink);
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #111;
}

.file-icon svg {
  width: 25px;
}

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

.file-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.file-size {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.file-status {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 700;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 13%, transparent);
  border: 2px solid var(--ink);
}

.progress-bar {
  width: 4%;
  height: 100%;
  background: var(--lime);
  transition: width .18s ease;
}

.processing-indicator {
  width: 26px;
  height: 26px;
  border: 3px solid color-mix(in srgb, var(--ink) 25%, transparent);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

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

.download-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--lime);
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #111;
  transition: transform .13s ease, box-shadow .13s ease;
}

.download-button:hover,
.download-button:focus-visible {
  outline: none;
  transform: translate(-2px, -2px) rotate(-3deg);
  box-shadow: 5px 5px 0 #111;
}

.download-button svg {
  width: 22px;
}

.converter-side-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #111;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
  text-align: center;
  font-family: "Bungee", sans-serif;
  line-height: 1.05;
}

.sticker-one {
  width: 88px;
  height: 88px;
  left: -35px;
  top: 42%;
  background: var(--blue);
  border-radius: 50%;
  font-size: .68rem;
  transform: rotate(-13deg);
}

.sticker-two {
  width: 105px;
  height: 70px;
  right: -38px;
  top: 20%;
  background: var(--orange);
  font-size: .7rem;
  transform: rotate(9deg);
}

.sticker-three {
  right: 22px;
  bottom: -29px;
  padding: 11px 15px;
  background: var(--yellow);
  font-size: .8rem;
  transform: rotate(-4deg);
}

.steps-section,
.truth-section {
  padding-bottom: 116px;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title-row h2,
.truth-card h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.hand-arrow {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  transform: rotate(-8deg);
}

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

.step-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px;
  color: #111;
  border: 3px solid #111;
  box-shadow: 8px 8px 0 #111;
}

.step-card:nth-child(1) { transform: rotate(-1deg); }
.step-card:nth-child(2) { transform: rotate(1.2deg); }
.step-card:nth-child(3) { transform: rotate(-.6deg); }
.step-pink { background: var(--pink); }
.step-yellow { background: var(--yellow); }
.step-blue { background: var(--blue); }

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 42px;
  background: var(--panel);
  border: 3px solid #111;
  box-shadow: 3px 3px 0 #111;
  font-family: "Bungee", sans-serif;
  font-size: .75rem;
}

.step-card h3 {
  margin: 26px 0 8px;
  font-family: "Bungee", sans-serif;
  font-size: 1.45rem;
}

.step-card p {
  max-width: 90%;
  margin: 0;
  line-height: 1.5;
  font-weight: 650;
}

.step-emoji {
  position: absolute;
  right: 16px;
  bottom: 8px;
  font-size: 58px;
  transform: rotate(9deg);
  opacity: .92;
}

.truth-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 24px;
}

.truth-card {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--shadow);
}

.truth-main {
  background: var(--panel);
}

.truth-label {
  position: absolute;
  top: -18px;
  left: 28px;
  padding: 6px 10px;
  color: #111;
  background: var(--pink);
  border: 3px solid #111;
  font-family: "Bungee", sans-serif;
  font-size: .67rem;
  transform: rotate(-1.5deg);
}

.truth-main > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.truth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.truth-points span {
  padding: 7px 10px;
  color: #111;
  background: var(--lime);
  border: 2px solid #111;
  box-shadow: 3px 3px 0 #111;
  font-size: .8rem;
  font-weight: 800;
}

.truth-side {
  color: #111;
  background: var(--purple);
  transform: rotate(1.2deg);
}

.truth-side h3 {
  margin: 8px 0 12px;
  font-family: "Bungee", sans-serif;
  font-size: 1.45rem;
}

.truth-side p {
  line-height: 1.55;
  font-weight: 650;
}

.truth-side code {
  display: block;
  margin-top: 20px;
  padding: 12px;
  background: #111;
  color: var(--lime);
  border: 2px solid #111;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .77rem;
  transform: rotate(-1deg);
}

.site-footer {
  padding: 26px 0 34px;
  color: #111;
  background: var(--lime);
  border-top: 4px solid #111;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.footer-brand {
  font-family: "Bungee", sans-serif;
}

.footer-inner p {
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.footer-inner a {
  font-weight: 900;
}

::selection {
  color: #111;
  background: var(--pink);
}

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

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

  .hero-note {
    max-width: 430px;
    justify-self: end;
  }

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

  .step-card {
    min-height: 220px;
  }

  .truth-section {
    grid-template-columns: 1fr;
  }

  .truth-side {
    transform: rotate(-.5deg);
  }

  .sticker-one,
  .sticker-two {
    display: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 22px, 1120px);
  }

  .site-header {
    min-height: 78px;
  }

  .desktop-only,
  .brand-sticker {
    display: none;
  }

  .brand-bat {
    width: 40px;
    height: 37px;
  }

  .hero {
    padding-top: 58px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-note {
    justify-self: stretch;
    margin-inline: 12px;
  }

  .converter-shell {
    margin-bottom: 94px;
  }

  .converter-card {
    padding: 28px 17px 22px;
    border-radius: 20px 6px 20px 6px;
    box-shadow: 9px 9px 0 var(--shadow);
  }

  .converter-heading {
    align-items: center;
  }

  .privacy-stamp {
    width: 73px;
    height: 73px;
    font-size: .54rem;
  }

  .drop-zone {
    padding: 42px 13px;
  }

  .drop-title {
    font-size: 1.8rem;
  }

  .file-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .file-item > :last-child {
    grid-column: 2;
    justify-self: end;
  }

  .queue-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .hand-arrow {
    display: none;
  }

  .step-card,
  .truth-card {
    box-shadow: 7px 7px 0 var(--shadow);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
