:root {
  color-scheme: light;
  --ivory: #f8f4ed;
  --paper: #f0ebe3;
  --surface: #fffdf9;
  --ink: #243247;
  --ink-soft: #5f6876;
  --night: #102846;
  --night-2: #1d3c62;
  --coral: #e56f60;
  --coral-hover: #cb594d;
  --lavender: #c9c7d8;
  --lavender-soft: #eeecf3;
  --gold: #c9a577;
  --line: #e5ded2;
  --line-strong: #cfc4b6;
  --success: #477363;
  --danger: #9a463d;
  --shadow: 0 20px 52px rgba(17, 35, 59, 0.09);
  --radius: 8px;
  --content: 1440px;
  font-family: "DM Sans", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
body { min-width: 320px; margin: 0; background: var(--ivory); color: var(--ink); overflow-x: clip; }
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: 0; }
h1 { margin-bottom: 18px; font-size: clamp(46px, 5.6vw, 80px); line-height: 0.91; }
h2 { margin-bottom: 14px; font-size: clamp(35px, 3.5vw, 56px); line-height: 0.98; }
h3 { font-size: 26px; line-height: 1.05; }
p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
:focus-visible { outline: 3px solid rgba(223, 108, 92, 0.55); outline-offset: 3px; }
#main-content:focus { outline: none; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 300; padding: 10px 14px; background: var(--night); color: #fff; font-weight: 700; text-decoration: none; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.main-content, .site-footer { width: min(var(--content), calc(100% - 64px)); margin-inline: auto; }
.main-content { min-height: 64vh; }
.section { margin-top: 96px; }
.section-tight { padding-top: 30px; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.site-header { position: sticky; top: 0; z-index: 50; width: 100%; border-bottom: 1px solid rgba(207, 196, 182, 0.58); background: rgba(248, 244, 237, 0.92); backdrop-filter: blur(18px); transition: box-shadow 180ms ease, background 180ms ease; }
.site-header.is-compact { background: rgba(255, 253, 249, 0.96); box-shadow: 0 8px 28px rgba(17, 35, 59, 0.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(var(--content), calc(100% - 64px)); min-height: 82px; margin-inline: auto; transition: min-height 180ms ease; }
.site-header.is-compact .header-inner { min-height: 66px; }
.site-header.is-compact .brand-copy small { display: none; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--night); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid var(--night); border-radius: 50%; color: var(--coral); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 700; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 700; line-height: 0.75; }
.brand-copy small { margin-top: 7px; color: var(--ink-soft); font-size: 10px; letter-spacing: 0.02em; }
.main-nav { display: flex; align-items: center; gap: clamp(13px, 1.7vw, 28px); }
.main-nav > a:not(.button) { color: var(--ink-soft); font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transition: transform 150ms ease; }
.main-nav > a:not(.button):hover, .main-nav > a.is-active { color: var(--night); }
.main-nav > a.is-active::after { transform: scaleX(1); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--surface); color: var(--night); font-size: 21px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border: 1px solid transparent; border-radius: 6px; padding: 0 21px; cursor: pointer; font-size: 14px; font-weight: 700; text-align: center; text-decoration: none; transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease; }
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button-coral { background: var(--coral); color: #fff; }
.button-coral:hover { background: var(--coral-hover); }
.button-quiet { border-color: var(--line-strong); background: transparent; color: var(--night); }
.button-quiet:hover { border-color: var(--night); background: var(--surface); }
.button-small { min-height: 44px; padding-inline: 15px; font-size: 12px; }
.button:disabled { cursor: not-allowed; opacity: 0.48; transform: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-button, .camera-link { min-height: 44px; border: 0; background: none; color: var(--night); cursor: pointer; font-weight: 700; text-decoration: underline; text-decoration-color: var(--lavender); text-underline-offset: 4px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--night); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link span { color: var(--coral); font-size: 17px; }
.button-reset { border: 0; background: transparent; cursor: pointer; padding: 0; }

.hero { display: grid; grid-template-columns: minmax(430px, .95fr) minmax(440px, 1.05fr); gap: clamp(46px, 6vw, 104px); align-items: center; min-height: min(690px, calc(100svh - 84px)); padding: 30px 0 38px; }
.how-section { margin-top: 46px; }
.hero-copy { max-width: 570px; }
.hero-copy h1 { max-width: 540px; }
.hero-lead { max-width: 535px; margin-bottom: 28px; font-size: 18px; }
.hero-comparison { justify-self: end; width: min(100%, 530px); min-width: 0; }
.trust-notes { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 25px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; }
.trust-notes li { display: inline-flex; align-items: center; gap: 6px; }
.trust-notes li span { color: var(--coral); font-weight: 800; }
.demo-caption { display: flex; justify-content: space-between; gap: 10px; margin: 9px 0 0; font-size: 11px; }
.demo-caption span { color: var(--night); font-weight: 700; }

.before-after { position: relative; overflow: hidden; width: 100%; border: 1px solid rgba(16, 36, 65, 0.15); border-radius: var(--radius); background: #d3c8b8; box-shadow: var(--shadow); user-select: none; -webkit-user-select: none; touch-action: none; }
.compare-image, .after-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.compare-image { object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.after-layer { z-index: 2; clip-path: inset(0 0 0 var(--split)); }
.compare-label { position: absolute; top: 14px; z-index: 7; padding: 7px 10px; border-radius: 4px; background: rgba(12, 25, 46, 0.82); color: #fff; font-size: 11px; font-weight: 700; }
.compare-label.is-before { left: 14px; }
.compare-label.is-after { right: 14px; }
.compare-divider { position: absolute; inset-block: 0; left: var(--split); z-index: 8; width: 2px; background: #fff; cursor: ew-resize; }
.compare-handle { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 45px; height: 45px; border: 2px solid #fff; border-radius: 50%; background: var(--night); color: #fff; font-size: 17px; font-weight: 700; transform: translate(-50%, -50%); box-shadow: 0 6px 16px rgba(7, 18, 34, 0.27); }
.watermark { position: absolute; inset: 0; z-index: 5; display: grid; grid-template-columns: repeat(4, minmax(85px, 1fr)); grid-template-rows: repeat(6, 1fr); gap: 8px 3px; align-items: center; overflow: hidden; pointer-events: none; opacity: 0.54; }
.watermark span { color: rgba(255,255,255,.94); font-size: clamp(9px, 1.25vw, 13px); font-weight: 700; text-align: center; text-shadow: 0 1px 5px rgba(10, 18, 31, 0.5); text-transform: uppercase; white-space: nowrap; transform: rotate(-30deg); }
.watermark span:nth-child(10), .watermark span:nth-child(11), .watermark span:nth-child(14), .watermark span:nth-child(15) { opacity: .4; }

.section-heading { max-width: 650px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { margin-bottom: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 42px; }
.step-card { position: relative; padding: 0 24px 0 0; }
.step-card:not(:last-child)::after { content: ""; position: absolute; top: 17px; right: 0; width: 1px; height: 90px; background: var(--line); }
.step-card > span { color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: 0.09em; }
.step-card h3 { margin: 22px 0 10px; }
.step-card p { margin-bottom: 0; font-size: 14px; }
.modes-section { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: clamp(42px, 6vw, 100px); align-items: start; }
.mode-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mode-card { display: grid; gap: 12px; min-width: 0; min-height: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 18px; color: var(--ink); text-align: left; }
button.mode-card { cursor: pointer; }
.mode-card.is-selected { border: 2px solid var(--night); padding: 17px; box-shadow: 0 0 0 3px var(--lavender-soft); }
.mode-image { width: 100%; height: 220px; border-radius: 6px; object-fit: cover; object-position: center 34%; }
.mode-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mode-symbol { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--lavender-soft); color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 700; }
.mode-badge { color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.mode-card > strong { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; }
.mode-card > span:not(.mode-top), .mode-card > small { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.mode-card ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.mode-card li::before { content: "✓"; margin-right: 8px; color: var(--coral); font-weight: 800; }
.mode-card > small { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }

.editorial-break, .final-cta { position: relative; display: grid; align-items: center; min-height: 385px; margin-inline: calc((100vw - min(var(--content), calc(100vw - 48px))) / -2); background-color: var(--night); background-position: center; background-size: cover; color: #fff; overflow: hidden; }
.editorial-break::before, .final-cta::before { content: ""; position: absolute; inset: 0; background: rgba(7, 17, 33, 0.6); }
.editorial-break > div, .final-cta > div { position: relative; z-index: 1; width: min(var(--content), calc(100vw - 48px)); margin-inline: auto; max-width: none; }
.editorial-break > div > * { max-width: 500px; }
.editorial-break .eyebrow, .final-cta .eyebrow { color: #f2a093; }
.editorial-break h2, .final-cta h2 { color: #fff; }
.editorial-break p, .final-cta p { color: rgba(255,255,255,.82); }
.examples-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.examples-heading h2 { margin-bottom: 0; }
.examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.example-card .before-after { aspect-ratio: 4 / 5 !important; box-shadow: none; }
.example-card h3 { margin: 13px 0 5px; font-size: 23px; }
.example-card p { margin: 0; font-size: 12px; line-height: 1.45; }
.example-card .compare-label { top: 9px; padding: 5px 7px; font-size: 9px; }
.example-card .compare-label.is-before { left: 9px; }
.example-card .compare-label.is-after { right: 9px; }
.example-card .compare-handle { width: 31px; height: 31px; font-size: 12px; }

.pricing-section { padding: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.price-card { position: relative; display: grid; align-content: start; min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 28px; }
.price-card.is-featured { border: 2px solid var(--coral); padding: 27px; box-shadow: var(--shadow); }
.popular { position: absolute; top: -12px; left: 20px; border-radius: 4px; background: var(--coral); padding: 5px 9px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-overline { color: var(--ink-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.price-card h3 { margin: 21px 0 10px; font-size: 31px; }
.price { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 48px; font-weight: 700; line-height: 1; }
.unit-price { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 11px; }
.price-card p { margin-bottom: 16px; font-size: 14px; }
.price-card ul { display: grid; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--coral); font-weight: 800; }
.price-card .button { margin-top: auto; }
.price-note { display: flex; justify-content: center; gap: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; color: var(--ink-soft); font-size: 13px; }
.price-note strong { color: var(--night); }

.trust-faq { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.trust-column h2 { max-width: 520px; }
.trust-points { display: grid; gap: 15px; margin: 26px 0; }
.trust-points div { display: grid; gap: 3px; padding-left: 17px; border-left: 2px solid var(--lavender); }
.trust-points strong { color: var(--night); font-size: 14px; }
.trust-points span { color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 63px; padding: 19px 40px 18px 0; color: var(--night); cursor: pointer; font-size: 14px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; margin-right: -32px; color: var(--coral); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin-bottom: 20px; font-size: 14px; }
.final-cta { min-height: 330px; }
.final-cta h2 { max-width: 620px; }
.final-cta p { max-width: 520px; margin-bottom: 24px; }
.compact-cta { min-height: 270px; margin-inline: 0; border-radius: var(--radius); }
.compact-cta > div { width: min(100% - 48px, 1050px); }

.site-footer { display: grid; grid-template-columns: 1.4fr .75fr .9fr 1fr; gap: 44px; margin-top: 100px; border-top: 1px solid var(--line-strong); padding: 42px 0 34px; }
.footer-brand p { max-width: 330px; margin: 10px 0 0; font-size: 12px; }
.site-footer > div strong, .site-footer > div span { display: block; }
.site-footer > div strong { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; }
.site-footer > div span { margin-top: 5px; color: var(--ink-soft); font-size: 12px; }
.site-footer nav { display: grid; align-content: start; gap: 10px; }
.site-footer nav > strong, .footer-contact > strong { margin-bottom: 4px; color: var(--night); font-size: 12px; }
.site-footer a { color: var(--ink-soft); font-size: 12px; text-decoration: none; }
.site-footer a:hover { color: var(--night); text-decoration: underline; }
.footer-contact { display: grid; gap: 7px; align-content: start; }
.footer-contact span { font-size: 11px !important; }
.site-footer > small { grid-column: 1 / -1; color: var(--ink-soft); font-size: 10px; }
.mobile-sticky-cta { display: none; }

.flow-shell { width: min(900px, 100%); margin-inline: auto; padding-bottom: 62px; }
.flow-brandbar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 72px; margin-bottom: 14px; border-bottom: 1px solid var(--line); background: rgba(248, 244, 237, .94); backdrop-filter: blur(16px); }
.flow-brand .brand-copy strong { font-size: 24px; }
.flow-help { color: var(--ink-soft); font-size: 12px; font-weight: 700; text-decoration: none; }
.back-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--night); font-weight: 700; text-decoration: none; }
.progress { display: grid; grid-template-columns: repeat(4, 1fr); margin: 10px 0 30px; padding: 0; list-style: none; }
.progress li { position: relative; z-index: 0; display: grid; justify-items: center; gap: 5px; color: var(--ink-soft); }
.progress li::before { content: ""; position: absolute; top: 15px; right: 50%; left: -50%; z-index: -1; height: 1px; background: var(--line); }
.progress li:first-child::before { display: none; }
.progress li span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--ivory); font-size: 11px; font-weight: 700; }
.progress li.is-active span { border-color: var(--night); background: var(--night); color: #fff; }
.progress li.is-active::before { background: var(--night); }
.progress li.is-current small { color: var(--night); font-weight: 700; }
.flow-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(24px, 5vw, 50px); box-shadow: var(--shadow); }
.demo-notice { display: flex; gap: 10px; align-items: flex-start; margin: 0 auto 20px; border-left: 3px solid var(--lavender); background: var(--lavender-soft); padding: 12px 14px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.demo-notice strong { flex: 0 0 auto; color: var(--night); }
.flow-copy { max-width: 680px; margin: 0 auto 30px; text-align: center; }
.flow-copy h1 { font-size: clamp(40px, 4.8vw, 61px); }
.flow-copy p { margin-bottom: 0; }
.dropzone { position: relative; display: grid; justify-items: center; gap: 9px; min-height: 300px; border: 2px dashed var(--line-strong); border-radius: var(--radius); background: var(--paper); padding: 34px 20px; text-align: center; transition: border 150ms ease, background 150ms ease; }
.dropzone.is-dragging { border-color: var(--coral); background: var(--lavender-soft); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--lavender-soft); color: var(--night); font-size: 28px; }
.dropzone > strong { color: var(--night); font-size: 20px; }
.dropzone > span:not(.upload-icon), .dropzone > small { color: var(--ink-soft); }
.context-help { display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center; margin-top: 16px; border-left: 2px solid var(--lavender); padding: 10px 0 10px 13px; }
.context-help > span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--lavender-soft); color: var(--night); font-weight: 700; }
.context-help p { margin: 0; font-size: 13px; line-height: 1.45; }
.context-help a { color: var(--night); font-size: 13px; font-weight: 700; }
.review-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: center; }
.upload-preview { overflow: hidden; max-height: 540px; margin-bottom: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.upload-preview img { width: 100%; height: 100%; object-fit: contain; }
.quality-panel { padding: 10px 0; }
.quality-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 50%; background: #dce9e2; color: var(--success); font-size: 22px; font-weight: 700; }
.quality-icon.low { background: #f1ddd4; color: var(--danger); }
.quality-panel h2 { font-size: 38px; }
.quality-panel dl { margin-bottom: 20px; border-top: 1px solid var(--line); }
.quality-panel dl div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 11px 0; font-size: 13px; }
.quality-panel dt { color: var(--ink-soft); }
.quality-panel dd { color: var(--night); font-weight: 700; }
.button-stack { display: grid; gap: 6px; }
.finish-step .mode-grid { max-width: 760px; margin-inline: auto; }
.selection-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 760px; margin: 22px auto 0; border-top: 1px solid var(--line); padding-top: 22px; }
.price-line { display: grid; gap: 2px; color: var(--ink-soft); font-size: 12px; }
.price-line strong { color: var(--night); font-size: 22px; }
.processing-step { display: grid; grid-template-columns: minmax(220px, .85fr) 1.15fr; gap: 44px; align-items: center; min-height: 500px; }
.processing-photo { position: relative; overflow: hidden; max-height: 410px; border-radius: var(--radius); background: var(--paper); }
.processing-photo img { width: 100%; height: 100%; object-fit: contain; }
.scan-line { position: absolute; right: 0; left: 0; height: 2px; background: rgba(255,255,255,.9); box-shadow: 0 0 16px var(--coral); animation: scan 2.1s ease-in-out infinite; }
.processing-copy h1 { font-size: clamp(38px, 4.1vw, 53px); }
.spinner { display: block; width: 34px; height: 34px; margin-bottom: 22px; border: 3px solid var(--lavender-soft); border-top-color: var(--coral); border-radius: 50%; animation: spin .8s linear infinite; }
.demo-error { display: grid; justify-items: center; max-width: 700px; margin-inline: auto; text-align: center; }
.error-mark { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 16px; border-radius: 50%; background: #f3ded9; color: var(--danger); font-size: 30px; font-weight: 700; }

.result-page { width: min(1080px, 100%); margin-inline: auto; padding-bottom: 65px; }
.result-brandbar { margin-bottom: 28px; }
.result-heading { max-width: 680px; margin: 0 auto 24px; text-align: center; }
.result-heading h1 { margin-top: 14px; font-size: clamp(42px, 4.8vw, 66px); }
.status { display: inline-flex; align-items: center; min-height: 28px; border-radius: 4px; padding: 0 9px; background: var(--paper); color: var(--ink-soft); font-size: 11px; font-weight: 700; white-space: nowrap; }
.status-ready { background: #dce9e2; color: var(--success); }
.status-error { background: #f2d9d3; color: var(--danger); }
.result-toolbar { display: flex; justify-content: center; gap: 4px; margin-bottom: 12px; }
.result-toolbar button { min-height: 44px; border: 1px solid var(--line); background: var(--surface); padding: 0 15px; color: var(--ink-soft); cursor: pointer; font-size: 13px; font-weight: 700; }
.result-toolbar button:first-child { border-radius: 6px 0 0 6px; }
.result-toolbar button:last-child { border-radius: 0 6px 6px 0; }
.result-toolbar button.is-active { border-color: var(--night); background: var(--night); color: #fff; }
.result-stage { display: grid; place-items: center; width: 100%; }
.result-stage > .before-after, .result-stage > .single-result { width: min(100%, calc(72vh * var(--media-ratio, 1))); height: auto; }
.result-stage .compare-image { object-fit: contain; }
.single-result { position: relative; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper); }
.single-result > img { width: 100%; height: 100%; object-fit: contain; }
.unlock-card { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center; margin-top: 16px; border-top: 1px solid var(--line); background: transparent; padding: 20px 0 0; }
.unlock-card > div { display: grid; gap: 2px; }
.unlock-card > div span, .unlock-card > div small { color: var(--ink-soft); font-size: 12px; }
.unlock-card > div strong { color: var(--night); font-size: 22px; }
.delete-photo-action { grid-column: 1 / -1; justify-self: end; color: var(--danger); }
.result-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(8, 20, 37, .84); padding: 24px; }
.modal-panel { width: min(1180px, 100%); max-height: calc(100vh - 48px); border-radius: var(--radius); background: var(--surface); padding: 16px; overflow: auto; box-shadow: 0 32px 90px rgba(0,0,0,.3); }
.modal-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.modal-heading h2 { margin: 0; font-family: "DM Sans", sans-serif; font-size: 16px; }
.icon-button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--night); cursor: pointer; font-size: 24px; }
.modal-media { display: grid; place-items: center; }
.modal-media > .before-after, .modal-media > .single-result { width: min(100%, calc(82vh * var(--media-ratio, 1))); height: auto; }
.modal-media .compare-image { object-fit: contain; }

.page-heading { max-width: 790px; margin-inline: auto; text-align: center; }
.page-heading h1 { font-size: clamp(45px, 5.8vw, 73px); }
.page-heading p { max-width: 650px; margin-inline: auto; }
.examples-library { margin-top: 56px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 16px 36px; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.filter-bar fieldset { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; border: 0; padding: 0; }
.filter-bar legend { margin-right: 10px; color: var(--ink-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.filter-bar button { min-height: 44px; border: 1px solid var(--line); border-radius: 5px; background: transparent; padding: 0 13px; color: var(--ink-soft); cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-bar button.is-active { border-color: var(--night); background: var(--night); color: #fff; }
.examples-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.examples-gallery .empty-state { grid-column: 1 / -1; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.inline-cta h2 { margin-bottom: 0; font-size: clamp(30px, 3vw, 42px); }
.standalone-pricing { margin-top: 38px; }
.privacy-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.privacy-principles article { min-height: 210px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px; }
.privacy-principles article > span { color: var(--coral); font-size: 11px; font-weight: 800; }
.privacy-principles h2 { margin: 20px 0 8px; font-size: 28px; }
.privacy-principles p { margin: 0; font-size: 13px; }
.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.guide-comparison { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guide-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 14px 14px 24px; }
.guide-visual { position: relative; overflow: hidden; margin: 0; border-radius: 6px; }
.guide-visual img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.guide-visual figcaption { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px; border-radius: 5px; background: rgba(255,255,255,.94); padding: 8px 11px; color: var(--night); font-size: 12px; font-weight: 800; }
.guide-visual figcaption span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--success); color: #fff; }
.is-bad .guide-visual figcaption span { background: var(--danger); }
.guide-card h2 { margin-top: 24px; font-size: 31px; }
.guide-card ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.guide-checklist { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; border-top: 1px solid var(--line); padding-top: 34px; }
.guide-checklist ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; counter-reset: guide; list-style: none; }
.guide-checklist li { counter-increment: guide; border-left: 2px solid var(--lavender); padding: 8px 8px 8px 16px; color: var(--night); font-size: 14px; font-weight: 700; }
.guide-checklist li::before { content: "0" counter(guide); display: block; margin-bottom: 5px; color: var(--coral); font-size: 10px; }

.contact-page, .store-page { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 7vw, 110px); align-items: start; max-width: 1150px; margin-inline: auto; padding-bottom: 65px; }
.contact-page h1 { font-size: clamp(44px, 5vw, 68px); }
.contact-email { display: inline-block; margin-top: 12px; color: var(--night); font-size: 17px; font-weight: 700; }
.contact-fallback { margin-top: 22px; border-left: 2px solid var(--lavender); padding-left: 14px; font-size: 13px; }
.optional { color: var(--ink-soft); font-size: 11px; font-weight: 400; }
.contact-form { display: grid; gap: 15px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 28px; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; color: var(--night); font-size: 13px; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 5px; background: #fff; padding: 12px; color: var(--ink); }
input, select { min-height: 48px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--night); }
.contact-form small { color: var(--ink-soft); text-align: center; }
.contact-success { display: grid; justify-items: center; gap: 10px; padding: 32px 10px; text-align: center; }
.contact-success > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: #dce9e2; color: var(--success); font-size: 24px; }
.contact-success strong { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; }
.contact-success p { max-width: 360px; margin-bottom: 6px; }

.store-page { grid-template-columns: .8fr 1.2fr; align-items: stretch; }
.store-hero { display: grid; align-content: center; min-height: 480px; }
.store-hero h1 { font-size: clamp(46px, 5vw, 70px); }
.referral-note { display: block; margin-top: 14px; color: var(--ink-soft); font-size: 11px; }
.store-visual { min-height: 500px; border-radius: var(--radius); background-color: var(--night); background-position: center; background-size: cover; }
.store-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.store-flow article { padding: 24px 26px 24px 0; }
.store-flow article:not(:last-child) { border-right: 1px solid var(--line); padding-left: 26px; }
.store-flow article:first-child { padding-left: 0; }
.store-flow span { color: var(--coral); font-weight: 800; }
.store-flow h2 { margin: 18px 0 8px; font-size: 31px; }
.store-flow p { margin: 0; font-size: 13px; }
.store-modes { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; align-items: start; }

.checkout-page { display: grid; grid-template-columns: 1fr 440px; gap: 70px; align-items: start; max-width: 1020px; margin-inline: auto; padding-bottom: 80px; }
.checkout-copy h1 { font-size: clamp(42px, 5vw, 62px); }
.checkout-card { display: grid; gap: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 28px; box-shadow: var(--shadow); }
.order-mini { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.order-mini img { width: 64px; height: 64px; border-radius: 5px; object-fit: cover; }
.order-mini div { display: grid; gap: 3px; }
.order-mini div span { color: var(--ink-soft); font-size: 12px; }
.checkout-card > label:not(.check-row), .admin-lock label { display: grid; gap: 7px; color: var(--night); font-size: 13px; font-weight: 700; }
.check-row { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.check-row input { width: 20px; min-height: 20px; margin: 0; }
.checkout-card > small { color: var(--ink-soft); text-align: center; }
.order-success, .admin-lock { display: grid; justify-items: center; max-width: 660px; margin-inline: auto; padding-bottom: 80px; text-align: center; }
.success-mark { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 20px; border-radius: 50%; background: #dce9e2; color: var(--success); font-size: 32px; }
.admin-lock form { display: grid; gap: 16px; width: min(380px, 100%); margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 24px; text-align: left; }
.admin-lock form small { color: var(--ink-soft); text-align: center; }
.admin { max-width: 1180px; margin-inline: auto; padding-bottom: 80px; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.admin-heading h1 { margin-bottom: 0; }
.demo-flag { border: 1px solid var(--lavender); border-radius: 4px; padding: 7px 10px; color: var(--night); font-size: 12px; font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 30px 0 12px; }
.metric-grid article, .admin-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.metric-grid article { display: grid; gap: 8px; padding: 20px; }
.metric-grid span { color: var(--ink-soft); font-size: 12px; }
.metric-grid strong { color: var(--night); font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; }
.admin-panel { padding: 22px; }
.admin-panel h2 { font-family: "DM Sans", sans-serif; font-size: 18px; }
.admin-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.economics-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; margin-bottom: 22px; }
.economics-form label { display: grid; gap: 5px; color: var(--ink-soft); font-size: 11px; }
.economics-list { border-top: 1px solid var(--line); }
.economics-list div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 10px 0; font-size: 13px; }
.economics-list dt { color: var(--ink-soft); }
.economics-list dd { color: var(--night); font-weight: 700; }
.economics-list .highlight { background: var(--lavender-soft); margin-inline: -8px; padding-inline: 8px; }
.clear-referral { width: 100%; margin-top: 18px; }
.settings-list { border-top: 1px solid var(--line); }
.settings-list div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 12px 0; }
.settings-list code { color: var(--ink-soft); }

.empty-state { display: grid; justify-items: center; gap: 8px; border: 1px dashed var(--line-strong); border-radius: var(--radius); padding: 46px 20px; text-align: center; }
.empty-state h1, .empty-state h2 { margin: 0; font-size: clamp(26px, 4vw, 40px); }
.empty-state p { max-width: 460px; margin-bottom: 0; }
.empty-icon { color: var(--coral); font-size: 32px; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 100; width: min(390px, calc(100% - 40px)); border: 1px solid var(--line); border-left: 4px solid var(--danger); border-radius: 6px; background: var(--surface); padding: 16px; color: var(--ink); box-shadow: var(--shadow); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scan { 0%, 100% { top: 8%; opacity: .2; } 50% { top: 90%; opacity: 1; } }

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav > a:not(.button) { font-size: 11px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding: 56px 0 22px; }
  .hero-copy { max-width: 700px; }
  .hero-comparison { justify-self: start; width: min(620px, 100%); }
  .modes-section, .trust-faq, .faq-section, .checkout-page, .contact-page, .store-page, .store-modes { grid-template-columns: 1fr; gap: 38px; }
  .examples-grid, .examples-gallery { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / -1; }
  .review-layout, .processing-step { grid-template-columns: 1fr; }
  .processing-step { min-height: 0; }
  .processing-photo { width: min(480px, 100%); margin-inline: auto; }
  .privacy-principles { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
}

@media (min-width: 941px) and (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 32px; min-height: 0; padding: 30px 0 38px; }
  .hero-copy { max-width: 520px; }
  .hero-copy h1 { font-size: clamp(48px, 5.5vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-comparison { justify-self: end; width: min(100%, 410px); }
}

@media (min-width: 1101px) and (max-height: 850px) {
  .hero { min-height: 0; }
  .hero-comparison { width: min(100%, 440px); }
}

@media (max-width: 940px) {
  .header-inner { min-height: 68px; }
  .brand-copy small { display: none; }
  .menu-button { display: grid; place-items: center; }
  .main-nav { position: fixed; top: 76px; right: 24px; left: 24px; display: none; align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 10px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { display: flex; align-items: center; min-height: 48px; padding: 0 12px; font-size: 14px; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 4px; }
}

@media (max-width: 780px) {
  .main-content, .site-footer { width: min(100% - 24px, 620px); }
  .header-inner { width: min(100% - 24px, 620px); }
  .section { margin-top: 70px; }
  .section-tight { padding-top: 20px; }
  h1 { font-size: clamp(42px, 12vw, 58px); }
  h2 { font-size: clamp(34px, 9vw, 46px); }
  .main-nav { top: 72px; right: 12px; left: 12px; }
  .hero { gap: 18px; padding-top: 28px; }
  .how-section { margin-top: 30px; }
  .hero-comparison .before-after { height: 180px; aspect-ratio: auto !important; }
  .hero-comparison .compare-image { object-fit: cover; object-position: center 30%; }
  .hero-copy h1 { max-width: 480px; }
  .hero-lead { font-size: 16px; }
  .hero .button-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero .button-row .button { width: 100%; padding-inline: 8px; font-size: 12px; }
  .trust-notes { display: flex; gap: 7px 13px; font-size: 10px; }
  .demo-caption { display: none; }
  .steps-grid, .mode-grid, .examples-grid, .examples-gallery, .pricing-grid, .privacy-principles, .guide-comparison, .store-flow { grid-template-columns: 1fr; }
  .step-card { padding: 0 0 22px; }
  .step-card:not(:last-child)::after { top: auto; right: 0; bottom: 0; left: 0; width: 100%; height: 1px; }
  .modes-section { gap: 24px; }
  .mode-card { min-height: 0; }
  .editorial-break, .final-cta { min-height: 350px; margin-inline: -12px; }
  .editorial-break > div, .final-cta > div { width: min(100% - 40px, 620px); }
  .examples-heading { display: grid; gap: 15px; }
  .example-card { display: block; }
  .example-card .before-after { aspect-ratio: 4 / 5 !important; }
  .example-card h3 { margin: 13px 0 4px; }
  .example-card p { margin: 0; }
  .filter-bar { display: grid; gap: 16px; }
  .filter-bar fieldset { gap: 5px; }
  .inline-cta { display: grid; }
  .price-card { min-height: 0; }
  .trust-faq { gap: 34px; }
  .site-footer { grid-template-columns: 1fr; margin-top: 70px; }
  .site-footer nav { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .mobile-sticky-cta { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 25; display: flex; align-items: center; justify-content: center; min-height: 54px; border-radius: 6px; background: var(--coral); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgba(115, 48, 43, 0.25); transition: opacity 160ms ease, transform 160ms ease; }
  .mobile-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(130%); }
  body[data-route="inicio"] .site-footer { padding-bottom: 88px; }
  .context-help { grid-template-columns: 28px 1fr; }
  .context-help a { grid-column: 2; }
  .flow-card { padding: 22px 16px; }
  .demo-notice { display: grid; }
  .flow-brandbar { min-height: 64px; }
  .flow-brand .brand-copy strong { font-size: 22px; }
  .flow-copy { text-align: left; }
  .flow-copy h1 { font-size: 42px; }
  .selection-footer { display: grid; }
  .selection-footer .button { width: 100%; }
  .result-heading { text-align: left; }
  .result-toolbar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .result-toolbar button, .result-toolbar button:first-child, .result-toolbar button:last-child { width: 100%; border-radius: 5px; }
  .unlock-card { grid-template-columns: 1fr; }
  .unlock-card .button, .unlock-card .text-button { width: 100%; }
  .page-heading { text-align: left; }
  .page-heading p { margin-inline: 0; }
  .guide-card h2 { font-size: 30px; }
  .guide-checklist { grid-template-columns: 1fr; gap: 18px; }
  .guide-checklist ol { grid-template-columns: 1fr; }
  .store-hero { min-height: 0; }
  .store-visual { min-height: 340px; }
  .store-flow article, .store-flow article:not(:last-child), .store-flow article:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .store-flow article:last-child { border-bottom: 0; }
  .contact-form { padding: 20px; }
  .checkout-card { padding: 20px; }
  .order-mini { grid-template-columns: 54px 1fr; }
  .order-mini b { grid-column: 2; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .economics-form { grid-template-columns: 1fr; }
  .result-modal { padding: 8px; }
  .modal-panel { max-height: calc(100vh - 16px); padding: 10px; }
  .modal-media > .before-after, .modal-media > .single-result { width: min(100%, calc(76vh * var(--media-ratio, 1))); }
}

@media (max-width: 420px) {
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 24px; }
  .progress small { font-size: 10px; }
  .result-toolbar { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
}

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