/* Pooshino marketing — Modern Iranian digital product */

.marketing-page .btn {
  border-radius: var(--radius-md);
}

.marketing-page .btn-lg {
  border-radius: 999px;
  padding-inline: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Header —— */
.marketing-header {
  max-width: none;
  padding: 0;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(1.2);
  transition: background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}

.marketing-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 10px 30px rgba(12, 27, 51, 0.05);
}

.header-shell {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.marketing-page .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0;
}

.marketing-page .brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.marketing-page .brand-word {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.marketing-page .brand-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

.marketing-page .brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-hover) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 18px rgba(26, 86, 214, 0.22);
}

.marketing-page .brand-mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.marketing-nav {
  position: relative;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, var(--background));
  isolation: isolate;
}

.marketing-nav .nav-glass {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 20px rgba(26, 86, 214, 0.12);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  transform: translateX(0);
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
  will-change: transform, width;
}

.marketing-nav.is-ready .nav-glass {
  opacity: 1;
}

.marketing-page .nav a,
.marketing-nav a {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.28s ease, background 0.28s ease;
}

.marketing-page .nav a::after {
  display: none;
}

.marketing-page .nav a:hover,
.marketing-page .nav a:focus-visible,
.marketing-nav a:hover,
.marketing-nav a:focus-visible {
  color: var(--primary-hover);
  background: transparent;
}

.marketing-nav a.is-active,
.marketing-nav a[aria-current="true"] {
  color: var(--primary-hover);
  font-weight: 700;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .marketing-nav .nav-glass {
    transition: none;
  }
}

.marketing-page .header-actions {
  gap: 10px;
}

.marketing-page .header-login {
  min-height: 40px;
  padding-inline: 14px;
  font-weight: 600;
}

.marketing-page .header-cta {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(30, 79, 214, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
  position: sticky;
  top: 72px;
  z-index: 19;
  display: grid;
  gap: 4px;
  padding: 14px 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-label {
  margin: 0 0 6px;
  padding-inline: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.mobile-nav a:not(.btn) {
  padding: 12px 12px;
  color: var(--text-secondary);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav a:not(.btn):hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.mobile-nav a:not(.btn).is-active,
.mobile-nav a:not(.btn)[aria-current="true"] {
  color: var(--primary-hover);
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(226, 236, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.mobile-nav-actions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* —— Hero: try-on demo first glance —— */
.hero {
  position: relative;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: center;
  color: var(--text-primary);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(165deg, #eef2fb 0%, var(--background) 42%, #e8eef8 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 48% 42% at 50% 28%, rgba(26, 86, 214, 0.16), transparent 62%),
    radial-gradient(ellipse 40% 36% at 28% 72%, rgba(19, 68, 176, 0.1), transparent 60%),
    radial-gradient(ellipse 38% 34% at 74% 78%, rgba(26, 86, 214, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 35%, rgba(243, 245, 249, 0.9) 100%);
  animation: hero-wash-breathe 12s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  will-change: transform, opacity;
}

.hero-glow-a {
  width: min(54vw, 560px);
  height: min(54vw, 560px);
  top: 8%;
  left: 50%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(26, 86, 214, 0.28) 0%, rgba(26, 86, 214, 0.08) 42%, transparent 70%);
  animation: hero-glow-drift 12s ease-in-out infinite alternate;
}

.hero-glow-b {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  bottom: 6%;
  left: 42%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(19, 68, 176, 0.18) 0%, transparent 68%);
  animation: hero-glow-drift 16s ease-in-out infinite alternate-reverse;
}

.hero-glow-c {
  width: min(26vw, 260px);
  height: min(26vw, 260px);
  top: 46%;
  left: 50%;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(147, 180, 255, 0.42) 0%, transparent 70%);
  animation: hero-glow-pulse 7s ease-in-out infinite;
}

.hero-geometry {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(45deg, transparent 47.5%, var(--primary) 49%, var(--primary) 51%, transparent 52.5%),
    linear-gradient(-45deg, transparent 47.5%, var(--primary) 49%, var(--primary) 51%, transparent 52.5%);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 55% 60% at 50% 45%, black 15%, transparent 72%);
  animation: hero-geo-shift 22s linear infinite;
}

.hero-orbit {
  position: absolute;
  border: 1.5px solid rgba(26, 86, 214, 0.2);
  border-radius: 50%;
  top: 48%;
  left: 50%;
  translate: -50% -50%;
}

.hero-orbit-a {
  width: min(48vw, 500px);
  height: min(48vw, 500px);
  animation: hero-orbit-spin 28s linear infinite;
}

.hero-orbit-b {
  width: min(34vw, 340px);
  height: min(34vw, 340px);
  border-style: dashed;
  border-color: rgba(26, 86, 214, 0.16);
  animation: hero-orbit-spin 40s linear infinite reverse;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--primary) 70%, white);
  box-shadow: 0 0 16px rgba(26, 86, 214, 0.35);
  transform: rotate(45deg);
}

.hero-orbit::before {
  top: 0;
  inset-inline-start: 50%;
  margin-inline-start: -4px;
  margin-top: -4px;
}

.hero-orbit::after {
  bottom: 12%;
  inset-inline-end: 8%;
  width: 6px;
  height: 6px;
  opacity: 0.7;
}

.hero-diamond {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(26, 86, 214, 0.35);
  border-radius: 3px;
  transform: rotate(45deg);
  animation: hero-diamond-float 7s ease-in-out infinite;
}

.hero-diamond-1 { top: 22%; left: 46%; animation-delay: 0s; }
.hero-diamond-2 { top: 34%; left: 58%; width: 8px; height: 8px; opacity: 0.6; animation-delay: 1.4s; }
.hero-diamond-3 { bottom: 26%; left: 44%; width: 10px; height: 10px; animation-delay: 2.2s; }
.hero-diamond-4 { top: 58%; left: 52%; opacity: 0.5; animation-delay: 0.8s; }

@keyframes hero-wash-breathe {
  from { transform: scale(1) translate3d(0, 0, 0); opacity: 0.9; }
  to { transform: scale(1.06) translate3d(-2%, 2%, 0); opacity: 1; }
}

@keyframes hero-glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-5%, 7%, 0) scale(1.12); }
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}

@keyframes hero-geo-shift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, -56px 56px; }
}

@keyframes hero-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hero-diamond-float {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.45; }
  50% { transform: rotate(45deg) translateY(-14px); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wash,
  .hero-glow,
  .hero-geometry,
  .hero-orbit,
  .hero-diamond {
    animation: none !important;
  }
}

.hero-shell {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
  padding: 40px 0 48px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 500px);
  gap: clamp(10px, 1.6vw, 20px);
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: min(100%, 620px);
  max-width: 620px;
  justify-self: end;
  text-align: start;
  color: var(--text-primary);
}

.hero-content .reveal {
  opacity: 1;
  transform: none;
  animation: hero-copy-in 0.7s var(--ease-out) both;
}

.hero-content .reveal:nth-child(1) { animation-delay: 0.05s; }
.hero-content .reveal:nth-child(2) { animation-delay: 0.12s; }
.hero-content .reveal:nth-child(3) { animation-delay: 0.18s; }
.hero-content .reveal:nth-child(4) { animation-delay: 0.24s; }
.hero-content .reveal:nth-child(5) { animation-delay: 0.3s; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px 7px 12px;
  border: 1px solid color-mix(in srgb, var(--primary-soft) 65%, var(--border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-light) 70%, white);
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 86, 214, 0.16);
  animation: hero-dot-pulse 2.2s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary) 0%, #3b6fe8 55%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-break {
  display: block;
}

@media (max-width: 640px) {
  .hero-break {
    display: none;
  }
}

.hero-lede {
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-secondary);
}

.hero-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-points li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions .btn-lg {
  min-height: 48px;
  padding: 12px 22px;
}

.hero-actions .btn-primary {
  box-shadow: 0 14px 34px rgba(26, 86, 214, 0.3);
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 4px;
  transition: color var(--duration-fast) ease, gap var(--duration) var(--ease-out);
}

.btn-ghost-link:hover {
  color: var(--primary);
  gap: 11px;
}

@keyframes hero-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(26, 86, 214, 0.14); }
  50% { box-shadow: 0 0 0 7px rgba(26, 86, 214, 0.08); }
}

/* Try-on product modal (exact UI) in hero */
.tryon-demo {
  width: 100%;
  max-width: 500px;
  justify-self: start;
}

.hero-modal-frame {
  position: relative;
  filter: drop-shadow(0 24px 60px rgba(12, 27, 51, 0.18));
}

.hero-modal-frame::before {
  content: "";
  position: absolute;
  inset: 18px -14px -18px 14px;
  border-radius: var(--radius-xl);
  background: rgba(12, 27, 51, 0.35);
  z-index: -1;
}

.hero .hero-modal.modal {
  width: 100%;
  min-height: 0;
  max-height: min(700px, calc(100svh - 110px));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero .hero-modal .modal-head {
  padding: 14px 16px;
  flex: 0 0 auto;
}

.hero .hero-modal .hero-modal-close {
  color: var(--text-secondary);
  font-size: 13px;
}

.hero .hero-modal .studio-body {
  padding: 8px 18px 20px;
  overflow: hidden;
  flex: 1 1 auto;
}

.hero .hero-modal .studio-hero {
  margin: 4px 0 14px;
}

.hero .hero-modal .studio-hero .h2 {
  font-size: 22px !important;
  line-height: 1.45;
}

.hero .hero-modal .product-context {
  margin-bottom: 12px;
}

.hero .hero-modal .photo-guide {
  margin-bottom: 12px;
}

.hero .hero-modal .choice {
  gap: 10px;
}

.hero .hero-modal .choice button {
  min-height: 88px;
  padding: 14px;
}

.hero .hero-modal .privacy-note {
  margin-top: 12px;
}

.hero .hero-modal .process {
  gap: 12px;
  margin-bottom: 16px;
}

.hero .hero-modal .process img {
  height: 170px;
  object-fit: cover;
  object-position: center top;
}

.hero .hero-modal .ai-line {
  margin-bottom: 4px;
}

.hero .hero-modal .ai-line li {
  font-size: 11px;
  min-height: 34px;
  padding: 0 4px;
}

.hero .hero-modal .progress-box {
  margin-top: 12px;
}

.hero .hero-modal .choice button.is-highlight {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.hero .hero-modal .hero-upload-drop {
  min-height: 220px;
  padding: 12px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.hero .hero-modal .hero-upload-drop.is-picking {
  border-color: var(--blue-600);
  background: var(--blue-100);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.hero .hero-modal .hero-upload-drop.is-selected {
  border-color: var(--status-success);
  box-shadow: 0 0 0 3px rgba(15, 159, 110, 0.14);
}

.hero .hero-modal .hero-upload-drop .preview-img {
  display: none;
  max-height: 240px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center top;
}

.hero .hero-modal .hero-upload-drop.has-file .preview-img {
  display: block;
}

.hero .hero-modal .stage {
  min-height: 250px;
  max-width: 100%;
  background: #f3f5f8;
}

.hero .hero-modal .stage img,
.hero .hero-modal .hero-result-stage img {
  height: 280px;
  object-fit: contain;
  object-position: center top;
  background: #f3f5f8;
}

.hero .hero-modal .sticky-cta {
  position: static;
  background: none;
  padding-top: 12px;
  flex-wrap: wrap;
}

.hero .hero-modal .sticky-cta .btn {
  min-height: 40px;
  font-size: 13px;
}

.hero .hero-modal .powered {
  margin-top: 10px;
}

.hero .hero-modal .panel {
  animation: hero-panel-in 0.45s var(--ease-out);
}

@keyframes hero-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
/* —— Trust bar —— */
.trust-bar {
  border: none;
  background: transparent;
  padding-block: 8px 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--surface)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-list p {
  margin: 0;
  position: relative;
  padding: 12px 16px 12px 34px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--primary-light) 55%, white);
}

.trust-list p::before {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border: 1.5px solid var(--primary);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* —— Sections —— */
.marketing-page .section {
  position: relative;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.section-muted {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(26, 86, 214, 0.05), transparent 55%),
    var(--surface);
}

.marketing-page .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.marketing-page .kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

/* —— Steps —— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: none;
}

.step {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) ease, border-color var(--duration) ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary-soft) 70%, var(--border));
  box-shadow: var(--shadow-lift);
}

.step:last-child {
  border-inline-end: 1px solid var(--border);
  padding-inline-end: 14px;
}

.step-visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 6px);
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(145deg, var(--primary-light), color-mix(in srgb, var(--accent-soft) 50%, white));
}

.step-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.step:hover .step-visual > img {
  transform: scale(1.05);
}

.step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 28, 54, 0.28) 100%);
  pointer-events: none;
}

.step-icon {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-hover);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(12, 27, 51, 0.14);
}

.step-index {
  position: absolute;
  inset-inline-end: 12px;
  top: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  box-shadow: 0 8px 18px rgba(26, 86, 214, 0.28);
}

.step:hover .step-index {
  transform: none;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
}

.step-body {
  padding: 2px 8px 10px;
}

.step-body .h4 {
  margin: 0;
}

.step-body p,
.step p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
  max-width: none;
}

/* —— Store —— */
.store-section {
  margin: 12px clamp(16px, 3vw, 28px) 28px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(59, 111, 232, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(26, 86, 214, 0.18), transparent 50%),
    linear-gradient(145deg, #0d213f 0%, var(--secondary) 48%, #122844 100%);
  color: #fff;
  overflow: hidden;
}

.store-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.store-section .kicker {
  color: #93b4ff;
}

.store-lede {
  margin: 16px 0 0;
  color: #b8c5d8;
  font-size: 17px;
  line-height: 2;
  max-width: 42ch;
}

.store-points {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.store-points li {
  padding-inline-start: 18px;
  border-inline-start: 2px solid rgba(147, 180, 255, 0.45);
}

.store-points strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.store-points span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.85;
}

.store-media {
  margin: 0;
  position: relative;
}

.store-media > img {
  width: 100%;
  height: min(520px, 62vw);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
}

.store-media figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #b8c5d8;
  font-size: 13px;
}

.store-media figcaption img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* —— Benefits —— */
.benefit-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border: none;
}

.benefit {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--primary-light) 40%, white), var(--surface));
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) ease;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.benefit:last-child {
  border-inline-end: 1px solid var(--border);
}

.benefit p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
  max-width: 34ch;
}

/* —— Pricing —— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease, transform var(--duration) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.pricing-card.featured {
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
  box-shadow: 0 18px 44px rgba(26, 86, 214, 0.14);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--primary-light) 70%, white) 0%, var(--surface) 48%);
}

.pricing-card .price {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.pricing-card .price-unit {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 12px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-disclaimer {
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

.form-status {
  min-height: 1.5em;
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.form-status.err {
  color: var(--error);
}

/* —— Privacy —— */
.privacy-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(180deg, var(--primary-light), color-mix(in srgb, var(--accent-soft) 55%, white));
  border: 1px solid color-mix(in srgb, var(--primary-soft) 55%, transparent);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.privacy-panel::after {
  content: "";
  position: absolute;
  inset-inline-end: -20px;
  top: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.18;
  background:
    linear-gradient(45deg, transparent 46%, var(--primary) 47%, var(--primary) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--primary) 47%, var(--primary) 53%, transparent 54%);
  background-size: 28px 28px;
  pointer-events: none;
}

.privacy-panel p {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--text-secondary);
}

/* —— FAQ —— */
.faq-wrap {
  max-width: 820px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-md);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 18px 36px 18px 8px;
  position: relative;
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-inline-end: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--duration) var(--ease-out), border-color var(--duration-fast) ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
  border-color: var(--primary);
}

.faq-list summary:hover {
  color: var(--primary-hover);
  background: color-mix(in srgb, var(--primary-light) 45%, transparent);
}

.faq-list details p {
  max-width: 68ch;
  margin: 0 0 18px;
  color: var(--text-secondary);
  animation: faq-open var(--duration) var(--ease-out);
}

/* —— Home blog —— */
.home-blog-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 104px);
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0) 0%, rgba(232, 240, 255, 0.55) 42%, rgba(247, 249, 252, 0) 100%);
}

.home-blog-atmosphere {
  position: absolute;
  inset: 8% 6% auto auto;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.16), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.home-blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  max-width: none;
}

.home-blog-heading > div {
  max-width: 640px;
}

.home-blog-heading > div > p:last-child {
  margin: 14px 0 0;
  color: var(--text-secondary);
}

.home-blog-all {
  flex-shrink: 0;
}

.home-blog-status:empty {
  display: none;
}

.home-blog-layout {
  width: 100%;
}

.home-blog-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home-blog-grid > li {
  flex: 0 1 270px;
  width: min(100%, 270px);
  transition-delay: calc(var(--blog-delay, 0) * 60ms);
}

.home-blog-layout--solo .home-blog-grid {
  justify-content: center;
}

.home-blog-layout--solo .home-blog-grid > li {
  flex-basis: 300px;
  width: min(100%, 300px);
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: color-mix(in srgb, var(--surface, #fff) 94%, white);
  border: 1px solid color-mix(in srgb, var(--border, #d8dee8) 85%, transparent);
  box-shadow: 0 8px 22px rgba(11, 28, 58, 0.05);
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.home-blog-card:hover,
.home-blog-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary, #1a56d6) 32%, var(--border, #d8dee8));
  box-shadow: 0 14px 30px rgba(11, 28, 58, 0.1);
  outline: none;
}

.home-blog-card-media {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  overflow: hidden;
  background: linear-gradient(145deg, #dbe7ff, #eef3f9);
  display: grid;
  place-items: center;
}

.home-blog-card-media img,
.home-blog-cover-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out);
}

.home-blog-card:hover .home-blog-card-media img {
  transform: scale(1.03);
}

.home-blog-cover-fallback {
  background:
    radial-gradient(circle at 30% 28%, rgba(47, 111, 237, 0.35), transparent 55%),
    linear-gradient(160deg, #c7d7ff, #e8eef8);
}

.home-blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 16px;
  flex: 1;
}

.home-blog-card-body time {
  font-size: 11px;
  color: var(--text-muted, #6b7280);
}

.home-blog-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-secondary, #5b6575);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-skeleton {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.home-blog-skel {
  flex: 0 1 270px;
  width: min(100%, 270px);
  border-radius: 20px;
  min-height: 280px;
  background: linear-gradient(90deg, #e8eef8 0%, #f5f8fc 50%, #e8eef8 100%);
  background-size: 200% 100%;
  animation: home-blog-shimmer 1.2s ease-in-out infinite;
}

@keyframes home-blog-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 900px) {
  .home-blog-heading {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .home-blog-grid > li,
  .home-blog-skel,
  .home-blog-layout--solo .home-blog-grid > li {
    flex-basis: min(100%, 320px);
    width: min(100%, 320px);
  }

  .home-blog-card-media {
    min-height: 200px;
  }
}

/* —— Final CTA —— */
.final-cta {
  padding: 72px 0 96px;
  text-align: center;
  background: transparent;
  border-top: none;
}

.final-inner {
  width: min(100% - 32px, 760px);
  margin-inline: auto;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in srgb, var(--primary-soft) 50%, var(--border));
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(26, 86, 214, 0.12), transparent 60%),
    linear-gradient(180deg, #fff, color-mix(in srgb, var(--primary-light) 35%, white));
  box-shadow: var(--shadow-lift);
}

.final-inner h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.final-inner p {
  margin: 14px 0 26px;
  color: var(--text-secondary);
}

.marketing-footer {
  display: block;
  margin: 0 clamp(16px, 3vw, 28px) 0;
  padding: 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(26, 86, 214, 0.07), transparent 55%),
    var(--surface);
  color: var(--text-secondary);
  overflow: hidden;
}

.footer-shell {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 56px 0 36px;
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-brand .brand-lockup {
  margin-bottom: 14px;
}

.footer-lede {
  max-width: 34ch;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.site-footer a.footer-cta,
.marketing-footer a.footer-cta,
.marketing-footer a.btn-primary.footer-cta {
  border-radius: 999px;
  min-height: 42px;
  padding-inline: 18px;
  font-weight: 700;
  color: #ffffff !important;
}

.site-footer a.footer-cta:hover,
.site-footer a.footer-cta:focus-visible,
.marketing-footer a.footer-cta:hover,
.marketing-footer a.footer-cta:focus-visible,
.marketing-footer a.btn-primary.footer-cta:hover,
.marketing-footer a.btn-primary.footer-cta:focus-visible {
  color: #ffffff !important;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--duration-fast) ease;
}

.footer-col a:hover {
  color: var(--primary-hover);
}

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom > p {
  margin: 0;
  justify-self: start;
}

.footer-trust {
  justify-self: center;
}

.enamad-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface, #fff) 88%, white);
  border: 1px solid color-mix(in srgb, var(--border, #d8dee8) 90%, transparent);
  box-shadow: 0 8px 20px rgba(11, 28, 58, 0.06);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, box-shadow 0.2s ease;
}

.enamad-seal:hover,
.enamad-seal:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary, #1a56d6) 28%, var(--border, #d8dee8));
  box-shadow: 0 12px 28px rgba(11, 28, 58, 0.1);
  outline: none;
}

.enamad-seal img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  justify-self: end;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 720px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > p,
  .footer-trust,
  .footer-bottom-links {
    justify-self: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-content .reveal,
  .pricing-card,
  .step-index,
  .hero .hero-modal .panel,
  .home-blog-card,
  .home-blog-card-media img,
  .home-blog-skel {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .marketing-page .nav,
  .marketing-nav {
    display: none;
  }

  .marketing-page .header-actions .header-login {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .marketing-page .brand-tag {
    display: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--container));
    padding: 36px 0 48px;
    gap: 24px;
  }

  .hero-content {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    order: 1;
  }

  .tryon-demo {
    order: 0;
    max-width: 460px;
    margin-inline: auto;
    justify-self: center;
  }

  .hero .hero-modal.modal {
    max-height: none;
  }

  .trust-list,
  .steps,
  .benefit-rows,
  .store-split {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 14px;
  }

  .benefit {
    padding: 24px;
  }

  .step:last-child,
  .benefit:last-child {
    border-inline-end: 1px solid var(--border);
  }

  .store-media > img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .marketing-page .site-header .btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-actions .btn-primary {
    width: 100%;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(30px, 7.5vw, 40px);
  }

  .hero-lede {
    max-width: none;
  }

  .hero .hero-modal .process img {
    height: 130px;
  }

  .hero .hero-modal .stage img,
  .hero .hero-modal .hero-result-stage img {
    height: 250px;
  }

  .hero .hero-modal .hero-upload-drop .preview-img {
    max-height: 200px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px;
  }

  .final-cta {
    padding: 72px 16px;
  }

  .store-media > img {
    height: 280px;
  }
}
