:root {
  --paper: #f8f7f2;
  --ink: #183e32;
  --muted: #68746b;
  --line: #dcded3;
  --peach: #edb18f;
  --sage: #e9eddf;
  --orange: #bb633d;
  --acid: #dbe7a1;
  --sans: 'DM Sans',Arial,sans-serif;
  --display: 'Manrope',Arial,sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
button {
  font: inherit;
  cursor: pointer;
}
button,a,summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
[hidden] {
  display: none!important;
}
img {
  max-width: 100%;
  height: auto;
}
h1,h2,h3,h4,p {
  margin: 0;
}
h1,h2,h3,h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
}
h2 {
  font-size: clamp(38px,4.2vw,62px);
  letter-spacing: -2.8px;
}
h3 {
  font-size: 30px;
  letter-spacing: -1.2px;
}
.serif,em {
  font-family: Georgia,'Times New Roman',serif;
  font-weight: 400;
  font-style: italic;
}
.wrap {
  width: min(1320px,calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.eyebrow {
  font: 700 10px/1.6 var(--sans);
  letter-spacing: 1.8px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #698860;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #72946316;
  flex-shrink: 0;
}
.muted {
  color: var(--muted);
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s,background .2s;
}
.button:hover {
  transform: translateY(-3px);
}
.primary {
  background: var(--ink);
  color: var(--paper);
}
.primary:hover {
  background: #295b47;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-underline-offset: 6px;
}
.text-link:hover {
  text-decoration: underline;
}
.brand {
  font: 800 24px/1 var(--display);
  letter-spacing: -1.5px;
  white-space: nowrap;
}
.brand>span {
  color: var(--orange);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
}
.site-header nav>a {
  padding-block: 12px;
}
.site-header nav>a:hover {
  color: var(--orange);
}
.site-header nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--sage);
  padding: 12px 17px;
  border-radius: 6px;
}
.nav-cta .icon {
  width: 16px;
  height: 16px;
}
.login {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
}
.menu-toggle>span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
}
/* Connected product world, built from light native vector and CSS layers. */
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 35px;
  min-height: 710px;
  padding-block: 65px 55px;
}
.hero-copy,.hero-art {
  min-width: 0;
}
.hero h1 {
  font-size: clamp(72px,7.5vw,110px);
  letter-spacing: -6px;
  line-height: .98;
}
.hero h1 .serif {
  font-size: .67em;
  letter-spacing: -3.7px;
  line-height: 1.35;
  display: block;
  white-space: nowrap;
}
.hero-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 25px;
  color: #637167;
}
.hero-intro strong {
  font-weight: 500;
  color: var(--ink);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-note {
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-top: 28px;
  color: var(--muted);
}
.hero-art {
  position: relative;
  height: 550px;
  isolation: isolate;
}
.hero-art:before {
  content: '';
  position: absolute;
  inset: 2% -2% 5%;
  background: radial-gradient(ellipse,#e2e8d9 0%,#eef0e64d 45%,transparent 69%);
  z-index: -1;
}
#motion-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}
.integrations {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-block: 29px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.integrations>span {
  font-size: 8px;
  letter-spacing: 1px;
  flex-shrink: 0;
  line-height: 1.8;
}
.integrations>div {
  display: flex;
  gap: 38px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.integrations b {
  font: 600 21px var(--display);
  letter-spacing: -.7px;
}
.integrations b:nth-child(2)>span {
  color: var(--orange);
}
.integration-divider {
  height: 26px;
  width: 1px;
  background: var(--line);
}
.integrations>a {
  font-size: 9px;
  white-space: nowrap;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}
.section-heading>p {
  max-width: 315px;
  font-size: 14px;
  color: var(--muted);
}
.platform-section {
  padding-bottom: 75px;
}
.solution-tabs {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 7px;
  margin-bottom: 18px;
}
.solution-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 11px;
  color: var(--ink);
  min-height: 62px;
  transition: background .2s;
}
.solution-tabs .icon {
  width: 19px;
  height: 19px;
}
.solution-tabs small {
  display: none;
}
.solution-tabs [aria-selected=true] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.solution-tabs button:hover:not([aria-selected=true]) {
  background: var(--sage);
}
.solution-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: center;
  background: #eeeee4;
  border: 1px solid #e4e5d8;
  border-radius: 13px;
  padding: 55px;
  min-height: 500px;
}
.solution-copy .eyebrow {
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.solution-copy h3 {
  font-size: 38px;
  letter-spacing: -1.9px;
}
.solution-copy>p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.9;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: grid;
  gap: 11px;
  font-size: 12px;
}
.checklist>li {
  display: flex;
  align-items: baseline;
  gap: 11px;
}
.checklist>li:before {
  content: '✓';
  color: #6e8a57;
  font-size: 11px;
}
.product-demo {
  background: var(--paper);
  border: 1px solid #d8ded0;
  border-radius: 10px;
  box-shadow: 0 20px 30px #273b2510;
  overflow: hidden;
  min-width: 0;
}
.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  background: #fbfbf7;
}
.demo-toolbar>span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.demo-toolbar .icon {
  width: 17px;
  height: 17px;
}
.demo-status {
  font-size: 7px;
  color: var(--muted);
}
.design-workspace {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 20px;
  padding: 24px;
}
.layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 8px;
  padding-top: 8px;
}
.layers>small {
  font-size: 6px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.layers>span {
  padding: 10px 8px;
  border-radius: 5px;
  border: 1px solid #e0e3d8;
}
.layers>.selected {
  background: #e3e9d8;
  border-color: #bfcdae;
}
.swatches {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.swatches i {
  width: 18px;
  height: 18px;
  background: #edb18f;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 1px #ccc;
}
.swatches i:nth-child(2) {
  background: var(--ink);
}
.swatches i:nth-child(3) {
  background: var(--acid);
}
.fashion-art {
  background: var(--ink);
  color: #f7f7ea;
  position: relative;
  min-height: 298px;
  padding: 20px;
  overflow: hidden;
}
.fashion-art>small {
  font-size: 5px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}
.fashion-art h4 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.fashion-art .garment {
  position: absolute;
  height: 235px;
  width: 220px;
  bottom: 10px;
  right: -12px;
  transform: rotate(-14deg);
}
.round-stamp {
  position: absolute;
  right: 13px;
  top: 32px;
  background: var(--acid);
  color: var(--ink);
  font-size: 6px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(15deg);
}
.art-bottom {
  position: absolute;
  bottom: 14px;
  left: 15px;
  right: 15px;
  font-size: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.art-bottom strong {
  font-size: 11px;
}
.demo-bottom {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: var(--muted);
}
.tour-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 7px;
  letter-spacing: .8px;
  margin: 22px 0 0 4px;
}
.tour-caption>span:last-child {
  margin-left: auto;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 9px;
}
.feed-demo {
  padding: 26px;
}
.source-path {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  gap: 8px;
  margin-bottom: 25px;
}
.source-path>span {
  padding: 8px 12px;
  background: var(--sage);
  border-radius: 4px;
}
.source-path>b {
  font-weight: 400;
}
.rule-box {
  background: var(--ink);
  color: var(--paper);
  padding: 17px;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 15px;
  align-items: center;
}
.rule-box>small {
  font-size: 6px;
  letter-spacing: 1px;
  grid-column: 1;
}
.rule-box>strong {
  font-size: 14px;
  font-weight: 500;
}
.rule-box>strong>span {
  color: var(--acid);
}
.rule-box>button {
  grid-column: 2;
  grid-row: 1/3;
  border: 0;
  background: var(--acid);
  color: var(--ink);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 8px;
  min-height: 44px;
}
.rule-box .icon {
  width: 14px;
  height: 14px;
}
.demo-table {
  margin-top: 21px;
}
.table-row {
  display: grid;
  grid-template-columns: 1.7fr .7fr .7fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  transition: opacity .2s;
}
.table-head {
  font-size: 6px;
  letter-spacing: 1px;
  color: var(--muted);
}
.ok {
  color: #44733c;
}
.excluded {
  opacity: .45;
}
.feed-demo>p {
  font-size: 8px;
  color: var(--muted);
  margin-top: 18px;
}
.ai-demo {
  padding: 25px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px 12px;
}
.ai-avatar {
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--peach);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
}
.ai-question {
  font-size: 10px;
  padding: 7px 0;
}
.ai-answer {
  grid-column: 2;
  background: #e9eddf;
  padding: 24px;
  border-radius: 2px 10px 10px;
}
.ai-answer>small {
  font-size: 6px;
  letter-spacing: 1px;
}
.ai-answer>h4 {
  font-size: 25px;
  line-height: 1.2;
  margin: 14px 0 19px;
  letter-spacing: -1px;
}
.ai-answer>div {
  font-size: 8px;
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.ai-answer>div>span {
  color: var(--muted);
  font-size: 7px;
}
.approval-pill {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  font-size: 7px;
  padding: 6px 10px;
  margin-top: 22px;
}
.approval-pill .icon {
  width: 12px;
  height: 12px;
}
.video-demo {
  padding: 22px 30px;
}
.video-canvas {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #e8b093;
  border-radius: 5px;
  padding: 20px;
}
.video-canvas>small {
  font-size: 6px;
  letter-spacing: 1px;
}
.video-canvas .garment {
  position: absolute;
  width: 225px;
  height: 240px;
  right: 10px;
  top: 10px;
}
.video-canvas h4 {
  position: absolute;
  left: 20px;
  bottom: 24px;
  font-size: 33px;
  letter-spacing: -1.5px;
  z-index: 1;
}
.video-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  margin-top: 12px;
}
.video-controls button {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 0;
  background: none;
  padding: 8px 0;
  font-size: 9px;
  min-height: 44px;
  color: var(--ink);
}
.video-controls .icon {
  width: 18px;
  height: 18px;
}
.timeline {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 9px 0;
  margin: 3px 0;
  font-size: 6px;
}
.timeline>span {
  padding-right: 10px;
}
.timeline>i {
  display: block;
  flex: 1;
  height: 23px;
  border: 1px solid #bfcbac;
  background: #e0e6d2;
  border-radius: 3px;
}
.timeline>b {
  position: absolute;
  top: 4px;
  left: 17%;
  width: 1px;
  height: 33px;
  background: var(--orange);
}
.video-demo.playing .garment {
  animation: preview-garment 4s ease-in-out infinite;
}
.video-demo.playing .timeline>b {
  animation: playhead 4s linear infinite;
}
.automation-demo {
  padding: 28px;
}
.auto-node {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eeeee4;
  border: 1px solid var(--line);
  padding: 17px;
  border-radius: 6px;
}
.auto-node>div {
  display: grid;
  gap: 4px;
  flex: 1;
}
.auto-node small {
  font-size: 6px;
  letter-spacing: 1px;
}
.auto-node strong {
  font-size: 11px;
  font-weight: 500;
}
.auto-node>span {
  font-size: 8px;
}
.auto-link {
  text-align: center;
  color: #99aa8c;
  height: 27px;
}
.final-node {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.automation-demo>p {
  font-size: 8px;
  text-align: center;
  color: var(--muted);
  margin-top: 20px;
}
.telegram-demo {
  background: #e5eadc;
  padding: 20px 30px;
}
.chat-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
}
.chat-header>span {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--peach);
  border-radius: 50%;
  width: 31px;
  height: 31px;
  font-size: 20px;
  font-weight: 700;
}
.chat-header>div {
  flex: 1;
  display: grid;
  gap: 2px;
}
.chat-header strong {
  font-size: 10px;
}
.chat-header small {
  font-size: 7px;
}
.chat-header>.icon {
  width: 17px;
  height: 17px;
}
.chat-message {
  background: #fffdf8;
  border-radius: 0 10px 10px;
  padding: 17px;
  max-width: 90%;
  box-shadow: 0 4px 8px #183e3205;
}
.chat-message>small {
  font-size: 6px;
  letter-spacing: 1px;
  color: #6c8060;
  display: block;
  margin-bottom: 6px;
}
.chat-message>strong {
  font-size: 11px;
  font-weight: 600;
}
.chat-message>p {
  font-size: 9px;
  margin: 6px 0 12px;
  color: var(--muted);
}
.chat-message>span {
  font-size: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  display: block;
}
.second-message {
  margin-top: 12px;
  margin-left: auto;
  background: #f3f6e8;
}
.chat-actions {
  display: flex;
  gap: 15px;
  font-size: 8px;
  color: #48693a;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.creative-section {
  padding-top: 55px;
}
.creative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.feature-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
}
.feature-number {
  font-size: 8px;
  letter-spacing: 1.5px;
}
.feature-heading>.icon {
  width: 20px;
  height: 20px;
}
.mannequin-card {
  background: #e9eddf;
}
.feature-copy {
  padding: 25px 40px 40px;
  position: relative;
  z-index: 1;
}
.feature-copy h3 {
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.feature-copy>p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 330px;
  margin-top: 15px;
  color: #62715e;
}
.mannequin-scene {
  height: 310px;
  position: relative;
  display: grid;
  place-items: center;
}
.mannequin-scene>.garment {
  width: 260px;
  height: 280px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(9px 20px 13px #81684a25);
  transform: rotate(-9deg);
}
.ghost-outline {
  position: absolute;
  width: 160px;
  height: 260px;
  border: 1px dashed #a8b5a0;
  border-radius: 60% 60% 15% 15%;
  left: 24%;
  top: 5%;
  transform: rotate(12deg);
}
.ghost-outline:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px dashed #a8b5a0;
  border-radius: 50%;
  left: 60px;
  top: -20px;
}
.scene-label {
  position: absolute;
  left: 31px;
  top: 35%;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #64795d;
}
.mini-chip {
  position: absolute;
  right: 30px;
  bottom: 25px;
  padding: 8px 12px;
  background: #f9f9f0;
  border: 1px solid #d6decb;
  border-radius: 5px;
  font-size: 8px;
  z-index: 2;
  transform: rotate(5deg);
}
.book-card {
  background: #e9c798;
}
.book-card .feature-copy>p {
  color: #746044;
}
.feature-heading>button {
  background: transparent;
  color: var(--ink);
  border: 1px solid #c8a677;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
}
.book-scene {
  height: 286px;
  position: relative;
  perspective: 1000px;
  display: grid;
  place-items: center;
}
.book-object {
  width: 174px;
  height: 240px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-28deg) rotateZ(-6deg);
  transition: transform 1s cubic-bezier(.2,.8,.3,1);
  z-index: 1;
}
.book-card.turned .book-object {
  transform: rotateX(8deg) rotateY(28deg) rotateZ(3deg);
}
.book-cover {
  position: absolute;
  inset: 0;
  background: #1d4838;
  color: var(--acid);
  padding: 18px;
  transform: translateZ(16px);
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 1px 3px 3px 1px;
  box-shadow: inset 5px 0 5px #0002;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.book-cover>small {
  font-size: 4px;
  letter-spacing: 1px;
  z-index: 1;
}
.book-cover>span {
  font: 500 35px/.95 var(--display);
  letter-spacing: -1.8px;
  z-index: 1;
  margin-top: -5px;
}
.book-cover>span>em {
  color: var(--peach);
  font-size: 45px;
}
.book-orbit {
  position: absolute;
  right: -45px;
  bottom: 14px;
  width: 175px;
  height: 125px;
  border: 1px solid #dbe7a17a;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.book-orbit:before {
  content: '';
  position: absolute;
  inset: 9px -8px;
  border: 1px solid #dbe7a17a;
  border-radius: 50%;
}
.book-orbit:after {
  content: '';
  position: absolute;
  right: 29px;
  bottom: 18px;
  width: 11px;
  height: 11px;
  background: var(--peach);
  border-radius: 50%;
}
.book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 240px;
  background: #143d2c;
  color: #c6d197;
  transform-origin: left;
  transform: translateZ(16px) rotateY(90deg);
  writing-mode: vertical-rl;
  font-size: 6px;
  letter-spacing: 1.5px;
  padding: 20px 12px;
}
.book-pages {
  position: absolute;
  left: 171px;
  top: 4px;
  width: 28px;
  height: 232px;
  background: repeating-linear-gradient(90deg,#fcf8e9 0 2px,#d3c8b4 2px 3px);
  transform-origin: left;
  transform: translateZ(14px) rotateY(90deg);
  box-shadow: inset 0 -4px 4px #bba;
}
.book-back {
  position: absolute;
  inset: 0;
  background: #173f30;
  transform: translateZ(-16px) rotateY(180deg);
  backface-visibility: hidden;
  border-radius: 3px;
}
.book-top,.book-bottom {
  position: absolute;
  left: 3px;
  width: 168px;
  height: 28px;
  background: repeating-linear-gradient(#f5edd9 0 2px,#cfc4ac 2px 3px);
  transform-origin: top;
  transform: translateZ(14px) rotateX(-90deg);
}
.book-top { top: 4px; }
.book-bottom { top: 236px; }
.book-ground {
  position: absolute;
  bottom: 4px;
  left: 30%;
  width: 48%;
  height: 28px;
  border-radius: 50%;
  background: #795d3240;
  filter: blur(14px);
}
.book-card .scene-label {
  color: #806344;
}
.video-feature {
  grid-column: 1/-1;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  align-items: center;
}
.video-feature>.feature-copy {
  padding: 50px 60px;
}
.video-feature .feature-number {
  color: #b1c2a6;
  display: block;
  margin-bottom: 30px;
}
.video-feature h3 {
  font-size: 43px;
  letter-spacing: -2px;
}
.video-feature h3 .serif {
  color: var(--peach);
}
.video-feature .feature-copy>p {
  color: #b3c3b5;
  max-width: 375px;
}
.video-feature .text-link {
  color: #dce6b2;
  margin-top: 20px;
}
.reels-scene {
  height: 440px;
  position: relative;
  isolation: isolate;
}
.reels-scene:before {
  content: '';
  position: absolute;
  border: 1px solid #65836655;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: 40px;
  left: 10%;
  z-index: -1;
}
.reel-card {
  position: absolute;
  width: 178px;
  height: 302px;
  padding: 18px;
  overflow: hidden;
  border-radius: 10px;
  border: 5px solid #ffffff14;
  box-shadow: 0 25px 25px #061d184d;
  top: 62px;
  color: var(--ink);
}
.reel-card>small {
  font-size: 5px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.reel-card>strong {
  position: absolute;
  font: 500 25px/1.05 var(--display);
  letter-spacing: -1px;
  bottom: 39px;
  left: 16px;
  z-index: 1;
}
.reel-back {
  background: #dce4c9;
  left: 12%;
  transform: rotate(-13deg);
}
.reel-back img {
  position: absolute;
  width: 180px;
  height: 220px;
  object-fit: contain;
  top: 30px;
  left: 0;
}
.reel-front {
  background: #e9b594;
  left: 42%;
  transform: rotate(10deg);
  top: 83px;
}
.reel-front .garment {
  width: 173px;
  height: 196px;
  position: absolute;
  top: 25px;
  left: 3px;
}
.reel-front>span {
  position: absolute;
  left: 16px;
  bottom: 13px;
  font-size: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.reel-front>span>.icon {
  width: 12px;
  height: 12px;
}
.export-badge {
  position: absolute;
  bottom: 26px;
  left: 20%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--acid);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 11px;
  transform: rotate(-3deg);
  box-shadow: 0 12px 24px #0b201b40;
}
.export-badge>.icon {
  width: 20px;
  height: 20px;
}
.operations-section {
  background: #203f34;
  color: var(--paper);
  padding: 90px 0;
}
.operations-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.operations-top>.eyebrow {
  color: #b5c8b4;
}
.operations-star {
  font-size: 95px;
  line-height: 1;
  color: var(--peach);
}
.operations-section h2 {
  font-size: clamp(64px,7.5vw,110px);
  letter-spacing: -5px;
  line-height: 1.03;
}
.operations-section h2>.serif {
  color: var(--peach);
}
.operations-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #557064;
  padding-top: 38px;
}
.operations-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #bdcbbd;
  max-width: 260px;
  padding-right: 20px;
}
.operations-grid article>.icon {
  color: var(--acid);
  margin-bottom: 23px;
  width: 26px;
  height: 26px;
}
.operations-grid h3 {
  font-size: 23px;
  letter-spacing: -.6px;
  line-height: 1.3;
}
.operations-grid article>p {
  font-size: 11px;
  color: #b1c3b4;
  line-height: 1.9;
  margin-top: 15px;
}
.operations-grid article>a {
  font-size: 9px;
  display: inline-block;
  margin-top: 19px;
  padding: 8px 0;
  color: var(--acid);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 55px;
}
.step-number {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  font: 400 43px var(--display);
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.step-number>span {
  font-size: 25px;
  color: #97a486;
}
.steps h3 {
  font-size: 25px;
}
.steps p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 14px;
  max-width: 330px;
}
.pricing-section {
  background: #e9eddf;
  padding-block: 95px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: 24px;
  align-items: start;
}
.plan {
  background: var(--paper);
  border: 1px solid #d6dec9;
  border-radius: 10px;
  padding: 32px;
  min-width: 0;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.plan-symbol {
  font-size: 26px;
}
.plan h3 {
  font-size: 36px;
}
.plan>p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 13px;
  min-height: 43px;
  color: var(--muted);
}
.price {
  font: 500 56px/1.1 var(--display);
  letter-spacing: -3px;
  margin-top: 32px;
}
.price>span {
  font: 400 12px var(--sans);
  letter-spacing: 0;
  margin-left: 7px;
}
.plan>p.plan-limit {
  margin: 12px 0 25px;
  min-height: 0;
  font-size: 11px;
}
.plan>.button {
  width: 100%;
  font-size: 12px;
  min-height: 49px;
}
.outline {
  border: 1px solid var(--ink);
}
.peach {
  background: var(--peach);
  color: var(--ink);
}
.plan>hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}
.plan>h4 {
  font-size: 12px;
  letter-spacing: 0;
}
.plan>.checklist {
  font-size: 10px;
  margin-top: 20px;
  gap: 13px;
}
.enterprise {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.enterprise>p {
  color: #bfcdbb;
}
.enterprise>hr {
  border-color: #476653;
}
.enterprise .checklist>li:before {
  color: var(--acid);
}
.pricing-note {
  padding: 20px 8px 0 22px;
}
.pricing-note>span {
  font-size: 60px;
  color: #9baa84;
  line-height: 1;
  display: block;
  margin-bottom: 30px;
}
.pricing-note h3 {
  font-size: 29px;
  line-height: 1.25;
}
.pricing-note p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 18px 0;
}
.pricing-note a {
  font-size: 14px;
  font-weight: 600;
}
.pricing-note>small {
  display: block;
  font-size: 10px;
  line-height: 1.8;
  color: #69745f;
  border-top: 1px solid #d0d8c4;
  padding-top: 24px;
  margin-top: 28px;
}
.faq-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}
.faq-section>div>.text-link {
  margin-top: 27px;
}
.faqs details {
  border-bottom: 1px solid var(--line);
}
.faqs details:first-child {
  border-top: 1px solid var(--line);
}
.faqs summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 23px 0;
  font-size: 13px;
  line-height: 1.6;
  list-style: none;
  cursor: pointer;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary:after {
  content: '+';
  font-size: 23px;
  color: #839672;
  flex-shrink: 0;
}
.faqs details[open] summary:after {
  content: '−';
}
.faqs p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 15px 23px 0;
}
.final-cta {
  background: #edb694;
  padding-block: 75px;
}
.final-cta h2 {
  font-size: clamp(65px,8.7vw,125px);
  letter-spacing: -6px;
  line-height: 1.05;
  position: relative;
}
.cta-asterisk {
  position: absolute;
  right: 1%;
  top: -45px;
  font-size: 220px;
  font-weight: 400;
  line-height: 1;
  color: #496041;
}
.cta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 35px;
}
.cta-bottom>p {
  font-size: 13px;
  color: #5c5841;
}
.footer-top {
  padding: 48px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top>p {
  font-size: 11px;
  color: var(--muted);
}
.footer-top>a:not(.brand) {
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 23px 0;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom>span:nth-child(2) {
  letter-spacing: 1px;
}
@keyframes preview-garment {
  0%,100% {
    transform: translateX(0) rotate(0);
  }
  50% {
    transform: translateX(-25px) rotate(-12deg);
  }
}
@keyframes playhead {
  from {
    left: 17%;
  }
  to {
    left: 98%;
  }
}
.motion-paused * {
  animation-play-state: paused!important;
}
@media(max-width:1200px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 15px;
  }
  .hero h1 {
    font-size: 88px;
    letter-spacing: -5px;
  }
  .hero-actions {
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero-art {
    height: 520px;
  }
  .integrations {
    gap: 25px;
  }
  .integrations>div {
    gap: 24px;
  }
  .integrations>a {
    display: none;
  }
  .solution-panel {
    padding: 38px;
    gap: 35px;
  }
  .solution-copy h3 {
    font-size: 33px;
  }
  .solution-tabs button {
    font-size: 10px;
    gap: 6px;
  }
  .design-workspace {
    padding: 18px;
    gap: 14px;
    grid-template-columns: .55fr 1fr;
  }
  .fashion-art {
    padding: 14px;
  }
  .fashion-art .garment {
    width: 185px;
    height: 213px;
  }
  .fashion-art h4 {
    font-size: 26px;
  }
  .layers {
    font-size: 7px;
  }
  .layers>span {
    padding: 9px 5px;
  }
  .video-feature>.feature-copy {
    padding: 40px;
  }
  .operations-grid {
    gap: 25px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-note {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    gap: 25px;
    align-items: center;
    padding: 15px 0 0;
  }
  .pricing-note>span {
    margin: 0;
  }
  .pricing-note p {
    margin: 10px 0;
  }
  .pricing-note>small {
    margin: 0;
    border-top: 0;
    border-left: 1px solid #c9d2be;
    padding: 0 0 0 25px;
  }
  .faq-section {
    gap: 55px;
  }
  .footer-top>p {
    display: none;
  }
}
@media(max-width:950px) {
  .site-header nav {
    gap: 19px;
  }
  .brand {
    font-size: 22px;
  }
  .site-header nav .nav-cta {
    display: none;
  }
  .hero h1 {
    font-size: 74px;
    letter-spacing: -4px;
  }
  .hero h1 .serif {
    letter-spacing: -3px;
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-art {
    height: 460px;
  }
  .hero {
    min-height: 640px;
    padding-block: 50px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 16px;
  }
  .section-space {
    padding-block: 85px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading>p {
    max-width: 240px;
    font-size: 12px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .solution-tabs {
    grid-template-columns: repeat(3,1fr);
  }
  .solution-tabs button {
    justify-content: start;
    padding: 13px 16px;
    min-height: 51px;
    gap: 10px;
  }
  .solution-tabs small {
    display: block;
    margin-left: auto;
    font-size: 7px;
  }
  .solution-panel {
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    padding: 28px;
  }
  .solution-copy h3 {
    font-size: 29px;
  }
  .solution-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .checklist {
    font-size: 10px;
  }
  .design-workspace {
    grid-template-columns: 1fr;
    padding: 20px 40px;
  }
  .layers {
    display: none;
  }
  .fashion-art {
    min-height: 280px;
  }
  .fashion-art .garment {
    width: 220px;
    height: 230px;
  }
  .demo-toolbar {
    padding: 13px;
  }
  .demo-status {
    font-size: 6px;
  }
  .feature-copy {
    padding: 25px 30px 35px;
  }
  .feature-copy h3 {
    font-size: 30px;
  }
  .video-feature h3 {
    font-size: 36px;
  }
  .video-feature>.feature-copy {
    padding: 32px;
  }
  .reel-card {
    width: 154px;
    height: 275px;
  }
  .reel-back {
    left: 6%;
  }
  .reel-front {
    left: 41%;
  }
  .reel-front .garment {
    width: 149px;
    height: 175px;
  }
  .reels-scene:before {
    width: 290px;
    height: 290px;
  }
  .operations-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .operations-intro {
    grid-column: 1/-1;
    max-width: 570px;
  }
  .feed-demo {
    padding: 18px;
  }
  .source-path>span {
    padding: 7px 8px;
  }
  .ai-demo {
    padding: 20px 14px;
    gap: 12px 8px;
    grid-template-columns: 25px 1fr;
  }
  .ai-answer {
    padding: 20px 15px;
  }
  .ai-answer>h4 {
    font-size: 23px;
  }
  .ai-answer>div {
    font-size: 7px;
  }
  .telegram-demo {
    padding: 20px;
  }
  .automation-demo {
    padding: 22px 18px;
  }
  .auto-node {
    padding: 14px 10px;
    gap: 10px;
  }
  .auto-node strong {
    font-size: 9px;
  }
  .cta-asterisk {
    font-size: 155px;
    top: -15px;
  }
  .steps {
    gap: 30px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .faq-section {
    gap: 35px;
  }
  .final-cta h2 {
    font-size: 90px;
  }
}
@media(max-width:700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 83px;
    position: relative;
    flex-wrap: wrap;
    padding-block: 18px;
    gap: 0;
  }
  .brand {
    font-size: 23px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: -20px;
    right: -20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 15px 25px 25px;
    z-index: 20;
    box-shadow: 0 20px 25px #183e3210;
  }
  .site-header nav.is-open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }
  .site-header nav>a {
    min-height: 44px;
  }
  .login {
    border: 0;
    padding-left: 0;
  }
  .site-header nav .nav-cta {
    display: flex;
    justify-content: space-between;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 28px;
    gap: 10px;
  }
  .hero-copy {
    max-width: 570px;
  }
  .hero h1 {
    font-size: clamp(72px,14.5vw,95px);
    letter-spacing: -5px;
  }
  .hero h1 .serif {
    font-size: .65em;
    letter-spacing: -2.5px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 23px;
  }
  .hero-intro {
    font-size: 14px;
    margin-top: 20px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-note {
    font-size: 7px;
    letter-spacing: 1px;
    margin-top: 20px;
  }
  .hero-art {
    width: min(480px,100%);
    height: 440px;
    margin: 20px auto 0;
  }
  .integrations {
    display: block;
    text-align: center;
    padding-block: 25px;
  }
  .integrations>span {
    display: block;
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .integrations>span>br {
    display: none;
  }
  .integrations>div {
    flex-wrap: wrap;
    gap: 17px 28px;
    margin-top: 18px;
  }
  .integrations b {
    font-size: 19px;
  }
  .integration-divider {
    display: none;
  }
  .section-space {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .section-heading>p {
    margin-top: 20px;
    max-width: 380px;
    font-size: 13px;
  }
  .solution-tabs {
    gap: 6px;
    margin-bottom: 12px;
  }
  .solution-tabs button {
    justify-content: center;
    font-size: 9px;
    padding: 12px 5px;
    gap: 6px;
    min-height: 48px;
  }
  .solution-tabs .icon {
    width: 15px;
    height: 15px;
  }
  .solution-tabs small {
    display: none;
  }
  .solution-panel {
    grid-template-columns: minmax(0,1fr);
    padding: 28px 24px;
    gap: 30px;
  }
  .solution-copy h3 {
    font-size: 34px;
  }
  .solution-copy>p:not(.eyebrow) {
    font-size: 13px;
  }
  .checklist {
    font-size: 11px;
  }
  .solution-copy>.text-link {
    margin-top: 0;
  }
  .solution-copy .eyebrow {
    font-size: 7px;
  }
  .product-demo {
    width: 100%;
    max-width: 460px;
    margin: auto;
  }
  .design-workspace {
    grid-template-columns: .6fr 1fr;
    padding: 20px;
    gap: 14px;
  }
  .layers {
    display: flex;
  }
  .fashion-art {
    min-height: 275px;
  }
  .fashion-art .garment {
    width: 205px;
    height: 220px;
    right: -15px;
  }
  .fashion-art h4 {
    font-size: 26px;
  }
  .demo-status {
    font-size: 7px;
  }
  .tour-caption {
    gap: 8px;
    font-size: 6px;
    flex-wrap: wrap;
    line-height: 1.8;
    margin-top: 17px;
  }
  .tour-caption>span:last-child {
    width: 100%;
    margin-left: 14px;
    font-size: 8px;
  }
  .creative-section {
    padding-top: 10px;
  }
  .creative-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature-heading {
    padding: 24px 28px;
  }
  .mannequin-scene {
    height: 290px;
  }
  .book-scene {
    height: 280px;
  }
  .feature-copy {
    padding: 26px 30px 34px;
  }
  .feature-copy h3 {
    font-size: 33px;
  }
  .feature-copy>p {
    max-width: 400px;
    font-size: 13px;
  }
  .video-feature {
    grid-template-columns: 1fr;
  }
  .video-feature>.feature-copy {
    padding: 32px 30px 0;
  }
  .video-feature h3 {
    font-size: 37px;
  }
  .video-feature .feature-number {
    margin-bottom: 20px;
  }
  .reels-scene {
    height: 370px;
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .reel-card {
    width: 160px;
    height: 268px;
    top: 35px;
  }
  .reel-back {
    left: 15%;
  }
  .reel-front {
    left: 43%;
    top: 55px;
  }
  .reels-scene:before {
    top: 30px;
    left: 17%;
  }
  .export-badge {
    bottom: 14px;
    left: 22%;
    font-size: 10px;
    padding: 13px 19px;
  }
  .operations-section {
    padding-block: 55px;
  }
  .operations-star {
    font-size: 53px;
  }
  .operations-top>.eyebrow {
    font-size: 6px;
    letter-spacing: 1px;
    max-width: 230px;
    margin-bottom: 10px;
  }
  .operations-section h2 {
    font-size: clamp(55px,10vw,80px);
    letter-spacing: -3px;
    margin-top: 22px;
  }
  .operations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
  }
  .operations-intro {
    font-size: 14px;
    max-width: 440px;
  }
  .operations-grid article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0 15px;
    border-top: 1px solid #486557;
    padding-top: 25px;
  }
  .operations-grid article>.icon {
    grid-row: 1/4;
    margin-top: 3px;
  }
  .operations-grid article>h3 {
    font-size: 24px;
  }
  .operations-grid article>p {
    font-size: 12px;
    margin-top: 10px;
  }
  .operations-grid article>a {
    grid-column: 2;
    margin-top: 7px;
    font-size: 10px;
    min-height: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-number {
    font-size: 32px;
    margin-bottom: 18px;
    padding-top: 18px;
  }
  .steps h3 {
    font-size: 25px;
  }
  .steps p {
    max-width: 460px;
    margin-top: 12px;
  }
  .section-heading>.text-link {
    margin-top: 20px;
  }
  .pricing-section {
    padding-block: 60px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plan {
    padding: 30px;
  }
  .plan-top {
    margin-bottom: 22px;
  }
  .plan>p {
    min-height: 0;
  }
  .price {
    font-size: 57px;
    margin-top: 24px;
  }
  .plan>.checklist {
    font-size: 12px;
  }
  .pricing-note {
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 20px 0 0;
  }
  .pricing-note>span {
    font-size: 45px;
    align-self: start;
  }
  .pricing-note h3 {
    font-size: 25px;
  }
  .pricing-note>small {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid #c9d2be;
    padding: 20px 0 0;
    font-size: 11px;
  }
  .pricing-note p {
    font-size: 13px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section>div>.text-link {
    margin-top: 17px;
  }
  .faqs summary {
    font-size: 13px;
    padding-block: 20px;
    gap: 16px;
  }
  .faqs p {
    font-size: 12px;
  }
  .final-cta {
    padding-block: 52px;
  }
  .final-cta h2 {
    font-size: clamp(52px,10vw,74px);
    letter-spacing: -3px;
  }
  .final-cta .eyebrow {
    font-size: 7px;
  }
  .cta-asterisk {
    font-size: 80px;
    top: -17px;
    right: 0;
  }
  .cta-bottom {
    display: block;
    margin-top: 25px;
  }
  .cta-bottom>.button {
    margin-top: 25px;
  }
  .cta-bottom>p {
    font-size: 13px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 35px 0 28px;
  }
  .footer-top>p {
    display: block;
    margin-top: -6px;
  }
  .footer-top>a:not(.brand) {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 15px;
  }
  .footer-bottom>span:nth-child(2) {
    display: none;
  }
  .feed-demo {
    padding: 22px;
  }
  .ai-demo {
    padding: 24px 20px;
  }
  .ai-answer>div {
    font-size: 8px;
  }
  .automation-demo {
    padding: 25px;
  }
  .auto-node strong {
    font-size: 11px;
  }
  .video-canvas .garment {
    width: 220px;
  }
  .telegram-demo {
    padding: 22px 28px;
  }
}
@media(max-width:380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 21px;
  }
  .hero h1 {
    font-size: 66px;
    letter-spacing: -4px;
  }
  .hero h1 .serif {
    font-size: .66em;
    letter-spacing: -2.3px;
  }
  .hero-intro {
    font-size: 12px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    font-size: 10px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-art {
    height: 382px;
  }
  .hero-note {
    font-size: 6px;
    letter-spacing: .7px;
  }
  .integrations>div {
    gap: 17px 26px;
  }
  .integrations b {
    font-size: 17px;
  }
  .section-heading h2 {
    font-size: 33px;
    letter-spacing: -1.6px;
  }
  .solution-tabs button {
    font-size: 8px;
    gap: 5px;
  }
  .solution-tabs .icon {
    width: 13px;
    height: 13px;
  }
  .solution-panel {
    padding: 24px 15px;
  }
  .solution-copy h3 {
    font-size: 30px;
  }
  .solution-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .design-workspace {
    padding: 14px;
    grid-template-columns: 1fr;
  }
  .layers {
    display: none;
  }
  .fashion-art {
    min-height: 285px;
    padding: 20px;
  }
  .fashion-art .garment {
    width: 220px;
    height: 245px;
    right: -5px;
  }
  .fashion-art h4 {
    font-size: 32px;
  }
  .demo-toolbar {
    padding: 12px 10px;
    font-size: 8px;
  }
  .demo-status {
    font-size: 6px;
  }
  .tour-caption {
    font-size: 5px;
  }
  .rule-box {
    gap: 4px 8px;
    padding: 13px;
  }
  .rule-box>strong {
    font-size: 11px;
  }
  .rule-box>button {
    font-size: 7px;
    padding: 8px;
  }
  .feed-demo {
    padding: 15px;
  }
  .source-path {
    font-size: 7px;
  }
  .source-path>span {
    padding: 7px 9px;
  }
  .table-row {
    font-size: 8px;
  }
  .table-head {
    font-size: 6px;
  }
  .ai-demo {
    padding: 18px 12px;
    grid-template-columns: 22px 1fr;
  }
  .ai-avatar {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .ai-question {
    font-size: 8px;
  }
  .ai-answer {
    padding: 17px 12px;
  }
  .ai-answer>h4 {
    font-size: 22px;
  }
  .ai-answer>div {
    font-size: 7px;
    gap: 6px;
  }
  .automation-demo {
    padding: 20px 15px;
  }
  .auto-node strong {
    font-size: 9px;
  }
  .telegram-demo {
    padding: 20px 15px;
  }
  .chat-message {
    max-width: 97%;
  }
  .video-demo {
    padding: 18px;
  }
  .video-canvas {
    height: 250px;
  }
  .video-canvas h4 {
    font-size: 28px;
    left: 14px;
  }
  .video-canvas .garment {
    width: 175px;
  }
  .feature-heading {
    padding: 23px;
  }
  .feature-number {
    font-size: 7px;
  }
  .feature-copy {
    padding: 24px;
  }
  .feature-copy h3 {
    font-size: 30px;
  }
  .mannequin-scene>.garment {
    width: 230px;
    height: 250px;
  }
  .scene-label {
    left: 18px;
    font-size: 6px;
  }
  .mini-chip {
    right: 18px;
    font-size: 7px;
  }
  .video-feature>.feature-copy {
    padding: 28px 24px 0;
  }
  .video-feature h3 {
    font-size: 31px;
  }
  .reel-card {
    width: 138px;
    height: 241px;
  }
  .reel-card>strong {
    font-size: 23px;
  }
  .reel-front .garment {
    width: 132px;
    height: 162px;
  }
  .reel-back {
    left: 9%;
  }
  .reel-front {
    left: 43%;
  }
  .reels-scene {
    height: 335px;
  }
  .reels-scene:before {
    width: 240px;
    height: 240px;
    left: 10%;
  }
  .operations-section h2 {
    font-size: 53px;
  }
  .plan {
    padding: 26px;
  }
  .cta-asterisk {
    font-size: 65px;
    top: -11px;
  }
  .final-cta h2 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }
}
.hero-art {
  overflow: clip;
  overflow-clip-margin: 16px;
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
}
