@import url("/css/fonts.css"); /* ============================== CSS Variables —
Candy Brutalism ============================== */
:root {
  --yellow: #f5e642;
  --sky-blue: #6dc8f3;
  --pink: #f075c2;
  --mint: #3dd68c;
  --red: #e8302a;
  --amber: #f5a623;
  --cream: #fafae8;
  --light-blue: #d9edf7;
  --blush-pink: #f5c8e8;
  --black: #0d0d0d;
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Bricolage Grotesque", sans-serif;
  --border-std: 2px solid #0d0d0d;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-hard: 4px 4px 0px #0d0d0d;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
} /* ============================== Reset & Base
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
textarea {
  font-family: inherit;
}
.text-pdf-input {
  width: 100%;
  min-height: 220px;
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  background: var(--white);
} /*
============================== Shared Layout ============================== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
} /*
============================== Navbar ============================== */
.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 32px;
  min-height: 64px;
  background: var(--white);
  border-bottom: var(--border-std);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
}
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.logo-text {
  line-height: 1;
}
.pipe {
  color: #ccc;
  font-weight: 300;
  font-size: 20px;
}
.tagline {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.header-tools-nav {
  display: none;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .header-tools-nav {
    display: flex;
  }
}
.header-tool-shortcut {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.header-tool-shortcut:hover {
  background-color: var(--yellow);
  border-color: var(--black);
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--black);
}
.header-tool-shortcut:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
.nav-end {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
  width: 76px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.15;
  flex-direction: column;
}
.nav-link:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
} /* ============================== Hero
============================== */
.hero {
  background: var(--cream);
  padding: 28.74px 32px 0;
  border-bottom: var(--border-std);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}
.hero-content-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content-bottom {
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--mint);
  border: var(--border-std);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  grid-auto-rows: 1fr;
}
.hero-actions .cta-btn {
  width: 100%;
  height: 100%;
  justify-content: center;
  text-align: center;
} /* Homepage Hero Image */
.hero-visual {
  position: relative;
}
.homepage-hero-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  margin: 0 auto;
} /* ============================== How It Works
============================== */
.how-it-works {
  background: var(--white);
  border-bottom: var(--border-std);
  padding: 80px 0;
}
.section-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 48px;
}
.steps-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 18px;
  overflow: hidden;
  aspect-ratio: auto;
  padding: 30px 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 255, 255, 0.9)
    ),
    var(--white);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.1),
    0 10px 26px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.65),
    transparent 42%
  );
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.13),
    0 14px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.step-copy,
.step-visual {
  position: relative;
  z-index: 1;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(141, 101, 0, 0.95);
  background: rgba(255, 226, 106, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step-card-convert .step-num {
  color: #0870c9;
  background: rgba(124, 200, 255, 0.35);
}
.step-card-download .step-num {
  color: #009957;
  background: rgba(111, 230, 166, 0.35);
}
.step-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
  color: var(--black);
}
.step-body {
  max-width: none;
  font-size: 15px;
  line-height: 1.48;
  color: rgba(15, 23, 42, 0.66);
}
.step-visual {
  height: 220px;
  transform: scale(0.7);
  transform-origin: center center;
  width: 100%;
  perspective: 900px;
}
.visual-glow {
  position: absolute;
  width: 170px;
  height: 170px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.78;
}
.glow-yellow {
  background: radial-gradient(
    circle,
    rgba(255, 224, 93, 0.72),
    rgba(255, 224, 93, 0.16) 68%,
    transparent 70%
  );
}
.glow-blue {
  width: 190px;
  height: 190px;
  background: radial-gradient(
    circle,
    rgba(148, 208, 255, 0.62),
    rgba(148, 208, 255, 0.14) 68%,
    transparent 70%
  );
}
.glow-green {
  background: radial-gradient(
    circle,
    rgba(110, 231, 183, 0.62),
    rgba(110, 231, 183, 0.14) 68%,
    transparent 70%
  );
}
.file-3d,
.format-tile,
.download-tray {
  position: absolute;
  border-radius: 18px;
  transform-style: preserve-3d;
  box-shadow:
    0 18px 35px rgba(15, 23, 42, 0.18),
    inset 0 2px 2px rgba(255, 255, 255, 0.85);
}
.file-3d {
  width: 104px;
  height: 132px;
  left: 50%;
  top: 18px;
  transform: translateX(-50%) rotateX(8deg) rotateY(-8deg);
  background: linear-gradient(145deg, #fafdff, #dfe6ef);
  border: 1px solid rgba(127, 140, 158, 0.18);
}
.file-fold {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 38px;
  height: 38px;
  border-radius: 0 17px 0 12px;
  background: linear-gradient(145deg, #fff, #dfe7ee);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  box-shadow: -7px 7px 14px rgba(15, 23, 42, 0.1);
}
.file-line {
  position: absolute;
  left: 20px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8c2ce, #edf2f7);
}
.line-wide {
  top: 38px;
  width: 44px;
}
.line-short {
  top: 52px;
  width: 32px;
}
.file-badge,
.format-tile,
.mini-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.file-badge {
  position: absolute;
  left: 18px;
  bottom: 32px;
  width: 66px;
  height: 42px;
  border-radius: 9px;
  font-size: 26px;
}
.badge-red {
  color: #fff;
  background: linear-gradient(145deg, #ff8b91, #ef4855);
  box-shadow:
    0 8px 16px rgba(239, 72, 85, 0.28),
    inset 0 2px 2px rgba(255, 255, 255, 0.55);
}
.upload-arrow-3d {
  position: absolute;
  left: 50%;
  top: 126px;
  transform: translateX(-50%);
  color: #d98b04;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 10px 18px rgba(217, 139, 4, 0.28),
    0 2px 0 #ffd777;
}
.drop-target {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 176px;
  height: 76px;
  transform: translateX(-50%);
  border: 2px dashed rgba(15, 23, 42, 0.48);
  border-radius: 16px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 225, 102, 0.28),
    rgba(255, 255, 255, 0.55) 70%
  );
  box-shadow: inset 0 18px 30px rgba(255, 225, 102, 0.18);
}
.format-tile {
  top: 68px;
  width: 92px;
  height: 92px;
  font-size: 27px;
}
.tile-pdf {
  left: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ffe2e5, #ff8d95);
}
.tile-png {
  right: 12px;
  color: #fff;
  background: linear-gradient(145deg, #cfefff, #58aef4);
}
.swap-arrows {
  position: absolute;
  left: 50%;
  top: 98px;
  transform: translateX(-50%);
  z-index: 2;
  color: #138deb;
  font-size: 38px;
  font-weight: 900;
  text-shadow: 0 8px 14px rgba(19, 141, 235, 0.26);
}
.conversion-chips {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}
.conversion-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-weight: 900;
}
.chip-divider {
  width: 1px;
  height: 38px;
  background: rgba(15, 23, 42, 0.16);
}
.mini-badge {
  min-width: 44px;
  height: 28px;
  border-radius: 8px;
  font-size: 16px;
}
.mini-red {
  color: #dd3442;
  background: #ffe1e4;
}
.mini-blue {
  color: #0870c9;
  background: #dff0ff;
}
.mini-green {
  color: #12a86b;
  background: #dff8ea;
}
.success-file {
  top: 26px;
}
.success-check {
  position: absolute;
  left: 50%;
  top: 58px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(145deg, #5de69a, #16b86b);
  box-shadow:
    0 14px 24px rgba(22, 184, 107, 0.34),
    inset 0 2px 2px rgba(255, 255, 255, 0.55);
}
.download-tray {
  left: 50%;
  bottom: 16px;
  width: 154px;
  height: 66px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 45px;
  font-weight: 900;
  background: linear-gradient(145deg, #51df8d, #15b86b);
}
.download-tray span {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}
.sparkle,
.ray {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.sparkle::before {
  content: "✦";
  color: #78c6ff;
  font-size: 22px;
  text-shadow: 0 4px 12px rgba(120, 198, 255, 0.45);
}
.sparkle-a {
  right: 18px;
  top: 42px;
}
.sparkle-b {
  left: 14px;
  bottom: 64px;
  transform: scale(0.72);
}
.ray {
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: #f7bd30;
  box-shadow: 0 6px 14px rgba(247, 189, 48, 0.28);
}
.ray-a {
  right: 36px;
  top: 42px;
  transform: rotate(35deg);
}
.ray-b {
  right: 64px;
  top: 30px;
  transform: rotate(0deg);
}
.download-visual .ray {
  background: #39d98a;
}
.step-arrow {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  padding: 0 16px;
  flex-shrink: 0;
  align-self: center;
} /*
============================== Converter Sections ==============================
*/
.converter-section {
  border-bottom: var(--border-std);
  padding: 80px 0;
}
.converter-header {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.converter-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .converter-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 24px;
  }
  .converter-badge {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .converter-title {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
    width: auto;
  }
  .merge-result-illustration {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
  }
}
.converter-badge {
  display: inline-block;
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .converter-badge {
    margin-bottom: 0px;
  }
  .converter-title {
    margin-bottom: 0px;
  }
}
.converter-desc {
  font-size: 16px;
  color: #444;
  max-width: 560px;
  line-height: 1.6;
} /* ============================== Drop Zone
============================== */
.drop-zone {
  will-change: transform;
  background: var(--white);
  border: 2.5px dashed var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  position: relative;
}
.drop-zone:hover {
  background: var(--yellow);
  transform: scale(1.01);
}
.drop-zone.drag-over {
  background: var(--yellow);
  transform: scale(1.01);
  animation: pulse-shadow 1.5s ease-in-out infinite alternate;
}
.dz-upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: float-icon 2.5s ease-in-out infinite alternate;
}
.dz-headline {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.dz-subtext {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}
.dz-browse-btn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dz-formats {
  font-size: 12px;
  color: #888;
  font-weight: 500;
} /*
============================== Options Bar ============================== */
.options-bar {
  margin-top: 24px;
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
}
.option-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.opt-pill {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.1s ease,
    transform 0.15s ease-out,
    box-shadow 0.1s ease;
}
.opt-pill:hover {
  background: var(--cream);
}
.opt-pill:active {
  transform: scale(1.05);
}
.opt-pill.active {
  background: var(--black);
  color: var(--white);
} /* Color Pills */
.color-pill-black {
  color: #000;
  border-color: #000;
  font-weight: bold;
}
.color-pill-black.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.color-pill-blue {
  color: #0000ff;
  border-color: #0000ff;
  font-weight: bold;
}
.color-pill-blue.active {
  background: #0000ff;
  color: #fff;
  border-color: #0000ff;
}
.color-pill-red {
  color: #ff0000;
  border-color: #ff0000;
  font-weight: bold;
}
.color-pill-red.active {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.color-pill-green {
  color: #008000;
  border-color: #008000;
  font-weight: bold;
}
.color-pill-green.active {
  background: #008000;
  color: #fff;
  border-color: #008000;
}
.range-input {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  min-width: 200px;
}
.range-input:focus {
  box-shadow: 3px 3px 0 var(--black);
}
.option-group-page-numbering {
  min-width: 260px;
}
.page-number-position-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.position-card {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  width: 110px;
  padding: 8px;
  cursor: pointer;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease;
}
.position-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}
.position-card.active {
  background: var(--yellow);
}
.position-preview {
  display: block;
  position: relative;
  width: 100%;
  height: 62px;
  border: 1.5px solid var(--black);
  border-radius: 6px;
  background: var(--cream);
  margin-bottom: 8px;
}
.position-preview::after {
  content: "1";
  position: absolute;
  font-size: 11px;
  font-weight: 800;
  color: #444;
}
.position-bottom-right::after {
  right: 7px;
  bottom: 5px;
}
.position-top-right::after {
  right: 7px;
  top: 5px;
}
.position-bottom-center::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}
.position-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
} /* ============================== Preview Area
============================== */
.preview-area {
  margin-top: 24px;
}
.preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.preview-count {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  flex: 1;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.preview-page-card {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.preview-page-card canvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Watermark & Sign Navigation & Scope Prompt */
.wm-preview-wrapper {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.preview-nav-btn {
  background: var(--yellow);
  color: var(--black);
  border: var(--border-std);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  min-width: 44px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm, 2px 2px 0 var(--black));
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease;
  user-select: none;
  z-index: 5;
  flex-shrink: 0;
}
.preview-nav-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--black);
}
.preview-nav-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 1px 1px 0 var(--black);
}
.preview-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.wm-scope-prompt {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: var(--white);
  border: var(--border-std);
  box-shadow: 3px 3px 0 var(--black);
  border-radius: var(--radius-sm, 6px);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  max-width: calc(100% - 24px);
  width: max-content;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  animation: fadeInDown 0.15s ease-out;
}
.wm-scope-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wm-scope-btn {
  padding: 5px 10px;
  border: var(--border-std);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease;
  user-select: none;
}
.wm-scope-btn:hover {
  transform: translateY(-1px);
}
.wm-scope-btn:active {
  transform: translateY(0);
}
.wm-scope-btn-pri {
  background: var(--yellow);
  color: var(--black);
}
.wm-scope-btn-sec {
  background: #e2e8f0;
  color: var(--black);
}
.preview-page-label {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--cream);
  border-top: 1px solid var(--black);
  text-align: center;
} /* Image reorder grid
*/
.img-reorder-hint {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.img-thumb-card {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: grab;
  position: relative;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.img-thumb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}
.img-thumb-card.dragging {
  opacity: 0.5;
  cursor: grabbing;
}
.img-thumb-card.drag-target {
  box-shadow: 0 0 0 3px var(--pink);
}
.img-thumb-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.img-thumb-label {
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 600;
  border-top: 1px solid var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.img-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--red);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.img-thumb-num {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 800;
} /* ============================== Progress
============================== */
.progress-area {
  margin-top: 24px;
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 28px;
}
.progress-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.progress-track {
  background: #eee;
  border: var(--border-std);
  border-radius: 100px;
  height: 12px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--mint);
  border-radius: 100px;
  transition: width 0.25s ease;
  width: 0%;
} /* ==============================
Results ============================== */
.results-area {
  margin-top: 24px;
}
.results-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.results-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: var(--mint);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
}
.results-title {
  font-size: 16px;
  font-weight: 800;
  flex: 1;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.result-img-card {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.result-img-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}
.result-img-card img {
  width: 100%;
  height: auto;
  display: block;
}
.result-img-actions {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--black);
  background: var(--cream);
}
.result-img-label {
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.result-download-btn {
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
  flex-shrink: 0;
}
.result-download-btn.icon-btn {
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--black);
}
.img-result-info {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.text-box-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.text-box-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-blue);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--black);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease;
}
.text-box-copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 var(--black);
  background: var(--yellow);
}
.text-box-copy-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.text-box-copy-btn.copied {
  background: var(--mint);
}
.text-box-output {
  width: 100%;
  height: 320px;
  padding: 16px;
  padding-right: 56px;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Poppins", "Anek Devanagari", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  resize: vertical;
  box-sizing: border-box;
  display: block;
}
.reset-btn {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.12s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.reset-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
} /*
============================== CTA Buttons ============================== */
.cta-btn {
  will-change: transform;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
  text-decoration: none;
  color: var(--black);
  font-family: inherit;
}
.cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0 var(--black);
}
.cta-yellow {
  background: var(--yellow);
}
.cta-pink {
  background: var(--pink);
}
.cta-mint {
  background: var(--mint);
}
.cta-sky {
  background: var(--sky-blue);
} /* ============================== Trust Section
============================== */
.trust-section {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: var(--border-std);
}
.trust-inner {
  text-align: center;
}
.trust-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
}
.trust-marquee-container {
  overflow: hidden;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}
.trust-pills-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding-right: 10px;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.trust-marquee-container:hover .trust-pills-row {
  animation-play-state: paused;
}
.trust-pill {
  background: var(--white);
  border: var(--border-std);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}
.trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
  background: var(--sky-blue) !important;
}
.trust-pill:nth-child(4n + 1) {
  background: var(--yellow);
}
.trust-pill:nth-child(4n + 2) {
  background: var(--pink);
}
.trust-pill:nth-child(4n + 3) {
  background: var(--mint);
}
.trust-pill:nth-child(4n + 4) {
  background: var(--sky-blue);
} /*
============================== Footer ============================== */
.footer {
  background: var(--black);
  padding: 32px 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  margin-bottom: 24px;
}
.footer-brand-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-decoration: none;
  display: inline-block;
}
.footer-brand-logo:hover {
  color: var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px 48px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tools-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}
.footer-social-link:hover {
  transform: translateY(-2px);
}
.footer-social-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 2px 2px 0px #0d0d0d;
}
.footer-social-img.img-ig {
  background: #0d0d0d;
  padding: 0px;
  width: 29px;
  height: 29px;
  border-radius: 6px;
}
.footer-social-img.img-gmail {
  background: #ffffff;
  padding: 4px;
  width: 29px;
  height: 29px;
  border-radius: 6px;
} /*
============================== Toast Notifications
============================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--black);
  color: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-hard);
  animation: toast-in 0.2s ease;
  pointer-events: auto;
}
.toast.toast-success {
  border-left: 4px solid var(--mint);
}
.toast.toast-error {
  border-left: 4px solid var(--red);
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} /*
============================== Responsive ============================== */
@media (max-width: 1023px) {
  .hero-content-top {
    gap: 20px;
  }
  .hero-inner {
    gap: 32px;
    padding-bottom: 40px;
  }
  .homepage-hero-img {
    max-width: 400px;
  }
  .options-bar {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero-inner {
    padding-bottom: 10px;
  }
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
  .navbar {
    padding: 0 16px;
  }
  .nav-link,
  .header-tools-nav {
    display: none !important;
  }
  .section-inner {
    padding: 0 16px;
  }
  .hero {
    padding: 35px 16px 0;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
  .hero-headline {
    font-size: clamp(40px, 10vw, 56px);
  }
  .homepage-hero-img {
    max-width: 150%;
    width: 150%;
    margin-left: -20%;
    transform: translateY(-40px);
  }
  .hero-content-top {
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
  }
  .converter-section,
  .how-it-works,
  .trust-section {
    padding: 48px 0;
  }
  .drop-zone {
    padding: 40px 20px;
  }
  .preview-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
  }
  .cta-btn {
    justify-content: center;
  }
} /* ============================== Tools Grid
(Homepage) ============================== */
.tools-grid-section {
  background: var(--white);
  padding: 80px 0;
  border-bottom: var(--border-std);
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.tool-card {
  will-change: transform;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border: var(--border-std);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-decoration: none;
  color: var(--black);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.tool-card-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tool-card-icon-wrapper img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.tool-card:hover .tool-card-icon-wrapper img {
  transform: scale(1.05) rotate(2deg);
}
.tool-card-content {
  flex: 1;
}
.tool-card-arrow {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.tool-card-arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.tool-card:hover .tool-card-arrow {
  transform: translateX(4px);
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard);
}
.tool-card-badge {
  display: inline-block;
  border: var(--border-std);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tool-card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.tool-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.tool-page-main {
  padding: 80px 0;
  min-height: 70vh;
}
.tool-page-main .section-inner {
  padding-bottom: 72px;
}
@media (max-width: 767px) {
  .tool-page-main .section-inner {
    padding-bottom: 48px;
  }
}
.nav-link[aria-current="page"] {
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
} /*
============================== Tool Page SEO Content Sections
============================== */
.tool-content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
  border-top: var(--border-std);
}
.tool-content-section + .tool-content-section {
  padding-top: 48px;
}
.tcs-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--black);
}
.tcs-subheadline {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--black);
}
.tcs-body {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}
.tcs-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.tcs-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tcs-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border: var(--border-std);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcs-step-body {
  padding-top: 4px;
}
.tcs-step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tcs-step-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.tcs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.tcs-use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.tcs-use-case-card {
  background: var(--white);
  border: var(--border-std);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.tcs-use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}
.tcs-use-case-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.tcs-use-case-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.tcs-use-case-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
} /* FAQ */
.tcs-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: var(--border-std);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tcs-faq-item {
  border-bottom: var(--border-std);
  background: var(--white);
}
.tcs-faq-item:last-child {
  border-bottom: none;
}
.tcs-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.12s ease;
}
.tcs-faq-q:hover {
  background: var(--cream);
}
.tcs-faq-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.tcs-faq-item.open .tcs-faq-q::after {
  transform: rotate(45deg);
}
.tcs-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    padding 0.3s ease,
    border-top-color 0.3s ease;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  border-top: 1px solid transparent;
}
.tcs-faq-item.open .tcs-faq-a {
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 20px;
  border-top-color: #eee;
}
/* Privacy callout */
.tcs-privacy-box {
  background: var(--mint);
  border: var(--border-std);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tcs-privacy-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.tcs-privacy-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.tcs-privacy-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
}
@media (max-width: 767px) {
  .tool-content-section {
    padding: 48px 16px;
  }
  .tcs-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
} /* ============================== Related Tools Section
============================== */
.related-tools-section {
  border-top: var(--border-std);
  background: var(--white);
}
.related-tools-section .tool-content-section {
  border-top: none;
}
.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.12s ease;
}
.footer-link:hover {
  color: var(--yellow);
}
.footer-link[aria-current="page"] {
  color: var(--yellow);
}
@media (max-width: 767px) {
  .footer-container {
    padding: 0 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-tools-links {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px 16px;
  }
  .footer-inner {
    padding: 24px 20px 0;
  }
} /* ============================== Blog Post Pages
============================== */
.blog-post-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px;
}
.blog-post-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: var(--border-std);
}
.blog-post-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 16px;
}
.blog-post-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--black);
}
.blog-post-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--black);
}
.blog-post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.blog-post-body a:not(.blog-tools-cta-item, .blog-cta-box a, .tool-card) {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-body a:not(.blog-tools-cta-item, .blog-cta-box a, .tool-card):hover {
  background: var(--yellow);
}
.blog-post-body ul,
.blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-body li {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 6px;
}
.blog-cta-box {
  background: var(--yellow);
  border: var(--border-std);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 48px 0;
}
.blog-cta-box p {
  margin-bottom: 16px;
}
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .blog-post-main {
    padding: 48px 16px;
  }
} /* ============================== Product Hunt Badge
============================== */
.product-hunt-badge {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.product-hunt-badge img {
  width: clamp(140px, 20vw, 250px);
  height: auto;
  display: block;
} /*
============================== Footer Product Hunt Badge
============================== */
.footer-ph-badge {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
}
.footer-ph-badge img {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  border: none;
  box-shadow: none;
  background: transparent;
} /* ============================== GitHub Star Button
============================== */
.github-star-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px; /* Pill shape */
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.github-star-btn:hover {
  transform: translateY(-2px);
  background-color: #222222;
}
.github-star-text {
  line-height: 1;
}
.github-star-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .github-star-btn {
    display: none !important;
  }
} /* Merge
PDF Illustration */
.merge-result-illustration {
  display: block;
  width: 100%;
  max-width: 240px; /* Limit size */
  margin: 0 auto;
}
@media (min-width: 768px) {
  .merge-result-illustration {
    margin: 0;
  }
}
.merge-svg-scene {
  overflow: visible;
  display: block;
  width: 100%;
  height: auto;
}
.ambient-scene .anim-shape {
  transform-origin: center;
}
.ambient-scene .anim-float {
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .ambient-scene .shape-circle {
    animation: pulseScale 8s infinite alternate ease-in-out;
  }
  .ambient-scene .shape-blob {
    animation: driftRotate 12s infinite alternate ease-in-out;
    transform-origin: 100px 100px;
  }
  .ambient-scene .shape-triangle {
    animation: floatVertical 6s infinite alternate ease-in-out;
  }
  .ambient-scene .shape-small-circle {
    animation: pulseScale 5s infinite alternate ease-in-out;
  }
  .ambient-scene .float-1 {
    animation:
      floatVertical 4s infinite alternate ease-in-out,
      driftRotate 7s infinite alternate ease-in-out;
  }
  .ambient-scene .float-2 {
    animation:
      floatVertical 5s infinite alternate ease-in-out 1s,
      driftRotate 8s infinite alternate ease-in-out 0.5s;
  }
  .ambient-scene .float-3 {
    animation:
      floatVertical 4.5s infinite alternate ease-in-out 0.5s,
      driftRotate 6s infinite alternate ease-in-out 1s;
  }
  .ambient-scene .float-shield {
    animation:
      floatVertical 6s infinite alternate ease-in-out 2s,
      driftRotate 9s infinite alternate ease-in-out;
  }
  @keyframes floatVertical {
    0% {
      translate: 0px 0px;
    }
    100% {
      translate: 0px -10px;
    }
  }
  @keyframes driftRotate {
    0% {
      rotate: -3deg;
    }
    100% {
      rotate: 3deg;
    }
  }
  @keyframes pulseScale {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.05);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .ambient-scene * {
    animation: none !important;
  }
} /* Smooth Expansion
for Dynamic UI Sections */
.options-bar,
.preview-area,
.results-area {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  pointer-events: none;
  transition:
    max-height 0.35s cubic-bezier(0.2, 0, 0, 1),
    opacity 0.25s ease-out,
    margin 0.3s ease-out,
    padding 0.3s ease-out,
    border-width 0.3s ease-out;
}
.options-bar.is-visible,
.preview-area.is-visible,
.results-area.is-visible {
  max-height: 2000px;
  opacity: 1;
  margin-top: 24px;
  pointer-events: auto;
}

.results-area.is-visible {
  padding-bottom: 12px;
  padding-top: 4px;
}
.options-bar.is-visible {
  padding-top: 24px;
  padding-bottom: 24px;
  border-width: 2px;
}
@media (min-width: 768px) {
  .steps-row {
    align-items: stretch;
  }
} /* ============================== Blog Tools CTA (Try Now!)
============================== */
.blog-tools-cta {
  background: var(--cream);
  border: var(--border-std);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0;
}
.blog-tools-cta-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}
.blog-tools-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 480px) {
  .blog-tools-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-tools-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.15s ease;
}
.blog-tools-cta-item:hover {
  transform: translateY(-4px);
}
.blog-tools-cta-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-tools-cta-icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.blog-tools-cta-item:hover .blog-tools-cta-icon-wrapper img {
  transform: scale(1.05) rotate(2deg);
}
.blog-tools-cta-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  border: var(--border-std);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 1px 1px 0 var(--black);
}
.pill-mint {
  background: var(--mint);
}
.pill-pink {
  background: var(--pink);
}
.pill-blue {
  background: var(--sky-blue);
}
.pill-yellow {
  background: var(--yellow);
} /* ============================== Blog Explore More
============================== */
.blog-explore-more {
  margin-top: 64px;
  padding-top: 48px;
  border-top: var(--border-std);
}
.blog-explore-more h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ==============================
   Blog Tools CTA (Try Now!)
   ============================== */
.blog-tools-cta {
  background: var(--cream);
  border: var(--border-std);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0;
}

.blog-tools-cta-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
}

.blog-tools-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 480px) {
  .blog-tools-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-tools-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.15s ease;
}

.blog-tools-cta-item:hover {
  transform: translateY(-4px);
}

.blog-tools-cta-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-tools-cta-icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.blog-tools-cta-item:hover .blog-tools-cta-icon-wrapper img {
  transform: scale(1.05) rotate(2deg);
}

.blog-tools-cta-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  border: var(--border-std);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 1px 1px 0 var(--black);
}

.pill-mint {
  background: var(--mint);
}
.pill-pink {
  background: var(--pink);
}
.pill-blue {
  background: var(--sky-blue);
}
.pill-yellow {
  background: var(--yellow);
}

/* ==============================
   Blog Explore More
   ============================== */
.blog-explore-more {
  margin-top: 64px;
  padding-top: 48px;
  border-top: var(--border-std);
}

.blog-explore-more h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}
