:root {
  --frame-width: 1440px;
  --multimedia-height: 1304px;
  --case-study-height: 660px;
  --system-section-height: 360px;
  --case-study-stack-height: calc(var(--case-study-height) + var(--system-section-height));
  --creator-grid-width: 980px;
  --creator-section-height: calc((((min((100vw - (2 * var(--section-x))), var(--creator-grid-width)) - 32px) / 3) * 4.8) + 356px);
  --store-setup-height: 620px;
  --results-parent-height: var(--creator-section-height);
  --frame-height: calc(var(--hero-height) + var(--case-study-stack-height) + var(--results-parent-height) + var(--store-setup-height));
  --hero-height: 1010px;
  --card-width: 390px;
  --card-height: 405px;
  --card-copy-x: 20px;
  --card-copy-bottom: 20px;
  --card-title-size: 16px;
  --card-body-size: 16px;
  --card-copy-line: 22px;
  --card-label-size: 12px;
  --card-label-top: 14px;
  --card-label-x: 14px;
  --card-radius: 12.444px;
  --section-x: 64px;
  --white-soft: rgba(255, 255, 255, 0.5);
  --ink: #302c28;
  --muted: #6f6a64;
  --paper: #fbfaf7;
  --paper-soft: #fffdfa;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #050505;
}

body {
  display: grid;
  place-items: start center;
  color: #fff;
  font-family: Inter, Geist, Arial, sans-serif;
}

.figma-frame {
  position: relative;
  width: 100%;
  min-width: 320px;
  max-width: var(--frame-width);
  height: var(--frame-height);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.hero-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
  isolation: isolate;
  background: #f7f7f7;
}

.background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: none;
}

.background-base {
  image-rendering: auto;
  filter: saturate(0.8) brightness(1.08);
  opacity: 0.92;
}

.background-overlay-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  display: none;
}

.background-overlay {
  position: absolute;
  top: -0.59%;
  left: 0;
  width: 100%;
  height: 122.54%;
  object-fit: fill;
  filter: saturate(0.78) brightness(1.12) contrast(0.9);
  opacity: 0.9;
}

.hero-stage::before {
  position: absolute;
  top: -770px;
  left: 50%;
  z-index: 0;
  width: 2350px;
  height: 1540px;
  content: "";
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 126, 24, 1) 0 25%, rgba(255, 141, 60, 0.98) 39%, rgba(249, 136, 123, 0.9) 52%, rgba(220, 151, 205, 0.82) 66%, rgba(151, 130, 218, 0.66) 78%, rgba(178, 221, 255, 0.52) 87%, transparent 94%),
    radial-gradient(ellipse at 68% 20%, rgba(255, 111, 31, 0.86), transparent 48%),
    radial-gradient(ellipse at 29% 30%, rgba(191, 160, 232, 0.78), transparent 56%),
    radial-gradient(ellipse at 50% 62%, rgba(205, 231, 255, 0.64), transparent 58%);
  filter: blur(26px) brightness(1.02) contrast(0.9) saturate(1.45);
  pointer-events: none;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(ellipse at 50% 17%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(247, 247, 247, 0) 0 64%, rgba(247, 247, 247, 0.62) 84%, #f7f7f7 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: 102px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 600px;
  height: 362px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.copy-stack {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

h1 {
  margin: 0;
  width: 100%;
  font-family: "PP Agrandir Text", "PP Agrandir", "Arial Black", Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.6px;
  text-shadow: 0 1px 16px rgba(90, 31, 12, 0.08);
}

.copy-stack p {
  margin: 0;
  width: 100%;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.whatsapp-link {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.02);
  color: #171412;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.showcase-row {
  position: absolute;
  top: 525px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px 18px;
  transform: translateX(-50%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-row::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  position: relative;
  flex: 0 0 var(--card-width);
  width: var(--card-width);
  height: var(--card-height);
  margin: 0;
  scroll-snap-align: center;
}

.hero-upscale-card {
  min-height: 0;
  grid-column: auto;
  border-radius: 20px;
}

.hero-upscale-card .media-label {
  top: var(--card-label-top);
  font-size: var(--card-label-size);
}

.hero-upscale-card .media-label-input {
  left: var(--card-label-x);
}

.hero-upscale-card .media-label-output {
  right: var(--card-label-x);
}

.hero-upscale-card .media-card-copy {
  padding: 0 var(--card-copy-x) var(--card-copy-bottom);
}

.hero-upscale-card .media-card-copy h3 {
  font-size: var(--card-title-size);
  line-height: var(--card-copy-line);
}

.hero-upscale-card .media-card-copy p {
  font-size: var(--card-body-size);
  font-weight: 400;
  line-height: var(--card-copy-line);
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position, 50%)) 0 0);
}

.comparison-label {
  position: absolute;
  top: var(--card-label-top);
  z-index: 7;
  display: inline-flex;
  height: 22px;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: var(--card-label-size);
  font-weight: 500;
  line-height: 16px;
  text-transform: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.comparison-label-before {
  left: var(--card-label-x);
}

.comparison-label-after {
  right: var(--card-label-x);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 50%);
  z-index: 6;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(45deg, transparent 45%, rgba(80, 80, 80, 0.72) 47% 54%, transparent 56%) 7px 50% / 8px 8px no-repeat,
    linear-gradient(-135deg, transparent 45%, rgba(80, 80, 80, 0.72) 47% 54%, transparent 56%) 14px 50% / 8px 8px no-repeat,
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 28px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(10px);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-copy {
  position: absolute;
  right: var(--card-copy-x);
  bottom: var(--card-copy-bottom);
  left: var(--card-copy-x);
  z-index: 7;
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  pointer-events: none;
}

.comparison-copy h3 {
  margin: 0;
  color: #fff;
  font-size: var(--card-title-size);
  font-weight: 500;
  line-height: var(--card-copy-line);
  letter-spacing: 0;
}

.comparison-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: var(--card-body-size);
  font-weight: 400;
  line-height: var(--card-copy-line);
  letter-spacing: 0;
}

.comparison-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 38%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.rest-sections {
  position: absolute;
  top: var(--hero-height);
  left: 0;
  width: min(100vw, var(--frame-width));
  height: 1662px;
  color: var(--ink);
}

.case-study-section {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: min(100vw, var(--frame-width));
  height: var(--case-study-height);
  margin-left: 0;
  flex-direction: column;
  align-items: center;
  padding: 56px var(--section-x) 48px;
  gap: 34px;
  background: #fff;
}

.case-study-section-copy {
  top: var(--system-section-height);
  width: 100%;
  height: auto;
  min-height: 0;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f7f7f7;
}

.values-section {
  width: 100%;
  height: var(--system-section-height);
  margin-left: 0;
  justify-content: flex-start;
  padding: 0 var(--section-x);
  gap: 32px;
  background: #f7f7f7;
  border-radius: 0;
}

.values-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #0b0b0b;
  font-family: Geist, Inter, Arial, sans-serif;
  text-align: center;
}

.values-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0;
}

.values-heading p {
  margin: 0;
  color: #050505;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.values-grid {
  display: grid;
  width: 1040px;
  max-width: calc(100% - 32px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-card {
  min-height: 136px;
  padding: 36px 32px 30px;
  border-radius: 28px;
  background: #fff;
  color: #111;
  font-family: Geist, Inter, Arial, sans-serif;
}

.value-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-card-title svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.value-card-title svg circle,
.value-card-title svg path {
  fill: none;
  stroke: #090909;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0;
  color: #121212;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.value-card p {
  margin: 16px 0 0;
  color: rgba(8, 8, 8, 0.62);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
}

.results-parent {
  position: absolute;
  top: var(--case-study-stack-height);
  left: 0;
  width: min(100vw, var(--frame-width));
  height: var(--results-parent-height);
  margin-left: 0;
  padding: 0;
  overflow: visible;
}

.results-panel {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: #000;
}

.creator-section {
  position: relative;
  display: flex;
  width: 100%;
  height: var(--creator-section-height);
  padding: 120px var(--section-x);
  gap: 56px;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: #fff;
}

.creator-heading {
  display: flex;
  width: 672px;
  max-width: calc(100% - 48px);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.creator-heading h2 {
  margin: 0;
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0;
}

.creator-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0;
}

.creator-grid {
  columns: 3 0;
  width: var(--creator-grid-width);
  max-width: 100%;
  column-gap: 16px;
}

.creator-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 24px;
  background: #f5f3f1;
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  text-align: center;
  isolation: isolate;
}

.creator-card h3 {
  display: none;
}

.creator-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
}

.store-setup-section {
  position: absolute;
  top: calc(var(--case-study-stack-height) + var(--results-parent-height));
  left: 0;
  display: flex;
  width: min(100vw, var(--frame-width));
  height: var(--store-setup-height);
  margin-left: 0;
  align-items: center;
  justify-content: center;
  padding: 72px var(--section-x) 96px;
  background: #000;
  color: #fff;
}

.store-setup-card {
  position: relative;
  display: flex;
  width: min(100%, 1180px);
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 80% 88%, rgba(156, 117, 124, 0.54), transparent 36%),
    radial-gradient(ellipse at 30% 92%, rgba(139, 91, 66, 0.48), transparent 42%),
    radial-gradient(ellipse at 38% 44%, rgba(94, 72, 84, 0.34), transparent 42%),
    linear-gradient(180deg, #1d1d1f 0%, #171717 46%, #2a2729 100%);
  font-family: Geist, Inter, Arial, sans-serif;
  text-align: center;
}

.store-setup-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 640px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.store-setup-card h2 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0;
}

.store-setup-card p {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.store-setup-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 164px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: #080808;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  letter-spacing: 0;
}

.jasper-system-section {
  height: var(--system-section-height);
  justify-content: center;
  padding: 70px 100px;
  gap: 46px;
  background: #f7f4ee;
}

.section-return-title {
  margin: 0;
  color: #050414;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0;
  text-align: center;
}

.jasper-system-heading {
  display: grid;
  width: 1080px;
  max-width: 100%;
  grid-template-columns: 0.95fr 1.05fr;
  column-gap: 92px;
  align-items: end;
  color: #221f1c;
  font-family: Geist, Inter, Arial, sans-serif;
}

.jasper-system-eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: rgba(34, 31, 28, 0.62);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0;
}

.jasper-system-heading h2 {
  margin: 0;
  max-width: 500px;
  color: #221f1c;
  font-size: 54px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0;
}

.jasper-system-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.jasper-system-copy p {
  margin: 0;
  color: rgba(34, 31, 28, 0.76);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
}

.jasper-system-copy strong {
  color: #221f1c;
  font-weight: 500;
}

.jasper-system-grid {
  display: grid;
  width: 1080px;
  max-width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(34, 31, 28, 0.18);
  border-radius: 24px;
  background: #eee9df;
}

.jasper-system-card {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 24px 30px;
  background: #eee9df;
  color: #221f1c;
  font-family: Geist, Inter, Arial, sans-serif;
}

.jasper-system-card + .jasper-system-card {
  border-left: 1px solid rgba(34, 31, 28, 0.14);
}

.jasper-system-card h3 {
  margin: 0 0 72px;
  color: #221f1c;
  font-size: 25px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: 0;
}

.jasper-system-card p {
  margin: auto 0 0;
  color: rgba(34, 31, 28, 0.72);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
}

.case-study-grid {
  display: grid;
  width: 940px;
  max-width: 100%;
  grid-template-columns: 30% 1fr;
  gap: 4px;
}

.case-study-heading {
  width: 520px;
}

.case-study-portrait,
.case-study-quote {
  min-height: 340px;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-portrait {
  background: #cdb49e;
}

.case-study-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 42px;
  background: #34332f;
  color: #f8f4ed;
  font-family: Geist, Inter, Arial, sans-serif;
}

.case-study-quote blockquote {
  margin: 0;
  max-width: 460px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: 0;
}

.case-study-attribution {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.case-study-logo {
  width: auto;
  height: 32px;
  filter: brightness(0) invert(1);
}

.case-study-quote p {
  margin: 0;
  color: #f8f4ed;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.brand-grid {
  display: flex;
  width: 100%;
  gap: 10px;
}

.brand-tile {
  position: relative;
  flex: 1 0 0;
  height: 100px;
  min-width: 1px;
  overflow: hidden;
  border: 1px solid rgba(180, 170, 160, 0.34);
  background: var(--paper-soft);
}

.brand-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.create-section,
.multimedia-section,
.how-section {
  display: flex;
  width: 1269px;
  flex-direction: column;
  align-items: center;
  padding: 70px 64px;
}

.create-section {
  align-self: flex-start;
  width: min(100vw, var(--frame-width));
  margin-left: -85px;
  gap: 80px;
}

.how-section {
  align-self: flex-start;
  width: min(100vw, var(--frame-width));
  margin-left: -85px;
  gap: 72px;
  background: #fff;
}

.multimedia-section {
  align-self: flex-start;
  width: min(100vw, var(--frame-width));
  height: var(--multimedia-height);
  margin-left: -85px;
  gap: 126px;
  padding: 120px 64px 40px;
  background: #f7f7f5;
  color: #050505;
}

.create-heading {
  display: flex;
  width: 600px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 56px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(16, 13, 8, 0.08);
  color: #050414;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.create-heading h2,
.multimedia-heading h2,
.how-section h2 {
  margin: 0;
  color: #050414;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: 0;
  text-align: center;
}

.multimedia-heading {
  display: flex;
  width: 800px;
  max-width: calc(100% - 48px);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.multimedia-heading h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
}

.multimedia-heading p {
  width: 760px;
  max-width: 100%;
  margin: 0;
  color: #050505;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.multimedia-grid {
  display: grid;
  width: 1118px;
  max-width: 100%;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.media-feature,
.media-small-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #efede9;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.075);
}

.media-feature {
  display: flex;
  min-height: 572px;
  grid-column: span 3;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.showcase-row .hero-upscale-card {
  height: var(--card-height);
  min-height: var(--card-height);
}

.media-feature-dark {
  background: #111827;
}

.media-compare {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.media-compare-input {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position, 50%)) 0 0);
}

.media-compare::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 46%, rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.media-label {
  position: absolute;
  top: 16px;
  z-index: 7;
  display: inline-flex;
  height: 22px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  backdrop-filter: blur(8px);
}

.media-label-input {
  left: 16px;
}

.media-label-output {
  right: 16px;
}

.media-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 50%);
  z-index: 6;
  display: flex;
  width: 2px;
  justify-content: center;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.28);
}

.media-comparison-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.media-divider span {
  position: absolute;
  top: 50%;
  display: inline-flex;
  width: 24px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: transparent;
  box-shadow: 0 16px 28px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(10px);
}

.media-divider span::before,
.media-divider span::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 1.5px solid rgba(80, 80, 80, 0.72);
  border-left: 1.5px solid rgba(80, 80, 80, 0.72);
}

.media-divider span::before {
  transform: translateX(-3px) rotate(-45deg);
}

.media-divider span::after {
  transform: translateX(3px) rotate(135deg);
}

.media-card-copy {
  position: relative;
  z-index: 7;
  margin-top: auto;
  padding: 0 28px 28px;
  color: #050505;
}

.media-card-copy-light {
  color: #fff;
}

.media-card-copy h3,
.media-small-card h3 {
  margin: 0;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.media-card-copy p,
.media-small-card p {
  margin: 12px 0 0;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.media-card-copy-light p {
  color: rgba(255, 255, 255, 0.94);
}

.media-prompt-card {
  align-items: center;
  justify-content: center;
  background: #efede9;
}

.prompt-demo {
  position: absolute;
  top: 150px;
  left: 50%;
  z-index: 2;
  width: 448px;
  max-width: calc(100% - 56px);
  min-height: 173px;
  padding: 12px;
  transform: translateX(-50%);
  background: #f7f5ef;
  box-shadow: 0 18px 60px rgba(20, 18, 15, 0.12);
}

.prompt-top {
  display: flex;
  gap: 8px;
}

.prompt-thumb {
  display: grid;
  width: 96px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: #101010;
  color: #5c5c5c;
}

.prompt-thumb svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prompt-lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.prompt-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #dfddd7;
}

.prompt-lines span:first-child {
  width: 86%;
}

.prompt-lines span:last-child {
  width: 58%;
}

.prompt-text {
  margin: 8px 8px 0;
  color: #797774;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.prompt-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.prompt-controls span {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #e9e6df;
  color: #171717;
  font-size: 13px;
  font-weight: 500;
}

.prompt-controls b {
  display: block;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, #fff 47% 54%, transparent 56%) 17px 50% / 8px 8px no-repeat,
    #111;
}

.media-small-card {
  min-height: 253.5px;
  grid-column: span 2;
  padding: 28px;
}

.process-card {
  min-height: 253.5px;
  grid-column: auto;
}

.media-small-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  color: #111;
}

.media-small-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-small-card h3 {
  margin-top: 68px;
}

.create-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.create-card {
  display: flex;
  width: 320px;
  flex-direction: column;
  gap: 24px;
}

.create-media {
  position: relative;
  width: 320px;
  height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: #ece8e4;
}

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

.create-media-tall {
  height: 114.29%;
}

.create-media-layered img {
  position: absolute;
}

.create-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.create-card h3,
.how-item h3 {
  margin: 0;
  color: #171717;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.create-card p,
.how-item p {
  margin: 0;
  color: #737373;
  font-family: Geist, Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}

.how-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.how-item {
  display: flex;
  width: 280px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.how-icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  transform: rotate(-3deg);
  filter: drop-shadow(0 8px 14px rgba(120, 40, 20, 0.1));
}

.how-icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background: linear-gradient(135deg, #ff895c 0 50%, rgba(255, 255, 255, 0.78) 50%);
}

.how-icon svg {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  overflow: visible;
}

.how-icon .sticker-base {
  fill: #fff;
}

.how-icon .sticker-fill {
  fill: #c4d63f;
  stroke: #8ea020;
  stroke-width: 2;
  stroke-linejoin: round;
}

.how-icon .sticker-line {
  fill: none;
  stroke: #3c4220;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-icon circle {
  fill: #fff8c7;
  stroke: #3c4220;
  stroke-width: 3;
}

.how-icon text {
  fill: #7a2db0;
  font-family: Nunito, Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.how-icon-review {
  transform: rotate(5deg);
}

.how-icon-review .sticker-fill {
  fill: #d9a8e8;
  stroke: #9e6abe;
}

.how-icon-review .sticker-line {
  stroke: #7a2db0;
}

.how-icon-export {
  transform: rotate(-4deg);
}

.how-icon-export .sticker-fill {
  fill: #ffd967;
  stroke: #d99a18;
}

.how-icon-export .sticker-line {
  stroke: #7d4d0f;
}

@media (max-width: 900px) {
  :root {
    --hero-height: 930px;
    --section-x: 20px;
    --card-width: min(390px, calc(100vw - 48px));
    --card-height: min(405px, calc((100vw - 48px) * 1.038));
    --card-copy-x: 20px;
    --card-copy-bottom: 20px;
    --card-title-size: clamp(16px, 2.7vw, 17px);
    --card-body-size: clamp(14px, 2.4vw, 16px);
    --card-copy-line: clamp(20px, 3.2vw, 22px);
    --card-label-size: 12px;
    --card-label-top: 14px;
    --card-label-x: 14px;
  }

  .figma-frame {
    height: auto;
    overflow: visible;
  }

  .hero-stage {
    position: relative;
    height: auto;
    padding-top: 76px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(600px, calc(100% - 40px));
    height: auto;
    min-height: 0;
    margin: 0 auto;
    transform: none;
  }

  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .showcase-row {
    position: relative;
    top: auto;
    left: auto;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin-top: 72px;
    transform: none;
    overflow: visible;
    padding: 0 var(--section-x);
    scroll-snap-type: none;
  }

  .showcase-card {
    flex: 0 0 auto;
    width: min(100%, var(--card-width));
  }

  .rest-sections {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .case-study-section,
  .results-parent,
  .creator-section,
  .store-setup-section {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .case-study-section {
    margin-left: 0;
    padding: 56px var(--section-x) 48px;
    gap: 28px;
  }

  .case-study-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-study-portrait,
  .case-study-quote {
    min-height: auto;
  }

  .case-study-portrait {
    aspect-ratio: 1 / 1;
  }

  .case-study-quote {
    padding: 32px 28px;
  }

  .case-study-quote blockquote {
    max-width: none;
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.28;
  }

  .values-section {
    padding: 52px var(--section-x);
    gap: 28px;
    border-radius: 0;
  }

  .values-heading h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .values-grid {
    width: 100%;
    max-width: 560px;
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 132px;
    padding: 30px 28px;
  }

  .creator-section {
    margin-left: 0;
    padding: 80px var(--section-x);
    gap: 44px;
  }

  .results-parent {
    margin-left: 0;
    padding: 0;
  }

  .results-panel {
    height: auto;
    border-radius: 0;
  }

  .store-setup-section {
    margin-left: 0;
    height: auto;
    padding: 64px var(--section-x) 80px;
  }

  .store-setup-card {
    width: 100%;
    min-height: 360px;
    padding: 56px 28px;
  }

  .store-setup-card h2 {
    max-width: 520px;
    font-size: 36px;
    line-height: 42px;
  }

  .store-setup-card p {
    max-width: 520px;
    font-size: 16px;
    line-height: 24px;
  }

  .creator-heading {
    width: 100%;
    max-width: 560px;
  }

  .creator-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .creator-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .creator-grid {
    width: 100%;
    max-width: 720px;
    columns: 2;
  }

  .creator-card {
    min-height: 0;
  }

  .jasper-system-section {
    padding: 56px 20px;
    gap: 32px;
  }

  .section-return-title {
    font-size: 38px;
    line-height: 44px;
  }

  .jasper-system-heading {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .jasper-system-eyebrow {
    margin-bottom: 0;
  }

  .jasper-system-heading h2 {
    max-width: 620px;
    font-size: 44px;
    line-height: 50px;
  }

  .jasper-system-copy p {
    font-size: 16px;
    line-height: 24px;
  }

  .jasper-system-grid {
    display: flex;
    width: 100%;
    max-width: 560px;
    flex-direction: column;
  }

  .jasper-system-card {
    min-height: 210px;
    padding: 28px 26px;
  }

  .jasper-system-card + .jasper-system-card {
    border-top: 1px solid rgba(34, 31, 28, 0.14);
    border-left: 0;
  }

  .jasper-system-card h3 {
    margin-bottom: 52px;
    font-size: 25px;
    line-height: 31px;
  }

  .brand-grid {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .brand-tile {
    flex: 0 0 386px;
  }

  .create-section,
  .multimedia-section,
  .how-section {
    width: 100%;
    margin-left: 0;
    padding: 56px 24px;
  }

  .multimedia-section {
    height: auto;
    gap: 56px;
  }

  .create-grid,
  .multimedia-grid,
  .how-grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .multimedia-grid {
    display: flex;
    max-width: 560px;
  }

  .multimedia-heading h2 {
    font-size: 46px;
    line-height: 54px;
  }

  .media-feature,
  .media-small-card {
    width: 100%;
  }

  .media-feature {
    min-height: 540px;
  }

  .media-small-card {
    min-height: 230px;
  }

  .create-card,
  .create-media,
  .how-item {
    width: min(320px, 100%);
  }

}

@media (max-width: 560px) {
  :root {
    --hero-height: 865px;
    --section-x: 16px;
    --card-width: calc(100vw - 32px);
    --card-height: calc((100vw - 32px) * 1.038);
    --card-copy-x: 18px;
    --card-copy-bottom: 18px;
    --card-title-size: 17px;
    --card-body-size: 15px;
    --card-copy-line: 22px;
    --card-label-size: 12px;
    --card-label-top: 12px;
    --card-label-x: 12px;
  }

  .figma-frame {
    height: auto;
  }

  .hero-stage {
    height: auto;
    padding-top: 56px;
  }

  .hero-copy {
    gap: 22px;
    width: calc(100% - 32px);
    min-height: 0;
  }

  h1 {
    font-size: 39px;
    line-height: 46px;
  }

  .copy-stack p {
    font-size: 16px;
    line-height: 24px;
  }

  .showcase-row {
    margin-top: 56px;
  }

  .rest-sections {
    top: auto;
    padding: 0;
  }

  .case-study-section {
    padding: 48px var(--section-x) 44px;
  }

  .case-study-section-copy {
    row-gap: 40px;
    column-gap: 0;
    padding-right: 24px;
    padding-bottom: 48px;
    padding-left: 24px;
  }

  .values-heading,
  .case-study-heading {
    gap: 12px;
  }

  .case-study-quote {
    gap: 8px;
    padding: 32px 24px;
  }

  .case-study-attribution {
    margin-top: 8px;
  }

  .creator-section {
    padding: 48px 24px 32px;
    row-gap: 40px;
    column-gap: 0;
  }

  .store-setup-section {
    padding: 24px;
  }

  .create-heading h2,
  .multimedia-heading h2,
  .how-section h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .brand-tile {
    flex-basis: 300px;
  }

  .create-section,
  .multimedia-section,
  .how-section {
    padding: 48px 16px;
  }

  .create-section {
    gap: 48px;
  }

  .multimedia-section {
    gap: 44px;
  }

  .multimedia-heading {
    max-width: 100%;
  }

  .case-study-heading {
    width: 520px;
    max-width: calc(100% - 48px);
  }

  .multimedia-heading p {
    font-size: 15px;
    line-height: 22px;
  }

  .media-feature {
    min-height: 500px;
  }

  .prompt-demo {
    top: 132px;
    max-width: calc(100% - 32px);
  }

  .media-card-copy,
  .media-small-card {
    padding: 24px;
  }

  .media-card-copy h3,
  .media-small-card h3 {
    font-size: 19px;
    line-height: 26px;
  }

  .media-card-copy p,
  .media-small-card p {
    font-size: 17px;
    line-height: 25px;
  }

  .how-section {
    gap: 48px;
  }

  .create-media {
    height: 280px;
  }

  .create-card h3,
  .create-card p,
  .how-item h3,
  .how-item p {
    font-size: 18px;
    line-height: 28px;
  }

}
