@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #222222;
  --muted: #747474;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --red: #f44b34;
  --pink: #f50768;
  --gradient: linear-gradient(105deg, #fa6418 0%, #f43d39 48%, #ed1467 100%);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
button svg,
a svg {
  flex-shrink: 0;
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #e72b54;
  outline-offset: 5px;
  border-radius: 5px;
}
button:disabled {
  cursor: default;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 120px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 600;
  line-height: 1.7;
}
.gradient-text {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-dark {
  background: #242424;
  color: #fff;
  box-shadow: 0 3px 4px #0000000a;
}
.button-dark:hover {
  background: #080808;
  box-shadow: 0 8px 18px #00000014;
}
.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 11px;
  gap: 16px;
  border-radius: 7px;
}
.button-outline {
  border-color: #d3d3d3;
  background: #ffffff90;
}
.button-outline:hover {
  background: #fff;
}
.button .icon {
  width: 17px;
  height: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 8px;
}
.text-link .icon {
  width: 17px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: #fff;
  border: 2px solid var(--red);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* A quiet frame leaves the product itself in focus. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #eeeeeecc;
}
.nav-wrap {
  width: min(1280px, calc(100% - 80px));
  height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 116px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 62px;
}
.desktop-nav a {
  font-size: 11px;
  color: #626262;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #f14436;
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  overflow: hidden;
  padding-top: 71px;
}
.hero-copy {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-copy > .eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 1.9px;
  color: #666;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px #f44b3410;
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 79px);
  line-height: 1.15;
  letter-spacing: -3.8px;
  margin-top: 22px;
}
.hero-description {
  font-size: 14px;
  line-height: 1.9;
  color: #686868;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}
.watch-button {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  font-size: 12px;
}
.watch-button[hidden] {
  display: none;
}
.watch-button > span {
  height: 29px;
  width: 29px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.watch-button:hover > span {
  background: #f1f1f1;
}
.watch-button .icon {
  width: 11px;
  height: 11px;
  fill: currentColor;
  stroke: none;
  margin-left: 2px;
}
.hero-promise {
  margin-top: 17px;
  font-size: 10px;
  color: #686868;
}
.hero-stage {
  width: min(1320px, calc(100% - 70px));
  margin: 70px auto 0;
  position: relative;
  padding: 0 42px 80px;
  perspective: 1600px;
}
.stage-halo {
  position: absolute;
  inset: -30px -40px 20px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 25% 50%, #ff881321, transparent 65%),
    radial-gradient(ellipse at 80% 60%, #f7007022, transparent 65%);
  filter: blur(24px);
}
.hero-builder {
  position: relative;
  transform: rotateX(6deg);
  transform-origin: 50% 0;
  will-change: transform;
  box-shadow:
    0 32px 65px #30202017,
    0 3px 8px #0000000a;
  border-radius: 13px;
}
.builder-window {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  font-size: 9px;
  box-shadow: 0 24px 50px #2116160a;
}
.app-top {
  height: 53px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 19px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}
.app-title {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.app-title > .icon {
  width: 15px;
  height: 15px;
  color: #686868;
}
.app-title b {
  font-size: 10px;
  font-weight: 500;
}
.draft-label {
  padding: 3px 6px;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 7px;
  color: #686868;
}
.app-saved {
  margin-left: auto;
  color: #686868;
  font-size: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.app-saved .icon {
  width: 11px;
  height: 11px;
  color: #40916b;
}
.app-devices {
  display: flex;
  gap: 10px;
  color: #686868;
  margin-left: 10px;
}
.app-devices .icon {
  height: 13px;
  width: 13px;
}
.app-publish {
  padding: 8px 13px;
  background: var(--gradient);
  color: #fff;
  border-radius: 5px;
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.app-publish .icon {
  width: 10px;
  height: 10px;
}
.builder-body {
  display: flex;
  min-height: 400px;
}
.tool-rail {
  width: 52px;
  flex-shrink: 0;
  border-right: 1px solid #ededed;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  background: #fff;
}
.tool-rail > span {
  width: 39px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border-radius: 5px;
  color: #686868;
}
.tool-rail .selected {
  color: #be3039;
  background: #fff0f1;
}
.tool-rail .icon {
  width: 15px;
  height: 15px;
}
.tool-rail small {
  font-size: 6px;
}
.layers-panel {
  position: relative;
  width: 165px;
  flex-shrink: 0;
  padding: 21px 12px;
  border-right: 1px solid #e9e9e9;
  background: #fff;
}
.layers-panel > small,
.inspector > small {
  display: block;
  letter-spacing: 1px;
  font-size: 6px;
  color: #686868;
  margin-bottom: 5px;
}
.layers-panel > b,
.inspector > b {
  font-size: 10px;
  font-weight: 600;
}
.panel-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #eee;
  margin: 20px 0 14px;
  font-size: 8px;
  color: #686868;
}
.panel-tabs > * {
  width: 50%;
  text-align: center;
  padding-bottom: 8px;
}
.panel-tabs strong {
  border-bottom: 1px solid #f34f47;
  color: #333;
  font-weight: 500;
}
.layer-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 8px;
  padding: 10px 7px;
  border-radius: 5px;
  margin: 3px 0;
}
.layer-item .icon,
.layer-child .icon {
  height: 12px;
  width: 12px;
  color: #686868;
}
.layer-item.chosen {
  background: #fff1f0;
  color: #bb352c;
}
.layer-item > span {
  margin-left: auto;
}
.layer-child {
  padding: 7px 0 7px 26px;
  font-size: 7px;
  color: #686868;
  display: flex;
  align-items: center;
  gap: 5px;
}
.add-section {
  border: 1px dashed #ddd;
  border-radius: 5px;
  padding: 9px 6px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #686868;
  font-size: 7px;
}
.add-section .icon {
  width: 11px;
  height: 11px;
}
.panel-foot {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 6px;
  display: flex;
  gap: 4px;
  align-items: center;
  color: #686868;
}
.panel-foot .icon {
  width: 10px;
  height: 10px;
}
.canvas-wrap {
  flex: 1;
  min-width: 0;
  padding: 24px 26px;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.canvas-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #686868;
  font-size: 6px;
  margin: 0 0 18px;
}
.canvas-label > span:first-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
.canvas-label .icon {
  width: 9px;
  height: 9px;
}
.canvas-store {
  position: relative;
  outline: 1px solid #ee5569;
  background: #fff;
}
.selection-tag {
  position: absolute;
  top: 0;
  left: -1px;
  transform: translateY(-100%);
  padding: 3px 6px;
  background: #cb3050;
  color: white;
  font-size: 6px;
  border-radius: 3px 3px 0 0;
}
.handle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 1px solid #ed5265;
}
.handle.h1 {
  left: -3px;
  top: -3px;
}
.handle.h2 {
  right: -3px;
  top: -3px;
}
.handle.h3 {
  bottom: -3px;
  left: -3px;
}
.handle.h4 {
  bottom: -3px;
  right: -3px;
}
.canvas-footer {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 6px;
  color: #686868;
}
.canvas-footer .icon {
  width: 10px;
  height: 10px;
}
.inspector {
  width: 160px;
  flex-shrink: 0;
  padding: 21px 14px;
  background: #fff;
  border-left: 1px solid #e8e8e8;
}
.inspector-label {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  margin: 22px 0 10px;
  color: #686868;
}
.swatches {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
}
.swatches i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f44b34;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
}
.swatches i:nth-child(2) {
  background: #eb8a9c;
}
.swatches i:nth-child(3) {
  background: #566951;
}
.swatches i:nth-child(4) {
  background: #292929;
}
.color-field {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  font-size: 6px;
  border-bottom: 1px solid #f0f0f0;
  color: #686868;
}
.color-field i {
  width: 11px;
  height: 11px;
  background: #f44b34;
  border-radius: 3px;
}
.color-field:nth-of-type(4) i {
  background: #fff;
  border: 1px solid #ddd;
}
.color-field span {
  margin-left: auto;
  color: #666;
  font-size: 5px;
}
.fake-select {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 8px;
  font-size: 7px;
  display: flex;
  justify-content: space-between;
}
.fake-range {
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f14549 38%, #e8e8e8 38%);
}
.fake-range i {
  display: block;
  position: relative;
  left: 37%;
  top: -3px;
  width: 10px;
  height: 10px;
  background: white;
  border: 1px solid #eee;
  border-radius: 50%;
  box-shadow: 0 2px 4px #0002;
}
.button-sample {
  padding: 10px 8px;
  text-align: center;
  color: #fff;
  background: #d8352c;
  border-radius: 5px;
  font-size: 7px;
}
.button-sample .icon {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.demo-store {
  background: #fff;
  color: #282323;
  container-type: inline-size;
}
.store-nav {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid #f2eded;
}
.store-nav > b {
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: -1px;
}
.store-nav b > span {
  color: #e93838;
}
.store-nav > span {
  font-size: 6px;
  margin-left: auto;
  margin-right: 25px;
  color: #706161;
}
.store-nav > .icon {
  width: 12px;
  height: 12px;
}
.store-content {
  display: flex;
  align-items: stretch;
}
.store-copy {
  width: 48%;
  padding: 9% 5% 8% 6%;
  align-self: center;
}
.store-kicker {
  font-size: 5.5px;
  font-weight: 500;
  letter-spacing: 1.1px;
  color: #af5e59;
}
.store-copy h3 {
  font-family: Georgia, serif;
  font-size: clamp(20px, 5.5cqw, 65px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 400;
  margin: 14px 0 12px;
}
.store-copy > p {
  font-size: 7px;
  color: #686868;
  line-height: 1.8;
}
.store-buy {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  margin-top: 16px;
  color: #fff;
  background: #d8352c;
  font-size: 6px;
  border-radius: 3px;
}
.store-buy .icon {
  width: 10px;
  height: 10px;
}
.store-content > img {
  width: 52%;
  object-fit: cover;
}
.store-bottom {
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  font-size: 5px;
  color: #686868;
  border-top: 1px solid #eee;
}
.store-bottom .icon {
  width: 8px;
  height: 8px;
  margin-left: 8px;
}
.floating-product {
  position: absolute;
  left: 0;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  background: #ffffffed;
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  border-radius: 12px;
  box-shadow: 0 20px 55px #5d22221c;
  transform: rotate(-3deg);
}
.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: #eb5e4b;
  background: #fff0ed;
}
.floating-product small {
  font-size: 6px;
  letter-spacing: 0.6px;
  display: block;
  color: #686868;
}
.floating-product strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin: 4px 0;
}
.floating-product > div > span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  color: #686868;
}
.floating-product > div > span i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #37a36b;
}
.floating-product > img {
  width: 46px;
  height: 46px;
  border-radius: 5px;
  object-fit: cover;
  margin-left: 8px;
}
.phone-preview {
  position: absolute;
  right: 1px;
  bottom: 35px;
  width: 186px;
  background: #fff;
  border: 5px solid #282828;
  border-radius: 30px;
  box-shadow: 0 20px 40px #34262629;
  overflow: hidden;
  transform: rotate(5deg);
}
.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #282828;
  width: 55px;
  height: 14px;
  border-radius: 20px;
  z-index: 1;
}
.phone-status {
  height: 30px;
  padding: 8px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
}
.store-mobile .store-nav {
  height: 35px;
  padding: 0 14px;
}
.store-mobile .store-nav > b {
  font-size: 22px;
}
.store-mobile .store-nav > span {
  display: none;
}
.store-mobile .store-content {
  display: flex;
  flex-direction: column;
}
.store-mobile .store-copy {
  width: 100%;
  padding: 20px 17px;
}
.store-mobile .store-kicker {
  font-size: 5px;
}
.store-mobile .store-copy h3 {
  font-size: 27px;
  line-height: 1.08;
  max-width: 130px;
  margin: 8px 0;
}
.store-mobile .store-copy > p {
  font-size: 6px;
}
.store-mobile .store-buy {
  font-size: 5px;
  padding: 8px 9px;
  margin-top: 10px;
}
.store-mobile .store-content > img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}
.store-mobile .store-bottom {
  display: none;
}
.phone-home {
  height: 3px;
  width: 56px;
  background: #333;
  border-radius: 4px;
  margin: 7px auto;
}
.stage-caption {
  position: absolute;
  bottom: 15px;
  left: 42px;
  right: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #686868;
}
.caption-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f14646;
}
.stage-caption > span:last-child {
  margin-left: auto;
  font-size: 7px;
  color: #686868;
  margin-right: 170px;
}
.platform-strip {
  padding: 35px 0 48px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.platform-strip > p {
  font-size: 10px;
  color: #686868;
  margin-bottom: 23px;
}
.platform-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.platform-strip > div > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #5d5d5d;
}
.platform-strip .icon {
  color: #686868;
  width: 17px;
  height: 17px;
}
.platform-strip > div > i {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #d2d2d2;
}
/* Product stories use spacious editorial rows, never a decorative grid. */
h2 {
  font-size: clamp(32px, 3.5vw, 49px);
  letter-spacing: -2px;
  line-height: 1.17;
}
.product-section {
  display: flex;
  align-items: center;
  gap: 70px;
}
.section-copy {
  width: 34%;
  flex-shrink: 0;
}
.section-copy .eyebrow,
.section-heading .eyebrow,
.journey-intro .eyebrow,
.faq-layout .eyebrow {
  color: #905b5b;
  margin-bottom: 22px;
}
.section-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.95;
  color: #686868;
  max-width: 340px;
  margin-top: 24px;
}
.feature-list {
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}
.feature-list li {
  font-size: 10px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
  color: #686868;
}
.feature-list .icon {
  width: 13px;
  height: 13px;
  color: #e94849;
}
.product-stage {
  flex: 1;
  min-width: 0;
  padding: 40px 0 34px 29px;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5, #fce9ee);
  border-radius: 20px;
}
.product-window {
  border: 1px solid #ddd;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  box-shadow: 0 20px 45px #53262617;
  width: calc(100% + 25px);
  position: relative;
}
.product-window .app-top {
  height: 47px;
  padding: 0 14px;
}
.product-window .app-title b {
  font-size: 9px;
}
.product-window .app-publish {
  padding: 7px 10px;
  font-size: 7px;
}
.product-body {
  display: flex;
  padding: 22px 18px;
  gap: 20px;
  background: #fafafa;
}
.product-fields {
  width: 56%;
  padding: 17px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 7px;
}
.editor-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 13px;
}
.editor-heading:not(:first-child) {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #f0f0f0;
}
.editor-heading > span {
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0ee;
  border-radius: 5px;
  font-size: 6px;
  color: #b83d36;
}
.editor-heading b {
  font-size: 8px;
  font-weight: 500;
}
.editor-heading small {
  font-size: 6px;
  margin-left: auto;
  color: #686868;
}
.field-label {
  font-size: 6px;
  color: #686868;
  margin-bottom: 5px;
  margin-top: 10px;
}
.fake-input {
  padding: 8px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  font-size: 7px;
  line-height: 1.5;
  background: #fff;
  color: #4e4e4e;
}
.fake-input.description {
  font-size: 6px;
  color: #686868;
  line-height: 1.8;
  min-height: 48px;
}
.field-pair {
  display: flex;
  gap: 8px;
}
.field-pair > div {
  width: 50%;
}
.image-upload {
  display: flex;
  gap: 6px;
}
.image-upload > img {
  width: 23%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}
.image-upload > .detail-photo {
  object-position: 80%;
  object-fit: cover;
  clip-path: inset(0 round 5px);
  transform: scaleX(-1);
}
.image-upload > .second {
  filter: saturate(0.65);
}
.image-upload > span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ddd;
  border-radius: 5px;
  color: #686868;
}
.image-upload .icon {
  height: 14px;
  width: 14px;
}
.toggle {
  margin-left: auto;
  width: 20px;
  height: 11px;
  background: var(--gradient);
  border-radius: 10px;
  position: relative;
}
.toggle:after {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 6px;
}
.variant-row > span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #686868;
}
.variant-row > b {
  font-size: 6px;
  font-weight: 500;
}
.variant-dot {
  width: 7px;
  height: 7px;
  background: #e8493d;
  border-radius: 50%;
}
.variant-dot.pink {
  background: #d27c91;
}
.product-preview {
  flex: 1;
  min-width: 0;
}
.preview-label {
  font-size: 5px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #686868;
  margin: 0 2px 10px;
}
.preview-label .icon {
  width: 10px;
  height: 10px;
}
.product-card {
  background: white;
  border: 1px solid #e7e7e7;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 20px #00000005;
}
.product-card > img {
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card > div {
  padding: 14px;
}
.product-category {
  font-size: 5px;
  letter-spacing: 1px;
  color: #94554e;
}
.product-card h3 {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  margin: 7px 0;
}
.product-card strong {
  font-size: 11px;
  font-weight: 600;
}
.product-card p {
  font-size: 6px;
  line-height: 1.8;
  color: #686868;
  margin: 10px 0;
}
.variant-options {
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 12px 0;
}
.variant-options i {
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  background: #e84439;
  outline: 1px solid #ddd;
  border-radius: 50%;
}
.variant-options i:nth-child(2) {
  background: #db8599;
}
.variant-options > span {
  margin-left: auto;
  font-size: 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 3px 6px;
}
.product-buy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #222;
  color: white;
  padding: 9px;
  font-size: 7px;
  border-radius: 4px;
}
.product-buy .icon {
  width: 10px;
  height: 10px;
}
.product-card small {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 4.5px;
  color: #686868;
  margin-top: 10px;
  white-space: nowrap;
}
.product-card small .icon {
  width: 8px;
  height: 8px;
}
.preview-note {
  font-size: 5.5px;
  color: #686868;
  text-align: center;
  margin-top: 13px;
}
.detail-callout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  color: #936f74;
  margin-top: 21px;
}
.detail-callout .icon {
  height: 12px;
  width: 12px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.section-heading > p {
  max-width: 340px;
  font-size: 12px;
  color: #686868;
  line-height: 1.95;
}
.muted-heading {
  color: #686868;
}
.page-section {
  background: #f7f7f7;
}
.page-showcase {
  position: relative;
  border: 1px solid #e4e4e4;
  border-radius: 17px;
  background: linear-gradient(130deg, #e8e8e8, #f2e9ed);
  padding: 0 80px 48px;
}
.page-showcase-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 75px;
  color: #686868;
  font-size: 9px;
}
.page-showcase-toolbar > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.page-showcase-toolbar .icon {
  height: 14px;
  width: 14px;
}
.device-switch {
  display: flex;
  gap: 4px;
  background: #dcdcdc80;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  padding: 3px;
}
.device-switch button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 8px;
  color: #686868;
}
.device-switch button.active {
  background: #fff;
  color: #343434;
  box-shadow: 0 2px 4px #00000007;
}
.device-switch .icon {
  height: 12px;
  width: 12px;
}
.responsive-preview {
  width: 100%;
  margin: auto;
  transition:
    width 0.8s var(--ease),
    border-radius 0.8s var(--ease);
  box-shadow: 0 28px 50px #4c242414;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.responsive-preview .store-nav {
  height: 64px;
}
.responsive-preview .store-nav > b {
  font-size: 35px;
}
.responsive-preview .store-nav > span {
  font-size: 9px;
}
.responsive-preview .store-nav > .icon {
  width: 16px;
  height: 16px;
}
.responsive-preview .store-kicker {
  font-size: 8px;
}
.responsive-preview .store-copy > p {
  font-size: 11px;
}
.responsive-preview .store-buy {
  font-size: 9px;
  padding: 13px 16px;
  margin-top: 23px;
  border-radius: 5px;
}
.responsive-preview .store-buy .icon {
  width: 13px;
  height: 13px;
}
.responsive-preview .store-copy h3 {
  margin: 20px 0;
}
.responsive-preview .store-bottom {
  font-size: 8px;
  padding-block: 20px;
}
.responsive-preview .store-bottom .icon {
  height: 11px;
  width: 11px;
}
.responsive-preview[data-preview-device="mobile"] {
  width: 300px;
  border-radius: 18px;
  box-shadow:
    0 0 0 6px #343434,
    0 28px 50px #4c242414;
}
.responsive-preview[data-preview-device="mobile"] .store-content {
  flex-direction: column;
}
.responsive-preview[data-preview-device="mobile"] .store-copy {
  width: 100%;
  padding: 28px;
}
.responsive-preview[data-preview-device="mobile"] .store-copy h3 {
  font-size: 43px;
  margin: 12px 0;
}
.responsive-preview[data-preview-device="mobile"] .store-copy > p {
  font-size: 10px;
}
.responsive-preview[data-preview-device="mobile"] .store-content > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.responsive-preview[data-preview-device="mobile"] .store-nav > span {
  display: none;
}
.responsive-preview[data-preview-device="mobile"] .store-nav {
  height: 50px;
}
.responsive-preview[data-preview-device="mobile"] .store-bottom {
  display: none;
}
.design-chip {
  position: absolute;
  bottom: 25px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 23px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 18px 32px #6b384317;
}
.design-chip > .icon {
  color: #e74749;
  width: 25px;
  height: 25px;
}
.design-chip small {
  display: block;
  font-size: 6px;
  color: #686868;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.design-chip b {
  font-size: 10px;
  font-weight: 500;
}
.chip-swatches {
  display: flex;
  margin-left: 20px;
}
.chip-swatches i {
  height: 22px;
  width: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #ef4a3d;
  margin-left: -5px;
}
.chip-swatches i:nth-child(2) {
  background: #e393a4;
}
.chip-swatches i:nth-child(3) {
  background: #292727;
}
.page-benefits {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 900px;
  margin: 36px auto 0;
  color: #686868;
  font-size: 10px;
}
.page-benefits > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.page-benefits .icon {
  width: 15px;
  height: 15px;
  color: #686868;
}
.motion-section {
  background: #1d1d1d;
  color: #fff;
}
.motion-section .eyebrow {
  color: #fc947f;
}
.motion-section .section-heading > p {
  color: #686868;
}
.film-shell {
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  background: #252323;
  border: 1px solid #3a3333;
}
.film-shell video {
  display: block;
  width: 100%;
  height: auto;
}
.film-toggle {
  position: absolute;
  right: 21px;
  bottom: 21px;
  border: 1px solid #ffffff40;
  width: 40px;
  height: 40px;
  background: #222b;
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.film-toggle[hidden] {
  display: none;
}
.film-toggle .icon {
  width: 16px;
  height: 16px;
}
.film-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  font-size: 9px;
  color: #686868;
}
.film-caption > span:first-child {
  color: #ccc;
}
.film-caption i {
  font-style: normal;
  margin: 0 12px;
  color: #666;
}
.film-caption > span:last-child {
  font-size: 8px;
  color: #686868;
}
.journey-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 130px;
  padding-block: 140px;
}
.journey-intro {
  width: 44%;
  position: sticky;
  top: 150px;
}
.journey-intro > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.95;
  color: #686868;
  margin-top: 27px;
}
.journey-intro .journey-note {
  font-size: 11px !important;
  margin-top: 17px !important;
}
.journey-intro .text-link {
  margin-top: 30px;
}
.journey-steps {
  flex: 1;
}
.journey-step {
  display: flex;
  gap: 30px;
  position: relative;
  padding: 0 0 55px;
}
.journey-step:not(:last-child):after {
  position: absolute;
  left: 15px;
  top: 41px;
  bottom: 12px;
  width: 1px;
  background: #e6e6e6;
  content: "";
}
.journey-step:last-child {
  padding-bottom: 0;
}
.step-number {
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 9px;
  color: #686868;
}
.step-icon {
  margin: 1px 0 20px;
  color: #ed584b;
}
.step-icon .icon {
  width: 26px;
  height: 26px;
}
.journey-step h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.journey-step p {
  font-size: 11px;
  line-height: 1.95;
  color: #686868;
  margin-top: 13px;
}
.url-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 7px;
  background: #fafafa;
  color: #666;
  font-size: 9px;
  padding: 14px 17px;
  margin-top: 20px;
}
.url-preview .icon {
  height: 13px;
  width: 13px;
  color: #686868;
}
.url-preview .icon:last-child {
  margin-left: auto;
}
.coming-tag {
  display: inline-block;
  font-size: 8px;
  color: #686868;
  background: #faf4f4;
  border-radius: 4px;
  padding: 5px 8px;
  margin-top: 16px;
}
.faq-section {
  border-top: 1px solid #eee;
  background: #fafafa;
}
.faq-layout {
  display: flex;
  gap: 95px;
}
.faq-layout > div:first-child {
  width: 43%;
  flex-shrink: 0;
}
.faq-layout > div:first-child > p:not(.eyebrow) {
  font-size: 12px;
  color: #686868;
  line-height: 2;
  margin-top: 28px;
}
.faq-layout > div:first-child > p > a {
  color: #444;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}
.faq-layout > div:first-child .icon {
  height: 13px;
  width: 13px;
  margin-left: 7px;
}
.faq-list {
  flex: 1;
  min-width: 0;
}
.faq-list details {
  border-bottom: 1px solid #ddd;
}
.faq-list details:first-child {
  border-top: 1px solid #ddd;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  font-size: 12px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: #686868;
}
.faq-list summary .icon {
  height: 16px;
  width: 16px;
  transition: transform 0.25s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  color: #686868;
  font-size: 11px;
  line-height: 1.95;
  padding: 0 25px 25px 0;
}
.closing-section {
  padding: 115px 0 105px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.closing-glow {
  position: absolute;
  inset: 20% -20% -130%;
  background:
    radial-gradient(ellipse at 20% 50%, #ff843043, transparent 60%),
    radial-gradient(ellipse at 80% 45%, #f8217743, transparent 60%);
  pointer-events: none;
}
.closing-content {
  position: relative;
}
.closing-content .eyebrow {
  color: #686868;
  margin-bottom: 25px;
  font-size: 9px;
}
.closing-content h2 {
  font-size: clamp(33px, 4.2vw, 60px);
  letter-spacing: -2.7px;
  line-height: 1.2;
}
.closing-content > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.95;
  color: #686868;
  margin-top: 25px;
}
.closing-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 29px;
}
.early-access-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: #686868;
  margin-top: 23px;
}
.early-access-note .status-dot {
  height: 4px;
  width: 4px;
}
.site-footer {
  padding-top: 60px;
  padding-bottom: 25px;
}
.footer-top {
  display: flex;
  gap: 100px;
  padding-bottom: 52px;
}
.footer-brand {
  margin-right: auto;
}
.footer-brand img {
  width: 118px;
}
.footer-brand p {
  font-size: 11px;
  line-height: 1.9;
  color: #686868;
  margin-top: 15px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 10px;
  color: #686868;
}
.footer-links > span:first-child {
  font-size: 8px;
  color: #686868;
  letter-spacing: 1px;
  margin: 10px 0 6px;
}
.footer-links a:hover {
  color: #ed4c43;
}
.footer-links .icon {
  height: 11px;
  width: 11px;
  margin-left: 12px;
}
.footer-location {
  font-size: 9px;
  color: #686868;
}
.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  font-size: 8px;
  color: #686868;
}
.footer-bottom > p {
  font-size: 7px;
  max-width: 430px;
}
.film-dialog {
  width: min(1100px, calc(100% - 32px));
  padding: 0;
  border: 1px solid #444;
  border-radius: 14px;
  background: #202020;
  color: #fff;
  overflow: visible;
  max-height: calc(100dvh - 80px);
}
.film-dialog::backdrop {
  background: #000d;
  backdrop-filter: blur(15px);
}
.film-dialog video {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 150px);
  display: block;
  border-radius: 14px 14px 0 0;
}
.film-dialog p {
  font-size: 10px;
  padding: 18px 24px;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.film-dialog p > span {
  color: #686868;
  font-size: 9px;
}
.dialog-close {
  position: absolute;
  top: -44px;
  right: 0;
  height: 34px;
  width: 34px;
  background: #ffffff20;
  border: 1px solid #ffffff30;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-close .icon {
  width: 17px;
  height: 17px;
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.9s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 90px;
  }
  .hero-stage {
    margin-top: 85px;
  }
  .builder-body {
    min-height: 440px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-stage {
    width: calc(100% - 34px);
    padding-inline: 25px;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -3px;
  }
  .layers-panel {
    width: 145px;
  }
  .inspector {
    width: 132px;
    padding-inline: 10px;
  }
  .app-top {
    gap: 13px;
  }
  .canvas-wrap {
    padding: 22px 20px;
  }
  .builder-body {
    min-height: 370px;
  }
  .product-section {
    gap: 40px;
  }
  .section-copy {
    width: 35%;
  }
  .product-stage {
    padding-left: 18px;
  }
  .product-window {
    width: calc(100% + 10px);
  }
  .product-body {
    gap: 12px;
    padding: 16px 12px;
  }
  .product-fields {
    padding: 12px;
  }
  .section-space {
    padding-block: 95px;
  }
  .product-fields .fake-input {
    font-size: 6px;
    padding: 7px;
  }
  .product-card > div {
    padding: 10px;
  }
  .product-card h3 {
    font-size: 8px;
  }
  .product-card small {
    font-size: 4px;
  }
  .page-showcase {
    padding-inline: 45px;
  }
  .journey-section {
    gap: 75px;
  }
  .faq-layout {
    gap: 65px;
  }
  .footer-top {
    gap: 60px;
  }
  .platform-strip > div {
    gap: 23px;
  }
}
@media (max-width: 800px) {
  .nav-wrap {
    height: 70px;
    width: calc(100% - 40px);
  }
  .brand img {
    width: 100px;
  }
  .desktop-nav {
    margin-left: 0;
    gap: 22px;
  }
  .desktop-nav a {
    font-size: 9px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 54px;
    letter-spacing: -2.7px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-stage {
    margin-top: 52px;
    padding: 0 17px 75px;
  }
  .hero-builder .inspector {
    display: none;
  }
  .hero-builder .layers-panel {
    width: 140px;
  }
  .hero-builder .builder-body {
    min-height: 350px;
  }
  .hero-builder .app-saved {
    display: none;
  }
  .hero-builder .app-devices {
    margin-left: auto;
  }
  .phone-preview {
    width: 158px;
    right: -2px;
    bottom: 30px;
    border-width: 4px;
    border-radius: 24px;
  }
  .store-mobile .store-copy {
    padding: 16px 13px;
  }
  .store-mobile .store-copy h3 {
    font-size: 24px;
  }
  .store-mobile .store-content > img {
    height: 116px;
  }
  .store-mobile .store-nav {
    height: 30px;
  }
  .floating-product {
    bottom: 81px;
    padding: 12px;
    gap: 8px;
    left: 0;
  }
  .floating-product > img {
    width: 37px;
    height: 37px;
  }
  .floating-product strong {
    font-size: 9px;
  }
  .float-icon {
    width: 30px;
    height: 30px;
  }
  .stage-caption {
    left: 18px;
    right: 18px;
    font-size: 7px;
  }
  .stage-caption > span:last-child {
    margin-right: 150px;
    font-size: 6px;
  }
  .platform-strip > div {
    gap: 19px;
  }
  .platform-strip > div > span {
    font-size: 10px;
    gap: 7px;
  }
  .platform-strip .icon {
    width: 14px;
    height: 14px;
  }
  .section-space {
    padding-block: 80px;
  }
  .product-section {
    display: block;
  }
  .section-copy {
    width: 100%;
    display: block;
    max-width: 470px;
  }
  .section-copy h2 {
    font-size: 43px;
  }
  .section-copy .desktop-break {
    display: none;
  }
  .section-copy > p:not(.eyebrow) {
    max-width: 440px;
  }
  .product-stage {
    margin-top: 45px;
    padding: 35px;
  }
  .product-window {
    width: 100%;
  }
  .product-body {
    gap: 20px;
    padding: 22px;
  }
  .product-fields {
    padding: 18px;
  }
  .product-card > div {
    padding: 16px;
  }
  .product-card h3 {
    font-size: 11px;
  }
  .product-card p {
    font-size: 7px;
  }
  .product-card small {
    font-size: 5px;
  }
  .product-fields .fake-input {
    font-size: 8px;
  }
  .field-label {
    font-size: 7px;
  }
  .editor-heading b {
    font-size: 9px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 450px;
    margin-top: 23px;
  }
  .section-heading h2 {
    font-size: 41px;
  }
  .page-showcase {
    padding-inline: 27px;
    padding-bottom: 40px;
  }
  .responsive-preview .store-nav {
    height: 50px;
  }
  .responsive-preview .store-nav > b {
    font-size: 28px;
  }
  .responsive-preview .store-copy > p {
    font-size: 8px;
  }
  .responsive-preview .store-kicker {
    font-size: 6px;
  }
  .responsive-preview .store-buy {
    font-size: 7px;
    padding: 10px 12px;
    margin-top: 14px;
  }
  .responsive-preview .store-copy h3 {
    margin: 15px 0;
  }
  .responsive-preview .store-bottom {
    font-size: 6px;
    padding-block: 15px;
  }
  .design-chip {
    bottom: 18px;
    right: 12px;
    padding: 14px 17px;
    gap: 9px;
  }
  .design-chip small {
    font-size: 5px;
  }
  .design-chip b {
    font-size: 8px;
  }
  .chip-swatches {
    margin-left: 10px;
  }
  .page-benefits {
    font-size: 8px;
    gap: 16px;
  }
  .page-benefits > span {
    gap: 7px;
    align-items: flex-start;
  }
  .page-benefits .icon {
    width: 13px;
    height: 13px;
  }
  .film-caption {
    font-size: 7px;
    gap: 10px;
  }
  .film-caption > span:last-child {
    max-width: 160px;
    font-size: 7px;
  }
  .film-caption i {
    margin: 0 4px;
  }
  .journey-section {
    gap: 45px;
  }
  .journey-intro h2 {
    font-size: 34px;
  }
  .journey-step {
    gap: 18px;
    padding-bottom: 40px;
  }
  .journey-step h3 {
    font-size: 16px;
  }
  .journey-step p {
    font-size: 10px;
  }
  .journey-intro > p:not(.eyebrow) {
    font-size: 11px;
  }
  .journey-step:not(:last-child):after {
    left: 13px;
  }
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 8px;
  }
  .faq-layout {
    display: block;
  }
  .faq-layout > div:first-child {
    width: 100%;
  }
  .faq-list {
    margin-top: 40px;
  }
  .footer-top {
    gap: 35px;
  }
  .footer-links {
    font-size: 9px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > p {
    order: 3;
    max-width: none;
    width: 100%;
  }
  .closing-section {
    padding: 85px 0;
  }
  .closing-content h2 {
    font-size: 41px;
    letter-spacing: -1.8px;
  }
}
@media (max-width: 580px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .desktop-nav {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    margin-right: 17px;
    min-height: 35px;
    font-size: 9px;
    padding: 0 12px;
    gap: 9px;
  }
  .nav-cta .icon {
    width: 13px;
    height: 13px;
  }
  .menu-toggle {
    width: 28px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 4px;
  }
  .menu-toggle > span {
    width: 20px;
    height: 1.5px;
    background: #333;
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 25px 25px;
    background: #fff;
    border-top: 1px solid #eee;
    gap: 4px;
  }
  .mobile-nav a {
    font-size: 12px;
    padding: 12px 0;
    color: #666;
  }
  .mobile-nav a:last-child {
    color: #ec4a40;
  }
  .mobile-nav .icon {
    width: 15px;
    height: 15px;
    margin-left: 10px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-copy {
    padding-inline: 20px;
  }
  .hero-copy > .eyebrow {
    font-size: 7px;
    letter-spacing: 1.5px;
    gap: 8px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.2vw, 49px);
    line-height: 1.18;
    letter-spacing: -1.9px;
    margin-top: 21px;
  }
  .hero-description {
    font-size: 11px;
    line-height: 1.9;
    max-width: 335px;
    margin: 19px auto 0;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 21px;
    margin-top: 23px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding-inline: 17px;
    gap: 12px;
    min-height: 45px;
  }
  .watch-button {
    font-size: 9px;
    gap: 7px;
  }
  .watch-button > span {
    width: 25px;
    height: 25px;
  }
  .hero-promise {
    font-size: 9px;
    margin-top: 16px;
  }
  .hero-stage {
    width: calc(100% - 26px);
    margin-top: 42px;
    padding: 0 0 55px;
  }
  .hero-builder {
    width: 650px;
    max-width: none;
    transform: scale(0.55);
    transform-origin: top left;
    margin-left: 0;
  }
  .hero-builder .app-top {
    height: 45px;
  }
  .hero-builder .builder-body {
    min-height: 325px;
  }
  .hero-builder .layers-panel {
    width: 145px;
  }
  .hero-builder .canvas-wrap {
    padding-inline: 20px;
  }
  .hero-builder .store-nav {
    height: 40px;
  }
  .hero-builder .app-title b {
    font-size: 9px;
  }
  .hero-stage {
    height: 295px;
  }
  .phone-preview {
    width: 104px;
    border-width: 3px;
    border-radius: 17px;
    right: 2px;
    bottom: 37px;
  }
  .phone-speaker {
    width: 34px;
    height: 8px;
    top: 4px;
  }
  .phone-status {
    height: 19px;
    padding: 5px 8px;
    font-size: 4px;
  }
  .store-mobile .store-nav {
    height: 24px;
    padding-inline: 9px;
  }
  .store-mobile .store-nav > b {
    font-size: 15px;
  }
  .store-mobile .store-nav > .icon {
    width: 9px;
    height: 9px;
  }
  .store-mobile .store-copy {
    padding: 12px 10px;
  }
  .store-mobile .store-kicker {
    font-size: 3px;
    letter-spacing: 0.7px;
  }
  .store-mobile .store-copy h3 {
    font-size: 17px;
    letter-spacing: -0.6px;
    margin: 6px 0;
  }
  .store-mobile .store-copy > p {
    font-size: 4px;
  }
  .store-mobile .store-buy {
    font-size: 3.5px;
    padding: 5px 7px;
    margin-top: 7px;
    gap: 5px;
  }
  .store-mobile .store-buy .icon {
    height: 7px;
    width: 7px;
  }
  .store-mobile .store-content > img {
    height: 86px;
  }
  .phone-home {
    width: 35px;
    height: 2px;
    margin: 5px auto;
  }
  .floating-product {
    bottom: 47px;
    padding: 9px;
    gap: 7px;
    border-radius: 8px;
    left: 4px;
  }
  .floating-product small {
    font-size: 4px;
  }
  .floating-product strong {
    font-size: 7px;
    margin: 3px 0;
  }
  .floating-product > div > span {
    font-size: 5px;
  }
  .floating-product > img {
    width: 28px;
    height: 28px;
    margin-left: 3px;
  }
  .float-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
  .float-icon .icon {
    height: 14px;
    width: 14px;
  }
  .stage-caption {
    left: 6px;
    right: 6px;
    bottom: 12px;
    font-size: 6px;
    gap: 5px;
  }
  .stage-caption > span:last-child {
    font-size: 5px;
    margin-right: 0;
  }
  .platform-strip {
    padding: 24px 0 29px;
  }
  .platform-strip > p {
    font-size: 8px;
    margin-bottom: 17px;
  }
  .platform-strip > div {
    gap: 0;
    justify-content: space-between;
  }
  .platform-strip > div > span {
    font-size: 7px;
    gap: 5px;
  }
  .platform-strip .icon {
    height: 12px;
    width: 12px;
  }
  .platform-strip > div > i {
    display: none;
  }
  .section-space {
    padding-block: 65px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .section-copy .eyebrow,
  .section-heading .eyebrow,
  .journey-intro .eyebrow,
  .faq-layout .eyebrow {
    margin-bottom: 16px;
  }
  h2,
  .section-copy h2,
  .section-heading h2,
  .journey-intro h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
    line-height: 1.2;
  }
  .section-copy > p:not(.eyebrow) {
    font-size: 11px;
    margin-top: 19px;
  }
  .feature-list {
    margin: 22px 0 24px;
  }
  .feature-list li {
    font-size: 9px;
  }
  .text-link {
    font-size: 10px;
  }
  .product-stage {
    margin-top: 32px;
    padding: 22px 13px 20px;
    border-radius: 12px;
  }
  .product-window .app-top {
    height: 38px;
    padding-inline: 10px;
    gap: 7px;
  }
  .product-window .app-title b {
    font-size: 7px;
  }
  .product-window .app-title > .icon {
    width: 12px;
    height: 12px;
  }
  .product-window .app-publish {
    font-size: 5px;
    padding: 6px 7px;
  }
  .product-window .app-saved {
    font-size: 5px;
  }
  .product-body {
    padding: 12px 8px;
    gap: 9px;
  }
  .product-fields {
    padding: 10px;
    width: 56%;
  }
  .editor-heading {
    gap: 5px;
    margin-bottom: 10px;
  }
  .editor-heading > span {
    width: 14px;
    height: 14px;
    font-size: 4px;
  }
  .editor-heading b {
    font-size: 6px;
  }
  .editor-heading small {
    font-size: 4px;
  }
  .field-label {
    font-size: 4.5px;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .product-fields .fake-input {
    font-size: 5px;
    padding: 6px;
    line-height: 1.6;
  }
  .product-fields .description {
    font-size: 4.5px;
    min-height: 40px;
  }
  .field-pair {
    gap: 4px;
  }
  .editor-heading:not(:first-child) {
    margin-top: 12px;
    padding-top: 12px;
  }
  .image-upload {
    gap: 3px;
  }
  .image-upload .icon {
    width: 10px;
    height: 10px;
  }
  .variant-row,
  .variant-row > b {
    font-size: 4px;
  }
  .variant-row > span {
    gap: 3px;
  }
  .variant-dot {
    height: 5px;
    width: 5px;
  }
  .toggle {
    width: 16px;
    height: 9px;
  }
  .toggle:after {
    width: 5px;
    height: 5px;
  }
  .product-card > div {
    padding: 9px;
  }
  .product-card h3 {
    font-size: 7px;
    margin: 5px 0;
  }
  .product-card strong {
    font-size: 8px;
  }
  .product-category {
    font-size: 3.5px;
    letter-spacing: 0.5px;
  }
  .product-card p {
    font-size: 4.5px;
    margin: 7px 0;
  }
  .product-card small {
    font-size: 3px;
    gap: 2px;
    margin-top: 7px;
  }
  .product-card small .icon {
    height: 6px;
    width: 6px;
  }
  .product-buy {
    font-size: 5px;
    padding: 7px;
    gap: 4px;
  }
  .product-buy .icon {
    height: 7px;
    width: 7px;
  }
  .variant-options {
    gap: 4px;
    margin: 8px 0;
  }
  .variant-options i {
    width: 8px;
    height: 8px;
  }
  .variant-options > span {
    font-size: 4px;
    padding: 3px;
  }
  .preview-label {
    font-size: 3.5px;
    letter-spacing: 0.7px;
  }
  .preview-label .icon {
    width: 8px;
    height: 8px;
  }
  .preview-note {
    font-size: 4px;
    margin-top: 10px;
  }
  .detail-callout {
    font-size: 6px;
    margin-top: 14px;
  }
  .detail-callout .icon {
    width: 10px;
    height: 10px;
  }
  .section-heading > p {
    font-size: 11px;
    margin-top: 19px;
  }
  .page-showcase {
    padding: 0 15px 32px;
    border-radius: 10px;
  }
  .page-showcase-toolbar {
    min-height: 58px;
    gap: 8px;
  }
  .page-showcase-toolbar > span {
    font-size: 6px;
    gap: 5px;
    max-width: 130px;
  }
  .page-showcase-toolbar > span > .icon {
    height: 11px;
    width: 11px;
  }
  .device-switch button {
    font-size: 6px;
    padding: 7px;
  }
  .device-switch button > span {
    display: none;
  }
  .device-switch .icon {
    width: 13px;
    height: 13px;
  }
  .responsive-preview {
    border-radius: 5px;
  }
  .responsive-preview .store-nav {
    height: 34px;
  }
  .responsive-preview .store-nav > b {
    font-size: 21px;
  }
  .responsive-preview .store-nav > span {
    font-size: 5px;
    margin-right: 14px;
  }
  .responsive-preview .store-nav > .icon {
    width: 10px;
    height: 10px;
  }
  .responsive-preview .store-kicker {
    font-size: 3.5px;
    letter-spacing: 0.6px;
  }
  .responsive-preview .store-copy h3 {
    font-size: 25px;
    letter-spacing: -0.8px;
    margin: 10px 0;
  }
  .responsive-preview .store-copy {
    padding-block: 20px;
  }
  .responsive-preview .store-copy > p {
    font-size: 5px;
  }
  .responsive-preview .store-buy {
    font-size: 4px;
    padding: 7px 8px;
    margin-top: 10px;
    gap: 8px;
    border-radius: 3px;
  }
  .responsive-preview .store-buy .icon {
    width: 8px;
    height: 8px;
  }
  .responsive-preview .store-bottom {
    font-size: 4px;
    padding-block: 11px;
  }
  .responsive-preview .store-bottom .icon {
    width: 7px;
    height: 7px;
  }
  .design-chip {
    bottom: 12px;
    right: 8px;
    padding: 9px 10px;
    border-radius: 6px;
    gap: 6px;
  }
  .design-chip > .icon {
    height: 16px;
    width: 16px;
  }
  .design-chip small {
    font-size: 3.5px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .design-chip b {
    font-size: 6px;
  }
  .chip-swatches {
    margin-left: 4px;
  }
  .chip-swatches i {
    height: 15px;
    width: 15px;
    border-width: 2px;
    margin-left: -4px;
  }
  .responsive-preview[data-preview-device="mobile"] {
    width: min(250px, 90%);
    border-radius: 12px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-nav {
    height: 42px;
    padding-inline: 23px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-copy {
    padding: 24px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-kicker {
    font-size: 6px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-copy h3 {
    font-size: 35px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-copy > p {
    font-size: 8px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-buy {
    font-size: 7px;
    padding: 10px 14px;
  }
  .responsive-preview[data-preview-device="mobile"] .store-content > img {
    height: 210px;
  }
  .page-benefits {
    gap: 15px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .page-benefits > span {
    font-size: 7px;
    gap: 6px;
  }
  .page-benefits .icon {
    height: 12px;
    width: 12px;
  }
  .film-shell {
    border-radius: 8px;
  }
  .film-toggle {
    height: 30px;
    width: 30px;
    right: 10px;
    bottom: 10px;
  }
  .film-toggle .icon {
    width: 12px;
    height: 12px;
  }
  .film-caption {
    flex-direction: column;
    gap: 8px;
    margin-top: 17px;
  }
  .film-caption > span:last-child {
    max-width: none;
    font-size: 6px;
  }
  .journey-section {
    display: block;
  }
  .journey-intro {
    width: 100%;
    position: static;
  }
  .journey-intro > p:not(.eyebrow) {
    max-width: 370px;
    margin-top: 20px;
  }
  .journey-intro .text-link {
    margin-top: 23px;
  }
  .journey-steps {
    margin-top: 45px;
  }
  .journey-step {
    gap: 22px;
  }
  .journey-step h3 {
    font-size: 18px;
  }
  .journey-step p {
    font-size: 11px;
  }
  .step-icon {
    margin-bottom: 13px;
  }
  .step-icon .icon {
    height: 24px;
    width: 24px;
  }
  .journey-step > div {
    flex: 1;
  }
  .url-preview {
    font-size: 9px;
  }
  .faq-layout > div:first-child > p:not(.eyebrow) {
    font-size: 11px;
    margin-top: 20px;
  }
  .faq-list {
    margin-top: 30px;
  }
  .faq-list summary {
    font-size: 11px;
    padding-block: 22px;
    gap: 15px;
  }
  .faq-list details > p {
    font-size: 10px;
  }
  .closing-section {
    padding: 70px 0;
  }
  .closing-content .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .closing-content h2 {
    font-size: clamp(26px, 7.1vw, 39px);
    letter-spacing: -1.4px;
  }
  .closing-content > p:not(.eyebrow) {
    font-size: 11px;
    margin-top: 20px;
  }
  .closing-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    gap: 10px;
  }
  .closing-actions .button {
    font-size: 10px;
    width: 240px;
    min-height: 46px;
    justify-content: space-between;
    padding-inline: 20px;
  }
  .early-access-note {
    font-size: 7px;
    margin-top: 21px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 35px;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-brand img {
    width: 105px;
  }
  .footer-brand p {
    font-size: 10px;
    margin-top: 10px;
  }
  .footer-links {
    gap: 12px;
    font-size: 9px;
  }
  .footer-links > span:first-child {
    font-size: 7px;
    margin-top: 0;
  }
  .footer-links .icon {
    margin-left: 5px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 15px;
  }
  .footer-bottom > p {
    font-size: 6px;
  }
  .film-dialog p {
    font-size: 8px;
    padding: 12px 16px;
    display: block;
  }
  .film-dialog p > span {
    display: block;
    font-size: 7px;
    margin-top: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-builder {
    will-change: auto;
  }
}
/* Let embedded product photography follow the canvas, not its source dimensions. */
img {
  height: auto;
}
@media (max-width: 580px) {
  .hero h1 .gradient-text {
    white-space: nowrap;
  }
}
/* Keep supporting copy readable while the staged application chrome stays quiet. */
.section-copy > p:not(.eyebrow),
.section-heading > p,
.journey-intro > p:not(.eyebrow),
.journey-step p,
.faq-list details > p {
  color: #686868;
}
.hero-promise,
.platform-strip > p,
.page-benefits,
.faq-layout > div:first-child > p:not(.eyebrow),
.closing-content > p:not(.eyebrow),
.early-access-note,
.footer-brand p,
.footer-location,
.footer-bottom,
.footer-links > span:first-child,
.closing-content .eyebrow {
  color: #686868;
}
.muted-heading {
  color: #686868;
}
.stage-caption {
  color: #686868;
}
.stage-caption > span:last-child {
  color: #686868;
}
.motion-section .section-heading > p {
  color: #686868;
}
.motion-section .eyebrow {
  color: #fc947f;
}
.film-caption > span:last-child {
  color: #686868;
}
@media (min-width: 801px) {
  .section-copy > p:not(.eyebrow),
  .section-heading > p,
  .journey-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .feature-list li,
  .journey-step p,
  .faq-list details > p {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .hero {
    padding-top: 57px;
  }
  .hero-stage {
    margin-top: 54px;
    max-width: 1200px;
  }
  .hero h1 {
    font-size: clamp(54px, 5.2vw, 75px);
  }
}

/* Light text remains luminous on the film section and modal. */
.motion-section .section-heading > p,
.film-caption > span:last-child {
  color: #aaa;
}
.film-caption {
  color: #aaa;
}
.film-caption > span:first-child {
  color: #ccc;
}
.film-dialog p {
  color: #ccc;
}
.film-dialog p > span {
  color: #aaa;
}

/* The same compact language control is available at every screen size. */
.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  margin-left: auto;
  margin-right: 22px;
}
.language-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  min-height: 29px;
  padding: 4px 6px;
  font-size: 10px;
  color: #686868;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.language-switch a[aria-current="true"] {
  background: #f1f1f1;
  color: #222;
  font-weight: 600;
}
.language-switch a:hover {
  background: #fff0f1;
  color: #b83143;
}
.desktop-nav {
  margin-right: 45px;
}
html[lang="id"] .hero h1 {
  font-size: clamp(44px, 5vw, 72px);
}
html[lang="id"] .hero h1 .gradient-text {
  white-space: nowrap;
}
html[lang="id"] .section-copy h2 {
  font-size: clamp(32px, 3.1vw, 44px);
}
@media (max-width: 1100px) {
  .desktop-nav {
    margin-right: 26px;
    margin-left: 25px;
  }
  .language-switch {
    margin-right: 15px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    gap: 17px;
    margin-inline: 15px;
  }
  .language-switch {
    margin-right: 12px;
  }
  html[lang="id"] .hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 580px) {
  .language-switch {
    margin-right: 12px;
  }
  .language-switch a {
    min-width: 28px;
    min-height: 28px;
    font-size: 9px;
  }
  .nav-cta {
    display: none;
  }
  .brand {
    margin-right: 12px;
  }
  html[lang="id"] .hero h1 {
    font-size: clamp(33px, 8.7vw, 48px);
    letter-spacing: -1.7px;
  }
  html[lang="id"] .section-copy h2 {
    font-size: 33px;
  }
  html[lang="id"] .closing-content h2 {
    font-size: clamp(25px, 6.4vw, 36px);
  }
  html[lang="id"] .hero-builder .app-saved {
    display: none;
  }
}
@media (min-width: 801px) {
  .desktop-nav {
    margin-left: auto;
  }
}
@media (max-width: 580px) {
  html[lang="id"] .phone-preview {
    top: -14px;
    bottom: auto;
  }
  html[lang="id"] .store-mobile .store-copy {
    padding: 10px;
  }
  html[lang="id"] .store-mobile .store-copy h3 {
    font-size: 14px;
  }
  html[lang="id"] .store-mobile .store-content > img {
    height: 78px;
  }
  html[lang="id"] .store-mobile .store-copy > p {
    font-size: 3.5px;
  }
}
@media (max-width: 580px) {
  html[lang="id"] .stage-caption {
    bottom: -10px;
  }
  html[lang="id"] .platform-strip {
    padding-top: 36px;
  }
}
