:root {
  color-scheme: dark;
  --bg: #08090a;
  --surface: #111315;
  --surface-raised: #171a1d;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.26);
  --text: #f6f4ef;
  --muted: #a8aaad;
  --lime: #d9ff58;
  --lime-dark: #121600;
  --pink: #ff4ba1;
  --danger: #ff8f99;
  --radius: 22px;
  --radius-small: 14px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--bg); }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 255, 88, 0.07), transparent 32rem),
    radial-gradient(circle at 92% 26%, rgba(255, 75, 161, 0.06), transparent 28rem),
    var(--bg);
  overflow-x: hidden;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.ambient { position: fixed; width: 360px; height: 360px; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.12; z-index: -1; }
.ambient-one { top: -220px; left: -170px; background: var(--lime); }
.ambient-two { right: -220px; top: 35vh; background: var(--pink); }

.app-shell { width: min(100%, 1180px); min-height: 100vh; margin: 0 auto; padding: 0 16px; }

.topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.wordmark { justify-self: center; text-decoration: none; font-size: 13px; font-weight: 850; letter-spacing: 0.22em; }
.wordmark span { color: var(--lime); }
.back-button { min-width: 44px; min-height: 44px; padding: 0; border: 0; background: transparent; text-align: left; color: var(--muted); font-size: 13px; cursor: pointer; }
.back-button::before { content: "←"; margin-right: 7px; font-size: 17px; }
.back-button.is-hidden { visibility: hidden; pointer-events: none; }
.step-counter { justify-self: end; margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.progress-track { width: 100%; height: 2px; background: rgba(255,255,255,0.08); }
.progress-value { width: 25%; height: 100%; background: var(--lime); transition: width 220ms ease; }

.screen { min-height: calc(100vh - 104px); outline: 0; }
.screen.is-entering .step { animation: enter 240ms ease; }
@keyframes enter { from { opacity: 0; } to { opacity: 1; } }

.step { width: min(100%, 760px); margin: 0 auto; padding: 38px 0 126px; }
.question-step { width: min(100%, 720px); }
.eyebrow { margin-bottom: 14px; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 14px; font-size: clamp(34px, 8.6vw, 64px); line-height: 0.98; letter-spacing: -0.045em; }
h2 { font-size: clamp(26px, 6vw, 40px); line-height: 1.04; letter-spacing: -0.035em; }
.lead { max-width: 650px; margin-bottom: 26px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.tap-hint { margin: -4px 0 14px; color: var(--text); font-size: 13px; font-weight: 750; }

.photo-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.photo-card {
  position: relative;
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 158px;
  padding: 10px 46px 10px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, 0.88);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.photo-card:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.photo-card:active { transform: scale(0.992); }
.photo-card.is-selected { border-color: var(--lime); background: linear-gradient(110deg, rgba(217,255,88,0.11), rgba(17,19,21,0.96) 52%); box-shadow: inset 0 0 0 1px var(--lime); }
.photo-frame { display: block; width: 124px; aspect-ratio: 3 / 4; border-radius: 15px; overflow: hidden; background: #202326; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.photo-card-copy { display: grid; gap: 7px; align-content: center; }
.photo-card-copy strong { font-size: 18px; letter-spacing: -0.02em; }
.photo-card-copy small { color: var(--muted); font-size: 13px; line-height: 1.42; }
.selection-mark, .choice-number { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime-dark); font-size: 15px; font-weight: 900; }
.selection-mark { position: absolute; right: 14px; top: 14px; }
.photo-card.is-selected .selection-mark, .choice-card.is-selected .choice-number { border-color: var(--lime); background: var(--lime); }
.recommended-label { position: absolute; top: 13px; right: 50px; padding: 5px 8px; border-radius: 999px; background: rgba(217,255,88,0.12); color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }

.choice-list { display: grid; gap: 11px; }
.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(17,19,21,0.82);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.choice-card:hover { border-color: var(--line-strong); background: var(--surface-raised); }
.choice-card:active { transform: scale(0.995); }
.choice-card.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.09); box-shadow: inset 0 0 0 1px var(--lime); }
.choice-copy { display: grid; gap: 5px; padding-right: 4px; }
.choice-copy strong { font-size: 16px; }
.choice-copy small { color: var(--muted); font-size: 13px; line-height: 1.42; }
.choice-card .recommended-label { top: 12px; right: 12px; }
.choice-card:has(.recommended-label) .choice-copy { padding-right: 84px; }

.trust-note { display: grid; gap: 5px; margin-top: 16px; padding: 16px; border: 1px solid rgba(217,255,88,0.24); border-radius: var(--radius-small); background: rgba(217,255,88,0.05); }
.trust-note strong { font-size: 14px; }
.trust-note span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.selection-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius-small); overflow: hidden; background: var(--line); }
.selection-summary > div { display: grid; gap: 5px; min-height: 72px; padding: 13px; background: var(--surface); }
.selection-summary span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.selection-summary strong { font-size: 13px; line-height: 1.3; }
.selection-summary.compact { width: min(100%, 560px); margin-top: 30px; }

.sticky-action { position: fixed; z-index: 15; left: 0; right: 0; bottom: 0; padding: 12px max(16px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); border-top: 1px solid var(--line); background: rgba(8,9,10,0.88); backdrop-filter: blur(18px); }
.primary-button, .secondary-button, .apple-pay-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}
.primary-button { border: 1px solid var(--lime); background: var(--lime); color: var(--lime-dark); }
.primary-button:hover:not(:disabled) { background: #e4ff80; transform: translateY(-1px); }
.primary-button:active:not(:disabled) { transform: scale(0.992); }
.primary-button:disabled { border-color: var(--line); background: #2a2c2e; color: #777a7d; cursor: not-allowed; opacity: 0.72; }
.sticky-action .primary-button { width: min(100%, 720px); margin: 0 auto; }
.secondary-button { border: 1px solid var(--line-strong); background: transparent; color: var(--text); }
.secondary-button:hover { background: var(--surface-raised); }

.upload-step { width: min(100%, 680px); }
.requirements { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; padding: 0; list-style: none; }
.requirements li { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.requirements li::before { content: "✓"; margin-right: 6px; color: var(--lime); font-weight: 900; }
.upload-control { padding: 12px; border: 1px dashed var(--line-strong); border-radius: var(--radius); background: rgba(17,19,21,0.74); }
.upload-control input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-empty { display: grid; place-items: center; gap: 8px; min-height: 240px; padding: 30px; text-align: center; }
.upload-empty::before { content: "+"; display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime); font-size: 28px; }
.upload-empty strong { font-size: 18px; }
.upload-empty span { color: var(--muted); font-size: 12px; }
.upload-preview { position: relative; min-height: 320px; margin-bottom: 12px; border-radius: 16px; overflow: hidden; background: #1a1c1f; }
.upload-preview img { width: 100%; height: 320px; object-fit: cover; object-position: center 30%; }
.upload-preview > div { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 3px; padding: 34px 16px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.86)); }
.upload-preview strong { font-size: 15px; }
.upload-preview span { color: #d2d2d2; font-size: 11px; }
.privacy-copy { margin: 14px 2px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.privacy-copy a { text-underline-offset: 3px; }

.processing-step { display: grid; justify-items: center; width: min(100%, 660px); padding-top: 34px; text-align: center; }
.processing-visual { position: relative; width: min(72vw, 310px); aspect-ratio: 4 / 5; margin-bottom: 30px; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.processing-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.scan-line { position: absolute; left: 10%; right: 10%; top: 10%; height: 1px; background: var(--lime); box-shadow: 0 0 18px var(--lime); animation: scan 2.8s ease-in-out infinite alternate; }
@keyframes scan { to { top: 90%; } }
.processing-step h1 { max-width: 560px; font-size: clamp(32px, 8vw, 54px); }
.processing-step .lead { max-width: 530px; }
.processing-pulse { display: flex; gap: 7px; margin-top: 2px; }
.processing-pulse span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 1s ease-in-out infinite; }
.processing-pulse span:nth-child(2) { animation-delay: 140ms; }
.processing-pulse span:nth-child(3) { animation-delay: 280ms; }
@keyframes pulse { 0%,100% { opacity: 0.25; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }

.error-step { width: min(100%, 650px); padding-top: 20vh; text-align: center; }
.error-step .lead { margin-inline: auto; }
.error-actions { display: grid; gap: 10px; }

.result-step { width: min(100%, 840px); }
.result-heading { width: min(100%, 700px); }
.reveal-layout { position: relative; display: grid; margin-top: 28px; }
.generated-result { margin: 0; }
.generated-result a { display: block; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.generated-result img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.generated-result figcaption, .input-reference figcaption { margin-top: 9px; color: var(--muted); font-size: 11px; }
.input-reference { position: absolute; right: 12px; bottom: 38px; width: 84px; margin: 0; padding: 5px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(8,9,10,0.9); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.input-reference img { width: 100%; aspect-ratio: 3 / 4; border-radius: 10px; object-fit: cover; }
.input-reference figcaption { margin: 5px 2px 1px; color: var(--text); text-align: center; }
.result-proof { display: grid; gap: 5px; margin-top: 16px; padding: 16px; border-left: 2px solid var(--lime); background: rgba(217,255,88,0.05); }
.result-proof strong { font-size: 13px; }
.result-proof span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.locked-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; }
.locked-slots div { position: relative; aspect-ratio: 3 / 4; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: linear-gradient(145deg, #272a2d, #111315); }
.locked-slots div::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.15), transparent 35%), linear-gradient(135deg, transparent, rgba(217,255,88,0.08)); filter: blur(8px); }
.locked-slots span { position: absolute; inset: auto 8px 8px; padding: 6px; border-radius: 999px; background: rgba(0,0,0,0.56); color: #d8d8d8; font-size: 9px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; }
.locked-note { margin: 9px 0 0; color: var(--muted); font-size: 11px; }

.paywall-step { width: min(100%, 1040px); padding-top: 24px; }
.paywall-preview { position: relative; width: min(100%, 520px); height: 220px; margin: 0 auto 16px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.paywall-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.paywall-preview span { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; border-radius: 999px; background: rgba(0,0,0,0.64); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.paywall-copy { width: min(100%, 720px); margin: 0 auto 16px; text-align: center; }
.paywall-copy h1 { margin-bottom: 8px; font-size: clamp(31px, 8vw, 54px); }
.paywall-copy .lead { margin-bottom: 14px; }
.paywall-copy .lead { margin-inline: auto; }
.paywall-mini-benefits { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: -4px; }
.paywall-mini-benefits span { padding: 5px 7px; border-radius: 999px; background: rgba(217,255,88,0.08); color: #d8ddc4; font-size: 9px; }
.paywall-layout { display: grid; gap: 16px; }
.paywall-layout .checkout-card { order: -1; }
.paywall-benefits, .checkout-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,19,21,0.92); }
.paywall-benefits h2 { margin-bottom: 16px; font-size: 26px; }
.paywall-benefits ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.paywall-benefits li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.paywall-benefits li > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(217,255,88,0.12); color: var(--lime); font-size: 9px; font-weight: 850; }
.paywall-benefits li div { display: grid; gap: 4px; }
.paywall-benefits li strong { font-size: 14px; }
.paywall-benefits li small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.delivery-note { display: grid; gap: 4px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.delivery-note strong { font-size: 13px; }
.delivery-note span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.plan-list { display: grid; gap: 9px; margin-bottom: 8px; }
.plan-list:not(.is-expanded) .plan-card:not(.is-selected) { display: none; }
.plan-card { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 82px; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: transparent; text-align: left; cursor: pointer; }
.plan-card.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.08); box-shadow: inset 0 0 0 1px var(--lime); }
.plan-card > span:first-child { display: grid; gap: 2px; }
.plan-card small { color: var(--lime); font-size: 9px; font-style: normal; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.plan-card strong { font-size: 16px; }
.plan-card em { color: var(--muted); font-size: 11px; font-style: normal; }
.plan-price { display: grid; gap: 3px; justify-items: end; }
.plan-price s { color: var(--muted); font-size: 11px; }
.plan-price strong { font-size: 18px; }
.plan-toggle { width: 100%; min-height: 40px; margin: 0 0 8px; border: 0; background: transparent; color: var(--muted); font-size: 11px; font-weight: 750; cursor: pointer; }
.checkout-button { margin-top: 4px; }
.checkout-blocked { display: grid; gap: 5px; padding: 15px; border: 1px solid rgba(255,143,153,0.36); border-radius: 14px; background: rgba(255,143,153,0.07); }
.checkout-blocked strong { color: var(--danger); font-size: 13px; }
.checkout-blocked span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.apple-pay-button { margin-top: 10px; border: 1px solid #fff; background: #fff; color: #000; }
.billing-note { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.trust-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.trust-row span { padding: 6px 8px; border-radius: 999px; background: #202326; color: #c4c5c7; font-size: 9px; }
.debug-banner { margin-top: 12px; padding: 9px; border: 1px dashed var(--line-strong); color: var(--muted); font-family: ui-monospace, monospace; font-size: 9px; line-height: 1.5; }
.paywall-faq { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,19,21,0.74); overflow: hidden; }
.paywall-faq details { padding: 0 16px; border-bottom: 1px solid var(--line); }
.paywall-faq details:last-child { border-bottom: 0; }
.paywall-faq summary { min-height: 54px; display: flex; align-items: center; cursor: pointer; font-size: 13px; font-weight: 750; }
.paywall-faq p { margin-bottom: 16px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.site-footer { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 22px 0 94px; color: #777a7d; font-size: 10px; }
.site-footer a, .site-footer button { border: 0; background: transparent; color: inherit; font-size: inherit; cursor: pointer; text-decoration: none; }
.site-footer a:hover, .site-footer button:hover { color: var(--text); }
.site-footer.is-prominent { padding-bottom: 28px; }

.toast { position: fixed; z-index: 60; left: 50%; bottom: 88px; width: min(calc(100% - 32px), 520px); padding: 13px 16px; border: 1px solid var(--line-strong); border-radius: 13px; background: #1b1d20; color: var(--text); font-size: 12px; line-height: 1.45; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 12px); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast.error { border-color: rgba(255,143,153,0.55); }

.consent-banner { position: fixed; z-index: 55; left: 12px; right: 12px; bottom: 12px; display: grid; gap: 12px; width: min(calc(100% - 24px), 680px); margin: 0 auto; padding: 16px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(17,19,21,0.97); box-shadow: var(--shadow); }
.consent-banner[hidden] { display: none; }
.consent-copy { display: grid; gap: 5px; }
.consent-copy p { margin: 0; color: var(--lime); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; }
.consent-copy strong { font-size: 13px; }
.consent-copy span { color: var(--muted); font-size: 10px; line-height: 1.45; }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent-button { min-height: 44px; padding: 10px; border-radius: 12px; font-size: 11px; font-weight: 800; cursor: pointer; }
.consent-button.secondary { border: 1px solid var(--line-strong); background: transparent; }
.consent-button.primary { border: 1px solid var(--lime); background: var(--lime); color: var(--lime-dark); }

@media (min-width: 620px) {
  .app-shell { padding-inline: 24px; }
  .step { padding-top: 56px; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .photo-card { display: block; min-height: 0; padding: 8px 8px 58px; }
  .photo-frame { width: 100%; aspect-ratio: 3 / 4; }
  .photo-card-copy { position: absolute; left: 16px; right: 16px; bottom: 14px; gap: 3px; }
  .photo-card-copy strong { font-size: 15px; }
  .photo-card-copy small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 10px; }
  .recommended-label { top: 14px; left: 14px; right: auto; }
  .selection-mark { background: rgba(8,9,10,0.7); }
  .choice-card { min-height: 92px; padding: 18px; }
  .selection-summary { grid-template-columns: repeat(4, 1fr); }
  .upload-preview, .upload-preview img { height: 420px; }
  .generated-result { width: min(100%, 660px); margin: 0 auto; }
  .input-reference { right: calc(50% - 318px); width: 110px; }
  .result-step .selection-summary, .result-proof, .locked-slots, .locked-note { width: min(100%, 660px); margin-inline: auto; }
  .locked-slots, .result-proof { margin-top: 18px; }
  .paywall-preview { width: 400px; }
  .consent-banner { grid-template-columns: 1fr auto; align-items: end; }
  .consent-actions { min-width: 270px; }
}

@media (min-width: 900px) {
  .topbar { min-height: 72px; }
  .step { padding-top: 70px; }
  .style-step { width: min(100%, 980px); }
  .style-step h1 { max-width: 880px; }
  .photo-grid { gap: 16px; }
  .photo-card { padding-bottom: 66px; }
  .photo-card-copy strong { font-size: 17px; }
  .photo-card-copy small { font-size: 11px; }
  .reveal-layout { width: 720px; margin-inline: auto; }
  .paywall-step { display: grid; grid-template-columns: 420px 1fr; column-gap: 34px; align-items: start; }
  .paywall-preview { grid-row: 1 / span 3; width: 420px; margin: 0; position: sticky; top: 24px; }
  .paywall-preview { height: 525px; }
  .paywall-copy { margin: 0 0 18px; text-align: left; }
  .paywall-copy .lead { margin-inline: 0; }
  .paywall-mini-benefits { justify-content: flex-start; }
  .paywall-layout { grid-template-columns: 0.9fr 1.1fr; }
  .paywall-layout .checkout-card { order: initial; }
  .paywall-faq { grid-column: 2; }
  .site-footer { padding-bottom: 30px; }
}

@media (max-width: 390px) {
  .app-shell { padding-inline: 12px; }
  h1 { font-size: 34px; }
  .step { padding-top: 28px; }
  .photo-card { grid-template-columns: 108px 1fr; min-height: 142px; gap: 12px; }
  .photo-frame { width: 108px; }
  .photo-card-copy strong { font-size: 16px; }
  .choice-card:has(.recommended-label) .choice-copy { padding-right: 0; padding-top: 15px; }
  .choice-card .recommended-label { left: 58px; right: auto; top: 9px; }
  .paywall-benefits, .checkout-card { padding: 16px; }
}

@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; }
}

/* V4 conversion flow */
.step { padding-bottom: 138px; }
.sticky-action { display: grid; gap: 7px; }
.sticky-action > small { color: var(--muted); font-size: 10px; line-height: 1.35; text-align: center; }
.choice-card { grid-template-columns: 30px minmax(0, 1fr); min-height: 76px; padding: 13px 14px; }
.choice-mark { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime-dark); font-size: 13px; font-weight: 900; }
.choice-card.is-selected .choice-mark { border-color: var(--lime); background: var(--lime); }
.choice-badge { position: absolute; top: 9px; right: 10px; padding: 4px 7px; border-radius: 999px; background: rgba(217,255,88,0.12); color: var(--lime); font-size: 8px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.choice-card:has(.choice-badge) .choice-copy { padding-right: 76px; }
.interstitial-step { display: grid; align-content: center; min-height: calc(100vh - 104px); padding-top: 28px; }
.insight-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 24px; border: 1px solid rgba(217,255,88,0.4); border-radius: 50%; background: rgba(217,255,88,0.08); color: var(--lime); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; }
.proof-pill-row, .build-checks, .value-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.proof-pill-row span, .build-checks span, .value-chips span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.035); color: #d7d7d2; font-size: 11px; }
.name-field { display: grid; gap: 8px; margin-top: 32px; }
.name-field > span { color: var(--muted); font-size: 12px; font-weight: 750; }
.name-field input { width: 100%; min-height: 62px; padding: 0 18px; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); color: var(--text); font-size: 19px; }
.name-field input::placeholder { color: #66696c; }
.plan-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 22px 0 0; padding: 0; }
.summary-cell { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 78px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, rgba(25,28,30,0.96), rgba(13,15,16,0.92)); }
.summary-cell > div { display: grid; gap: 5px; min-width: 0; }
.summary-emoji { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(217,255,88,0.16); border-radius: 12px; background: rgba(217,255,88,0.08); font-size: 19px; line-height: 1; }
.summary-cell dt { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.summary-cell dd { margin: 0; font-size: 12px; font-weight: 760; line-height: 1.28; overflow-wrap: anywhere; }
.upload-empty::before { display: none; }
.upload-plus { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime) !important; font-size: 28px !important; }
.build-checks { justify-content: center; margin-top: 28px; }
.build-checks span { max-width: 180px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.locked-result-step { width: min(100%, 760px); }
.locked-result-card { position: relative; width: min(100%, 590px); aspect-ratio: 4 / 5; margin: 26px auto 0; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.locked-main-image { width: 100%; height: 100%; object-fit: cover; filter: blur(3px) saturate(0.86) brightness(0.48); transform: scale(1.02); }
.locked-result-card.is-catalog-preview .locked-main-image { filter: blur(18px) saturate(0.72) brightness(0.54); transform: scale(1.12); }
.locked-result-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,10,0.06), rgba(8,9,10,0.28) 48%, rgba(8,9,10,0.82)); pointer-events: none; }
.identity-peek { position: absolute; z-index: 3; top: 14px; right: 14px; width: 88px; aspect-ratio: 1; padding: 4px; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; background: #0a0b0c; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.46); }
.identity-peek img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 18%; }
.locked-overlay { position: absolute; z-index: 4; inset: 0; display: grid; place-content: center; justify-items: center; gap: 8px; padding: 24px; text-align: center; }
.lock-mark { width: 52px; height: 52px; margin-bottom: 4px; padding: 13px; border: 1px solid rgba(255,255,255,0.48); border-radius: 50%; background: rgba(8,9,10,0.72); object-fit: contain; }
.locked-overlay strong { font-size: 22px; }
.locked-overlay small { max-width: 210px; color: #c7c7c3; font-size: 11px; line-height: 1.45; }
.personal-proof { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; width: min(100%, 590px); margin: 14px auto 0; padding: 14px; border: 1px solid rgba(217,255,88,0.22); border-radius: 16px; background: rgba(217,255,88,0.055); }
.personal-proof > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--lime-dark); font-size: 11px; font-weight: 900; }
.personal-proof > div { display: grid; gap: 4px; min-width: 0; }
.personal-proof strong { font-size: 13px; }
.personal-proof small { overflow: hidden; color: var(--muted); font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.locked-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: min(100%, 590px); margin: 12px auto 0; }
.locked-tiles > div { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: 14px; background: #17191a; overflow: hidden; }
.locked-tile > img { width: 100%; height: 100%; object-fit: cover; filter: blur(10px) saturate(0.68) brightness(0.52); transform: scale(1.14); }
.locked-tiles > div::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(4,5,6,0.12), rgba(4,5,6,0.62)); }
.locked-tiles span { position: absolute; z-index: 3; left: 8px; right: 8px; bottom: 8px; padding: 5px; border-radius: 999px; background: rgba(0,0,0,0.72); color: #f0f0ec; font-size: 8px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; }
.locked-tile > i { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; background: rgba(5,6,7,0.7); transform: translate(-50%, -50%); }
.locked-tile > i img { width: 17px; height: 17px; }

.offer-step { display: grid; align-content: center; min-height: calc(100vh - 104px); width: min(100%, 650px); padding-top: 28px; text-align: center; }
.offer-step h1, .offer-step .lead { margin-inline: auto; }
.offer-intro { max-width: 420px; margin: 8px auto 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.offer-ticket { position: relative; display: grid; justify-items: center; gap: 8px; width: min(100%, 480px); min-height: 248px; margin: 24px auto; padding: 30px 24px; border: 1px solid var(--lime); border-radius: 26px; background: radial-gradient(circle at 50% 20%, rgba(217,255,88,0.18), transparent 58%), var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.offer-ticket::before, .offer-ticket::after { content: ""; position: absolute; top: 50%; width: 22px; height: 44px; border-radius: 50%; background: var(--bg); }
.offer-ticket::before { left: -12px; }
.offer-ticket::after { right: -12px; }
.offer-ticket-reveal { position: relative; z-index: 1; display: grid; justify-items: center; align-content: center; gap: 9px; min-height: 184px; }
.offer-ticket-kicker { color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.offer-ticket-reveal > strong { font-size: clamp(54px, 17vw, 92px); line-height: 0.9; letter-spacing: -0.07em; }
.offer-price-row { display: flex; align-items: baseline; gap: 12px; }
.offer-ticket s { color: var(--muted); font-size: 17px; }
.offer-ticket b { font-size: 28px; }
.offer-ticket small { color: var(--muted); font-size: 11px; }
.scratch-canvas { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; touch-action: none; cursor: crosshair; transition: opacity 320ms ease, transform 320ms ease; }
.scratch-prompt { position: absolute; z-index: 3; inset: 0; display: grid; place-content: center; justify-items: center; gap: 7px; padding: 28px; color: #0b0d0a; text-shadow: 0 1px rgba(255,255,255,0.26); pointer-events: none; transition: opacity 160ms ease; }
.scratch-prompt span { font-size: 9px; font-weight: 900; letter-spacing: 0.16em; }
.scratch-prompt strong { font-size: clamp(27px, 9vw, 42px); line-height: 0.95; letter-spacing: -0.05em; }
.scratch-prompt small { color: rgba(11,13,10,0.72); font-size: 10px; }
.scratch-reveal-fallback { position: absolute; z-index: 4; right: 14px; bottom: 13px; padding: 7px 10px; border: 1px solid rgba(10,12,9,0.34); border-radius: 999px; background: rgba(238,246,194,0.76); color: #151814; font-size: 8px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.scratch-ticket.is-scratching .scratch-prompt { opacity: 0; }
.scratch-ticket.is-revealed .scratch-canvas { opacity: 0; transform: scale(1.025); }
.scratch-ticket.is-revealed .scratch-prompt, .scratch-ticket.is-revealed .scratch-reveal-fallback { opacity: 0; pointer-events: none; }

.paywall-step { width: min(100%, 1040px); padding-top: 18px; }
.offer-bar { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; padding: 10px 12px; border: 1px solid rgba(217,255,88,0.3); border-radius: 12px; background: rgba(217,255,88,0.08); color: var(--lime); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.06em; }
.offer-bar span { color: #bbc1a6; font-size: 8px; font-weight: 700; letter-spacing: 0.02em; }
.paywall-hero { position: relative; width: 100%; height: min(72svh, 660px); min-height: 520px; margin: 0 auto 16px; border: 1px solid var(--line); border-radius: 26px; background: #111314; overflow: hidden; box-shadow: 0 20px 54px rgba(0,0,0,0.34); }
.paywall-hero-image { position: absolute; inset: 0; overflow: hidden; }
.paywall-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.26) 58%, rgba(0,0,0,0.94) 100%); pointer-events: none; }
.paywall-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: blur(16px) saturate(0.72) brightness(0.62); transform: scale(1.09); }
.paywall-hero-meta { position: absolute; z-index: 2; top: 14px; left: 14px; right: auto; bottom: auto; display: grid; gap: 2px; max-width: calc(100% - 28px); padding: 8px 10px; border: 1px solid rgba(255,255,255,0.22); border-radius: 11px; background: rgba(4,5,6,0.64); backdrop-filter: blur(8px); }
.paywall-hero-meta span { color: var(--lime); font-size: 7.5px; font-weight: 900; letter-spacing: 0.1em; }
.paywall-hero-meta strong { overflow: hidden; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.offer-countdown { position: absolute; z-index: 5; top: 14px; right: 14px; display: grid; justify-items: end; gap: 2px; min-width: 112px; padding: 8px 10px; border: 1px solid rgba(217,255,88,0.52); border-radius: 11px; background: rgba(5,6,7,0.78); backdrop-filter: blur(10px); text-align: right; box-shadow: 0 12px 30px rgba(0,0,0,0.24); }
.offer-countdown span { color: var(--lime); font-size: 7.5px; font-weight: 900; letter-spacing: 0.11em; }
.offer-countdown strong { color: #fff; font-variant-numeric: tabular-nums; font-size: 20px; line-height: 1; letter-spacing: -0.03em; }
.offer-countdown small { color: #c4c6c2; font-size: 7.5px; line-height: 1.25; }
.offer-step .offer-countdown { position: static; justify-items: center; width: min(100%, 330px); margin: 0 auto 18px; text-align: center; }
.checkout-urgency-slot {
  position: fixed;
  z-index: 80;
  top: calc(72px + env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  width: min(148px, calc(100vw - 20px));
  pointer-events: none;
}
.checkout-urgency-slot:empty { display: none; }
.checkout-urgency {
  position: static;
  top: auto;
  right: auto;
  width: 100%;
  min-width: 0;
  padding: 9px 11px;
  border-color: rgba(217,255,88,0.72);
  background: rgba(8,10,9,0.92);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}
.checkout-urgency.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.checkout-urgency span { font-size: 7px; }
.checkout-urgency strong { font-size: 22px; }
.checkout-urgency small { font-size: 7px; }
.paywall-lock-state { position: absolute; z-index: 4; top: 39%; left: 50%; display: grid; justify-items: center; gap: 6px; width: min(72%, 240px); padding: 16px 18px; border: 1px solid rgba(255,255,255,0.24); border-radius: 18px; background: rgba(5,6,7,0.72); backdrop-filter: blur(12px); text-align: center; transform: translate(-50%, -50%); box-shadow: 0 16px 42px rgba(0,0,0,0.3); }
.paywall-lock-state img { width: 30px; height: 30px; margin-bottom: 2px; }
.paywall-lock-state strong { color: #fff; font-size: 12px; letter-spacing: 0.1em; }
.paywall-lock-state small { color: #c7c8c4; font-size: 9px; line-height: 1.35; }
.paywall-hero-copy { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; display: grid; gap: 8px; padding: 46px 20px 22px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78) 35%, rgba(0,0,0,0.96)); }
.paywall-hero-copy > span { color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: 0.13em; }
.paywall-hero-copy > strong { max-width: 360px; font-size: clamp(38px, 10vw, 52px); line-height: 0.94; letter-spacing: -0.055em; }
.paywall-hero-copy > small { max-width: 360px; color: #d1d1cd; font-size: 13px; line-height: 1.42; }
.paywall-hero-copy > div { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-top: 5px; }
.paywall-hero-copy em { position: relative; padding-left: 13px; color: #ededE8; font-size: 10px; font-style: normal; line-height: 1.25; }
.paywall-hero-copy em::before { content: ""; position: absolute; top: 4px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.paywall-copy { width: min(100%, 720px); margin: 0 auto 14px; text-align: left; }
.paywall-copy h1 { max-width: 690px; margin-bottom: 8px; font-size: clamp(35px, 9vw, 52px); }
.paywall-copy .lead { margin-bottom: 0; }
.value-chips { margin-top: -4px; }
.anchor-card { display: grid; gap: 6px; margin: 0 0 14px; padding: 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; background: linear-gradient(110deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)); }
.anchor-card > span { color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: 0.12em; }
.anchor-card strong { font-size: 15px; }
.anchor-card small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.checkout-card { padding: 16px; }
.checkout-heading { display: grid; gap: 3px; margin-bottom: 14px; }
.checkout-heading span { color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.checkout-heading strong { font-size: 18px; }
.checkout-heading small { color: var(--muted); font-size: 9px; line-height: 1.35; }
.plan-list { margin: 0; }
.plan-list:not(.is-expanded) .plan-card:not(.is-selected) { display: none; }
.plan-card { display: grid; grid-template-columns: 26px minmax(0, 1fr) minmax(94px, auto); min-height: 102px; padding: 11px; }
.plan-radio { display: grid !important; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime-dark); font-size: 11px; font-weight: 900; }
.plan-card.is-selected .plan-radio { border-color: var(--lime); background: var(--lime); }
.plan-copy { display: grid; gap: 2px; min-width: 0; }
.plan-copy small { font-size: 8px; }
.plan-copy strong { font-size: 15px; }
.plan-copy em { overflow: hidden; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.plan-copy i { color: #9a9d9a; font-size: 9px; font-style: normal; line-height: 1.3; }
.plan-price { min-width: 94px; align-content: center; }
.plan-price strong { font-size: 22px; letter-spacing: -0.04em; }
.plan-price em { color: #e1e2de; font-size: 9px; }
.payment-actions { display: grid; gap: 10px; margin-top: 14px; }
.apple-pay-button,
.card-checkout-button {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, opacity 140ms ease;
}
.apple-pay-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--lime-dark);
}
.apple-pay-button span { font-size: 14px; font-weight: 780; }
.apple-pay-button img { display: block; width: auto; height: 22px; flex: 0 0 auto; }
.apple-pay-button:hover:not(:disabled) { background: #e4ff80; transform: translateY(-1px); }
.card-checkout-button { border: 1px solid rgba(217,255,88,0.38); background: #0d0f10; color: var(--text); font-size: 13px; font-weight: 790; }
.card-checkout-button:hover:not(:disabled) { border-color: var(--lime); background: #151817; transform: translateY(-1px); }
.apple-pay-button:active:not(:disabled),
.card-checkout-button:active:not(:disabled) { transform: scale(0.992); }
.apple-pay-button:disabled,
.card-checkout-button:disabled { cursor: not-allowed; opacity: 0.48; }
.payment-divider { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; color: #8f9290; font-size: 10px; font-weight: 850; }
.payment-divider::before,
.payment-divider::after { content: ""; height: 1px; background: var(--line); }
.plan-compare-toggle { display: block; min-height: 40px; margin: 10px auto -4px; padding: 0 10px; border: 0; background: transparent; color: var(--muted); font-size: 10px; font-weight: 760; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.preview-mode-note { margin: 9px 0 0; color: #b0b2af; font-size: 10px; line-height: 1.45; text-align: center; }
.billing-note { color: #c0c2bf; font-size: 10.5px; line-height: 1.5; }
.trust-row { justify-content: center; }
.value-stack { margin-top: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,19,21,0.78); }
.value-stack h2 { margin-bottom: 16px; font-size: 25px; }
.value-stack ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.value-stack li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.value-stack li > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(217,255,88,0.12); color: var(--lime); font-size: 8px; font-weight: 900; }
.value-stack li div { display: grid; gap: 3px; }
.value-stack li strong { font-size: 13px; }
.value-stack li small { color: var(--muted); font-size: 10px; line-height: 1.45; }

.paywall-stylist-story {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(217,255,88,0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(217,255,88,0.07), rgba(17,19,21,0.92) 34%);
}
.paywall-stylist-story > header { display: grid; gap: 8px; margin-bottom: 16px; }
.paywall-stylist-story > header > span { color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: 0.13em; }
.paywall-stylist-story h2 { margin: 0; font-size: clamp(30px, 8vw, 42px); }
.paywall-stylist-story > header p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.stylist-story-visual { border: 1px solid rgba(217,255,88,0.2); border-radius: 22px; background: #111315; overflow: hidden; }
.stylist-story-chat { width: 100%; padding: 16px; background: #090b0c; }
.stylist-story-head { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.stylist-story-head > img { width: 30px; height: 30px; border-radius: 9px; }
.stylist-story-head > span { display: grid; gap: 1px; }
.stylist-story-head strong { font-size: 13px; }
.stylist-story-head small { color: var(--muted); font-size: 9px; }
.stylist-user-message,
.stylist-ai-message { margin: 0 0 12px; padding: 11px 12px; border-radius: 12px; font-size: 10px; line-height: 1.4; }
.stylist-user-message { margin-left: 42px; background: rgba(217,255,88,0.13); color: #f1f4e6; }
.stylist-ai-message { border: 1px solid var(--line); background: rgba(255,255,255,0.045); color: #d6d7d3; }
.stylist-story-looks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.stylist-product-card { min-width: 0; border: 1px solid rgba(255,255,255,0.42); border-radius: 12px; background: #f0e9e1; color: #111315; overflow: hidden; }
.stylist-product-media { aspect-ratio: 4 / 5; background: #eee8e1; overflow: hidden; }
.stylist-product-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.stylist-product-card > span { display: grid; gap: 3px; min-height: 48px; padding: 9px; border-top: 1px solid rgba(17,19,21,0.1); }
.stylist-product-card strong { font-size: 10px; line-height: 1.15; }
.stylist-product-card small { color: #66615c; font-size: 8px; line-height: 1.25; }

.checkout-repeat { display: grid; gap: 14px; margin-top: 14px; padding: 18px; border: 1px solid rgba(217,255,88,0.34); border-radius: var(--radius); background: linear-gradient(145deg, rgba(217,255,88,0.09), rgba(17,19,21,0.94) 46%); }
.checkout-repeat-copy { display: grid; gap: 6px; }
.checkout-repeat-copy > span { color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: 0.12em; }
.checkout-repeat-copy h2 { margin: 0; font-size: 31px; }
.checkout-repeat-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.checkout-repeat-plan { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px 16px; align-items: center; min-height: 104px; padding: 15px 16px; border: 1px solid rgba(255,255,255,0.16); border-radius: 15px; background: rgba(7,8,9,0.62); }
.checkout-repeat-plan > span { grid-column: 1 / -1; color: var(--lime); font-size: 7px; font-weight: 900; letter-spacing: 0.11em; }
.checkout-repeat-plan-name { display: grid; gap: 4px; min-width: 0; }
.checkout-repeat-plan-name strong { font-size: 19px; line-height: 1; }
.checkout-repeat-plan-meta { display: grid; gap: 2px; }
.checkout-repeat-plan-name small { color: var(--muted); font-size: 8.5px; line-height: 1.25; white-space: nowrap; }
.checkout-repeat-plan-name b { color: #e4e5e1; font-weight: 760; }
.checkout-repeat-plan-name i { color: var(--lime); font-style: normal; font-weight: 760; }
.checkout-repeat-plan-daily { display: grid; justify-items: end; align-self: end; min-width: 94px; }
.checkout-repeat-plan-daily strong { font-size: 29px; line-height: 0.95; letter-spacing: -0.05em; }
.checkout-repeat-plan-daily small { margin-top: 4px; color: #e1e2de; font-size: 9px; }
.checkout-repeat .payment-actions { margin-top: 0; }
.checkout-repeat .billing-note { margin: 0; text-align: center; }

@media (max-width: 619px) {
  .step { padding-top: 28px; }
  h1 { font-size: clamp(34px, 10vw, 46px); line-height: 0.98; }
  .lead { margin-bottom: 22px; font-size: 15px; line-height: 1.48; }
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .photo-card { display: block; min-height: 0; padding: 5px 5px 54px; border-radius: 16px; }
  .photo-frame { width: 100%; aspect-ratio: 3 / 4; border-radius: 12px; }
  .photo-card-copy { position: absolute; left: 8px; right: 8px; bottom: 9px; gap: 2px; }
  .photo-card-copy strong { overflow: hidden; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
  .photo-card-copy small { display: -webkit-box; overflow: hidden; font-size: 8px; line-height: 1.25; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .selection-mark { top: 10px; right: 10px; width: 24px; height: 24px; background: rgba(8,9,10,0.72); }
  .paywall-hero { width: 100%; }
  .paywall-copy { text-align: center; }
  .offer-bar { display: grid; justify-content: center; text-align: center; }
  .anchor-card { text-align: left; }
  .checkout-urgency-slot {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .checkout-urgency {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "label clock" "note clock";
    gap: 1px 12px;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 7px 16px;
    border-width: 0 0 1px;
    border-radius: 0 0 14px 14px;
    text-align: right;
    transform: translateY(-100%);
  }
  .checkout-urgency.is-visible { transform: translateY(0); }
  .checkout-urgency span { grid-area: label; align-self: end; }
  .checkout-urgency strong { grid-area: clock; font-size: 22px; }
  .checkout-urgency small { grid-area: note; align-self: start; }
}

@media (min-width: 760px) {
  .paywall-step { display: grid; grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr); column-gap: 28px; align-items: start; }
  .offer-bar { grid-column: 1 / -1; }
  .paywall-step > .journey-progress { grid-column: 2; width: 100%; }
  .paywall-hero { grid-column: 1; grid-row: 1 / span 6; position: sticky; top: 24px; width: 100%; height: min(78vh, 720px); min-height: 620px; margin: 0; }
  .paywall-hero-image { height: 100%; }
  .paywall-copy, .anchor-card, .checkout-card, .value-stack, .paywall-stylist-story, .checkout-repeat, .paywall-faq { grid-column: 2; width: 100%; }
  .paywall-copy { margin: 0 0 16px; }
  .anchor-card { margin-bottom: 14px; }
  .value-stack, .paywall-faq { margin-top: 14px; }
  .plan-list:not(.is-expanded) .plan-card:not(.is-selected) { display: grid; }
  .plan-compare-toggle { display: none; }
}

/* V4.1 — varied quiz rhythm inspired by audited direct-response flows */
.tile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.tile-choice {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 144px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(25,28,30,0.96), rgba(13,15,16,0.92));
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.tile-choice:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.tile-choice:active { transform: scale(0.985); }
.tile-choice.is-selected { border-color: var(--lime); background: linear-gradient(145deg, rgba(217,255,88,0.16), rgba(17,20,16,0.96)); box-shadow: inset 0 0 0 1px var(--lime); }
.tile-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,0.12); border-radius: 13px; background: rgba(255,255,255,0.06); font-size: 21px; }
.tile-copy { display: grid; gap: 5px; padding-right: 8px; }
.tile-copy strong { font-size: 15px; line-height: 1.18; letter-spacing: -0.02em; }
.tile-copy small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.tile-check { position: absolute; top: 13px; right: 13px; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--lime-dark); font-size: 11px; font-weight: 900; }
.tile-choice.is-selected .tile-check { border-color: var(--lime); background: var(--lime); }
.tile-choice .choice-badge { top: auto; right: 12px; bottom: 12px; }
.tile-choice:has(.choice-badge) .tile-copy { padding-bottom: 27px; }

.phase-orbit { display: flex; align-items: center; gap: 7px; margin-bottom: 28px; }
.phase-orbit span { display: grid; place-items: center; min-width: 58px; height: 58px; padding: 8px; border: 1px solid var(--line); border-radius: 50%; color: #777b7d; font-size: 8px; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.phase-orbit span + span::before { content: ""; position: absolute; width: 8px; height: 1px; margin-left: -67px; background: var(--line-strong); }
.phase-orbit .is-done { border-color: var(--lime); background: rgba(217,255,88,0.1); color: var(--lime); }
.insight-recipe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.insight-recipe div { display: grid; gap: 18px; min-height: 112px; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,0.025); }
.insight-recipe b { color: var(--lime); font-size: 10px; letter-spacing: 0.08em; }
.insight-recipe span { align-self: end; font-size: 12px; font-weight: 750; line-height: 1.25; }

.optional-label { display: inline-flex; width: fit-content; margin-bottom: 24px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; }
.text-button { min-height: 44px; margin-top: 12px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

.expression-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.expression-grid .tile-choice { min-height: 160px; justify-items: center; padding: 14px 8px; text-align: center; }
.expression-grid .tile-icon { width: 58px; height: 58px; margin: 7px 0 20px; border-radius: 50%; font-size: 31px; }
.expression-grid .tile-copy { padding: 0; }
.expression-grid .tile-copy strong { font-size: 13px; }
.expression-grid .tile-copy small { font-size: 9px; }
.expression-grid .tile-check { top: 9px; right: 9px; }
.mood-readout { display: grid; grid-template-columns: 1fr auto; gap: 5px 12px; margin-top: 18px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; }
.mood-readout > span { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: 0.1em; }
.mood-readout > strong { font-size: 12px; }
.mood-line { grid-column: 1 / -1; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.09); overflow: hidden; }
.mood-line i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #89e6ff, var(--lime), #ff8dc1); transition: width 180ms ease; }

.realism-meter { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; margin: 4px 0 22px; color: var(--muted); font-size: 9px; font-weight: 750; }
.realism-meter div { position: relative; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.1); }
.realism-meter i { position: absolute; inset: 0 auto 0 0; border-radius: inherit; background: var(--lime); transition: width 180ms ease; }
.realism-meter b { position: absolute; top: 50%; width: 15px; height: 15px; border: 3px solid var(--bg); border-radius: 50%; background: var(--lime); transform: translate(-50%, -50%); transition: left 180ms ease; }
.scale-list { display: grid; gap: 10px; }
.scale-choice { position: relative; display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 2px 12px; align-items: center; min-height: 82px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 17px; background: rgba(17,19,21,0.82); text-align: left; cursor: pointer; }
.scale-choice.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.09); box-shadow: inset 0 0 0 1px var(--lime); }
.scale-number { grid-row: 1 / span 2; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font-size: 11px; font-weight: 900; }
.scale-choice.is-selected .scale-number { border-color: var(--lime); background: var(--lime); color: var(--lime-dark); }
.scale-choice strong { font-size: 15px; }
.scale-choice small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.scale-choice em { position: absolute; top: 10px; right: 10px; padding: 4px 6px; border-radius: 999px; background: rgba(217,255,88,0.12); color: var(--lime); font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: 0.08em; }

.match-step { align-content: center; }
.match-card { position: relative; display: grid; grid-template-columns: 112px 1fr; gap: 15px; align-items: center; margin-bottom: 26px; padding: 8px 42px 8px 8px; border: 1px solid var(--lime); border-radius: 22px; background: linear-gradient(120deg, rgba(217,255,88,0.13), rgba(17,19,21,0.96) 60%); box-shadow: var(--shadow); }
.match-card > img { width: 112px; aspect-ratio: 3 / 4; border-radius: 15px; object-fit: cover; object-position: center 34%; }
.match-card > div { display: grid; gap: 5px; }
.match-card span { color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: 0.1em; }
.match-card strong { font-size: 18px; }
.match-card small { color: var(--muted); font-size: 10px; }
.match-card > b { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--lime); color: var(--lime-dark); font-size: 11px; }
.phase-progress { display: grid; gap: 8px; margin-bottom: 34px; }
.phase-progress > div { height: 5px; border-radius: 999px; background: rgba(255,255,255,0.09); overflow: hidden; }
.phase-progress i { display: block; height: 100%; border-radius: inherit; background: var(--lime); }
.phase-progress span { color: var(--muted); font-size: 9px; font-weight: 750; }

.scene-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.scene-card { position: relative; min-height: 220px; padding: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; cursor: pointer; text-align: left; }
.scene-card > img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; filter: saturate(0.88); transition: transform 200ms ease, filter 200ms ease; }
.scene-card::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(transparent, rgba(5,6,7,0.94)); pointer-events: none; }
.scene-card > span { position: absolute; z-index: 2; left: 13px; right: 13px; bottom: 13px; display: grid; grid-template-columns: 24px 1fr; gap: 2px 7px; align-items: center; }
.scene-card > span b { grid-row: 1 / span 2; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.13); font-size: 12px; }
.scene-card strong { font-size: 13px; }
.scene-card small { color: #b8b9b7; font-size: 9px; }
.scene-card > i { position: absolute; z-index: 3; top: 10px; right: 10px; display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,0.42); border-radius: 50%; background: rgba(5,6,7,0.55); color: var(--lime-dark); font-size: 11px; font-style: normal; font-weight: 900; }
.scene-card.is-selected { border-color: var(--lime); box-shadow: inset 0 0 0 1px var(--lime); }
.scene-card.is-selected > img { transform: scale(1.025); filter: saturate(1); }
.scene-card.is-selected > i { border-color: var(--lime); background: var(--lime); }

.frame-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.frame-choice { position: relative; display: grid; gap: 5px; padding: 5px 5px 12px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); text-align: center; cursor: pointer; overflow: hidden; }
.frame-choice.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.08); box-shadow: inset 0 0 0 1px var(--lime); }
.frame-preview { display: block; height: 210px; border-radius: 12px; overflow: hidden; background: #202326; }
.frame-preview img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--frame-scale, 1)); transform-origin: var(--frame-origin, 50% 22%); }
.frame-choice strong { margin-top: 5px; font-size: 11px; }
.frame-choice small { color: var(--muted); font-size: 8px; line-height: 1.25; }
.frame-choice > i { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; background: rgba(5,6,7,0.6); color: var(--lime-dark); font-size: 10px; font-style: normal; font-weight: 900; }
.frame-choice.is-selected > i { border-color: var(--lime); background: var(--lime); }

.comfort-diagram { margin-top: 26px; padding: 15px 14px 14px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(18,20,21,0.94), rgba(8,10,11,0.96)); }
.comfort-axis-label { color: #a8aaa8; font-size: 8px; font-weight: 900; letter-spacing: 0.16em; }
.comfort-axis-label.is-end { padding-left: 54px; color: var(--lime); }
.comfort-route { position: relative; display: grid; gap: 5px; margin: 7px 0; padding: 0; list-style: none; }
.comfort-route::before { content: ""; position: absolute; z-index: 0; top: 32px; bottom: 32px; left: 22px; width: 1px; background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(217,255,88,0.5)); }
.comfort-stop { position: relative; z-index: 1; display: grid; grid-template-columns: 44px minmax(0, 1fr) 24px; gap: 11px; align-items: center; width: 100%; min-height: 67px; padding: 8px 11px 8px 0; border: 1px solid transparent; border-radius: 16px; background: transparent; color: var(--text); text-align: left; cursor: pointer; transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.comfort-stop:hover { background: rgba(255,255,255,0.035); }
.comfort-stop:active { transform: scale(0.99); }
.comfort-stop.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.085); }
.comfort-node { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--bg); color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: 0.06em; }
.comfort-stop.is-selected .comfort-node { border-color: var(--lime); background: var(--lime); color: var(--lime-dark); box-shadow: 0 0 18px rgba(217,255,88,0.2); }
.comfort-copy { display: grid; gap: 3px; min-width: 0; }
.comfort-copy strong { font-size: 13px; line-height: 1.2; }
.comfort-copy small { color: var(--muted); font-size: 10px; line-height: 1.35; }
.comfort-check { color: var(--lime); font-size: 15px; font-weight: 900; text-align: center; }
.comfort-confirm { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 66px; margin-top: 13px; padding: 11px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,0.025); }
.comfort-confirm > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font-weight: 900; }
.comfort-confirm > div { display: grid; gap: 4px; }
.comfort-confirm small { color: var(--muted); font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.comfort-confirm strong { color: #c8c9c6; font-size: 10px; line-height: 1.35; }
.comfort-confirm.has-choice { border-color: rgba(217,255,88,0.28); background: rgba(217,255,88,0.045); }
.comfort-confirm.has-choice > span { border-color: var(--lime); background: var(--lime); color: var(--lime-dark); }
.comfort-confirm.has-choice strong { color: var(--text); }


.phase-complete { display: grid; justify-items: center; gap: 10px; margin-bottom: 28px; }
.phase-complete > span { display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid var(--lime); border-radius: 50%; background: rgba(217,255,88,0.1); color: var(--lime); font-size: 17px; font-weight: 900; }
.phase-complete > div { width: min(100%, 320px); height: 4px; border-radius: 999px; background: rgba(255,255,255,0.09); overflow: hidden; }
.phase-complete i { display: block; width: 88%; height: 100%; border-radius: inherit; background: var(--lime); animation: planFill 760ms cubic-bezier(.2,.75,.25,1) both; }
.phase-complete small { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: 0.1em; }

.budget-track { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; margin: 4px 2px 20px; color: var(--lime); font-size: 10px; font-weight: 900; }
.budget-track i { height: 3px; border-radius: 999px; background: linear-gradient(90deg, rgba(217,255,88,0.25), var(--lime)); }
.budget-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.budget-choice { display: grid; grid-template-columns: 31px 1fr; gap: 3px 10px; align-items: center; min-height: 92px; padding: 12px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); text-align: left; cursor: pointer; }
.budget-choice > span { grid-row: 1 / span 2; display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font-size: 9px; font-weight: 900; }
.budget-choice strong { font-size: 13px; }
.budget-choice small { color: var(--muted); font-size: 9px; line-height: 1.3; }
.budget-choice.is-selected { border-color: var(--lime); background: rgba(217,255,88,0.09); }
.budget-choice.is-selected > span { border-color: var(--lime); background: var(--lime); color: var(--lime-dark); }

@media (max-width: 520px) {
  .tile-choice { min-height: 132px; padding: 13px; }
  .tile-icon { width: 36px; height: 36px; margin-bottom: 18px; font-size: 19px; }
  .tile-copy strong { font-size: 13px; }
  .tile-copy small { font-size: 9px; }
  .expression-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expression-grid .tile-choice { min-height: 132px; }
  .expression-grid .tile-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .frame-preview { height: 170px; }
  .comfort-diagram { margin-top: 22px; }
  .match-card { grid-template-columns: 96px 1fr; }
  .match-card > img { width: 96px; }
}

@media (max-width: 360px) {
  .tile-grid, .budget-grid { gap: 7px; }
  .tile-choice { min-height: 124px; }
  .scene-card, .scene-card > img { min-height: 190px; }
  .frame-preview { height: 150px; }
  .comfort-stop { min-height: 62px; }
  .comfort-copy strong { font-size: 12px; }
  .comfort-confirm { min-height: 60px; }
  .summary-cell { grid-template-columns: 32px minmax(0, 1fr); gap: 8px; padding-inline: 9px; }
  .summary-emoji { width: 32px; height: 32px; font-size: 17px; }
}

@media (max-width: 430px) and (max-height: 650px) {
  body[data-step="camera"] .live-plan-status { display: none; }
  body[data-step="camera"] .camera-step { padding-top: 18px; }
  body[data-step="camera"] .camera-step .lead { margin-bottom: 14px; }
  body[data-step="camera"] .comfort-diagram { margin-top: 12px; }
}

/* V4.2 — editorial opening, tactile filmstrip and complete-look prewall */
body[data-step="style"] {
  background: #050607;
}
body[data-step="style"] .ambient,
body[data-step="style"] .progress-track,
body[data-step="style"] .site-footer {
  display: none;
}
body[data-step="style"] .app-shell {
  width: min(100%, 820px);
  padding: 0;
}
body[data-step="style"] .topbar {
  grid-template-columns: 1fr auto;
  min-height: 62px;
  margin-bottom: -62px;
  padding: 0 20px;
  border: 0;
  background: transparent;
}
body[data-step="style"] .back-button { display: none; }
body[data-step="style"] .wordmark { grid-column: 1; justify-self: start; }
body[data-step="style"] .step-counter { grid-column: 2; color: rgba(255,255,255,0.62); }
body[data-step="style"] .screen { min-height: 100svh; }
body[data-step="style"] .screen.is-entering .step { animation: none; }

.editorial-entry-step {
  width: 100%;
  margin: 0;
  padding: 0 0 max(10px, env(safe-area-inset-bottom));
}
.editorial-hero {
  position: relative;
  height: clamp(372px, 47svh, 438px);
  overflow: hidden;
  background: #050505;
}
.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,3,3,0.98) 0%, rgba(3,3,3,0.84) 27%, rgba(3,3,3,0.13) 70%), linear-gradient(180deg, rgba(0,0,0,0.02) 62%, rgba(0,0,0,0.8));
  pointer-events: none;
}
.editorial-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.editorial-hero-copy {
  position: absolute;
  z-index: 2;
  top: 92px;
  left: 22px;
  width: min(59%, 300px);
}
.editorial-hero-copy > p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.editorial-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 10.8vw, 58px);
  font-weight: 900;
  line-height: 0.89;
  letter-spacing: -0.07em;
}
.editorial-hero-copy h1 span { color: var(--lime); }
.editorial-hero-caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 52px;
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.66);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.editorial-hero-caption span + span {
  padding-left: 12px;
  border-left: 1px solid rgba(217,255,88,0.72);
}

.filmstrip-shell {
  position: relative;
  z-index: 5;
  margin-top: -45px;
  padding-top: 8px;
  background: #050607;
}
.filmstrip-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px 7px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.filmstrip-heading small { color: rgba(255,255,255,0.48); font-size: inherit; }
.filmstrip-controls { display: inline-flex; align-items: center; gap: 8px; }
.filmstrip-toggle {
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(217,255,88,0.38);
  border-radius: 999px;
  background: rgba(217,255,88,0.06);
  color: var(--lime);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.filmstrip-toggle:disabled { opacity: 0.62; cursor: default; }
.filmstrip {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  padding: 0 calc((100% - 176px) / 2) 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}
.filmstrip::-webkit-scrollbar { display: none; }
.film-frame {
  position: relative;
  flex: 0 0 176px;
  height: 132px;
  padding: 22px 5px 5px;
  border: 1px solid #25282a;
  border-radius: 4px;
  background: #090a0b;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.film-frame img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  filter: saturate(0.9);
}
.film-frame-meta {
  position: absolute;
  top: 5px;
  left: 7px;
  right: 7px;
  display: flex;
  justify-content: space-between;
  color: var(--lime);
  font-size: 6px;
  letter-spacing: 0.13em;
}
.film-frame-meta small { color: rgba(255,255,255,0.46); font-size: inherit; }
.film-frame.is-active {
  border-color: rgba(217,255,88,0.88);
  transform: translateY(-2px) scale(1.018);
}

.mood-sheet {
  position: relative;
  z-index: 6;
  min-height: 333px;
  margin: 0 10px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background: rgba(16,18,19,0.98);
  box-shadow: 0 -16px 48px rgba(0,0,0,0.34);
}
.mood-sheet-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.5);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.mood-sheet-progress i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #373a3c;
}
.mood-sheet-progress i:first-child { background: var(--lime); box-shadow: 0 0 14px rgba(217,255,88,0.35); }
.mood-sheet-progress span { margin-left: 4px; }
.mood-sheet h2 {
  margin: 0 0 15px;
  text-align: center;
  font-size: clamp(25px, 7vw, 34px);
  letter-spacing: -0.045em;
}
.mood-selector {
  display: flex;
  align-items: stretch;
  gap: 7px;
  height: 124px;
  margin-bottom: 14px;
}
.mood-choice {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 12px 6px;
  border: 1px solid transparent;
  border-bottom-color: rgba(255,255,255,0.22);
  border-radius: 18px;
  background: transparent;
  color: #d6d4cf;
  overflow: hidden;
  cursor: pointer;
  transition: flex 180ms ease, border-color 180ms ease, background 180ms ease;
}
.mood-choice img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.48) saturate(0.82);
  transition: opacity 180ms ease;
}
.mood-choice span {
  position: relative;
  z-index: 2;
  display: block;
  top: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
  transform: translateY(-50%);
}
.mood-choice small { display: none; }
.mood-choice.is-active {
  flex: 1.9;
  border-color: var(--lime);
  background: #161817;
  box-shadow: inset 0 0 0 1px rgba(217,255,88,0.45);
}
.mood-choice.is-active img { opacity: 1; }
.mood-choice.is-active span {
  position: absolute;
  top: auto;
  left: 11px;
  right: 11px;
  bottom: 11px;
  color: var(--lime);
  font-size: 15px;
  text-align: left;
  transform: none;
}
.entry-cta { min-height: 57px; margin-top: 0; font-size: 16px; }
.entry-trust { margin: 10px 0 0; color: rgba(255,255,255,0.5); font-size: 9px; text-align: center; }

.live-plan-status {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 11px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: -7px 0 22px;
  padding: 6px 13px 6px 6px;
  border: 1px solid rgba(217,255,88,0.34);
  border-radius: 16px;
  background: rgba(217,255,88,0.065);
}
.live-plan-status > img { width: 54px; height: 54px; border-radius: 11px; object-fit: cover; }
.live-plan-status > span { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; align-items: center; min-width: 0; }
.live-plan-status small { grid-column: 1 / -1; color: var(--lime); font-size: 7px; font-weight: 850; letter-spacing: 0.11em; }
.live-plan-status strong { overflow: hidden; font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }
.live-plan-status em { color: var(--muted); font-size: 8px; font-style: normal; white-space: nowrap; }

.concept-compare-step { align-content: center; }
.before-after-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 5px;
  margin-bottom: 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0d0f10;
  overflow: hidden;
}
.before-after-board figure { position: relative; min-width: 0; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 18px; }
.before-after-board figure:first-child { opacity: 0.72; }
.before-after-board figure.is-after { box-shadow: inset 0 0 0 1px var(--lime); }
.before-after-board img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.before-after-board figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.68);
  color: #fff;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}
.before-after-board figcaption span { color: var(--lime); }

.editorial-contact-sheet {
  display: grid;
  grid-template-columns: 0.82fr 1.25fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  height: 320px;
  margin-bottom: 22px;
  padding: 7px;
  border: 1px solid rgba(238,228,207,0.34);
  border-radius: 22px;
  background: #0a0b0b;
}
.editorial-contact-sheet figure { position: relative; min-width: 0; margin: 0; border: 5px solid #e9dfca; border-radius: 3px; background: #e9dfca; overflow: hidden; }
.editorial-contact-sheet figure.is-selected { grid-column: 2; grid-row: 1 / 3; border-color: var(--lime); }
.editorial-contact-sheet img { width: 100%; height: calc(100% - 20px); object-fit: cover; }
.editorial-contact-sheet figcaption { display: flex; justify-content: space-between; align-items: center; height: 20px; color: #171717; font-size: 6px; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.editorial-contact-sheet figcaption span { color: #646158; }

.summary-film-board {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 245px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0d0e;
  overflow: hidden;
}
.summary-film-board figure { flex: 0.82; min-width: 0; height: 82%; margin: 0; padding: 4px; background: #e9dfca; color: #171717; }
.summary-film-board figure:nth-child(2) { order: 1; }
.summary-film-board figure.is-main { order: 2; flex: 1.26; height: 100%; box-shadow: 0 15px 32px rgba(0,0,0,0.4); }
.summary-film-board figure:nth-child(3) { order: 3; }
.summary-film-board img { width: 100%; height: calc(100% - 19px); object-fit: cover; }
.summary-film-board figcaption { height: 19px; padding-top: 5px; font-size: 6px; font-weight: 900; letter-spacing: 0.08em; text-align: center; }

.stylist-prewall-step { width: min(100%, 760px); }
.stylist-prewall-step h1 { max-width: 620px; }
.journey-progress { margin: 0 0 22px; padding: 13px 14px 12px; border: 1px solid rgba(217,255,88,0.22); border-radius: 18px; background: linear-gradient(145deg, rgba(217,255,88,0.06), rgba(255,255,255,0.02)); }
.journey-progress-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 11px; color: var(--muted); font-size: 7px; font-weight: 900; letter-spacing: 0.12em; }
.journey-progress-head strong { color: var(--lime); font-size: inherit; }
.journey-progress ol { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.journey-progress ol::before, .journey-progress ol::after { content: ""; position: absolute; z-index: 0; top: 14px; left: 12.5%; right: 12.5%; height: 2px; border-radius: 999px; }
.journey-progress ol::before { background: rgba(255,255,255,0.12); }
.journey-progress ol::after { right: auto; width: var(--journey-fill); background: var(--lime); transform-origin: left; animation: journeyFill 720ms cubic-bezier(.2,.75,.25,1) both; }
.journey-progress li { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; min-width: 0; color: #717476; font-size: 8px; font-weight: 760; }
.journey-progress li b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; background: #111314; color: #777a7c; font-size: 8px; }
.journey-progress li span { overflow: hidden; width: 100%; text-align: center; white-space: nowrap; text-overflow: ellipsis; }
.journey-progress li.is-complete, .journey-progress li.is-current { color: #f1f1ed; }
.journey-progress li.is-complete b { border-color: var(--lime); background: var(--lime); color: var(--lime-dark); }
.journey-progress li.is-current b { border-color: var(--lime); color: var(--lime); box-shadow: 0 0 0 4px rgba(217,255,88,0.08); }
@keyframes journeyFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.stylist-stage {
  position: relative;
  height: 500px;
  margin: 18px 0 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #d8a89d;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stylist-stage-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.stylist-chat-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: min(64%, 300px);
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  background: rgba(251,249,246,0.96);
  color: #171615;
  box-shadow: 0 18px 40px rgba(42,19,14,0.2);
}
.stylist-chat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.stylist-chat-head > img { width: 28px; height: 28px; border-radius: 8px; }
.stylist-chat-head > span { display: grid; gap: 1px; }
.stylist-chat-head strong { font-size: 11px; }
.stylist-chat-head small { color: #77716c; font-size: 7px; }
.stylist-request { margin: 0 0 9px 36px; padding: 9px; border-radius: 10px; background: #f1d8cf; font-size: 8px; line-height: 1.35; }
.stylist-response { margin: 0 0 10px; font-size: 8px; line-height: 1.42; }
.stylist-look-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.stylist-look-row figure { margin: 0; padding: 3px; border: 1px solid #ddd7d0; border-radius: 8px; background: #fff; overflow: hidden; }
.stylist-look-row img { width: 100%; aspect-ratio: 3 / 4; border-radius: 5px; object-fit: cover; }
.stylist-look-row figcaption { padding-top: 3px; color: #6a655f; font-size: 5px; font-weight: 850; text-align: center; }
.stylist-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.stylist-value-grid span { display: grid; align-content: center; gap: 3px; min-height: 46px; padding: 7px 4px; border: 1px solid var(--line); border-radius: 14px; text-align: center; }
.stylist-value-grid small { color: var(--lime); font-size: 7px; font-weight: 850; letter-spacing: 0.08em; }
.stylist-value-grid strong { color: #f3f3ef; font-size: 8.5px; font-weight: 760; line-height: 1.12; }
.stylist-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; text-align: center; }
.stylist-prewall-step { padding-bottom: 46px; }
.stylist-prewall-step .sticky-action { position: static; margin-top: 18px; padding: 0; border: 0; background: transparent; backdrop-filter: none; }

@media (max-width: 619px) {
  .editorial-entry-step { padding-bottom: 8px; }
  .stylist-stage { height: 340px; }
  .stylist-stage-photo { object-position: 58% 18%; }
  .stylist-chat-card { width: 68%; padding: 10px; }
  .stylist-prewall-step h1 { font-size: clamp(38px, 10.5vw, 46px); }
  .stylist-request { margin-bottom: 6px; padding: 7px; }
  .stylist-response { margin-bottom: 7px; }
  .stylist-note { display: none; }
}

@media (min-width: 620px) {
  .editorial-hero { height: 470px; }
  .editorial-hero-copy { top: 78px; }
  .editorial-hero-copy h1 { font-size: 54px; }
  .editorial-hero-caption { bottom: 50px; }
}

@media (max-width: 430px) and (max-height: 860px) {
  .editorial-hero { height: 348px; }
  .editorial-hero-copy { top: 77px; }
  .editorial-hero-copy > p { margin-bottom: 13px; }
  .editorial-hero-copy h1 { font-size: clamp(35px, 10.4vw, 45px); }
  .editorial-hero-caption { display: none; }
  .filmstrip-shell { margin-top: -40px; }
  .film-frame { flex-basis: 160px; height: 117px; }
  .filmstrip { padding-inline: calc((100% - 160px) / 2); }
  .mood-sheet { min-height: 305px; padding-top: 14px; }
  .mood-sheet-progress { margin-bottom: 11px; }
  .mood-sheet h2 { margin-bottom: 11px; font-size: 25px; }
  .mood-selector { height: 108px; margin-bottom: 11px; }
  .entry-cta { min-height: 53px; }
}

@media (max-height: 700px) and (max-width: 430px) {
  .editorial-hero { height: 258px; }
  .editorial-hero-copy { top: 66px; left: 16px; }
  .editorial-hero-copy > p, .editorial-hero-caption { display: none; }
  .editorial-hero-copy h1 { font-size: 32px; }
  .filmstrip-shell { margin-top: -28px; }
  .filmstrip-heading { padding-bottom: 4px; }
  .film-frame { flex-basis: 142px; height: 98px; padding-top: 19px; }
  .filmstrip { padding-inline: calc((100% - 142px) / 2); padding-bottom: 8px; }
  .mood-sheet { min-height: 255px; padding: 11px 12px; }
  .mood-sheet-progress { margin-bottom: 7px; }
  .mood-sheet h2 { margin-bottom: 8px; font-size: 22px; }
  .mood-selector { height: 84px; margin-bottom: 8px; }
  .mood-choice { padding-inline: 0; }
  .mood-choice span { font-size: 8px; }
  .mood-choice.is-active span { bottom: 7px; font-size: 12px; }
  .entry-cta { min-height: 46px; font-size: 14px; }
  .entry-trust { margin-top: 6px; }
  .stylist-prewall-step h1 { font-size: 36px; }
  .stylist-stage { height: 300px; margin-top: 12px; }
  .stylist-chat-card { top: 12px; bottom: auto; width: 76%; padding: 10px; }
  .stylist-chat-head { margin-bottom: 7px; }
  .stylist-request { margin-bottom: 6px; padding: 7px; }
  .stylist-response { margin-bottom: 0; }
  .stylist-look-row { display: none; }
}

@media (max-height: 600px) and (max-width: 360px) {
  .editorial-hero { height: 244px; }
  .editorial-hero-copy { top: 52px; }
  .editorial-hero-copy h1 { font-size: 28px; }
  .filmstrip-shell { margin-top: -16px; }
  .film-frame { height: 88px; }
  .filmstrip { padding-bottom: 4px; }
  .mood-sheet { min-height: 238px; padding: 9px 10px; }
  .mood-sheet-progress { margin-bottom: 5px; }
  .mood-sheet h2 { margin-bottom: 6px; font-size: 20px; }
  .mood-selector { height: 74px; margin-bottom: 6px; }
  .mood-choice.is-active span { font-size: 11px; }
  .entry-trust { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .filmstrip { scroll-behavior: auto; }
  .film-frame, .mood-choice { transition: none; }
  .journey-progress ol::after { animation: none; }
}

/* V4.3 — fashion discovery, try-on and saved-look conversion loop */
.fashion-look-step {
  width: min(100%, 860px);
  padding-bottom: 54px;
}
.fashion-look-step .lead {
  max-width: 680px;
  margin-bottom: 18px;
}
.look-deck {
  --look-card-width: min(78vw, 330px);
  display: flex;
  gap: 10px;
  width: 100%;
  margin: 0 0 13px;
  padding: 4px max(0px, calc((100% - var(--look-card-width)) / 2)) 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-padding-inline: max(0px, calc((100% - var(--look-card-width)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.look-deck::-webkit-scrollbar { display: none; }
.look-deck:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 26px;
}
.look-card {
  position: relative;
  flex: 0 0 var(--look-card-width);
  min-width: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  background: #111315;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  text-align: left;
  cursor: pointer;
  opacity: 0.58;
  transform: scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.look-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.16), transparent 39%, rgba(0,0,0,0.93) 100%);
  pointer-events: none;
}
.look-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: filter 180ms ease, transform 220ms ease;
}
.look-card:hover { border-color: var(--line-strong); }
.look-card.is-active {
  border-color: var(--lime);
  box-shadow: 0 20px 52px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(217,255,88,0.42);
  opacity: 1;
  transform: scale(1);
}
.look-card.is-active > img { filter: saturate(1) contrast(1.04); }
.look-card-top {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.look-card-top small,
.look-card-top b {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(5,6,7,0.7);
  backdrop-filter: blur(10px);
}
.look-card-top small {
  max-width: calc(100% - 44px);
  padding: 7px 9px;
  border-radius: 999px;
  color: #f6f4ef;
  font-size: 8px;
  font-weight: 880;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.look-card-top b {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.look-card-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 5px;
  padding: 56px 17px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82) 46%, rgba(0,0,0,0.96));
}
.look-card-copy small {
  color: var(--lime);
  font-size: 8px;
  font-weight: 880;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}
.look-card-copy strong {
  font-size: clamp(25px, 7.5vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.look-card-copy em {
  display: -webkit-box;
  overflow: hidden;
  color: #d6d6d1;
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.look-deck-status {
  display: grid;
  gap: 4px;
  min-height: 86px;
  margin-bottom: 10px;
  padding: 14px 15px;
  border: 1px solid rgba(217,255,88,0.2);
  border-left: 2px solid var(--lime);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(217,255,88,0.075), rgba(255,255,255,0.025));
}
.look-deck-status > span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 880;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}
.look-deck-status > strong {
  overflow: hidden;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.look-deck-status > small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.look-swipe-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 7px;
}
.look-swipe-actions .primary-button,
.look-swipe-actions .secondary-button {
  min-width: 0;
  min-height: 48px;
  padding: 9px 7px;
  border-radius: 13px;
  font-size: 10.5px;
  line-height: 1.2;
  text-align: center;
}
.fashion-discovery-note {
  max-width: 640px;
  margin: 12px auto 0;
  color: #8f9294;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.tryon-step {
  align-content: start;
  width: min(100%, 680px);
  min-height: 0;
  padding-top: 28px;
  padding-bottom: 52px;
}
.tryon-look-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 138px;
  margin-bottom: 24px;
  border: 1px solid rgba(217,255,88,0.24);
  border-radius: 22px;
  background: linear-gradient(115deg, rgba(217,255,88,0.08), rgba(17,19,21,0.96) 48%);
  box-shadow: 0 18px 44px rgba(0,0,0,0.3);
  overflow: hidden;
}
.tryon-look-card > img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}
.tryon-look-card > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 15px 16px;
}
.tryon-look-card span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.tryon-look-card strong {
  overflow: hidden;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tryon-look-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tryon-step h1 { max-width: 610px; }
.tryon-step .lead {
  max-width: 620px;
  margin-bottom: 20px;
}
.fashion-mechanics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 2px 0 14px;
}
.fashion-mechanics > div {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  min-height: 128px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,255,255,0.05), rgba(17,19,21,0.86));
}
.fashion-mechanics span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(217,255,88,0.28);
  border-radius: 50%;
  background: rgba(217,255,88,0.08);
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
}
.fashion-mechanics strong {
  font-size: 11px;
  line-height: 1.18;
}
.fashion-mechanics small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.tryon-disclaimer {
  margin: 0 0 14px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,0.025);
  color: #aeb0b2;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}
.tryon-actions {
  display: grid;
  gap: 8px;
}
.tryon-actions .primary-button,
.tryon-actions .secondary-button { min-height: 54px; }

.fashion-prewall-step {
  width: min(100%, 760px);
  padding-bottom: 46px;
}
.fashion-prewall-step h1 { max-width: 650px; }
.fashion-prewall-step .lead {
  max-width: 650px;
  margin-bottom: 20px;
}
.fashion-prewall-stage {
  position: relative;
  height: min(118vw, 560px);
  min-height: 360px;
  margin: 18px 0 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background: #111315;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.fashion-prewall-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), transparent 44%, rgba(0,0,0,0.86) 100%);
  pointer-events: none;
}
.fashion-prewall-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}
.fashion-prewall-top {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.fashion-prewall-top span,
.fashion-prewall-top strong {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(5,6,7,0.72);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.fashion-prewall-top span {
  overflow: hidden;
  max-width: calc(100% - 112px);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fashion-prewall-top strong {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-dark);
  white-space: nowrap;
}
.fashion-prewall-panel {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  background: rgba(7,8,9,0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.34);
}
.fashion-prewall-panel > span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}
.fashion-prewall-panel > strong {
  font-size: clamp(25px, 7vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.fashion-prewall-panel > p {
  margin: 0;
  color: #d2d3ce;
  font-size: 10px;
  line-height: 1.42;
}
.fashion-prewall-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
}
.fashion-prewall-panel small {
  padding: 6px 8px;
  border: 1px solid rgba(217,255,88,0.24);
  border-radius: 999px;
  background: rgba(217,255,88,0.07);
  color: #eef3da;
  font-size: 7.5px;
  font-weight: 820;
  letter-spacing: 0.06em;
}
.digital-stylist-note {
  display: grid;
  gap: 7px;
  margin: -2px 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(217,255,88,0.24);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(217,255,88,0.085), rgba(17,19,21,0.96) 62%);
}
.digital-stylist-note span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.digital-stylist-note p {
  margin: 0;
  color: #d5d6d1;
  font-size: 10.5px;
  line-height: 1.48;
}
.fashion-loop-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 14px;
}
.fashion-loop-proof > div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
  min-height: 88px;
  padding: 10px 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(217,255,88,0.055), rgba(255,255,255,0.025));
  text-align: center;
}
.fashion-loop-proof span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.fashion-loop-proof strong {
  overflow: hidden;
  font-size: 10.5px;
  line-height: 1.15;
  text-overflow: ellipsis;
}
.fashion-loop-proof small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.fashion-prewall-step > .journey-progress { margin-bottom: 14px; }
.fashion-prewall-step .stylist-value-grid strong { font-size: 9px; }
.fashion-prewall-step .sticky-action {
  position: static;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.offer-step:has(.offer-look-proof) { align-content: start; }
.offer-step:has(.offer-look-proof) .offer-ticket { margin-bottom: 14px; }
.offer-look-proof {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  width: min(100%, 480px);
  min-height: 118px;
  margin: 0 auto 20px;
  border: 1px solid rgba(217,255,88,0.28);
  border-radius: 18px;
  background: linear-gradient(115deg, rgba(217,255,88,0.08), rgba(17,19,21,0.96) 56%);
  text-align: left;
  overflow: hidden;
}
.offer-look-proof > img {
  width: 96px;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
}
.offer-look-proof > span {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 13px 14px 13px 0;
}
.offer-look-proof small {
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.offer-look-proof strong {
  overflow: hidden;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.offer-look-proof em {
  color: var(--muted);
  font-size: 9.5px;
  font-style: normal;
  line-height: 1.4;
}

@media (max-width: 390px) {
  .apple-pay-button,
  .card-checkout-button { min-height: 56px; }
  .apple-pay-button span { font-size: 12px; }
  .apple-pay-button img { height: 20px; }
  .card-checkout-button { padding-inline: 9px; font-size: 12px; }
  .paywall-stylist-story,
  .checkout-repeat { padding: 14px; }
  .stylist-story-chat { padding: 13px; }
  .stylist-ai-message { font-size: 9px; }
  .stylist-product-card > span { min-height: 45px; padding: 8px; }
  .stylist-product-card strong { font-size: 9px; }
  .stylist-product-card small { font-size: 7px; }
  .checkout-repeat-copy h2 { font-size: 28px; }

  .look-deck { --look-card-width: min(82vw, 260px); }
  .look-card { border-radius: 22px; }
  .look-card-copy { padding: 50px 14px 15px; }
  .look-card-copy strong { font-size: 25px; }
  .look-swipe-actions { gap: 5px; }
  .look-swipe-actions .primary-button,
  .look-swipe-actions .secondary-button { padding-inline: 5px; font-size: 10px; }
  .look-deck-status { min-height: 82px; padding: 12px 13px; }

  .tryon-look-card { grid-template-columns: 92px minmax(0, 1fr); min-height: 120px; }
  .tryon-look-card > img { min-height: 120px; }
  .tryon-look-card > div { padding: 12px; }
  .tryon-look-card strong { font-size: 19px; }
  .fashion-mechanics { gap: 5px; }
  .fashion-mechanics > div { min-height: 118px; padding: 9px 6px; border-radius: 13px; }
  .fashion-mechanics strong { font-size: 10px; }
  .fashion-mechanics small { font-size: 8px; }

  .fashion-prewall-stage { height: min(116vw, 370px); min-height: 330px; border-radius: 24px; }
  .fashion-prewall-top { top: 10px; left: 10px; right: 10px; }
  .fashion-prewall-top span,
  .fashion-prewall-top strong { padding: 7px 8px; font-size: 7px; }
  .fashion-prewall-panel { left: 10px; right: 10px; bottom: 10px; padding: 13px; border-radius: 17px; }
  .fashion-prewall-panel > strong { font-size: 24px; }
  .fashion-loop-proof { gap: 5px; }
  .fashion-loop-proof > div { min-height: 80px; padding: 8px 4px; border-radius: 12px; }
  .fashion-loop-proof strong { font-size: 9.5px; }
  .fashion-loop-proof small { font-size: 7.5px; }

  .offer-look-proof { grid-template-columns: 82px minmax(0, 1fr); min-height: 108px; }
  .offer-look-proof > img { width: 82px; min-height: 108px; }
  .offer-look-proof > span { padding: 11px 11px 11px 0; }
  .offer-look-proof strong { font-size: 17px; }
}

@media (max-width: 360px) {
  .checkout-urgency { min-height: 48px; padding-inline: 12px; }
  .checkout-urgency strong { font-size: 20px; }
  .stylist-story-chat { width: 100%; }
  .stylist-ai-message { font-size: 8px; }
}

@media (max-width: 430px) and (max-height: 700px) {
  .fashion-look-step,
  .tryon-step { padding-top: 22px; }
  .fashion-look-step .lead,
  .tryon-step .lead { margin-bottom: 14px; }
  .look-deck { --look-card-width: min(78vw, 248px); }
  .look-deck-status { min-height: 76px; }
  .tryon-look-card { margin-bottom: 18px; }
  .tryon-step h1 { font-size: 32px; }
  .fashion-mechanics > div { min-height: 110px; }
  .fashion-prewall-stage { height: 330px; min-height: 330px; }
}

@media (min-width: 620px) {
  .fashion-look-step { width: min(100%, 920px); }
  .look-deck { --look-card-width: 360px; gap: 14px; }
  .look-card-copy strong { font-size: 34px; }
  .look-deck-status,
  .look-swipe-actions,
  .fashion-discovery-note { width: min(100%, 640px); margin-inline: auto; }
  .look-deck-status,
  .look-swipe-actions { margin-bottom: 12px; }
  .look-swipe-actions .primary-button,
  .look-swipe-actions .secondary-button { min-height: 52px; font-size: 12px; }

  .tryon-look-card { grid-template-columns: 160px minmax(0, 1fr); min-height: 184px; }
  .tryon-look-card > img { min-height: 184px; }
  .tryon-look-card strong { font-size: 28px; }
  .fashion-mechanics > div { min-height: 132px; padding: 14px; }
  .fashion-mechanics strong { font-size: 13px; }
  .fashion-mechanics small { font-size: 10px; }
  .tryon-actions { grid-template-columns: 1.35fr 1fr; }

  .fashion-prewall-stage { height: 600px; }
  .fashion-prewall-panel { right: auto; width: min(54%, 400px); padding: 18px; }
  .fashion-loop-proof { gap: 9px; }
  .fashion-loop-proof > div { min-height: 96px; padding: 13px 10px; }
  .fashion-loop-proof strong { font-size: 12px; }
  .fashion-loop-proof small { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .look-deck { scroll-behavior: auto; }
  .look-card,
  .look-card > img,
  .checkout-urgency { transition: none; }
}

/* V4.9 — camera-feel cards, no-choice plan build and zero-generation lock */
.film-frame img { object-position: center 18% !important; }
.catalog-preference-step .tile-choice { min-height: 154px; }

.camera-build-step {
  align-content: center;
  width: min(100%, 680px);
}
.camera-build-step .lead { max-width: 560px; }
.camera-build-visual {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 8px 0 26px;
  padding: 20px;
  border: 1px solid rgba(217,255,88,0.24);
  border-radius: 26px;
  background: radial-gradient(circle at 12% 25%, rgba(217,255,88,0.11), transparent 34%), linear-gradient(145deg, rgba(24,27,27,0.98), rgba(8,10,11,0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.camera-build-ring {
  position: relative;
  display: grid;
  place-content: center;
  justify-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 100%, rgba(255,255,255,0.08) 0);
  animation: cameraRingIn 820ms cubic-bezier(.2,.75,.25,1) both;
}
.camera-build-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: inherit;
  background: #101213;
}
.camera-build-ring strong,
.camera-build-ring small { position: relative; z-index: 1; }
.camera-build-ring strong { color: var(--lime); font-size: 30px; letter-spacing: -0.045em; }
.camera-build-ring small { margin-top: 3px; color: #9da09f; font-size: 8px; font-weight: 900; letter-spacing: 0.14em; }
.camera-build-visual ol { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.camera-build-visual li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 25px;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,0.025);
  opacity: 0;
  transform: translateY(10px);
  animation: cameraRowIn 420ms ease forwards;
}
.camera-build-visual li:nth-child(2) { animation-delay: 180ms; }
.camera-build-visual li:nth-child(3) { animation-delay: 360ms; }
.camera-build-visual li > span,
.camera-build-visual li > b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
}
.camera-build-visual li > b { width: 25px; height: 25px; border-color: var(--lime); background: var(--lime); color: var(--lime-dark); }
.camera-build-visual li > div { display: grid; gap: 3px; min-width: 0; }
.camera-build-visual li strong { font-size: 12px; line-height: 1.24; }
.camera-build-visual li small { overflow: hidden; color: var(--muted); font-size: 9px; line-height: 1.35; white-space: nowrap; text-overflow: ellipsis; }

.editorial-contact-sheet figure,
.summary-film-board figure {
  opacity: 0;
  transform: translateY(12px) rotate(-1.5deg);
  animation: contactFrameIn 460ms cubic-bezier(.2,.75,.25,1) forwards;
}
.editorial-contact-sheet figure:nth-child(2),
.summary-film-board figure:nth-child(2) { animation-delay: 90ms; }
.editorial-contact-sheet figure:nth-child(3),
.summary-film-board figure:nth-child(3) { animation-delay: 170ms; }
.editorial-contact-sheet figure:nth-child(4) { animation-delay: 250ms; }
.editorial-contact-sheet figure:nth-child(5) { animation-delay: 330ms; }

@keyframes cameraRingIn { from { opacity: 0; transform: rotate(-22deg) scale(.82); } to { opacity: 1; transform: rotate(0) scale(1); } }
@keyframes cameraRowIn { to { opacity: 1; transform: translateY(0); } }
@keyframes planFill { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
@keyframes contactFrameIn { to { opacity: 1; transform: translateY(0) rotate(0); } }

@media (max-width: 520px) {
  .camera-build-visual { grid-template-columns: 1fr; gap: 16px; padding: 15px; }
  .camera-build-ring { width: 112px; height: 112px; margin: 0 auto; }
  .camera-build-visual li { min-height: 62px; }
}

@media (max-width: 430px) and (max-height: 700px) {
  .camera-build-step { padding-top: 20px; }
  .camera-build-step .lead { margin-bottom: 12px; }
  .camera-build-visual { gap: 10px; margin-top: 0; padding: 12px; }
  .camera-build-ring { width: 82px; height: 82px; }
  .camera-build-ring::before { inset: 5px; }
  .camera-build-ring strong { font-size: 23px; }
  .camera-build-visual ol { gap: 5px; }
  .camera-build-visual li { min-height: 52px; padding: 7px; }
}
