:root {
  --ink: #15120f;
  --soft-ink: #413b35;
  --muted: #756f67;
  --paper: #fffaf3;
  --panel: #ffffff;
  --cream: #f4eee5;
  --orange: #ec7328;
  --orange-dark: #c95412;
  --purple: #7c2cff;
  --green: #48a65a;
  --line: #efd3bf;
  --shadow: 0 28px 80px rgba(31, 19, 10, 0.14);
  --deep-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  --wide: min(1680px, calc(100% - 64px));
  --content: min(1480px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 4%, rgba(236, 115, 40, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(124, 44, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, #f7f0e6 46%, #fffaf4 100%);
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

main {
  overflow-x: hidden;
  perspective: 1600px;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(28px, calc((100vw - 1680px) / 2));
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(236, 115, 40, 0.15);
  backdrop-filter: blur(18px);
  max-width: 100vw;
  direction: ltr;
}

.logo-mark {
  width: 150px;
  direction: rtl;
}

.logo-mark img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  direction: rtl;
}

.main-nav a,
.download-pill {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3d362f;
  direction: rtl;
}

.main-nav a:hover,
.download-pill:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.download-pill {
  color: var(--orange-dark);
  border: 1px solid var(--line);
  transform: translateY(-6px);
}

.header-store-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  direction: ltr;
}

.header-store-links a {
  display: block;
  width: 148px;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(39, 24, 12, 0.14);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-store-links a:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.header-store-links img {
  width: 100%;
  height: auto;
}

.section {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(520px, 1.04fr) minmax(520px, 0.96fr);
  gap: clamp(56px, 7vw, 132px);
  align-items: center;
  width: var(--wide);
  margin: 0 auto;
  padding: 88px 0 78px;
  overflow: visible;
  transform-style: preserve-3d;
}

.hero-media {
  order: 2;
  min-width: 0;
  transform-style: flat;
  perspective: none;
}

.hero-content,
.flow-copy,
.demo-card {
  min-width: 0;
}

.hero-screen {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 58vh, 760px);
  border-radius: 42px;
  background: #111;
  box-shadow: var(--deep-shadow);
  max-width: 100%;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  animation: heroFloat 9s ease-in-out infinite;
  will-change: transform;
}

.hero-screen > img {
  width: 100%;
  height: clamp(560px, 58vh, 760px);
  object-fit: cover;
  opacity: 0.72;
}

.hero-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(236, 115, 40, 0.35), transparent 48%);
}

.hero-screen-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 30px 30px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
}

.hero-screen-overlay span {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 950;
}

.kicker {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-weight: 950;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 1.02;
}

.hero-lead,
.flow-copy p,
.stores p {
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
}

.btn.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 38px rgba(236, 115, 40, 0.28);
}

.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.contents {
  width: var(--wide);
  padding: 96px 0 58px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 26px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  perspective: 1200px;
}

.contents-grid a {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(31, 19, 10, 0.07);
  transform: translateY(0) rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.contents-grid a:hover {
  transform: translateY(-9px) rotateX(5deg) rotateY(-4deg);
  border-color: rgba(236, 115, 40, 0.35);
  box-shadow: var(--shadow);
}

.contents-grid span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 16px;
  font-weight: 950;
}

.contents-grid strong {
  font-size: 1.25rem;
}

.contents-grid small {
  color: var(--muted);
  font-size: 1rem;
}

.flow {
  position: relative;
  width: var(--wide);
  min-height: min(980px, calc(100vh + 120px));
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(620px, 1.16fr);
  gap: clamp(64px, 7vw, 132px);
  align-items: center;
  padding: 118px clamp(0px, 1.5vw, 24px);
  transform-style: preserve-3d;
  perspective: 1400px;
  isolation: isolate;
}

.flow.reverse {
  grid-template-columns: minmax(620px, 1.16fr) minmax(420px, 0.84fr);
}

.flow.reverse .flow-copy {
  order: 2;
}

.flow::before {
  content: "";
  position: absolute;
  inset: 48px calc((100vw - 100%) / -2);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 246, 236, 0.54) 45%, rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, rgba(236, 115, 40, 0.08), rgba(236, 115, 40, 0));
  border-block: 1px solid rgba(236, 115, 40, 0.1);
  transform: skewY(-1.8deg);
}

.flow.reverse::before {
  transform: skewY(1.8deg);
}

.flow-copy {
  position: sticky;
  top: 118px;
  align-self: center;
  transform-style: preserve-3d;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 54px 12px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(236, 115, 40, 0.16);
  font-weight: 820;
  box-shadow: 0 16px 44px rgba(31, 19, 10, 0.06);
  transform: translateZ(18px);
}

.clean-list li::before {
  content: "";
  position: absolute;
  right: 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(236, 115, 40, 0.12);
}

.demo-card {
  overflow: visible;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateZ(0) rotateY(0deg) rotateX(0deg);
  transform-style: preserve-3d;
  transition: none;
}

.flow.reverse .demo-card {
  animation-delay: 0s;
}

.demo-card:hover {
  transform: translateZ(0) rotateY(0deg) rotateX(0deg);
}

.phone-demo {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.96)),
    var(--paper);
  border: 1px solid rgba(31, 19, 10, 0.08);
}

.flow-video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 45px;
  background: #f8f5ee;
  object-fit: cover;
}

.phone-shell {
  position: relative;
  width: min(336px, 100%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 62px;
  background:
    linear-gradient(135deg, #24211f 0%, #080706 48%, #2c2722 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 9px #11100f,
    0 30px 86px rgba(31, 19, 10, 0.3);
  transform: rotateY(-7deg) rotateX(3deg) translateZ(48px);
  transform-style: preserve-3d;
  animation: none;
}

.flow.reverse .phone-shell {
  transform: rotateY(7deg) rotateX(3deg) translateZ(48px);
  animation: none;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 55px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.phone-shell::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  width: 29%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
  box-shadow:
    inset 10px 0 18px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0.96;
  pointer-events: none;
}

.phone-side {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #1a1714;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.14);
}

.side-left {
  left: -3px;
  top: 132px;
  height: 92px;
}

.side-right {
  right: -3px;
  top: 192px;
  height: 138px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  border-radius: 48px;
  background: #f8f5ee;
}

.finger-guide {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 30%, rgba(255, 255, 255, 0.82) 31% 43%, rgba(124, 44, 255, 0.2) 44% 100%);
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 2px rgba(124, 44, 255, 0.8),
    0 0 0 10px rgba(124, 44, 255, 0.13),
    0 14px 34px rgba(40, 22, 62, 0.24);
  pointer-events: none;
  animation: fingerTap 5.6s ease-in-out infinite;
}

.finger-guide::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  background: var(--purple);
  box-shadow:
    inset 0 0 0 5px #fff,
    0 0 0 1px rgba(124, 44, 255, 0.54);
}

.finger-guide::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(124, 44, 255, 0.18);
  opacity: 0.9;
}

[data-flow="buyer"] .finger-guide {
  animation-name: fingerBuyer;
}

[data-flow="project"] .finger-guide {
  animation-name: fingerProject;
}

[data-flow="create"] .finger-guide {
  animation-name: fingerCreate;
}

[data-flow="saved"] .finger-guide {
  animation-name: fingerSaved;
}

[data-flow="send"] .finger-guide {
  animation-name: fingerSend;
}

@keyframes fingerTap {
  0%, 100% { transform: translate(0, 0) scale(0.86); opacity: 0; }
  12%, 72% { opacity: 1; }
  28% { transform: translate(-26px, -110px) scale(0.96); }
  34% { transform: translate(-26px, -110px) scale(0.78); }
  44% { transform: translate(24px, 48px) scale(0.96); }
  52% { transform: translate(24px, 48px) scale(0.78); }
  68% { transform: translate(18px, -120px) scale(0.96); }
}

@keyframes fingerBuyer {
  0%, 100% { transform: translate(105px, -255px) scale(0.84); opacity: 0; }
  10%, 75% { opacity: 1; }
  18% { transform: translate(105px, -255px) scale(0.78); }
  30% { transform: translate(74px, 16px) scale(0.96); }
  42% { transform: translate(74px, 16px) scale(0.78); }
  58% { transform: translate(30px, -155px) scale(0.96); }
  70% { transform: translate(30px, -155px) scale(0.78); }
}

@keyframes fingerProject {
  0%, 100% { transform: translate(-70px, 238px) scale(0.84); opacity: 0; }
  8%, 78% { opacity: 1; }
  18% { transform: translate(-70px, 238px) scale(0.78); }
  34% { transform: translate(44px, 58px) scale(0.96); }
  48% { transform: translate(44px, 58px) scale(0.78); }
  64% { transform: translate(-94px, 132px) scale(0.96); }
  74% { transform: translate(-94px, 132px) scale(0.78); }
}

@keyframes fingerCreate {
  0%, 100% { transform: translate(-52px, -160px) scale(0.84); opacity: 0; }
  8%, 82% { opacity: 1; }
  18% { transform: translate(-52px, -160px) scale(0.78); }
  36% { transform: translate(80px, 150px) scale(0.96); }
  50% { transform: translate(80px, 150px) scale(0.78); }
  66% { transform: translate(46px, -72px) scale(0.96); }
  78% { transform: translate(46px, -72px) scale(0.78); }
}

@keyframes fingerSaved {
  0%, 100% { transform: translate(36px, -72px) scale(0.84); opacity: 0; }
  10%, 78% { opacity: 1; }
  22% { transform: translate(36px, -72px) scale(0.78); }
  42% { transform: translate(-118px, -72px) scale(0.96); }
  56% { transform: translate(-118px, -72px) scale(0.78); }
  72% { transform: translate(20px, 150px) scale(0.96); }
}

@keyframes fingerSend {
  0%, 100% { transform: translate(-112px, 238px) scale(0.84); opacity: 0; }
  8%, 82% { opacity: 1; }
  20% { transform: translate(-112px, 238px) scale(0.78); }
  38% { transform: translate(-70px, -18px) scale(0.96); }
  54% { transform: translate(-70px, -18px) scale(0.78); }
  70% { transform: translate(104px, 238px) scale(0.96); }
  80% { transform: translate(104px, 238px) scale(0.78); }
}

.phone-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(236, 115, 40, 0.12), transparent 18rem),
    radial-gradient(circle at 90% 12%, rgba(124, 44, 255, 0.08), transparent 16rem);
}

.app-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 24px 26px 12px;
}

.app-top h3 {
  margin: 0;
  text-align: center;
  font-size: 2rem;
}

.help-icon,
.profile-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-weight: 950;
}

.profile-icon {
  font-size: 1rem;
}

.phone-panel {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 52px));
  margin: 18px auto 0;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(31, 19, 10, 0.08);
}

.phone-panel.dark {
  background: #17120e;
  border-color: rgba(255, 255, 255, 0.1);
}

.phone-panel label,
.project-row label {
  display: block;
  margin: 12px 0 5px;
  color: var(--soft-ink);
  font-weight: 900;
}

.field,
.select-field,
.notes-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
  border: 2px solid #f4c5a7;
  border-radius: 14px;
  background: #fffdf9;
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.field.ltr {
  direction: ltr;
  justify-content: flex-end;
}

.app-button,
.light-button {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 1.12rem;
  font-weight: 950;
}

.app-button.green {
  background: var(--green);
}

.light-button {
  color: var(--ink);
  background: #f4decf;
}

.project-row {
  position: relative;
  padding: 18px 18px 18px 60px;
  border-radius: 18px;
  background: #fffaf3;
  border: 1px solid rgba(236, 115, 40, 0.15);
}

.project-row + .project-row {
  margin-top: 14px;
}

.project-row strong,
.project-row span {
  display: block;
}

.project-row span {
  color: var(--muted);
}

.trash {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: #f2e0d4;
  font-size: 1.2rem;
}

.step-strip {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 52px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 auto 14px;
}

.step-strip span {
  height: 8px;
  border-radius: 999px;
  background: rgba(236, 115, 40, 0.18);
}

.step-strip span:first-child {
  background: var(--orange);
}

.divider-word {
  margin: 14px 0;
  text-align: center;
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 950;
}

.product-row {
  display: grid;
  grid-template-columns: 88px 1fr 44px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(236, 115, 40, 0.16);
}

.product-row img {
  width: 88px;
  height: 64px;
  object-fit: contain;
}

.product-row strong,
.product-row span {
  display: block;
}

.product-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-row button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 1.55rem;
  font-weight: 950;
}

.quantity-panel {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff7ef;
  border: 1px solid var(--line);
}

.quantity-panel strong {
  display: block;
  margin-bottom: 10px;
}

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

.segmented span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid #f3bd9b;
  font-weight: 900;
}

.segmented span:first-child {
  color: #fff;
  background: var(--orange);
}

.saved-order {
  padding: 22px;
  border-radius: 18px;
  background: #fff7ef;
  border: 1px solid var(--line);
}

.saved-order strong,
.saved-order span,
.saved-order small {
  display: block;
}

.saved-order strong {
  font-size: 1.35rem;
}

.saved-order span,
.saved-order small {
  color: var(--muted);
}

.swipe-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.swipe-menu button {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  font-weight: 950;
}

.summary-card {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.summary-card span {
  color: var(--muted);
  font-weight: 800;
}

.notes-box {
  margin-top: 14px;
  min-height: 74px;
  color: var(--muted);
}

.send-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.send-grid .app-button,
.send-grid .light-button {
  margin-top: 14px;
}

.contact-section {
  width: var(--wide);
  padding: 104px clamp(24px, 4vw, 74px);
  margin-bottom: 44px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 115, 40, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 238, 0.8));
  border: 1px solid rgba(236, 115, 40, 0.18);
  box-shadow: 0 34px 100px rgba(31, 19, 10, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.contact-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(236, 115, 40, 0.18);
  box-shadow: 0 18px 50px rgba(31, 19, 10, 0.07);
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.contact-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  border-color: rgba(236, 115, 40, 0.38);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
  font-size: 1.45rem;
  font-weight: 950;
  direction: ltr;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.whatsapp-icon svg {
  width: 31px;
  height: 31px;
}

.contact-card small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.primary-contact,
.whatsapp-contact {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: rgba(255, 255, 255, 0.24);
}

.primary-contact small,
.primary-contact strong,
.whatsapp-contact small,
.whatsapp-contact strong {
  color: #fff;
}

.primary-contact .contact-icon,
.whatsapp-contact .contact-icon {
  color: var(--orange-dark);
  background: #fff;
}

.whatsapp-contact {
  background: linear-gradient(135deg, #24b663, #128c4c);
}

.whatsapp-contact .contact-icon {
  color: #128c4c;
}

.final-modal {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.final-modal strong,
.final-modal span {
  display: block;
}

.final-modal span {
  color: var(--muted);
}

.final-modal button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 950;
}

.callout {
  position: absolute;
  z-index: 4;
  max-width: 210px;
  padding: 11px 14px;
  border-radius: 16px;
  background: #15120f;
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 900;
}

.callout::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 2px;
  background: var(--purple);
}

.callout.c1 {
  top: 96px;
  left: 24px;
}

.callout.c1::after {
  right: -48px;
}

.callout.c2 {
  top: 308px;
  right: 20px;
}

.callout.c2::after {
  left: -48px;
}

.callout.c3 {
  bottom: 70px;
  left: 26px;
}

.callout.c3::after {
  right: -48px;
}

.purple-cursor {
  position: absolute;
  z-index: 8;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(124, 44, 255, 0.2);
  border: 3px solid var(--purple);
  box-shadow: 0 0 0 0 rgba(124, 44, 255, 0.38), 0 12px 30px rgba(124, 44, 255, 0.26);
  transform: translate(-50%, -50%);
  animation:
    cursorPulse 1.25s ease-in-out infinite,
    buyerPath 9s ease-in-out infinite;
}

.project-demo .purple-cursor {
  animation: cursorPulse 1.25s ease-in-out infinite, projectPath 9s ease-in-out infinite;
}

.create-demo .purple-cursor {
  animation: cursorPulse 1.25s ease-in-out infinite, createPath 11s ease-in-out infinite;
}

.saved-demo .purple-cursor {
  animation: cursorPulse 1.25s ease-in-out infinite, savedPath 9s ease-in-out infinite;
}

.send-demo .purple-cursor {
  animation: cursorPulse 1.25s ease-in-out infinite, sendPath 10s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 44, 255, 0.4), 0 12px 30px rgba(124, 44, 255, 0.24); }
  50% { box-shadow: 0 0 0 13px rgba(124, 44, 255, 0), 0 12px 30px rgba(124, 44, 255, 0.32); }
}

@keyframes buyerPath {
  0%, 10% { left: 84%; top: 70px; }
  24%, 34% { left: 52%; top: 392px; }
  48%, 58% { left: 48%; top: 508px; }
  76%, 88% { left: 50%; top: 620px; }
  100% { left: 84%; top: 70px; }
}

@keyframes projectPath {
  0%, 12% { left: 50%; top: 535px; }
  28%, 42% { left: 52%; top: 352px; }
  56%, 68% { left: 50%; top: 614px; }
  82%, 92% { left: 87%; top: 166px; }
  100% { left: 50%; top: 535px; }
}

@keyframes createPath {
  0%, 10% { left: 48%; top: 210px; }
  22%, 34% { left: 47%; top: 356px; }
  46%, 56% { left: 83%; top: 496px; }
  66%, 76% { left: 49%; top: 603px; }
  86%, 96% { left: 50%; top: 650px; }
  100% { left: 48%; top: 210px; }
}

@keyframes savedPath {
  0%, 14% { left: 54%; top: 218px; }
  30%, 44% { left: 32%; top: 342px; }
  58%, 72% { left: 76%; top: 342px; }
  84%, 94% { left: 50%; top: 466px; }
  100% { left: 54%; top: 218px; }
}

@keyframes sendPath {
  0%, 12% { left: 34%; top: 404px; }
  24%, 38% { left: 70%; top: 404px; }
  52%, 64% { left: 50%; top: 553px; }
  78%, 90% { left: 50%; top: 617px; }
  100% { left: 34%; top: 404px; }
}

.stores {
  width: var(--wide);
  display: grid;
  grid-template-columns: minmax(520px, 1fr) auto;
  gap: clamp(42px, 6vw, 110px);
  align-items: center;
  padding: 120px clamp(24px, 4vw, 74px);
  margin-bottom: 70px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(21, 18, 15, 0.96), rgba(55, 28, 10, 0.94));
  color: #fff;
  box-shadow: 0 38px 120px rgba(31, 19, 10, 0.22);
  transform-style: preserve-3d;
}

.stores .kicker,
.stores p {
  color: rgba(255, 255, 255, 0.72);
}

.stores h2 {
  color: #fff;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

.store-links a {
  width: clamp(230px, 21vw, 320px);
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: 0;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  display: block;
  direction: ltr;
  line-height: 0;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.store-links a:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.store-links img {
  display: block;
  width: 100%;
  height: auto;
}

.app-store-badge {
  width: clamp(250px, 24vw, 350px);
}

.footer {
  width: var(--content);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 34px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--muted);
}

.reveal-target {
  opacity: 0;
  transform: translateY(48px) rotateX(6deg) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease;
}

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

.hero-media.reveal-target {
  transform: translateY(28px) scale(0.99);
}

.hero-media.reveal-target.is-visible,
:target .hero-media.reveal-target {
  transform: translateY(0) scale(1);
}

:target .reveal-target {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

.contents-grid .reveal-target:nth-child(2),
.clean-list .reveal-target:nth-child(2) {
  transition-delay: 80ms;
}

.contents-grid .reveal-target:nth-child(3),
.clean-list .reveal-target:nth-child(3) {
  transition-delay: 160ms;
}

.contents-grid .reveal-target:nth-child(4) {
  transition-delay: 240ms;
}

.contents-grid .reveal-target:nth-child(5) {
  transition-delay: 320ms;
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.01); }
}

@keyframes cardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateY(0) rotateX(0); }
  50% { transform: translate3d(0, -12px, 18px) rotateY(-2deg) rotateX(1.5deg); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-7deg) rotateX(3deg) translate3d(0, 0, 48px); }
  50% { transform: rotateY(-3deg) rotateX(1.4deg) translate3d(0, -14px, 74px); }
}

@keyframes phoneFloatReverse {
  0%, 100% { transform: rotateY(7deg) rotateX(3deg) translate3d(0, 0, 48px); }
  50% { transform: rotateY(3deg) rotateX(1.4deg) translate3d(0, -14px, 74px); }
}

.footer a {
  color: var(--orange-dark);
  font-weight: 950;
}

@media (max-width: 1040px) {
  .site-header,
  .hero,
  .flow,
  .flow.reverse,
  .stores {
    grid-template-columns: 1fr;
  }

  .flow.reverse .flow-copy,
  .hero-media {
    order: 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .contents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow {
    min-height: auto;
    padding: 68px 0;
  }

  .flow-copy {
    position: static;
  }

  .demo-card,
  .phone-shell,
  .flow.reverse .phone-shell,
  .hero-screen {
    animation: none;
    transform: none;
    translate: none;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .hero-media,
  .hero-content,
  .flow-copy,
  .demo-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  body {
    direction: ltr;
  }

  .site-header,
  .hero,
  .section,
  .footer,
  .contents,
  .flow,
  .stores {
    direction: rtl;
  }

  .section,
  .hero,
  .footer,
  .contents,
  .flow,
  .stores {
    width: min(100% - 24px, 1220px);
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }

  .logo-mark {
    width: 112px;
    flex: 0 0 auto;
  }

  .download-pill {
    margin-inline-start: auto;
    font-size: 0.9rem;
  }

  .header-store-links {
    margin-inline-start: auto;
    gap: 7px;
  }

  .header-store-links a {
    width: 118px;
    border-radius: 8px;
  }

  .main-nav {
    width: 100%;
    max-width: 100%;
    order: 3;
    gap: 6px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .main-nav a {
    flex: 0 0 auto;
    font-size: 0.92rem;
    padding: 8px 11px;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.02;
    overflow-wrap: break-word;
    word-break: normal;
  }

  h2 {
    font-size: 2.2rem;
    overflow-wrap: break-word;
  }

  .hero-screen,
  .hero-screen > img {
    min-height: 420px;
    height: 420px;
  }

  .hero-screen {
    border-radius: 28px;
  }

  .hero-screen-overlay {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-screen-overlay img {
    width: 118px;
  }

  .hero-screen-overlay span {
    max-width: 100%;
    font-size: 2.2rem;
  }

  .hero-content,
  .flow-copy,
  .stores {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .contents-grid,
  .contact-grid,
  .send-grid,
  .swipe-menu,
  .segmented {
    grid-template-columns: 1fr;
  }

  .phone-demo {
    min-height: 720px;
  }

  .callout {
    display: none;
  }

  .phone-panel {
    width: calc(100% - 28px);
    padding: 18px;
  }

  .stores {
    width: min(100% - 24px, 1220px);
    padding: 46px 18px;
    border-radius: 30px;
  }

  .store-links {
    justify-content: center;
  }

  .store-links a {
    width: min(100%, 320px);
  }

  .app-store-badge {
    width: min(100%, 350px);
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
