:root {
  --bg: #f5f5f5;
  --panel: #fbfbfb;
  --ink: #030303;
  --muted: #5f5f5f;
  --line: #dedede;
  --soft: #eeeeee;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.canvas-label {
  margin: 16px 0 8px 18px;
  color: #b6b6b6;
  font-size: 13px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1325px, calc(100% - 69px));
  height: 64px;
  margin: 0 auto;
  padding: 0 45px;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.logo img {
  display: block;
  width: 64px !important;
  height: 28px !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
}

.nav a,
.top-store {
  transition: opacity 160ms ease;
}

.nav a:hover,
.top-store:hover {
  opacity: 0.62;
}

.store-button {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  border-radius: 999px;
  background: #000;
  color: #fff;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  white-space: nowrap;
}

.store-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.22), transparent 58%);
  content: "";
  transform: translateX(-120%);
  animation: buttonSheen 4.8s ease-in-out infinite;
}

.store-button > * {
  position: relative;
  z-index: 1;
}

.top-store {
  justify-self: end;
  width: 212px;
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
}

.store-button.large {
  min-height: 50px;
  padding: 0 20px;
  font-size: 11px;
}

.store-button small {
  display: block;
  color: #aaa;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: min(1120px, calc(100% - 104px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: clamp(82px, 8vw, 112px);
  padding-bottom: clamp(44px, 6vw, 72px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-copy > * {
  animation: riseIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.hero-copy > *:nth-child(3) { animation-delay: 180ms; }
.hero-copy > *:nth-child(4) { animation-delay: 270ms; }
.hero-copy > *:nth-child(5) { animation-delay: 360ms; }

.pills,
.cta-row,
.trust-row,
.black-strip,
.card-top,
.chips,
.mini-trust {
  display: flex;
  align-items: center;
}

.pills {
  gap: 8px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 0 12px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fafafa;
  color: #222;
  font-size: 10px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill:hover {
  border-color: #a6a6a6;
  background: #fff;
  transform: translateY(-2px);
}

.pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ui-icon,
.check-icon,
.card-icon,
.feature-label-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.check-icon {
  width: 12px;
  height: 12px;
  filter: brightness(0);
  opacity: 0.62;
}

.check-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: #555;
  font-size: 12px;
  line-height: 1;
}

.check-mark::before {
  content: "\2713";
}

.card-icon {
  width: 24px;
  height: 24px;
}

.feature-label-icon {
  width: 13px;
  height: 13px;
}

.store-button b {
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
}

.cta-arrow::before {
  color: #fff;
  content: "\2197";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

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

h1,
h2 {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.35vw, 58px);
  line-height: 1.03;
}

h1 span,
h1 strong,
h2 span,
h2 strong {
  display: block;
}

h1 strong,
h2 strong {
  font-weight: 800;
}

h2 {
  font-size: clamp(38px, 4.15vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.32;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-text {
  max-width: 492px;
  margin-bottom: 35px;
  font-size: 15px;
}

.cta-row {
  gap: 22px;
  margin-bottom: 36px;
}

.setup-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #777;
  font-size: 12px;
}

.trust-row {
  gap: 26px;
  max-width: 650px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  color: #767676;
  font-size: 9px;
  text-transform: uppercase;
}

.trust-row span + span {
  padding-left: 26px;
  border-left: 1px solid #d6d6d6;
}

.phone-cluster {
  position: relative;
  min-height: 510px;
}

.phone-cluster.image-cluster {
  display: flex;
  width: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  perspective: 1200px;
}

.phone-cluster.image-cluster img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  max-height: min(650px, calc(100vh - 150px));
  object-fit: contain;
  filter: drop-shadow(0 36px 38px rgba(0, 0, 0, 0.16));
  animation: softFloat 6s ease-in-out infinite;
  transform-origin: 50% 55%;
}

.corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #cfcfcf;
  border-style: solid;
}

.tl { left: 86px; top: 43px; border-width: 1px 0 0 1px; }
.tr { right: 52px; top: 43px; border-width: 1px 1px 0 0; }
.bl { left: 86px; bottom: 43px; border-width: 0 0 1px 1px; }
.br { right: 52px; bottom: 43px; border-width: 0 1px 1px 0; }

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #111;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.24);
}

.phone::before {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 75px;
  height: 18px;
  border-radius: 999px;
  background: #000;
  content: "";
  transform: translateX(-50%);
}

.main-phone {
  left: 193px;
  top: 42px;
  z-index: 4;
  width: 202px;
  height: 454px;
}

.side {
  width: 146px;
  height: 255px;
  opacity: 0.98;
}

.left-phone {
  left: 83px;
  top: 128px;
  transform: rotate(-9deg);
}

.right-phone {
  right: 41px;
  top: 139px;
  transform: rotate(12deg);
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 30px 14px 14px;
  background: linear-gradient(#fff, #f8f8f8);
  text-align: center;
}

.status {
  display: flex;
  justify-content: space-between;
  color: #111;
  font-size: 8px;
}

.status span::after {
  content: "▰ ▰";
}

.ready {
  display: inline-flex;
  margin: 12px 0 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.dress,
.blue-dress {
  width: 68px;
  height: 95px;
  margin: 0 auto 10px;
  clip-path: polygon(40% 0, 60% 0, 74% 32%, 100% 100%, 0 100%, 26% 32%);
  background: linear-gradient(120deg, #b7cbd4, #6e8791 48%, #c7d7dd);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.22);
}

.dot-indicator {
  display: block;
  width: 36px;
  height: 7px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 8px 3px, #111 0 3px, transparent 4px),
    radial-gradient(circle at 27px 3px, #ccc 0 3px, transparent 4px);
}

.phone-tag {
  border: 0;
  border-radius: 6px;
  padding: 8px 22px;
  background: #eee;
  color: #888;
  font-size: 10px;
}

.phone-screen p {
  margin: 12px 0;
  color: #333;
  font-size: 9px;
}

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

.items span {
  height: 47px;
  border-radius: 8px;
  background: linear-gradient(140deg, #f9f9f9, #dedede);
}

.product-strip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.product-strip button {
  border: 0;
  border-radius: 5px;
  background: #070018;
  color: #fff;
  padding: 7px 18px;
  font-size: 9px;
}

.grid-mini,
.closet-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.grid-mini i,
.closet-mini i,
.shop-panel i {
  display: block;
  border-radius: 5px;
  background: linear-gradient(135deg, #eaeaea, #9f9f9f);
}

.grid-mini i {
  height: 45px;
}

.jacket {
  width: 72px;
  height: 82px;
  margin: 34px auto 22px;
  clip-path: polygon(30% 0, 70% 0, 100% 28%, 82% 100%, 18% 100%, 0 28%);
  background: linear-gradient(130deg, #8b5a48, #3d241f);
}

.float-card {
  position: absolute;
  z-index: 8;
  min-width: 116px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  color: #333;
  font-size: 10px;
}

.float-card b {
  display: block;
  font-size: 13px;
}

.float-card small {
  display: block;
  margin-top: 7px;
  color: #777;
}

.ward { left: 93px; top: 92px; }
.tuned { right: 36px; top: 246px; background: #000; color: #fff; }
.shop { left: 91px; bottom: 94px; }
.made { right: 61px; bottom: 110px; }

.black-strip {
  justify-content: space-around;
  width: min(1366px, calc(100% - 36px));
  min-height: 48px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-size: 11px;
}

.black-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: stripPulse 5.5s ease-in-out infinite;
}

.black-strip span:nth-child(2) { animation-delay: 500ms; }
.black-strip span:nth-child(3) { animation-delay: 1000ms; }
.black-strip span:nth-child(4) { animation-delay: 1500ms; }

.problems {
  width: min(1030px, calc(100% - 104px));
  margin: 0 auto;
  padding: 62px 0 0;
}

.problems h2 {
  margin-bottom: 58px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
}

.problem-grid article {
  min-height: 217px;
  padding: 36px 33px;
  border-right: 1px solid #d9d9d9;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.problem-grid article:hover {
  z-index: 1;
  background: #fbfbfb;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

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

.problem-grid small,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #aaa;
  font-size: 9px;
  text-transform: uppercase;
}

.kicker::before {
  width: 25px;
  height: 1px;
  background: #c8c8c8;
  content: "";
}

.problem-grid h3 {
  min-height: 70px;
  padding-bottom: 21px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.problem-grid p {
  margin: 0;
  font-size: 12px;
}

.features {
  padding-top: 105px;
  padding-bottom: 74px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  margin-bottom: 18px;
  font-size: 14px;
}

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

.feature-card {
  min-height: 294px;
  padding: 24px;
  border: 1px solid #d8d8d8;
  background: #fbfbfb;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card:hover {
  border-color: #c3c3c3;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-7px);
}

.card-top {
  justify-content: space-between;
  margin-bottom: 48px;
  font-size: 18px;
}

.card-top > span {
  display: inline-flex;
  align-items: center;
}

.card-top small {
  color: #aaa;
  font-size: 10px;
}

.feature-card p {
  min-height: 49px;
  font-size: 11px;
}

.feature-img {
  position: relative;
  height: 124px;
  overflow: hidden;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  transition: transform 360ms ease, filter 360ms ease;
}

.feature-card:hover .feature-img {
  filter: contrast(1.04);
  transform: scale(1.025);
}

.feature-img::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
  content: "";
}

.feature-img span {
  position: absolute;
  top: 10px;
  left: 11px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.img-flat {
  background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=900&q=80");
}

.img-scan {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=900&q=80");
}

.img-shoes {
  background-image: url("https://images.unsplash.com/photo-1549298916-b41d501d3772?auto=format&fit=crop&w=900&q=80");
}

.steps {
  position: relative;
  padding-top: 65px;
  padding-bottom: 62px;
}

.steps h2 {
  margin-bottom: 72px;
}

.step-line {
  position: absolute;
  left: calc(50% - min(620px, calc(50vw - 43px)));
  right: calc(50% - min(620px, calc(50vw - 43px)));
  top: 288px;
  height: 1px;
  background: #d6d6d6;
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
}

.step-grid span {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 17px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-grid article:hover span {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px) scale(1.04);
}

.step-grid span img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin: auto;
}

.step-grid .step-badge-img {
  display: block;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.step-grid .step-badge-img img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.step-grid b {
  position: absolute;
  right: -4px;
  top: -7px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 10px;
}

.step-grid h3 {
  font-size: 15px;
}

.step-grid p {
  font-size: 11px;
}

.demo-shell {
  display: flex;
  width: min(1440px, calc(100% - 40px));
  margin-inline: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12);
}

.demo-shell .figma-section-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  opacity: 1;
  transform: none;
  transition: none;
}

.demo-shell.live-demo {
  display: block;
  width: min(1280px, calc(100% - 72px));
  margin: 72px auto;
  padding: clamp(52px, 7vw, 112px) clamp(24px, 5vw, 76px);
  color: #fff;
}

.demo-inner {
  max-width: 1164px;
  margin-inline: auto;
}

.demo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 6vw, 120px);
  align-items: end;
  margin-bottom: 38px;
}

.demo-heading .kicker {
  color: #8f8f8f;
}

.demo-heading h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
}

.demo-heading p {
  margin: 0 0 10px;
  color: #a8a8a8;
  font-size: 18px;
  line-height: 1.45;
}

.demo-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.demo-prompts button {
  min-height: 72px;
  border: 1px solid #333;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 0 24px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.demo-prompts button small {
  display: block;
  margin-bottom: 5px;
  color: #999;
  font-size: 10px;
  text-transform: uppercase;
}

.demo-prompts button.active {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.demo-prompts button.active small {
  color: #777;
}

.demo-prompts button:hover {
  border-color: #777;
  transform: translateY(-3px);
}

.demo-cards {
  display: grid;
  grid-template-columns: 0.72fr 1.24fr 0.98fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: end;
}

.demo-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
  will-change: transform;
  transition: filter 350ms ease;
}

.demo-card-wardrobe {
  animation: demoFloatLeft 7s ease-in-out infinite;
}

.demo-card-generated {
  z-index: 1;
  animation: demoFloatCenter 6.4s ease-in-out infinite;
}

.demo-card-products {
  animation: demoFloatRight 7.4s ease-in-out infinite;
}

.demo-card:hover {
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.48));
}

@keyframes demoFloatLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-0.7deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes demoFloatCenter {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.01);
  }
}

@keyframes demoFloatRight {
  0%,
  100% {
    transform: translateY(0) rotate(0.7deg);
  }

  50% {
    transform: translateY(-9px) rotate(-0.5deg);
  }
}

.demo {
  padding-top: 105px;
  padding-bottom: 90px;
  background: #000;
  color: #fff;
  box-shadow: inset 40px 0 0 rgba(255, 255, 255, 0.045);
}

.dark p,
.demo p {
  color: #9a9a9a;
}

.prompt-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 18px;
  margin-bottom: 42px;
}

.prompt-tabs button {
  min-height: 45px;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 0 22px;
  text-align: left;
  font-size: 11px;
}

.prompt-tabs .active {
  background: #fff;
  color: #000;
}

.prompt-tabs small {
  display: block;
  color: #777;
  font-size: 8px;
  text-transform: uppercase;
}

.demo-grid {
  display: grid;
  grid-template-columns: 238px 1fr 320px;
  gap: 22px;
}

.input-panel,
.generated-look,
.shop-panel {
  min-height: 380px;
  border: 1px solid #252525;
  border-radius: var(--radius);
  background: #050505;
}

.input-panel,
.shop-panel {
  padding: 24px;
}

.input-panel > span,
.shop-panel > span {
  display: flex;
  justify-content: space-between;
  color: #8d8d8d;
  font-size: 9px;
  text-transform: uppercase;
}

.closet-mini {
  margin: 24px 0 20px;
}

.closet-mini i {
  height: 58px;
}

.prompt-note {
  padding: 16px;
  border: 1px solid #222;
  border-radius: 8px;
  background: #141414;
}

.prompt-note p {
  color: #fff;
  font-size: 13px;
  font-style: italic;
}

.prompt-note span {
  display: inline-flex;
  margin-right: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #333;
  color: #eee;
  font-size: 9px;
  text-transform: uppercase;
}

.generated-look {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(135deg, #f7f7f7, #d8d8d8);
}

.look-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: #777;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.model-figure {
  position: absolute;
  left: 23%;
  bottom: 0;
  width: 230px;
  height: 335px;
  background: url("https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&w=700&q=85") center/cover;
  filter: grayscale(1) contrast(1.1);
  clip-path: polygon(18% 0, 78% 3%, 100% 100%, 0 100%);
}

.generated-look button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: auto;
  margin-top: 126px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
}

.generated-look button + button {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.chips {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 48px;
  z-index: 4;
  gap: 8px;
  flex-wrap: wrap;
}

.chips span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  font-size: 10px;
}

.generated-look p {
  position: absolute;
  left: 20px;
  bottom: 14px;
  z-index: 4;
  margin: 0;
  color: #fff;
  font-size: 13px;
}

.shop-panel li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #202020;
  border-radius: 8px;
  background: #111;
  list-style: none;
}

.shop-panel ul,
.match-card ul {
  margin: 22px 0;
  padding: 0;
}

.shop-panel i {
  height: 42px;
}

.shop-panel b,
.shop-panel em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid #242424;
}

.total span {
  grid-column: 1 / -1;
  color: #777;
  font-size: 9px;
  text-transform: uppercase;
}

.total b {
  font-size: 18px;
}

.total button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 12px 26px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-section {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

.shop-section.shop-match {
  width: min(1280px, calc(100% - 72px));
  margin: 72px auto;
  padding: clamp(60px, 7vw, 96px) clamp(24px, 5vw, 72px) clamp(56px, 6vw, 82px);
  background: #f5f5f5;
  color: #000;
}

.shop-copy {
  max-width: 650px;
}

.shop-match .kicker {
  color: #8f8f8f;
}

.shop-section.shop-match h2 {
  margin: 14px 0 20px;
  color: #000;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.98;
}

.shop-match .narrow {
  max-width: 380px;
  color: #858585;
  font-size: 15px;
  line-height: 1.55;
}

.shop-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.76fr);
  gap: clamp(20px, 3.6vw, 46px);
  align-items: start;
  margin-top: clamp(38px, 5vw, 64px);
}

.shop-panel-wrap {
  min-width: 0;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.42));
}

.shop-panel-dress {
  max-width: 760px;
}

.shop-panel-products {
  max-width: 420px;
  margin-top: clamp(92px, 10vw, 150px);
}

.shop-panel-img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.shop-panel-dress .shop-panel-img {
  animation: shopPanelFloatLeft 7.5s ease-in-out infinite;
}

.shop-panel-products .shop-panel-img {
  animation: shopPanelFloatRight 6.8s ease-in-out infinite;
}

.shop-panel-wrap:hover .shop-panel-img {
  animation-play-state: paused;
}

@keyframes shopPanelFloatLeft {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }

  50% {
    transform: translateY(-13px) rotate(0.35deg);
  }
}

@keyframes shopPanelFloatRight {
  0%,
  100% {
    transform: translateY(8px) rotate(0.45deg);
  }

  50% {
    transform: translateY(-9px) rotate(-0.4deg);
  }
}

.figma-section-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 240ms ease;
  will-change: transform, opacity;
}

.figma-section-img.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-shell.live-demo .figma-section-img,
.shop-section.shop-match .figma-section-img {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 0;
}

.shop-section .figma-section-img:hover {
  transform: translateY(-4px) scale(1.005);
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(1.2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after,
  .phone-cluster.image-cluster img,
  .figma-section-img {
    animation: none;
    transition: none;
    transform: none;
  }

  .figma-section-img,
  .motion-target {
    opacity: 1;
    transform: none;
  }
}

.shop-section h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 50px);
}

.narrow {
  max-width: 290px;
  font-size: 13px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 315px;
  gap: 44px;
  align-items: start;
  margin-top: 58px;
}

.dress-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.08);
}

.dress-card .look-badge {
  background: #fff;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blue-dress {
  width: 315px;
  height: 470px;
  margin-top: 60px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.12));
}

.hot {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.hot.two,
.hot.three,
.hot.four,
.hot.five {
  background: #fff;
  color: #000;
}

.one { top: 135px; left: 47%; }
.two { top: 300px; left: 27%; }
.three { bottom: 128px; left: 47%; }
.four { top: 370px; right: 31%; }
.five { top: 125px; right: 37%; }

.dress-total {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  font-size: 10px;
  text-transform: uppercase;
}

.dress-total button,
.wide-black {
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  font-size: 10px;
  text-transform: uppercase;
}

.match-card {
  overflow: hidden;
  border: 1px solid #111;
  border-radius: 12px;
  background: #fff;
}

.outfit-pieces {
  height: 225px;
  background: radial-gradient(circle at 35% 34%, #c51534 0 42px, transparent 43px),
    radial-gradient(circle at 67% 54%, #090909 0 50px, transparent 51px),
    radial-gradient(circle at 50% 75%, #e7e7e7 0 36px, transparent 37px);
}

.product-title {
  padding: 22px;
  background: #000;
  color: #fff;
}

.product-title small {
  color: #777;
  text-transform: uppercase;
}

.product-title h3 {
  margin-top: 12px;
}

.product-title button {
  float: right;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.match-card li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid #ededed;
  list-style: none;
  font-size: 12px;
}

.match-card li b {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
}

.match-card li em {
  font-style: normal;
  font-weight: 700;
}

.wide-black {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 16px;
}

.made {
  padding-top: 65px;
  padding-bottom: 76px;
}

.made h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.aud {
  position: relative;
  display: flex;
  min-height: 197px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 6px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.aud:hover {
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
  filter: grayscale(0);
  transform: translateY(-7px);
}

.aud::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
  content: "";
}

.aud h3,
.aud p {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  color: #fff;
}

.aud p {
  font-size: 11px;
}

.men { background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=700&q=80"); }
.her { background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=700&q=80"); }
.pro { background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=700&q=80"); filter: grayscale(1); }
.exp { background-image: url("https://images.unsplash.com/photo-1509631179647-0177331693ae?auto=format&fit=crop&w=700&q=80"); filter: grayscale(1); }

.faq {
  width: min(760px, calc(100% - 86px));
  padding-top: 78px;
  padding-bottom: 90px;
}

.faq h2 {
  margin-bottom: 48px;
  font-size: clamp(38px, 4vw, 54px);
}

details {
  border-bottom: 1px solid #d9d9d9;
}

summary {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  transition: color 180ms ease, padding-left 180ms ease;
}

summary:hover {
  color: #5d5d5d;
  padding-left: 8px;
}

summary::after {
  content: "⌄";
  color: #777;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  max-width: 560px;
  padding-bottom: 18px;
  font-size: 14px;
}

.final-cta {
  display: grid;
  width: min(1440px, 100%);
  min-height: 806px;
  margin-inline: auto;
  place-items: center;
  align-content: center;
  background: #fff;
  text-align: center;
}

.final-cta .pill {
  min-height: 29px;
  padding: 0 13px;
  color: #555;
  font-size: 10px;
}

.final-cta h2 {
  margin: 24px 0 22px;
  font-size: clamp(72px, 7.65vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.final-cta p {
  max-width: 576px;
  margin: 0 auto 32px;
  color: #606060;
  font-size: 18px;
  line-height: 1.55;
}

.final-cta .store-button.large {
  min-height: 64px;
  padding: 0 24px;
  gap: 12px;
  font-size: 14px;
}

.mini-trust {
  gap: 36px;
  margin-top: 54px;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
}

.motion-target {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

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

.problem-grid article.motion-target.is-visible:hover,
.feature-card.motion-target.is-visible:hover,
.aud.motion-target.is-visible:hover {
  transform: translateY(-7px);
}

.step-grid article.motion-target.is-visible:hover span {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px) scale(1.04);
}

.problem-grid article:nth-child(2),
.feature-card:nth-child(2),
.step-grid article:nth-child(2),
.aud:nth-child(2),
.faq details:nth-child(2),
.mini-trust span:nth-child(2) {
  transition-delay: 90ms;
}

.problem-grid article:nth-child(3),
.feature-card:nth-child(3),
.step-grid article:nth-child(3),
.aud:nth-child(3),
.faq details:nth-child(3),
.mini-trust span:nth-child(3) {
  transition-delay: 180ms;
}

.step-grid article:nth-child(4),
.aud:nth-child(4),
.faq details:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSheen {
  0%,
  52% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes stripPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  width: min(1440px, 100%);
  min-height: 80px;
  margin: 0 auto 4px;
  padding: 0 80px;
  background: #000;
  color: #fff;
  font-size: 12px;
}

footer .logo {
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

footer .logo img {
  width: 64px !important;
  height: 28px !important;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(2.8);
  mix-blend-mode: normal;
}

footer nav {
  display: flex;
  gap: 24px;
  color: #aaa;
}

.socials {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.socials span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #333;
  border-radius: 50%;
}

.socials img {
  display: block;
  width: 152px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .nav-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    justify-self: end;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
  }

  .nav-toggle span {
    width: 16px;
    height: 1px;
    background: #000;
  }

  .nav,
  .top-store {
    display: none;
  }

  .topbar.open .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .topbar.open .top-store {
    position: absolute;
    top: 265px;
    left: 18px;
    display: inline-flex;
    width: calc(100% - 36px);
  }

  .topbar.open .nav a {
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
  }

  .hero,
  .section-head,
  .demo-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .demo-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .demo-cards {
    grid-template-columns: minmax(180px, 0.72fr) minmax(300px, 1.18fr);
  }

  .demo-card-products {
    grid-column: 1 / -1;
    width: min(440px, 100%);
    margin-inline: auto;
  }

  .shop-section.shop-match {
    width: calc(100% - 32px);
    padding: 56px 32px;
  }

  .shop-panels {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.76fr);
    gap: 20px;
  }

  .shop-panel-dress {
    max-width: 640px;
  }

  .shop-panel-products {
    max-width: 360px;
    margin-top: 76px;
  }

  .phone-cluster {
    min-height: 590px;
    transform-origin: top left;
  }

  .phone-cluster.image-cluster {
    min-height: auto;
    padding: 26px 0;
    justify-content: center;
  }

  .phone-cluster.image-cluster img {
    width: min(520px, 82vw);
    max-height: none;
  }

  .problem-grid,
  .feature-grid,
  .step-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-line {
    display: none;
  }

  .demo-grid {
    gap: 16px;
  }
}

@media (max-width: 700px) {
  body {
    background: #f5f5f5;
  }

  .canvas-label {
    margin: 10px 14px 6px;
    font-size: 11px;
  }

  .topbar,
  .black-strip,
  footer {
    width: calc(100% - 16px);
  }

  .section-pad,
  .problems,
  .faq {
    width: calc(100% - 28px);
  }

  .topbar {
    height: 58px;
    padding: 0 14px;
  }

  .logo img,
  footer .logo img {
    width: 64px !important;
    height: 28px !important;
  }

  .topbar.open .nav {
    top: 58px;
  }

  .topbar.open .top-store {
    top: 263px;
  }

  .store-button {
    max-width: 100%;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
  }

  .pills {
    flex-wrap: wrap;
  }

  .pill {
    min-height: 28px;
    padding: 0 12px;
    font-size: 11px;
  }

  .cta-row,
  .trust-row,
  .black-strip,
  .mini-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-row .store-button.large,
  .final-cta .store-button.large {
    width: 100%;
    justify-content: center;
  }

  .trust-row span + span {
    padding-left: 0;
    border-left: 0;
  }

  .phone-cluster {
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .phone-cluster.image-cluster {
    padding: 6px 0 18px;
    justify-content: center;
  }

  .phone-cluster.image-cluster img {
    width: min(100%, 380px);
    max-height: none;
  }

  .problem-grid,
  .feature-grid,
  .step-grid,
  .audience-grid,
  .prompt-tabs,
  .demo-heading,
  .demo-prompts,
  .demo-cards {
    grid-template-columns: 1fr;
  }

  .problem-grid article {
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .problems {
    padding-top: 48px;
  }

  .problems h2 {
    margin-bottom: 32px;
  }

  .features,
  .steps,
  .made,
  .faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 28px;
  }

  .feature-card {
    min-height: auto;
  }

  .step-grid {
    gap: 28px;
  }

  .step-grid article {
    padding-bottom: 10px;
  }

  .demo-shell {
    width: calc(100% - 16px);
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .demo-shell.live-demo {
    width: calc(100% - 16px);
    margin: 40px auto;
    padding: 44px 16px;
  }

  .demo-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .demo-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .demo-heading p {
    font-size: 14px;
  }

  .demo-prompts {
    gap: 10px;
    margin-bottom: 28px;
  }

  .demo-prompts button {
    min-height: auto;
    border-radius: 24px;
    padding: 14px 16px;
  }

  .demo-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .demo-card-wardrobe,
  .demo-card-products {
    max-width: 360px;
  }

  .demo-shell .figma-section-img {
    width: 100%;
  }

  .shop-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .shop-section.shop-match {
    width: calc(100% - 16px);
    margin: 40px auto;
    padding: 44px 16px;
  }

  .shop-section.shop-match h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .shop-match .narrow {
    font-size: 14px;
  }

  .shop-panels {
    grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.72fr);
    gap: 14px;
    margin-top: 32px;
  }

  .shop-panel-dress {
    max-width: 390px;
    margin-inline: 0;
  }

  .shop-panel-products {
    max-width: 240px;
    margin: 54px 0 0 auto;
  }

  .figma-section-img {
    border-radius: 0;
  }

  .shop-layout {
    gap: 24px;
  }

  .dress-card {
    min-height: 470px;
  }

  .blue-dress {
    width: 260px;
    height: 410px;
  }

  .aud {
    min-height: 230px;
  }

  .final-cta {
    width: calc(100% - 16px);
    min-height: 560px;
    padding: 70px 18px;
  }

  .final-cta h2 {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: 0;
  }

  .final-cta p {
    font-size: 15px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  footer nav,
  .socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .shop-panels {
    grid-template-columns: 1fr;
  }

  .shop-panel-dress {
    max-width: min(100%, 400px);
    margin-inline: auto;
  }

  .shop-panel-products {
    max-width: min(100%, 300px);
    margin: -8px auto 0;
  }
}

@media (max-width: 430px) {
  .section-pad,
  .problems,
  .faq {
    width: calc(100% - 22px);
  }

  .black-strip {
    gap: 13px;
    padding: 18px;
  }

  .feature-img {
    height: 150px;
  }

  .motion-target {
    transform: translateY(18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .figma-section-img,
  .motion-target {
    opacity: 1 !important;
  }
}
