:root {
  --bg: #090713;
  --bg-deep: #05030b;
  --panel: rgba(16, 14, 34, 0.74);
  --panel-strong: rgba(18, 16, 40, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f5ff;
  --muted: #c7bfdc;
  --accent: #ff4f93;
  --accent-strong: #6cc6ff;
  --accent-soft: #f3a7ff;
  --lime: #9be7ff;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 79, 147, 0.24), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(108, 198, 255, 0.18), transparent 16%),
    radial-gradient(circle at 70% 60%, rgba(243, 167, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #110b21 0%, var(--bg) 34%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 4, 14, 0.74), rgba(6, 4, 14, 0.88)),
    url("./images/hero-model.jpg") center top / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
  opacity: 0.24;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.6) 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.5) 0.7px, transparent 0.9px);
  background-size: 16px 16px, 18px 18px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.section { width: min(calc(100% - 28px), var(--max)); margin-inline: auto; }

.topbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 28px;
  background: rgba(8, 8, 18, 0.9);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transition: transform 0.38s ease, opacity 0.32s ease, background 0.28s ease;
  transform: translateY(0);
}

.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy small { color: var(--muted); font-size: 0.74rem; }

.brand-mark {
  width: 196px;
  height: 112px;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  flex: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  image-rendering: auto;
  filter: brightness(1.08) saturate(1.08) drop-shadow(0 10px 24px rgba(255, 204, 80, 0.16));
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy small {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav { display: flex; gap: 22px; color: var(--muted); }
.nav a:hover { color: var(--text); }
.section { padding: 92px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10px -8px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(12, 8, 9, 0.9) 0%, rgba(18, 11, 13, 0.82) 36%, rgba(18, 11, 13, 0.5) 68%, rgba(18, 11, 13, 0.2) 100%),
    url("./images/model-taupe.png") center 12% / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero h1, .section-heading h2, .solution-copy h2, .experience-copy h2, .authority-copy h2, .cta-panel h2 {
  margin: 14px 0;
  font-family: "Syne", sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero h1 { max-width: 12ch; font-size: clamp(2.55rem, 5.6vw, 4.8rem); }

.hero-sub, .section-heading p, .solution-copy p, .experience-copy p, .cta-panel p, .authority-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.68;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0; }

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #12091f;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 0 rgba(255, 79, 147, 0.34), 0 16px 34px rgba(108, 198, 255, 0.18);
}

.btn-secondary, .btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.magnetic { position: relative; }
.magnetic::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(243, 167, 255, 0.38), transparent 70%);
  opacity: 0;
  transition: opacity 0.26s ease;
  z-index: -1;
}
.magnetic:hover::after { opacity: 1; }

.hero-proof, .proof-stats, .proof-highlights, .steps-grid, .pain-grid, .desire-grid, .feature-grid, .testimonial-grid, .pricing-grid, .objection-grid, .fun-grid {
  display: grid;
  gap: 18px;
}

.hero-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proof-highlights,
.proof-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.hero-proof div, .proof-stats div, .pain-card, .solution-shell, .quiz-shell, .quiz-notes, .desire-card, .step-card, .feature-card, .testimonial-card, .price-card, .objection-card, .fun-card, .faq-item, .cta-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.proof-pill,
.ugc-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.review-summary,
.review-compose,
.review-form,
.review-field input,
.review-field textarea,
.review-upload,
.review-preview {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.review-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px 22px;
  border-radius: 26px;
}

.review-summary-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.review-summary-stars {
  color: #ffd35a;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-summary strong {
  font-size: 1.3rem;
  font-family: "Syne", sans-serif;
}

.review-summary small,
.review-summary p {
  color: var(--muted);
}

.review-summary p {
  margin: 0;
  line-height: 1.6;
}

.hero-proof div, .proof-stats div, .proof-pill { padding: 18px; border-radius: 22px; }
.hero-proof strong, .proof-stats strong { display: block; font-size: 1.06rem; margin-bottom: 6px; }
.hero-proof span, .proof-stats span { color: var(--muted); font-size: 0.92rem; }
.proof-pill strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.proof-pill span {
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.93rem;
}

.hero-trigger-bar {
  max-width: 560px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
}
.hero-trigger-bar span { display: block; margin-bottom: 4px; color: var(--accent-soft); font-weight: 700; }
.hero-trigger-bar p { margin: 0; color: var(--muted); line-height: 1.7; }

.hero-visual { position: relative; min-height: 880px; perspective: 1400px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.85; }
.orb-one { width: 250px; height: 250px; top: 6%; right: 0; background: rgba(255, 79, 147, 0.26); }
.orb-two { width: 220px; height: 220px; bottom: 14%; left: 2%; background: rgba(108, 198, 255, 0.22); }
.orb-three { width: 170px; height: 170px; top: 28%; left: 8%; background: rgba(243, 167, 255, 0.1); }

.model-stage {
  position: absolute;
  inset: 36px 30px 26px 30px;
  border-radius: 40px;
  overflow: hidden;
  transform-style: preserve-3d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(17, 12, 36, 0.95), rgba(7, 6, 15, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.model-grid {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(800px) rotateX(72deg);
  transform-origin: center top;
  opacity: 0.25;
}

.model-halo {
  position: absolute;
  inset: auto 18% 4% 18%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 147, 0.34), transparent 68%);
  filter: blur(18px);
}

.model-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 7, 0.78));
}

.model-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.product-image {
  object-fit: cover;
  object-position: center top;
  padding: 0;
  filter: saturate(1.02) drop-shadow(0 28px 40px rgba(0, 0, 0, 0.36));
}

.hero-float, .phone-ui {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 12, 30, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-float { max-width: 250px; }
.float-left { top: 10%; left: -3%; }
.float-right { top: 18%; right: -3%; }
.float-bottom { bottom: 8%; right: 2%; }

.float-label, .phone-ui span {
  color: var(--accent-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-float strong, .phone-ui strong { display: block; margin: 8px 0 6px; }
.hero-float small, .phone-ui small { color: var(--muted); line-height: 1.55; }
.phone-ui { width: 210px; }
.phone-ui-top { top: 10%; right: 7%; }
.phone-ui-bottom { left: 8%; bottom: 8%; }

.mini-bars {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.mini-bars i {
  display: block;
  width: 18px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--lime), var(--accent));
}

.ticker {
  overflow: hidden;
  margin-top: 12px;
  border-block: 1px solid rgba(108, 198, 255, 0.18);
  background: linear-gradient(90deg, rgba(255, 79, 147, 0.95), rgba(108, 198, 255, 0.94));
  color: #10091e;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  gap: 34px;
  white-space: nowrap;
  padding: 14px 0;
  animation: ticker 18s linear infinite;
}
.ticker-track span::after { content: "•"; margin-left: 34px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-42%); } }

.brand-strip {
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
}

.brand-strip-inner {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  border-inline: 0;
  background: rgba(10, 9, 22, 0.68);
  backdrop-filter: blur(20px);
}

.brand-strip-label {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-strip-track {
  display: flex;
  gap: 16px;
  overflow: hidden;
  white-space: nowrap;
}

.brand-strip-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(247, 245, 255, 0.92);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  animation: brandMarquee 20s linear infinite;
}

@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.section-heading { max-width: 860px; margin-bottom: 34px; }
.section-heading h2, .solution-copy h2, .experience-copy h2, .authority-copy h2, .cta-panel h2 { font-size: clamp(1.95rem, 4vw, 3.2rem); }
.pain-grid, .desire-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.pain-card, .desire-card, .step-card, .feature-card, .testimonial-card, .price-card, .objection-card, .fun-card {
  padding: 22px;
  border-radius: 24px;
}

.pain-card strong, .step-card strong { color: var(--accent-strong); font-size: 1.2rem; }
.pain-card p, .step-card p, .feature-card p, .testimonial-card p, .objection-card p { color: var(--muted); line-height: 1.62; font-size: 0.95rem; }

.solution-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
}

.solution-points { display: grid; gap: 16px; }
.solution-points div {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.solution-points strong { display: block; margin-bottom: 8px; }
.solution-points span { color: var(--muted); line-height: 1.7; }

.quiz-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; }
.quiz-shell, .quiz-notes { border-radius: 30px; }
.quiz-shell { padding: 28px; }
.quiz-notes { padding: 26px; }
.quiz-notes h3 { margin-top: 0; font-family: "Syne", sans-serif; }
.quiz-notes ul { margin: 0 0 18px; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.quiz-notes p { margin: 0; color: var(--muted); line-height: 1.7; }

.quiz-progress { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.progress-bar { width: min(420px, 100%); height: 12px; border-radius: 999px; overflow: hidden; background: rgba(255, 255, 255, 0.07); }
.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  transition: width 0.24s ease;
}

.quiz-card h3 { margin: 0 0 18px; font-size: 1.45rem; }
.quiz-card p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

.quiz-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.quiz-option {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.quiz-option:hover, .quiz-option.selected {
  transform: translateY(-2px);
  border-color: rgba(255, 180, 142, 0.48);
  background: rgba(255, 180, 142, 0.1);
}

.quiz-actions { display: flex; justify-content: space-between; gap: 16px; margin-top: 24px; }
.quiz-result { min-height: 240px; display: flex; flex-direction: column; justify-content: center; }
.result-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 180, 142, 0.12);
  color: var(--accent-soft);
  font-weight: 700;
}

.desire-card {
  min-height: 142px;
  display: flex;
  align-items: end;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(255, 79, 147, 0.14), transparent 42%), var(--panel);
}

.experience-section, .authority-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.motion-section .section-heading {
  margin-bottom: 22px;
}

.motion-layout {
  display: grid;
  place-items: center;
}

.motion-video-wrap,
.motion-float {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: 28px;
}

.motion-video-wrap {
  overflow: hidden;
  position: relative;
  width: min(100%, 760px);
  min-height: 560px;
  padding: 22px;
  background:
    radial-gradient(circle at top, rgba(108, 198, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom, rgba(255, 79, 147, 0.12), transparent 30%),
    #080711;
}

.motion-overlay {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 7, 17, 0.58);
  backdrop-filter: blur(16px);
}

.motion-overlay span {
  color: var(--accent-soft);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-overlay strong {
  max-width: 16ch;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.motion-float {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 210px;
  padding: 14px 16px;
  background: rgba(8, 7, 17, 0.54);
}

.motion-float strong {
  font-size: 0.98rem;
}

.motion-float span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
}

.motion-float-left {
  top: 26%;
  left: -54px;
}

.motion-float-right {
  top: 20%;
  right: -62px;
}

.motion-float-bottom {
  right: 24px;
  bottom: 26px;
}

.motion-video {
  display: block;
  width: 100%;
  max-width: 430px;
  height: 516px;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.34);
}

.experience-list, .authority-list, .transformation-strip { display: grid; gap: 12px; }
.experience-list div, .authority-list div, .transformation-strip div {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.phone-frame {
  width: min(420px, 100%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 15, 40, 0.96), rgba(8, 7, 16, 0.96));
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 660px;
  border-radius: 28px;
  padding: 18px;
  background: radial-gradient(circle at top, rgba(108, 198, 255, 0.16), transparent 30%), linear-gradient(180deg, #161125, #090710);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-screen {
  justify-content: space-between;
}

.product-screen-center {
  min-height: 280px;
}

.experience-product,
.product-spotlight {
  width: min(100%, 320px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.35));
}

.product-config,
.product-config-panel {
  display: grid;
  gap: 22px;
}

.product-config {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: stretch;
}

.product-config-media,
.config-block,
.single-price-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: 28px;
}

.product-config-media {
  overflow: hidden;
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(108, 198, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom, rgba(255, 79, 147, 0.14), transparent 28%),
    var(--panel-strong);
}

.product-config-media img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  transition: opacity 0.3s ease, transform 0.45s ease;
}

.product-config-media img.is-switching {
  opacity: 0.45;
  transform: scale(0.985);
}

.product-config-panel {
  align-content: start;
}

.shop-fit-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.config-block,
.single-price-panel {
  padding: 24px;
}

.config-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.config-note {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.qty-picker {
  display: inline-grid;
  grid-template-columns: 52px 76px 52px;
  gap: 10px;
  align-items: center;
}

.qty-btn,
.qty-value {
  min-height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.qty-btn {
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.qty-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 198, 255, 0.45);
  background: rgba(108, 198, 255, 0.08);
}

.qty-value {
  font-weight: 800;
  font-size: 1rem;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.color-swatch {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.color-swatch:hover,
.size-chip:hover {
  transform: translateY(-2px);
}

.color-swatch.active,
.size-chip.active {
  border-color: rgba(108, 198, 255, 0.45);
  background: rgba(108, 198, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(108, 198, 255, 0.18);
}

.color-swatch span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
}

.color-swatch small {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.single-price-panel {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(108, 198, 255, 0.12), transparent 32%),
    var(--panel-strong);
}

.single-price-panel .config-block {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.single-price-panel h2 {
  margin: 14px 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.price-stack {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin-bottom: 6px;
}

.price-was {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 79, 147, 0.7);
}

.single-price-panel p {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.unit-price-note {
  margin-top: -2px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-seals {
  margin: 10px auto 12px;
  width: min(100%, 560px);
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.trust-seals img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.trust-seals-compact {
  width: min(100%, 340px);
  margin-top: 8px;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
}

.trust-seals-compact img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.unit-price-note strong {
  color: var(--text);
}

.selection-summary {
  margin: 14px auto 0;
  max-width: 38ch;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.selection-total {
  margin: 12px auto 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.checkout-note {
  margin: 12px auto 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.checkout-note.is-error {
  color: #ffb7c8;
}

.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.offer-stack {
  display: grid;
  gap: 12px;
  margin: 0 auto 16px;
  width: min(100%, 420px);
}

.urgency-pill,
.countdown-card {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.urgency-pill strong,
.countdown-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.urgency-pill span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.countdown-timer span {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 4px;
  border-radius: 16px;
  background: rgba(8, 8, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.countdown-timer strong {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.countdown-timer small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.single-price-panel .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-chip {
  min-width: 62px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.screen-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}
.screen-card span { display: block; margin-bottom: 8px; color: var(--muted); }
.screen-card strong { display: block; margin-bottom: 6px; }
.screen-card small { color: var(--muted); line-height: 1.6; }
.screen-center { display: grid; place-items: center; }

.radial-wrap { position: relative; width: 220px; height: 220px; display: grid; place-items: center; }
.radial-chart { width: 100%; height: 100%; transform: rotate(-90deg); }
.radial-chart circle { fill: none; stroke-width: 8; stroke: rgba(255, 255, 255, 0.08); }
.radial-chart .progress-ring {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  transition: stroke-dashoffset 1.1s ease;
}
.radial-wrap.animate .progress-ring { stroke-dashoffset: 46; }
.radial-copy { position: absolute; text-align: center; }
.radial-copy span { display: block; color: var(--muted); margin-bottom: 4px; }
.radial-copy strong { font-size: 2.4rem; font-family: "Syne", sans-serif; }

.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card h3, .feature-card h3, .price-card h3 { margin-top: 10px; margin-bottom: 10px; font-size: 1.18rem; }
.step-card small, .feature-card small, .risk-note { color: var(--muted); line-height: 1.55; font-size: 0.9rem; }

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-stats { margin-bottom: 18px; }
.testimonial-grid, .pricing-grid, .objection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card strong { display: inline-block; margin-top: 16px; }

.ugc-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(240px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.ugc-strip::-webkit-scrollbar {
  height: 10px;
}

.ugc-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.ugc-card {
  overflow: hidden;
  border-radius: 26px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}

.ugc-strip.visible .ugc-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ugc-strip.visible .ugc-card:nth-child(2) { transition-delay: 0.06s; }
.ugc-strip.visible .ugc-card:nth-child(3) { transition-delay: 0.12s; }
.ugc-strip.visible .ugc-card:nth-child(4) { transition-delay: 0.18s; }
.ugc-strip.visible .ugc-card:nth-child(5) { transition-delay: 0.24s; }
.ugc-strip.visible .ugc-card:nth-child(6) { transition-delay: 0.3s; }
.ugc-strip.visible .ugc-card:nth-child(7) { transition-delay: 0.36s; }

.ugc-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.ugc-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

.review-photo {
  position: relative;
}

.review-photo::after {
  content: "Tap to open";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8, 8, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.ugc-user-note {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 18, 0.74);
}

.ugc-user-stars {
  color: #ffd35a;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.ugc-user-note strong {
  font-size: 0.9rem;
}

.ugc-user-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.review-compose {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
}

.review-compose-copy h3 {
  margin: 14px 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.02;
}

.review-compose-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
}

.review-field {
  display: grid;
  gap: 8px;
}

.review-field span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-field input,
.review-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text);
  outline: none;
}

.review-field input::placeholder,
.review-field textarea::placeholder {
  color: rgba(199, 191, 220, 0.7);
}

.star-input {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.star-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 211, 90, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.star-btn:hover,
.star-btn.active {
  transform: translateY(-2px);
  color: #ffd35a;
  border-color: rgba(255, 211, 90, 0.34);
  background: rgba(255, 211, 90, 0.08);
}

.star-btn.is-popping {
  animation: starPop 0.24s ease;
}

@keyframes starPop {
  0% { transform: scale(0.92); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.review-upload {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 20px;
  cursor: pointer;
}

.review-upload input {
  display: none;
}

.review-upload span {
  font-weight: 800;
}

.review-upload small {
  color: var(--muted);
  line-height: 1.5;
}

.review-preview {
  overflow: hidden;
  max-width: 220px;
  border-radius: 22px;
}

.review-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.review-status {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.review-status.is-error {
  color: #ffb7c8;
}

.review-status.is-success {
  color: #a7ffd0;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.review-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 2, 10, 0.82);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.review-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 9, 22, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.review-modal-media {
  background: #0b0a13;
}

.review-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0b0a13;
}

.review-modal-copy {
  padding: 28px 24px 24px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.review-modal-stars {
  color: #ffd35a;
  letter-spacing: 0.08em;
}

.review-modal-copy h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  line-height: 1.02;
}

.review-modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 18, 0.8);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; gap: 16px; }
.featured {
  transform: translateY(-12px);
  border-color: rgba(108, 198, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 79, 147, 0.16), rgba(255, 255, 255, 0.03)), rgba(20, 16, 35, 0.94);
}

.plan-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-soft);
  background: rgba(255, 79, 147, 0.1);
}

.price { margin: 0; font-size: 2.5rem; font-weight: 800; }
.price span { font-size: 1rem; color: var(--muted); }

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.price-card li::before { content: "+"; color: var(--lime); margin-right: 8px; font-weight: 800; }

.fun-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0; overflow: hidden; border-radius: 22px; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 800; font-size: 1rem; }
.faq-item p { margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.62; font-size: 0.95rem; }

.authority-visual img {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.authority-visual .product-spotlight {
  min-height: 700px;
  padding: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  background:
    radial-gradient(circle at top, rgba(255, 180, 142, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(34, 20, 23, 0.95), rgba(12, 8, 9, 0.96));
}

.cta-panel {
  padding: 42px;
  text-align: center;
  border-radius: 36px;
  background: radial-gradient(circle at top, rgba(108, 198, 255, 0.14), transparent 34%), var(--panel-strong);
}
.cta-panel .hero-actions { justify-content: center; }
.cta-panel small { color: var(--muted); line-height: 1.7; }

.section-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.mobile-buy-bar {
  display: none;
}

.sales-pop {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 58;
  width: min(340px, calc(100vw - 36px));
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.sales-pop.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sales-pop-inner {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 18, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.sales-pop strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.sales-pop span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.site-footer {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto 120px;
  padding-bottom: 8px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 18, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.site-footer-brand {
  display: grid;
  gap: 6px;
}

.site-footer-brand strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

.site-footer-brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-links a {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (max-width: 1180px) {
  .hero, .experience-section, .authority-section, .solution-shell, .quiz-layout { grid-template-columns: 1fr; }
  .pain-grid, .desire-grid, .feature-grid, .fun-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid, .pricing-grid, .objection-grid, .testimonial-grid, .proof-stats, .proof-highlights, .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-config { grid-template-columns: 1fr; }
  .product-config-media { min-height: 580px; }
  .hero-visual { min-height: 760px; }
  .motion-float-left { left: 18px; top: auto; bottom: 24px; }
  .motion-float-right { right: 18px; top: 110px; }
}

@media (max-width: 820px) {
  .topbar {
    position: relative;
    top: 0;
    border-radius: 0 0 26px 26px;
    flex-wrap: wrap;
    padding: 12px 14px 14px;
    gap: 12px;
    background: rgba(7, 7, 17, 0.94);
    border-inline: 0;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  }
  .topbar.is-hidden { transform: none; opacity: 1; }
  .brand {
    width: 100%;
    justify-content: center;
  }
  .brand-mark {
    width: 144px;
    height: 78px;
  }
  .brand-copy { display: none; }
  .nav {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 2px 2px 8px;
    gap: 10px;
    font-size: 0.88rem;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
  }
  .topbar > .btn {
    width: 100%;
    min-height: 48px;
    border-radius: 18px;
  }
  .section { padding: 72px 0; }
  .brand-strip {
    margin-top: 14px;
  }
  .brand-strip-inner {
    padding: 16px;
  }
  .brand-strip-track {
    gap: 10px;
  }
  .brand-strip-track span {
    min-width: 160px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.88rem;
  }
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    padding: 7px 12px;
  }
  .hero {
    min-height: auto;
    gap: 20px;
  }
  .hero::before {
    inset: 0;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(12, 8, 9, 0.88) 0%, rgba(18, 11, 13, 0.64) 42%, rgba(18, 11, 13, 0.2) 100%),
      url("./images/model-taupe.png") center top / cover no-repeat;
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(1.68rem, 7.6vw, 2.28rem);
    line-height: 0.96;
    margin: 10px 0 12px;
  }
  .hero-sub {
    max-width: 34ch;
    font-size: 0.86rem;
    line-height: 1.5;
  }
  .hero-actions {
    gap: 10px;
    margin: 20px 0 18px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .pain-grid, .desire-grid, .feature-grid, .testimonial-grid, .pricing-grid, .objection-grid, .fun-grid, .steps-grid, .proof-stats, .proof-highlights, .hero-proof, .quiz-options, .color-swatches { grid-template-columns: 1fr; }
  .hero-proof div,
  .proof-stats div,
  .proof-pill,
  .pain-card,
  .desire-card,
  .step-card,
  .feature-card,
  .objection-card,
  .faq-item,
  .cta-panel,
  .config-block,
  .single-price-panel {
    border-radius: 20px;
  }
  .hero-proof {
    gap: 12px;
  }
  .hero-proof div {
    padding: 16px;
    background: rgba(10, 9, 22, 0.82);
  }
  .hero-proof strong {
    font-size: 0.96rem;
  }
  .hero-proof span {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .hero-trigger-bar {
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
    border-left-width: 2px;
  }
  .hero-trigger-bar p {
    font-size: 0.84rem;
    line-height: 1.48;
  }
  .hero-visual {
    min-height: 500px;
    margin-top: 6px;
  }
  .hero-orb {
    filter: blur(36px);
  }
  .model-stage {
    inset: 18px 12px 12px;
    border-radius: 30px;
  }
  .hero-float {
    display: none;
  }
  .phone-ui { display: none; }
  .cta-panel {
    padding: 30px 18px 100px;
    border-radius: 28px;
  }
  .product-image { padding: 0; }
  .section-heading {
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }
  .product-config {
    gap: 16px;
  }
  .product-config-media {
    min-height: 420px;
    padding: 12px;
    border-radius: 24px;
  }
  .product-config-media img {
    max-height: 480px;
    border-radius: 16px;
  }
  .config-block, .single-price-panel {
    padding: 18px;
  }
  .shop-fit-grid {
    gap: 12px;
    margin-bottom: 16px;
  }
  .single-price-panel .config-block {
    padding: 16px;
    border-radius: 18px;
  }
  .offer-stack {
    width: 100%;
  }
  .countdown-timer span {
    min-height: 66px;
  }
  .countdown-timer strong {
    font-size: 1.45rem;
  }
  .color-swatch,
  .size-chip {
    border-radius: 16px;
  }
  .size-chips {
    gap: 10px;
  }
  .size-chip {
    min-width: calc(50% - 5px);
    min-height: 48px;
  }
  .motion-video-wrap {
    min-height: 0;
    padding: 12px;
    border-radius: 24px;
  }
  .motion-video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 0;
    max-height: 74vh;
    border-radius: 18px;
    object-fit: cover;
    object-position: center;
    background: #0a0912;
  }
  .motion-overlay {
    left: 16px;
    top: 16px;
    max-width: 170px;
    padding: 12px 14px;
  }
  .motion-float {
    position: static;
    max-width: none;
    margin-top: 12px;
    border-radius: 18px;
  }
  .quiz-shell,
  .quiz-notes,
  .solution-shell {
    padding: 20px;
    border-radius: 24px;
  }
  .quiz-progress {
    flex-direction: column;
    align-items: flex-start;
  }
  .quiz-actions {
    flex-direction: column;
  }
  .quiz-actions .btn {
    width: 100%;
  }
  .experience-list div,
  .authority-list div {
    padding: 14px 16px;
  }
  .phone-frame {
    padding: 10px;
    border-radius: 28px;
  }
  .phone-screen {
    min-height: 480px;
    padding: 14px;
  }
  .screen-card {
    padding: 16px;
    border-radius: 18px;
  }
  .authority-visual img,
  .authority-visual .product-spotlight {
    min-height: 420px;
    border-radius: 24px;
  }
  .ugc-card img { height: 320px; }
  .ugc-card {
    border-radius: 22px;
  }
  .review-summary {
    padding: 18px 16px;
    border-radius: 22px;
  }
  .trust-seals-compact {
    width: min(100%, 280px);
    padding: 3px;
  }
  .review-compose {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
  }
  .review-form {
    padding: 16px;
    border-radius: 20px;
  }
  .star-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .review-photo::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    font-size: 0.76rem;
  }
  .review-modal {
    padding: 12px;
  }
  .review-modal-dialog {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .review-modal-media img {
    max-height: 58vh;
  }
  .review-modal-copy {
    padding: 18px 16px 18px;
  }
  .review-modal-copy h3 {
    font-size: 1.2rem;
  }
  .faq-item summary {
    padding: 18px 18px 16px;
  }
  .faq-item p {
    padding: 0 18px 18px;
  }
  .section-cta .btn {
    width: 100%;
  }
  .mobile-buy-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 18, 0.9);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  }
  .mobile-buy-copy {
    display: grid;
    gap: 2px;
  }
  .mobile-buy-copy strong {
    font-size: 0.96rem;
    line-height: 1.1;
  }
  .mobile-buy-copy span {
    color: var(--muted);
    font-size: 0.82rem;
  }
  .mobile-buy-bar .btn {
    min-width: 138px;
    min-height: 48px;
    padding-inline: 18px;
    flex: none;
  }
  .sales-pop {
    left: 12px;
    right: 12px;
    bottom: 88px;
    width: auto;
  }
  .site-footer {
    margin-bottom: 110px;
  }
  .site-footer-inner {
    padding: 18px;
    border-radius: 22px;
  }
  .site-footer-links {
    width: 100%;
  }
  .site-footer-links a {
    flex: 1 1 calc(50% - 10px);
    min-height: 44px;
  }
}

