:root {
  --bg: #fffcf8;
  --ink: #090909;
  --muted: #5d6575;
  --line: #e8e2dc;
  --green: #cfff33;
  --mint: #dfffcb;
  --violet: #8b5cff;
  --blue: #4678ff;
  --peach: #ff765f;
  --page-gutter: clamp(22px, 5vw, 72px);
  --page-width: min(1200px, calc(100% - var(--page-gutter) * 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 74% 7%, rgba(171, 91, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 26%, rgba(255, 236, 199, 0.8), transparent 28%),
    var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: var(--page-width);
  margin: 0 auto;
  padding: 22px 0 14px;
}

.brand,
.site-nav,
.header-actions {
  animation: fadeDown 600ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 26px;
  font-weight: 800;
}

.brand span span {
  color: #ff633d;
}

.spark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
  font-size: 20px;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
  font-weight: 600;
}

.header-actions {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  background: #090909;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.menu-button {
  display: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(350px, 430px) minmax(560px, 1fr);
  align-items: start;
  column-gap: clamp(18px, 2vw, 30px);
  row-gap: clamp(10px, 1.4vw, 20px);
  width: min(1080px, calc(100% - var(--page-gutter) * 2));
  margin: 0 auto;
  padding: 34px 0 34px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 34px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #222;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 500px;
  margin-bottom: 24px;
  font-size: clamp(56px, 5.4vw, 84px);
  line-height: 0.95;
  font-weight: 800;
}

h1 span,
.why h2 span {
  background: linear-gradient(100deg, #ff765f, #c24eea 48%, #4678ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-support {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1fr);
  align-items: center;
  column-gap: clamp(44px, 6vw, 98px);
  row-gap: 18px;
  margin-top: 0;
}

.hero-support p {
  max-width: 620px;
  margin: 0;
  color: #252832;
  font-size: 20px;
  line-height: 1.55;
}

.hero-copy strong {
  color: #396aff;
  font-weight: 600;
}

.upload-proof-row {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 18px;
  text-align: center;
}

.works-with {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  font-size: 17px;
}

.works-with strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  color: var(--ink);
}

.works-with em {
  color: #b9b0aa;
  font-style: normal;
}

.works-with img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  max-width: none;
  padding-top: 0;
}

.feature-chips div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-chips span,
.why-grid span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
}

.feature-chips strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.feature-chips span {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  filter: drop-shadow(0 6px 10px rgba(24, 24, 24, 0.07));
}

.feature-chips img,
.why-grid span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.upload-card {
  position: relative;
  transform: none;
  margin-top: -6px;
}

.upload-inner {
  min-height: 470px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 34%, rgba(207, 255, 51, 0.09), transparent 24%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 34px 90px rgba(58, 44, 32, 0.12);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.upload-inner:hover {
  border-color: rgba(9, 9, 9, 0.22);
  box-shadow: 0 34px 90px rgba(58, 44, 32, 0.14), 0 0 0 5px rgba(207, 255, 51, 0.08);
}

.upload-inner::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px dashed #d8d0ca;
  border-radius: 22px;
  pointer-events: none;
}

.upload-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: #0b0b0b;
  color: var(--green);
  font-size: 42px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.upload-icon::before,
.upload-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(139, 92, 255, 0.16);
  background: transparent;
  opacity: 1;
  transform: rotate(8deg);
  z-index: -1;
}

.upload-icon::after {
  inset: -15px;
  border-color: rgba(207, 255, 51, 0.16);
  transform: rotate(-10deg);
}

.upload-inner h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.upload-inner p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
}

.choose-button,
.lime-button {
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.choose-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  margin-bottom: 22px;
  padding: 0 70px;
  border-radius: 12px;
  background: #0c0c0d;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.upload-inner small {
  color: #747b8d;
  font-size: 16px;
}

.hand-note {
  position: static;
  width: max-content;
  margin: 0 auto 16px;
  font-family: Kalam, cursive;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  color: #252832;
}

.cleaner-workbench {
  width: var(--page-width);
  margin: 88px auto 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 80px rgba(43, 31, 18, 0.1);
  backdrop-filter: blur(18px);
}

.cleaner-workbench[hidden] {
  display: none;
}

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

.workbench-kicker {
  display: block;
  margin-bottom: 8px;
  color: #79808e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workbench-head h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 2.4vw, 36px);
}

.workbench-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.workbench-status,
.detected-platform,
.plan-badge {
  min-width: 0;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
}

.workbench-status,
.detected-platform {
  display: none;
}

.workbench-status strong,
.detected-platform strong,
.plan-badge strong {
  display: inline;
  margin-bottom: 0;
  font-size: 14px;
}

.workbench-status span,
.detected-platform span,
.plan-badge span {
  display: inline;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.workbench-status.is-ready,
.detected-platform.is-ready,
.plan-badge.is-pro {
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(207, 255, 51, 0.38);
}

.workbench-status.is-warning,
.detected-platform.is-warning {
  background: #241f12;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 92, 0.4);
}

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

.single-workspace[hidden],
.batch-workspace[hidden] {
  display: none;
}

.preview-panel {
  min-width: 0;
}

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 40px;
  color: #171717;
  font-size: 14px;
  font-weight: 800;
}

.panel-bar button,
.panel-bar a {
  border: 0;
  background: transparent;
  color: #4b5260;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.panel-bar a {
  color: #111;
}

.canvas-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 18px;
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0.035) 25%, transparent 25% 75%, rgba(0, 0, 0, 0.035) 75%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.035) 25%, transparent 25% 75%, rgba(0, 0, 0, 0.035) 75%),
    #f8f5ef;
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  overflow: hidden;
}

.canvas-stage canvas {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  display: block;
}

.watermark-box {
  position: absolute;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: rgba(207, 255, 51, 0.12);
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.18);
  cursor: move;
  pointer-events: auto;
  touch-action: none;
}

.watermark-box::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  border-radius: 0 0 8px 0;
}

.empty-output {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #737987;
  font-size: 14px;
  text-align: center;
}

.empty-output.is-hidden {
  display: none;
}

.workbench-controls {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.workbench-controls label {
  display: grid;
  gap: 8px;
  color: #343842;
  font-size: 12px;
  font-weight: 800;
}

.workbench-controls select,
.workbench-controls input[type="range"] {
  min-height: 44px;
  accent-color: var(--green);
}

.workbench-controls select {
  min-width: 160px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.primary-action,
.secondary-action {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
}

.primary-action {
  background: var(--green);
  color: #111;
}

.secondary-action {
  background: #101010;
  color: #fff;
}

.primary-action:disabled,
.secondary-action:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.workbench-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.ad-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed rgba(9, 9, 9, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  color: #171717;
}

.ad-slot[hidden] {
  display: none;
}

.ad-slot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-slot strong {
  flex: 1;
  font-size: 14px;
}

.ad-slot button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pricing-section {
  width: var(--page-width);
  margin: 62px auto 72px;
}

.pricing-copy h2 {
  margin-bottom: 16px;
  max-width: 700px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}

.pricing-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pricing-points {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-top: 26px;
}

.pricing-points span {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 15px;
}

.pricing-points strong {
  color: #111;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(43, 31, 18, 0.1);
  backdrop-filter: blur(18px);
}

.pricing-page-block {
  width: 100%;
  margin: 0;
}

.batch-workspace {
  display: block;
}

.batch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 18px;
}

.batch-panel {
  min-width: 0;
}

.batch-panel .panel-bar {
  margin-bottom: 16px;
}

.batch-list,
.batch-export {
  height: clamp(300px, 40vh, 500px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf7;
}

.batch-list {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  overflow: auto;
}

.batch-export {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
}

.batch-export strong {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.batch-export span {
  max-width: 390px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.batch-progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece7df;
}

.batch-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 260ms ease;
}

.batch-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.batch-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.batch-thumb {
  display: block;
  width: 56px;
  height: 52px;
  border-radius: 10px;
  background: #111;
  overflow: hidden;
}

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

.batch-file-main {
  display: grid;
  min-width: 0;
  gap: 2px;
}

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

.batch-item strong {
  color: #111;
  font-size: 13px;
}

.batch-item small {
  color: var(--muted);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.batch-item button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #4b5260;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.add-images-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: #111 !important;
  color: var(--green) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.batch-item.cleaned strong {
  color: #4f7717;
}

.batch-item.failed strong {
  color: #a93124;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 390px);
  gap: clamp(32px, 5vw, 76px);
  align-items: stretch;
  padding: 0;
}

.pricing-card {
  display: grid;
  align-content: center;
  padding: 28px;
  background: #080808;
  color: #fff;
}

.footer-brand {
  font-size: 22px;
}

.pricing-card > div {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.pricing-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card strong {
  font-size: clamp(64px, 7vw, 92px);
  line-height: 0.9;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-row s,
.modal-price-row s {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  text-decoration-thickness: 3px;
}

.pricing-card small {
  color: var(--green);
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-card li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
}

.pricing-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.faq-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  width: var(--page-width);
  margin: 0 auto 72px;
  padding-top: 10px;
}

.faq-strip h2 {
  max-width: 520px;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.faq-list summary {
  cursor: pointer;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.difference {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  width: var(--page-width);
  margin: 94px auto 0;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 26%, rgba(207, 255, 51, 0.12), transparent 22%),
    radial-gradient(circle at 92% 72%, rgba(139, 92, 255, 0.14), transparent 22%),
    #080808;
  color: #fff;
  overflow: hidden;
}

.difference-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.08;
}

.difference-copy h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.95;
}

.difference-copy p {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.compare-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  aspect-ratio: 2.92 / 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  overflow: hidden;
}

.compare-side {
  position: relative;
  overflow: hidden;
}

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

.compare-side.before img {
  filter: saturate(0.72) brightness(0.76);
}

.compare-side.after img {
  left: 0;
}

.compare-side b {
  position: absolute;
  top: 18px;
  z-index: 3;
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(9, 9, 9, 0.68);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.compare-side.before b {
  left: 20px;
}

.compare-side.after b {
  right: 20px;
  background: var(--green);
  color: #111;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.why {
  width: var(--page-width);
  margin: 0 auto;
  padding: 64px 0 74px;
  text-align: center;
}

.why h2 {
  margin-bottom: 34px;
  font-size: clamp(30px, 3vw, 44px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.why-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.why-grid article:last-child {
  border-right: 0;
}

.why-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(24, 24, 24, 0.07));
}

.why-text {
  max-width: 220px;
  margin: 0 auto;
}

.why-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 16px;
}

.why-grid p {
  position: relative;
  z-index: 1;
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  width: var(--page-width);
  min-height: 318px;
  margin: 0 auto 36px;
  padding: 44px clamp(46px, 6vw, 82px);
  border-radius: 34px;
  background: #080808;
  color: #fff;
  overflow: hidden;
}

.cta-logo-visual {
  width: 100%;
  height: 250px;
  border-radius: 22px;
  object-fit: cover;
  object-position: 8% center;
  mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
}

.platform-orbit {
  position: relative;
  min-height: 230px;
}

.orbit-line {
  position: absolute;
  left: -4%;
  right: 4%;
  top: 42%;
  height: 88px;
  border: 3px solid transparent;
  border-radius: 50%;
  transform: rotate(8deg);
}

.orbit-line.purple {
  border-top-color: #8f5cff;
}

.orbit-line.lime {
  top: 52%;
  border-bottom-color: var(--green);
  transform: rotate(10deg);
}

.source-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.source-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.source-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
  transform: rotate(-7deg);
}

.source-card.gemini {
  left: 5%;
  top: 6px;
  transform: rotate(-13deg);
}

.cta-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
  font-weight: 500;
}

.cta-copy em {
  color: var(--green);
  font-family: Kalam, cursive;
  font-style: normal;
}

.cta-copy p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lime-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 292px;
  min-height: 56px;
  margin: 0;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--green);
  color: #101010;
  font-size: 15px;
  text-decoration: none;
}

.rating {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.faces {
  display: flex;
  grid-row: span 2;
}

.faces span {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  border: 2px solid #080808;
  border-radius: 50%;
  background-image: var(--face);
  background-size: cover;
  background-position: center;
}

.faces span:first-child {
  margin-left: 0;
}

.rating strong {
  color: #fff;
  font-size: 12px;
}

.rating small,
.trust-line {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

.trust-line {
  margin-top: 16px;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(620px, 1.25fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  width: var(--page-width);
  margin: 0 auto 28px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  max-width: 360px;
  margin: 12px 0 0;
  line-height: 1.6;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
}

.footer-columns nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns strong {
  color: #7a8190;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-columns a {
  color: #111;
  font-weight: 800;
}

.footer-email,
.language-nav span {
  display: inline-flex;
  color: #111;
  font-weight: 800;
}

.footer-email {
  margin-top: 12px;
}

.language-nav span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.site-footer > nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, max-content));
  gap: 10px 22px;
  color: #111;
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
  justify-self: start;
  color: #7a8190;
}

.upgrade-modal {
  width: min(520px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #080808;
  color: #fff;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

.upgrade-modal::backdrop {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.modal-body {
  padding: 42px;
}

.modal-body h2 {
  max-width: 380px;
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}

.modal-body p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.modal-price {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.modal-price strong {
  font-size: 74px;
  line-height: 0.9;
}

.modal-price span {
  color: var(--green);
  font-weight: 900;
}

.checkout-button {
  width: 100%;
  justify-content: space-between;
  margin-bottom: 16px;
}

.restore-purchase {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.restore-purchase summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.restore-purchase[open] summary {
  margin-bottom: 14px;
}

.restore-button {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.license-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.license-field input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  outline: 0;
}

.license-field input:focus {
  border-color: rgba(207, 255, 51, 0.72);
}

.checkout-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 800;
}

.modal-body small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.content-page {
  width: min(900px, calc(100% - var(--page-gutter) * 2));
  margin: 58px auto 88px;
}

.content-page header {
  margin-bottom: 34px;
}

.content-page h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 82px);
}

.content-page .lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.content-page section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.content-page h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.content-page h3 {
  margin: 22px 0 8px;
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.content-page a {
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.guide-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0;
}

.guide-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.guide-visual figcaption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
  padding-top: 0;
}

.article-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.article-grid h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.upload-card.reveal.is-visible {
  transform: none;
}

.upload-card.is-dragging .upload-inner {
  border-color: rgba(139, 92, 255, 0.7);
  box-shadow: 0 34px 90px rgba(58, 44, 32, 0.12), 0 0 0 5px rgba(139, 92, 255, 0.1);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .header-actions {
    grid-column: 2;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-nav.is-open {
    position: absolute;
    z-index: 20;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.96);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.12);
  }

  .site-nav.is-open a {
    padding: 12px 10px;
  }

  .hero,
  .final-cta,
  .pricing-section,
  .faq-strip {
    grid-template-columns: 1fr;
  }

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

  .upload-card {
    transform: rotate(0);
  }

  .upload-card.reveal.is-visible {
    transform: rotate(0);
  }

  .difference {
    grid-template-columns: 1fr;
    width: min(920px, calc(100% - 40px));
  }

  .cleaner-workbench {
    width: min(920px, calc(100% - 40px));
  }

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

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .why-grid article:nth-child(even) {
    border-right: 0;
  }

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

  .footer-columns {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .article-grid,
  .guide-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100vw;
    padding: 18px;
    overflow: hidden;
  }

  .header-actions {
    position: absolute;
    top: 18px;
    right: 18px;
    margin-left: 0;
  }

  .brand {
    font-size: 21px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
  }

  .site-nav.is-open {
    top: 74px;
    left: 18px;
    right: 18px;
  }

  .hero {
    padding: 34px 18px 28px;
    row-gap: 28px;
    width: 100vw;
    overflow: hidden;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1;
  }

  .hero-copy > p {
    max-width: 330px;
    font-size: 17px;
  }

  .feature-chips {
    justify-content: flex-start;
    gap: 16px;
  }

  .upload-inner {
    min-height: 430px;
    padding: 26px;
  }

  .upload-inner::before {
    inset: 24px;
  }

  .choose-button {
    width: 100%;
    justify-content: center;
    padding: 0 22px;
  }

  .hand-note {
    position: static;
    margin: 18px 0 0;
  }

  .difference {
    width: calc(100% - 24px);
    margin-top: 46px;
    padding: 28px 18px;
    border-radius: 28px;
  }

  .cleaner-workbench {
    width: calc(100% - 24px);
    margin-top: 52px;
    padding: 20px 14px;
    border-radius: 22px;
  }

  .workbench-head {
    display: grid;
    gap: 16px;
  }

  .workbench-status,
  .detected-platform,
  .plan-badge {
    min-width: 0;
  }

  .canvas-stage {
    min-height: 240px;
  }

  .workbench-controls {
    display: grid;
    align-items: stretch;
  }

  .workbench-controls select,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .compare-frame {
    grid-template-columns: 1fr;
    min-height: 580px;
    aspect-ratio: auto;
  }

  .compare-side img {
    width: 100%;
  }

  .compare-side.after img {
    left: 0;
    right: auto;
  }

  .compare-divider {
    display: none;
  }

  .why {
    padding: 48px 18px;
  }

  .pricing-section {
    width: calc(100% - 24px);
    margin-top: 48px;
  }

  .faq-strip,
  .content-page {
    width: calc(100% - 24px);
  }

  .ad-slot {
    display: grid;
  }

  .batch-actions {
    display: grid;
  }

  .batch-actions button {
    width: 100%;
  }

  .modal-body {
    padding: 34px 24px;
  }

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

  .why-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 18px 28px;
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .final-cta {
    width: calc(100% - 24px);
    margin: 0 auto 24px;
    padding: 42px 24px;
    border-radius: 28px;
  }

  .platform-orbit {
    min-height: 230px;
  }

  .cta-logo-visual {
    height: 230px;
    object-position: 13% center;
    mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  }

  .source-card {
    width: 132px;
    height: 132px;
  }

  .source-card.gemini {
    left: 2%;
  }

  .lime-button {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 18px 34px;
  }

  .footer-columns,
  .site-footer > nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer small {
    justify-self: start;
  }
}
