/* Home conversion redesign — intentionally scoped to .conversion-home. */
.conversion-home {
    --home-bg: #0b0c0d;
    --home-surface: #121416;
    --home-surface-2: #181a1d;
    --home-line: rgba(255, 255, 255, .1);
    --home-text: #f5f3ee;
    --home-muted: #a8a8a3;
    --home-gold: #e0ae3e;
    --home-gold-soft: #f4d486;
    --home-green: #6ee7a5;
    --home-radius: 24px;
    overflow-x: clip;
    color: var(--home-text);
    background: var(--home-bg);
    font-family: "Inter", sans-serif;
}

.conversion-home *, 
.conversion-home *::before,
.conversion-home *::after { box-sizing: border-box; }
.conversion-home section[id],
.conversion-home h2[id] { scroll-margin-top: 96px; }

.home-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.home-section { position: relative; padding: 112px 0; }
.home-section--compact { padding: 72px 0; }
.home-section--surface { background: #101113; }
.home-section--line { border-block: 1px solid var(--home-line); }
.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--home-gold-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.home-kicker::before { content: ""; width: 24px; height: 1px; background: var(--home-gold); }
.home-title {
    max-width: 790px;
    margin: 0;
    color: var(--home-text);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 5.2vw, 68px);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: .98;
}
.home-title--section { font-size: clamp(32px, 4vw, 52px); line-height: 1.02; }
.home-title em { color: var(--home-gold-soft); font-style: normal; }
.home-lead {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--home-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}
.home-section-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 52px; }
.home-section-head > div:first-child { max-width: 760px; }
.home-section-head .home-lead { font-size: 17px; }
.home-text-link {
    flex: 0 0 auto;
    color: var(--home-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 174, 62, .55);
    padding-bottom: 5px;
}
.home-text-link:hover { color: var(--home-gold-soft); }

/* Hero */
.home-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 108px 0 84px;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 22%, rgba(224, 174, 62, .14), transparent 34%),
        radial-gradient(circle at 12% 70%, rgba(255, 255, 255, .045), transparent 28%),
        #0b0c0d;
}
.conversion-home .hero-scroll {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.conversion-home .hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 56px;
    border: 2px solid rgba(224, 174, 62, .35);
    border-radius: 20px;
    color: var(--home-gold-soft);
    text-decoration: none;
    animation: homeScrollBounce 2s ease-in-out infinite;
}
.conversion-home .hero-scroll a:hover { border-color: rgba(224, 174, 62, .7); color: var(--home-gold); }
@keyframes homeScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Tira de integraciones */
.brand-marquee-section {
    position: relative;
    background: #08090a;
    border-block: 1px solid rgba(255, 255, 255, .06);
    padding: 18px 0;
    overflow: hidden;
}
.brand-marquee-section .marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-marquee-section .marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: brandMarquee 32s linear infinite;
    will-change: transform;
}
.brand-marquee-section:hover .marquee-content { animation-play-state: paused; }
.brand-marquee-section .brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
}
.brand-marquee-section .brand-logo i {
    font-size: 16px;
    color: #a8a29e;
}
@keyframes brandMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .brand-marquee-section .marquee-content { animation: none; }
    .conversion-home .hero-scroll a { animation: none; }
}
@media (max-width: 768px) {
    .conversion-home .hero-scroll { display: none; }
    .brand-marquee-section { padding: 14px 0; }
    .brand-marquee-section .marquee-content { gap: 32px; animation-duration: 26s; }
    .brand-marquee-section .brand-logo { font-size: 13px; }
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .24;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.home-hero-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 70px;
}
.home-hero-copy { position: relative; z-index: 2; width: 100%; min-width: 0; }
.home-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.home-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.home-button:hover { transform: translateY(-2px); }
.home-button--primary { color: #14110a; background: var(--home-gold); box-shadow: 0 12px 38px rgba(224, 174, 62, .18); }
.home-button--primary:hover { color: #0b0c0d; background: #efc45f; }
.home-button--secondary { color: var(--home-text); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.045); }
.home-button--secondary:hover { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.home-button--full { width: 100%; }
.home-button svg { width: 17px; height: 17px; }
.home-hero-note { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0; list-style: none; color: #b9b9b4; font-size: 13px; }
.home-hero-note li { display: flex; align-items: center; gap: 7px; }
.home-hero-note li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--home-green); box-shadow: 0 0 0 4px rgba(110,231,165,.08); }

.home-store-stage { position: relative; min-height: 560px; perspective: 1300px; }
.home-store-browser {
    position: absolute;
    inset: 18px 0 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: #f3f0e9;
    color: #171717;
    box-shadow: 0 38px 90px rgba(0,0,0,.45), 0 0 0 8px rgba(255,255,255,.025);
    transform: rotateY(-4deg) rotateX(1deg);
}
.home-browser-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #dedbd5; background: #ebe8e1; }
.home-browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #c9c5bd; }
.home-browser-url { width: 42%; height: 18px; margin-left: 10px; border-radius: 20px; background: #ddd9d1; }
.home-shop-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid #dedbd5; }
.home-shop-logo { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.home-shop-menu { display: flex; gap: 18px; color: #666; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.home-shop-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 190px; background: #25231f; color: white; }
.home-shop-hero-copy { padding: 30px 26px; }
.home-shop-overline { display: block; margin-bottom: 11px; color: #ddc47f; font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-shop-hero strong { display: block; max-width: 210px; font-family: "Space Grotesk", sans-serif; font-size: 27px; letter-spacing: -.05em; line-height: 1.02; }
.home-shop-hero a { display: inline-block; margin-top: 18px; padding: 8px 12px; border-radius: 4px; color: #1c1a17; background: #eee8dc; font-size: 8px; font-weight: 800; }
.home-shop-hero img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.home-shop-products { padding: 20px 22px 25px; }
.home-shop-products-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.home-shop-products-head strong { font-family: "Space Grotesk", sans-serif; font-size: 15px; }
.home-shop-products-head span { color: #777; font-size: 8px; }
.home-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.home-product-card { min-width: 0; }
.home-product-card img { display: block; width: 100%; aspect-ratio: 1 / .78; object-fit: cover; border-radius: 6px; background: #ddd; }
.home-product-card b { display: block; margin-top: 7px; overflow: hidden; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.home-product-card span { display: block; margin-top: 2px; color: #676767; font-size: 8px; }
.home-sale-toast {
    position: absolute;
    right: -18px;
    bottom: 0;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    min-width: 220px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    color: #fff;
    background: rgba(20,22,24,.94);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
}
.home-sale-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--home-green); background: rgba(110,231,165,.1); font-weight: 900; }
.home-sale-toast strong, .home-sale-toast span { display: block; }
.home-sale-toast strong { font-size: 12px; }
.home-sale-toast span { margin-top: 3px; color: var(--home-muted); font-size: 10px; }
.home-owner-badge {
    position: absolute;
    top: 0;
    left: -12px;
    padding: 10px 13px;
    border: 1px solid rgba(224,174,62,.28);
    border-radius: 100px;
    color: var(--home-gold-soft);
    background: rgba(18,20,22,.92);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

/* Proof rail */
.home-proof { border-block: 1px solid var(--home-line); background: #0e0f10; }
.home-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.home-proof-item { padding: 14px 16px; border-right: 1px solid var(--home-line); }
.home-proof-item:first-child { padding-left: 0; }
.home-proof-item:last-child { border-right: 0; }
.home-proof-item strong { display: block; color: var(--home-gold-soft); font-family: "Space Grotesk", sans-serif; font-size: 20px; letter-spacing: -.04em; line-height: 1; }
.home-proof-item span { display: block; margin-top: 4px; color: var(--home-muted); font-size: 11px; line-height: 1.35; }

/* Value proposition */
.home-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; align-items: start; }
.home-sticky-copy { position: sticky; top: 120px; }
.home-benefit-list { border-top: 1px solid var(--home-line); }
.home-benefit {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    padding: 29px 0;
    border-bottom: 1px solid var(--home-line);
}
.home-benefit-number { color: var(--home-gold); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 800; }
.home-benefit h3 { margin: 0; color: var(--home-text); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.035em; }
.home-benefit p { margin: 9px 0 0; color: var(--home-muted); font-size: 15px; line-height: 1.65; }

/* Feature bento */
.home-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.home-feature-card {
    grid-column: span 4;
    min-height: 270px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    background: var(--home-surface);
}
.home-feature-card--wide { grid-column: span 8; }
.home-feature-card--gold { color: #17130b; background: var(--home-gold-soft); border-color: transparent; }
.home-feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: var(--home-gold-soft); background: rgba(255,255,255,.04); }
.home-feature-card--gold .home-feature-icon { color: #17130b; border-color: rgba(23,19,11,.14); background: rgba(255,255,255,.25); }
.home-feature-icon svg { width: 20px; height: 20px; }
.home-feature-card h3 { max-width: 380px; margin: 48px 0 0; color: inherit; font-family: "Space Grotesk", sans-serif; font-size: 27px; letter-spacing: -.04em; }
.home-feature-card p { max-width: 460px; margin: 10px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.6; }
.home-feature-card--gold p { color: rgba(23,19,11,.7); }
.home-feature-card--wide .home-feature-visual { position: absolute; right: 28px; top: 30px; width: 42%; height: calc(100% - 60px); }
.home-panel-mini { display: grid; gap: 9px; height: 100%; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: #0c0d0e; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.home-panel-stat { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-radius: 10px; background: #17191b; color: #ddd; font-size: 10px; }
.home-panel-stat b { color: var(--home-green); font-size: 13px; }
.home-panel-bars { display: flex; align-items: end; gap: 7px; min-height: 80px; padding: 12px; border-radius: 10px; background: #17191b; }
.home-panel-bars i { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(to top, #9f7724, var(--home-gold-soft)); }
.home-panel-bars i:nth-child(1) { height: 28%; }.home-panel-bars i:nth-child(2) { height: 55%; }.home-panel-bars i:nth-child(3) { height: 44%; }.home-panel-bars i:nth-child(4) { height: 78%; }.home-panel-bars i:nth-child(5) { height: 64%; }.home-panel-bars i:nth-child(6) { height: 92%; }
.home-payment-row { position: absolute; right: 26px; bottom: 25px; display: flex; gap: 8px; }
.home-payment-row img { width: 48px; height: 30px; object-fit: contain; padding: 5px; border-radius: 7px; background: rgba(255,255,255,.8); }

/* Showcase */
.home-showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.home-showcase-grid .demo-card-v2,
.home-showcase-grid > article {
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--home-line) !important;
    border-radius: 18px !important;
    background: var(--home-surface) !important;
}
.home-demo-fallback { text-decoration: none; color: inherit; transition: transform .2s ease, border-color .2s ease; }
.home-demo-fallback:hover { transform: translateY(-4px); border-color: rgba(224,174,62,.35) !important; }
.home-demo-image { display: block; width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.home-demo-copy { padding: 22px; }
.home-demo-copy span { color: var(--home-gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-demo-copy h3 { margin: 8px 0 0; color: var(--home-text); font-family: "Space Grotesk", sans-serif; font-size: 20px; }
.home-demo-copy p { margin: 8px 0 0; color: var(--home-muted); font-size: 13px; line-height: 1.55; }

/* Pricing */
.home-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.home-price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--home-line); border-radius: var(--home-radius); background: var(--home-surface); }
.home-price-card--featured { border-color: rgba(224,174,62,.72); background: linear-gradient(150deg, rgba(224,174,62,.10), #121416 42%); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.home-plan-tag { align-self: flex-start; margin-bottom: 24px; padding: 6px 9px; border-radius: 6px; color: var(--home-gold-soft); background: rgba(224,174,62,.1); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-price-card h3 { margin: 0; color: var(--home-text); font-family: "Space Grotesk", sans-serif; font-size: 23px; }
.home-price { margin: 18px 0 0; color: #fff; font-family: "Space Grotesk", sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -.055em; }
.home-price small { color: var(--home-muted); font-family: "Inter", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0; }
.home-price-copy { min-height: 48px; margin: 10px 0 0; color: var(--home-muted); font-size: 13px; line-height: 1.55; }
.home-plan-list { display: grid; gap: 13px; margin: 26px 0 30px; padding: 24px 0 0; border-top: 1px solid var(--home-line); list-style: none; }
.home-plan-list li { position: relative; padding-left: 24px; color: #d6d5d1; font-size: 13px; line-height: 1.45; }
.home-plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--home-green); font-weight: 900; }
.home-price-card .home-button { margin-top: auto; }
.home-plan-note { margin: 22px 0 0; color: var(--home-muted); text-align: center; font-size: 12px; }

/* Comparison */
.home-comparison { overflow: hidden; border: 1px solid var(--home-line); border-radius: var(--home-radius); background: var(--home-surface); }
.home-comparison-row { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); border-bottom: 1px solid var(--home-line); }
.home-comparison-row:last-child { border-bottom: 0; }
.home-comparison-row > * { padding: 18px 20px; border-right: 1px solid var(--home-line); }
.home-comparison-row > *:last-child { border-right: 0; }
.home-comparison-row--head { color: #fff; background: rgba(255,255,255,.035); font-size: 12px; font-weight: 800; }
.home-comparison-row--head strong { color: var(--home-gold-soft); }
.home-comparison-row span { color: var(--home-muted); font-size: 13px; }
.home-comparison-row span:first-child { color: #e2e1dd; font-weight: 700; }
.home-comparison-yes { color: var(--home-green) !important; font-weight: 800; }

/* Steps */
.home-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--home-line); }
.home-step { position: relative; padding: 38px 34px 0 0; }
.home-step::after { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--home-gold); box-shadow: 0 0 0 7px rgba(224,174,62,.09); }
.home-step-number { color: var(--home-gold-soft); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.home-step h3 { margin: 22px 0 0; color: var(--home-text); font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.035em; }
.home-step p { margin: 10px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.65; }

/* FAQ + resources */
.home-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.home-faq-list { border-top: 1px solid var(--home-line); }
.home-faq-item { border-bottom: 1px solid var(--home-line); }
.home-faq-item summary { position: relative; padding: 25px 44px 25px 0; color: var(--home-text); font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 650; letter-spacing: -.02em; cursor: pointer; list-style: none; }
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after { content: "+"; position: absolute; top: 21px; right: 5px; color: var(--home-gold-soft); font-size: 25px; font-weight: 400; }
.home-faq-item[open] summary::after { content: "−"; }
.home-faq-item p { max-width: 650px; margin: -5px 0 25px; color: var(--home-muted); font-size: 14px; line-height: 1.7; }
.home-resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.home-resource-card { min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--home-line); border-radius: 15px; color: var(--home-text); background: rgba(255,255,255,.025); text-decoration: none; }
.home-resource-card:hover { border-color: rgba(224,174,62,.35); background: rgba(224,174,62,.045); }
.home-resource-card span { color: var(--home-gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.home-resource-card strong { margin-top: 16px; font-size: 14px; line-height: 1.4; }

/* Final CTA */
.home-final { padding: 42px 0 96px; background: #0b0c0d; }
.home-final-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 44px;
    padding: clamp(38px, 6vw, 72px);
    border: 1px solid rgba(224,174,62,.3);
    border-radius: 30px;
    background: linear-gradient(120deg, #1b1811, #121416 58%);
}
.home-final-card::after { content: ""; position: absolute; right: -120px; top: -190px; width: 420px; height: 420px; border: 1px solid rgba(224,174,62,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(224,174,62,.025), 0 0 0 110px rgba(224,174,62,.018); }
.home-final-copy { position: relative; z-index: 1; }
.home-final-copy h2 { max-width: 720px; margin: 0; color: #fff; font-family: "Space Grotesk", sans-serif; font-size: clamp(34px, 4.5vw, 58px); line-height: 1; letter-spacing: -.055em; }
.home-final-copy p { margin: 16px 0 0; color: var(--home-muted); font-size: 16px; }
.home-final-actions { position: relative; z-index: 1; min-width: 210px; }
.home-final-actions small { display: block; margin-top: 11px; color: var(--home-muted); text-align: center; font-size: 11px; }

@media (max-width: 1000px) {
    .home-hero { min-height: auto; padding-top: 90px; }
    .home-hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .home-hero-copy { max-width: 760px; }
    .home-store-stage { min-height: 570px; width: min(700px, 100%); margin-inline: auto; }
    .home-split, .home-faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .home-sticky-copy { position: static; }
    .home-feature-card { grid-column: span 6; }
    .home-feature-card--wide { grid-column: span 12; }
    .home-pricing-grid { grid-template-columns: 1fr 1fr; }
    .home-price-card:last-child { grid-column: 1 / -1; }
    .home-resource-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .home-shell { width: min(100% - 28px, 1180px); }
    .home-section { padding: 78px 0; }
    .home-section--compact { padding: 58px 0; }
    .home-section-head { display: block; margin-bottom: 34px; }
    .home-section-head .home-text-link { display: inline-block; margin-top: 20px; }
    .home-hero { padding: 74px 0 58px; }
    .home-hero-actions { align-items: stretch; }
    .home-hero-actions .home-button { width: 100%; }
    .home-store-stage { min-height: 480px; }
    .home-store-browser { inset: 10px 5px 35px; transform: none; }
    .home-shop-menu { display: none; }
    .home-shop-hero { min-height: 160px; }
    .home-shop-hero-copy { padding: 24px 18px; }
    .home-shop-hero strong { font-size: 20px; }
    .home-shop-hero img { min-height: 160px; }
    .home-shop-products { padding: 16px; }
    .home-product-grid { gap: 7px; }
    .home-sale-toast { right: 0; }
    .home-owner-badge { left: 0; }
    .home-proof-grid { grid-template-columns: 1fr 1fr; }
    .home-proof-item, .home-proof-item:first-child { padding: 12px 10px; }
    .home-proof-item:nth-child(2) { border-right: 0; }
    .home-proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
    .home-proof-item strong { font-size: 18px; }
    .home-feature-card, .home-feature-card--wide { grid-column: span 12; min-height: 240px; }
    .home-feature-card--wide { padding-bottom: 235px; }
    .home-feature-card--wide .home-feature-visual { top: auto; right: 24px; bottom: 24px; left: 24px; width: auto; height: 190px; }
    .home-payment-row { right: 20px; bottom: 20px; }
    .home-showcase-grid, .home-pricing-grid { grid-template-columns: 1fr; }
    .home-price-card:last-child { grid-column: auto; }
    .home-comparison { overflow-x: auto; }
    .home-comparison-row { min-width: 680px; }
    .home-steps { grid-template-columns: 1fr; border-top: 0; }
    .home-step { padding: 28px 0 28px 34px; border-left: 1px solid var(--home-line); }
    .home-step::after { top: 34px; left: -4px; }
    .home-resource-grid { grid-template-columns: 1fr; }
    .home-resource-card { min-height: 105px; }
    .home-final { padding-top: 24px; }
    .home-final-card { grid-template-columns: 1fr; padding: 38px 26px; }
    .home-final-actions { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .conversion-home *, .conversion-home *::before, .conversion-home *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* ========================================================================== 
   Editorial conversion redesign v6
   A calmer, product-led composition with stronger visual hierarchy.
   ========================================================================== */
.conversion-home {
    --home-canvas: #090a0b;
    --home-surface-2: #121416;
    --home-surface-3: #191b1e;
    --home-cream: #f0ede5;
}
.conversion-home .home-shell { width: min(1280px, calc(100% - 64px)); }
.conversion-home .home-title:not(#home-hero-title) { text-wrap: balance; }
.conversion-home .home-lead { text-wrap: pretty; }

/* Hero: two balanced columns and a framed product visual. */
.home-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: calc(100svh - 72px);
    padding: 88px 0 76px;
    overflow-x: clip;
    overflow-y: visible;
    background:
        radial-gradient(720px 520px at 78% 40%, rgba(224,174,62,.13), transparent 70%),
        linear-gradient(180deg, #0a0b0c 0%, #0b0c0d 100%);
}
.home-hero > .home-shell {
    max-width: 100%;
    box-sizing: border-box;
}
.home-hero::before {
    opacity: .18;
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 92%);
}
.home-hero-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(56px, 6vw, 104px);
    min-height: 620px;
}
.home-hero-copy {
    width: 100%;
    max-width: 570px;
    min-width: 0;
}
.home-hero .home-kicker { margin-bottom: 22px; }
.home-hero .home-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    font-size: clamp(32px, 4.6vw, 68px);
    line-height: 1.02;
    letter-spacing: -.055em;
    text-wrap: unset;
}
.home-hero .home-title-line {
    display: block;
    white-space: nowrap;
}
.home-hero .home-title-line--accent { color: var(--home-gold-soft); }
.home-hero .home-title em { display: inline; font-style: normal; color: inherit; }
.home-hero .home-lead {
    width: 100%;
    max-width: 535px;
    margin-top: 28px;
    color: #b9bab6;
    font-size: 18px;
    line-height: 1.72;
}
.home-hero-actions { margin-top: 34px; gap: 12px; }
.home-play-icon {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    font-size: 8px;
}
.home-hero-note { margin-top: 20px; }
.home-store-stage {
    min-height: 610px;
    display: grid;
    align-content: center;
    padding: 58px 0 46px;
    perspective: none;
}
.home-stage-glow {
    position: absolute;
    inset: 8% -8% 2% 3%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,174,62,.18), rgba(224,174,62,.045) 48%, transparent 72%);
    filter: blur(20px);
}
.home-stage-heading {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 38px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 11px 11px 0 0;
    color: #d7d7d3;
    background: rgba(18,20,22,.92);
    font-size: 10px;
    letter-spacing: .02em;
    backdrop-filter: blur(18px);
}
.home-stage-heading strong { font-size: 11px; }
.home-stage-heading > span:last-child { margin-left: auto; color: #8f918c; }
.home-stage-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7a5;
    box-shadow: 0 0 0 4px rgba(110,231,165,.08);
}
.home-store-browser {
    inset: 54px 0 30px 24px;
    z-index: 2;
    border-radius: 0 0 20px 20px;
    transform: translate(var(--hero-depth-x), var(--hero-depth-y));
    box-shadow: 0 42px 100px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.04);
}
.home-store-stage:hover .home-store-browser {
    box-shadow: 0 48px 110px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.home-shop-hero { min-height: 206px; }
.home-shop-hero img { min-height: 206px; }
.home-shop-hero strong { font-size: 30px; }
.home-sale-toast { right: -22px; bottom: 42px; z-index: 5; }
.home-domain-toast {
    position: absolute;
    z-index: 5;
    left: -16px;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    color: #8f918c;
    background: rgba(18,20,22,.94);
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
    font-size: 11px;
    backdrop-filter: blur(16px);
    animation: homeDomainFloat 5s 1.5s ease-in-out infinite;
}
.home-domain-toast strong { color: #f2f1ed; }
.home-domain-toast i {
    margin-left: 7px;
    padding: 3px 6px;
    border-radius: 30px;
    color: #6ee7a5;
    background: rgba(110,231,165,.1);
    font-size: 8px;
    font-style: normal;
    text-transform: uppercase;
}
@keyframes homeDomainFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes homeBrowserFloat {
    0%,100% { transform: translate(var(--hero-depth-x), var(--hero-depth-y)) translateY(0); }
    50% { transform: translate(var(--hero-depth-x), var(--hero-depth-y)) translateY(-7px); }
}

/* Proof rail */
.home-proof { background: #0b0c0d; }
.home-proof .home-shell { width: min(960px, calc(100% - 40px)); }
.home-proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-proof-item { min-height: 0; display: grid; align-content: center; padding: 14px 14px; }
.home-proof-item:first-child { padding-left: 0; }
.home-proof-item strong { font-size: 22px; }
.home-proof-item span { max-width: 150px; }

/* Product story: real product imagery, layered but contained. */
.home-product-story {
    position: relative;
    padding: 132px 0;
    overflow: hidden;
    background: var(--home-canvas);
}
.home-product-story-head {
    display: grid;
    grid-template-columns: 1fr .72fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 58px;
}
.home-product-story-head .home-lead { margin: 0 0 7px; }
.home-product-canvas {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at 78% 34%, rgba(224,174,62,.15), transparent 34%),
        linear-gradient(145deg, #141618 0%, #0d0f10 64%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 40px 100px rgba(0,0,0,.28);
}
.home-product-canvas::before {
    content: "CONTROL";
    position: absolute;
    right: -30px;
    top: -52px;
    color: rgba(255,255,255,.025);
    font: 800 180px/1 "Space Grotesk", sans-serif;
    letter-spacing: -.08em;
}
.home-product-canvas-copy {
    position: absolute;
    z-index: 4;
    left: 52px;
    top: 62px;
    width: 38%;
}
.home-canvas-label, .home-choice-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(224,174,62,.25);
    border-radius: 999px;
    color: var(--home-gold-soft);
    background: rgba(224,174,62,.06);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.home-product-canvas-copy h3 {
    max-width: 410px;
    margin: 22px 0 0;
    color: #f4f2ed;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.04;
    letter-spacing: -.05em;
}
.home-product-canvas-copy p { max-width: 380px; margin: 20px 0 0; color: #a9aaa6; line-height: 1.65; }
.home-product-canvas-copy ul { display: grid; gap: 10px; margin: 27px 0 0; padding: 0; list-style: none; }
.home-product-canvas-copy li { position: relative; padding-left: 20px; color: #deded9; font-size: 12px; }
.home-product-canvas-copy li::before { content: ""; position: absolute; left: 0; top: 5px; width: 7px; height: 7px; border-radius: 50%; background: #6ee7a5; box-shadow: 0 0 0 4px rgba(110,231,165,.07); }
.home-dashboard-frame {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,.13);
    background: #111;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.home-dashboard-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-dashboard-frame--main { right: 5%; top: 72px; width: 49%; aspect-ratio: 1.25; border-radius: 20px; transform: rotate(1.2deg); }
.home-dashboard-frame--mobile { right: 30%; bottom: -86px; width: 210px; height: 405px; border-radius: 30px; transform: rotate(-4deg); }
.home-dashboard-frame--mobile img { object-position: center; }
.home-live-stat {
    position: absolute;
    z-index: 4;
    right: 4%;
    bottom: 55px;
    width: 185px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    color: #a9aaa6;
    background: rgba(12,14,15,.88);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
}
.home-live-stat span, .home-live-stat small, .home-live-stat strong { display: block; }
.home-live-stat span { font-size: 10px; }
.home-live-stat strong { margin-top: 5px; color: #6ee7a5; font: 700 28px/1 "Space Grotesk", sans-serif; }
.home-live-stat small { margin-top: 5px; font-size: 8px; }

/* Editorial path */
.home-path { padding: 126px 0; background: #0c0d0e; }
.home-path-head { margin-bottom: 56px; }
.home-path-head h2 { max-width: 900px; font-size: clamp(45px, 5vw, 70px); line-height: 1.02; }
.home-path-grid { gap: 1px; overflow: hidden; border: 1px solid var(--home-line); border-radius: 24px; background: var(--home-line); }
.home-path-card,
.home-path-card--featured {
    min-height: 390px;
    padding: 34px;
    border: 0;
    border-radius: 0;
    background: #111315;
}
.home-path-card--featured { color: inherit; background: #151614; }
.home-path-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: transparent; transition: background .3s ease; }
.home-path-card:hover::before { background: var(--home-gold); }
.home-path-card strong { margin-top: 72px; font-size: 29px; }
.home-path-action { margin-top: auto; }

/* Feature bento: more disciplined proportions. */
.home-section { padding-block: 126px; }
.home-section-head { margin-bottom: 58px; }
.home-bento { gap: 14px; }
.home-feature-card { min-height: 310px; padding: 30px; border-radius: 20px; background: #121416; }
.home-feature-card--wide { min-height: 350px; }
.home-feature-card h3 { margin-top: 58px; }
.home-feature-card--gold { background: linear-gradient(145deg, #f3d98e, #ddb65b); }

/* Showcase: six cards always close as a clean grid. */
.home-showcase-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.home-showcase-grid > [data-showcase-stores] { display: contents !important; }
.home-showcase-grid > [data-showcase-stores] > p { display: none !important; }
.home-showcase-grid .demo-card-v2,
.home-showcase-grid > .home-demo-fallback {
    min-height: 430px;
    border-radius: 20px !important;
    background: #121416 !important;
    transition: transform .35s cubic-bezier(.2,.75,.25,1), border-color .35s ease, box-shadow .35s ease;
}
.home-showcase-grid .demo-card-v2:hover,
.home-showcase-grid > .home-demo-fallback:hover { transform: translateY(-7px); border-color: rgba(224,174,62,.35) !important; box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.home-showcase-grid .demo-card-v2 .showcase-logo-panel { min-height: 185px !important; padding: 30px !important; background: #f3f0e9 !important; }
.home-showcase-grid .demo-card-v2 > div:last-child { padding: 22px !important; }
.home-showcase-grid .demo-card-v2 p { display: -webkit-box; overflow: hidden; min-height: 45px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.home-demo-image { aspect-ratio: 1.48; }
.home-demo-copy { min-height: 188px; display: flex; flex-direction: column; padding: 24px; }
.home-demo-copy span { color: #6ee7a5; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-demo-copy h3 { margin: 18px 0 0; color: #f4f2ed; font-family: "Space Grotesk", sans-serif; font-size: 24px; letter-spacing: -.03em; }
.home-demo-copy p { margin: 8px 0 0; color: #969894; font-size: 13px; line-height: 1.55; }

/* Two clear paths replace the recommendation questionnaire. */
.home-choice { padding: 138px 0; background: #0e0f10; }
.home-choice-head { max-width: 820px; margin-bottom: 58px; }
.home-choice-head h2 { margin: 15px 0 0; color: #f4f2ed; font: 700 clamp(50px, 5.6vw, 76px)/.98 "Space Grotesk", sans-serif; letter-spacing: -.055em; }
.home-choice-head h2 em { color: var(--home-gold-soft); font-style: normal; }
.home-choice-head > p:last-child { max-width: 660px; margin: 22px 0 0; color: #a7a8a4; font-size: 17px; line-height: 1.65; }
.home-choice-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 16px; }
.home-choice-card { position: relative; min-height: 590px; overflow: hidden; padding: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; }
.home-choice-card--self { background: linear-gradient(145deg, #16181a 0%, #101214 75%); }
.home-choice-card--team { color: #17130c; background: linear-gradient(145deg, #f3d98e 0%, #dcb45a 100%); border-color: transparent; }
.home-choice-number { position: absolute; top: 32px; right: 34px; color: rgba(255,255,255,.14); font: 700 48px/1 "Space Grotesk", sans-serif; letter-spacing: -.06em; }
.home-choice-card--team .home-choice-number { color: rgba(23,19,12,.16); }
.home-choice-content { position: relative; z-index: 3; max-width: 430px; }
.home-choice-content h3 { margin: 24px 0 0; color: #f4f2ed; font: 700 clamp(34px, 3.1vw, 45px)/1.03 "Space Grotesk", sans-serif; letter-spacing: -.05em; }
.home-choice-card--team .home-choice-content h3 { color: #17130c; }
.home-choice-card--team .home-choice-tag { color: #17130c; border-color: rgba(23,19,12,.22); background: rgba(255,255,255,.18); }
.home-choice-content p { max-width: 390px; margin: 18px 0 0; color: #a7a8a4; line-height: 1.65; }
.home-choice-card--team .home-choice-content p { color: rgba(23,19,12,.7); }
.home-choice-content ul { display: grid; gap: 9px; margin: 26px 0 30px; padding: 0; list-style: none; }
.home-choice-content li { position: relative; padding-left: 20px; color: #d6d7d3; font-size: 12px; }
.home-choice-content li::before { content: "✓"; position: absolute; left: 0; color: #6ee7a5; font-weight: 900; }
.home-choice-card--team .home-choice-content li { color: rgba(23,19,12,.78); }
.home-choice-card--team .home-choice-content li::before { color: #17130c; }
.home-button--light { color: #f4f2ed; background: #17130c; }
.home-button--light:hover { color: #fff; background: #050505; }
.home-choice-visual--store { position: absolute; right: -40px; bottom: -52px; width: 48%; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px 20px 0 0; background: #f0ede5; box-shadow: 0 28px 70px rgba(0,0,0,.45); transform: rotate(-2deg); }
.home-choice-browserbar { height: 28px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #ddd9d0; }
.home-choice-browserbar i { width: 6px; height: 6px; border-radius: 50%; background: #bbb5aa; }
.home-choice-visual img { display: block; width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.home-choice-visual > span { display: block; padding: 15px; color: #1a1917; font: 700 12px "Space Grotesk", sans-serif; }
.home-choice-team-mark { position: absolute; right: -30px; bottom: -36px; display: flex; flex-direction: column; align-items: center; color: rgba(23,19,12,.1); transform: rotate(-8deg); }
.home-choice-team-mark span { font: 800 230px/.75 "Space Grotesk", sans-serif; letter-spacing: -.12em; }
.home-choice-team-mark small { font: 700 38px/1 "Space Grotesk", sans-serif; letter-spacing: .12em; }

/* Pricing: no floating recommendation badge. */
.home-pricing-grid { align-items: stretch; gap: 14px; }
.home-price-card,
.home-price-card--featured { min-height: 580px; padding: 32px; border-radius: 20px; transform: none; }
.home-price-card--featured { border-color: rgba(224,174,62,.5); background: linear-gradient(180deg, rgba(224,174,62,.08), #121416 45%); box-shadow: none; }
.home-price-card--featured::before { display: none; content: none; }
.home-plan-tag { position: static; display: inline-flex; width: max-content; margin-bottom: 24px; }

@media (max-width: 1100px) {
    .home-hero-grid { grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 42px; }
    .home-product-canvas-copy { width: 35%; }
    .home-dashboard-frame--main { width: 52%; }
    .home-dashboard-frame--mobile { right: 28%; }
}

@media (max-width: 900px) {
    .conversion-home .home-shell { width: min(100% - 40px, 760px); }
    .home-hero { min-height: auto; padding: 82px 0 90px; }
    .home-hero-grid { grid-template-columns: minmax(0, 1fr); min-height: 0; gap: 56px; }
    .home-hero-copy {
        width: 100%;
        max-width: none;
        text-align: center;
        margin-inline: auto;
    }
    .home-hero .home-kicker {
        max-width: 100%;
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
    }
    .home-hero .home-title {
        align-items: center;
        font-size: clamp(30px, 7.4vw, 56px);
    }
    .home-hero .home-lead {
        width: 100%;
        max-width: 36em;
        margin-inline: auto;
    }
    .home-hero-actions, .home-hero-note { justify-content: center; }
    .home-store-stage { width: min(100%, 680px); min-height: 585px; margin-inline: auto; min-width: 0; }
    .home-proof-grid { grid-template-columns: repeat(2, 1fr); }
    .home-proof-item:nth-child(2) { border-right: 0; }
    .home-proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
    .home-product-story-head { grid-template-columns: 1fr; gap: 20px; }
    .home-product-canvas { min-height: 780px; }
    .home-product-canvas-copy { position: relative; left: auto; top: auto; width: auto; padding: 46px; }
    .home-dashboard-frame--main { top: 390px; left: 5%; right: auto; width: 65%; }
    .home-dashboard-frame--mobile { right: 5%; bottom: -70px; }
    .home-live-stat { left: 8%; right: auto; bottom: 35px; }
    .home-path-grid, .home-choice-grid { grid-template-columns: 1fr; }
    .home-path-card { min-height: 330px; }
    .home-choice-card { min-height: 540px; }
    .home-showcase-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px) {
    .conversion-home .home-shell { width: min(100% - 28px, 560px); }
    .home-hero { padding: 64px 0 70px; }
    .home-hero .home-title { font-size: clamp(26px, 8.2vw, 40px); line-height: 1.08; }
    .home-hero .home-title-line { white-space: nowrap; }
    .home-hero .home-kicker {
        justify-content: center;
        padding-inline: 0;
        line-height: 1.45;
        letter-spacing: .12em;
        font-size: 11px;
    }
    .home-hero .home-kicker::before { display: none; }
    .home-hero .home-lead {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.62;
        max-width: none;
    }
    .home-hero-actions { display: grid; width: 100%; }
    .home-hero-actions .home-button { width: 100%; }
    .home-hero-note { gap: 8px 12px; font-size: 11px; }
    .home-store-stage { min-height: 410px; padding: 42px 0 24px; }
    .home-stage-heading { top: 7px; left: 10px; right: 10px; height: 34px; }
    .home-stage-heading > span:last-child { display: none; }
    .home-store-browser { inset: 40px 4px 18px 4px; border-radius: 0 0 14px 14px; }
    .home-browser-bar { height: 30px; }
    .home-shop-nav { padding: 11px 13px; }
    .home-shop-menu { gap: 8px; font-size: 6px; }
    .home-shop-hero { min-height: 130px; }
    .home-shop-hero img { min-height: 130px; }
    .home-shop-hero-copy { padding: 18px 15px; }
    .home-shop-hero strong { font-size: 19px; }
    .home-shop-hero a { margin-top: 10px; }
    .home-shop-products { padding: 12px 13px 15px; }
    .home-shop-products-head { margin-bottom: 8px; }
    .home-product-card b { font-size: 7px; }
    .home-sale-toast { right: 0; bottom: -15px; min-width: 184px; padding: 10px; }
    .home-domain-toast { display: none; }
    .home-proof-item { min-height: 0; padding: 12px 10px; }
    .home-proof-item:first-child { padding-left: 10px; }
    .home-proof-item strong { font-size: 18px; }
    .home-proof-item span { font-size: 10px; max-width: none; }
    .home-product-story, .home-path, .home-section, .home-choice { padding-block: 88px; }
    .home-product-story-head { margin-bottom: 35px; }
    .home-product-canvas { min-height: 740px; border-radius: 21px; }
    .home-product-canvas::before { font-size: 90px; }
    .home-product-canvas-copy { padding: 30px 24px; }
    .home-product-canvas-copy h3 { font-size: 34px; }
    .home-dashboard-frame--main { top: 420px; left: 18px; width: calc(100% - 36px); aspect-ratio: 1.2; border-radius: 14px; }
    .home-dashboard-frame--mobile { display: none; }
    .home-live-stat { left: 32px; bottom: 22px; }
    .home-path-head h2, .home-choice-head h2 { font-size: 42px; }
    .home-path-grid { border-radius: 18px; }
    .home-path-card { min-height: 340px; padding: 26px; }
    .home-path-card strong { margin-top: 54px; font-size: 26px; }
    .home-choice-card { min-height: 570px; padding: 28px 24px; border-radius: 20px; }
    .home-choice-content h3 { font-size: 35px; }
    .home-choice-visual--store { right: -20px; width: 55%; }
    .home-choice-team-mark span { font-size: 170px; }
    .home-showcase-grid { grid-template-columns: 1fr; }
    .home-showcase-grid .demo-card-v2,
    .home-showcase-grid > .home-demo-fallback { min-height: 0; }
    .home-demo-copy { min-height: 150px; }
    .home-price-card, .home-price-card--featured { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .home-domain-toast { animation: none !important; }
}

/* Conversion path: three distinct entry points instead of a generic feature wall. */
.home-path {
    position: relative;
    padding: 76px 0 88px;
    border-bottom: 1px solid var(--home-line);
    background: #0f1011;
}
.home-path-head {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 34px;
}
.home-path-head .home-kicker { margin-bottom: 6px; }
.home-path-head h2 {
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.045em;
}
.home-path-head h2 span { color: var(--home-gold-soft); }
.home-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--home-line);
}
.home-path-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--home-line);
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
}
.home-path-card:last-child { border-right: 0; }
.home-path-card:hover { color: #fff; background: rgba(255,255,255,.04); transform: translateY(-4px); }
.home-path-card--featured {
    background:
        linear-gradient(145deg, rgba(224,174,62,.18), rgba(224,174,62,.035)),
        #151516;
}
.home-path-index { color: #6f706f; font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 800; }
.home-path-label {
    align-self: flex-start;
    margin-top: 42px;
    padding: 6px 9px;
    border: 1px solid rgba(224,174,62,.28);
    border-radius: 100px;
    color: var(--home-gold-soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.home-path-card strong {
    display: block;
    margin-top: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.035em;
}
.home-path-card p { margin: 12px 0 24px; color: var(--home-muted); font-size: 13px; line-height: 1.65; }
.home-path-action { margin-top: auto; color: #fff; font-size: 12px; font-weight: 800; }

/* Richer section identities while keeping the original black/gold brand. */
.home-section[aria-labelledby="libertad-title"] {
    background:
        linear-gradient(90deg, rgba(224,174,62,.025) 1px, transparent 1px),
        #0b0c0d;
    background-size: 80px 80px;
}
.home-section[aria-labelledby="libertad-title"] .home-benefit {
    transition: padding-left .2s ease, background .2s ease;
}
.home-section[aria-labelledby="libertad-title"] .home-benefit:hover {
    padding-left: 18px;
    background: linear-gradient(90deg, rgba(224,174,62,.045), transparent);
}
.home-section[aria-labelledby="features-title"]::before {
    content: "PRODUCTO";
    position: absolute;
    top: 54px;
    right: 3vw;
    color: rgba(255,255,255,.025);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(70px, 12vw, 180px);
    font-weight: 800;
    letter-spacing: -.07em;
    pointer-events: none;
}
.home-feature-card { isolation: isolate; }
.home-feature-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 170px;
    height: 170px;
    right: -90px;
    bottom: -100px;
    border: 1px solid rgba(224,174,62,.15);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(224,174,62,.018), 0 0 0 58px rgba(224,174,62,.012);
}
.home-feature-card--gold::after { border-color: rgba(0,0,0,.12); box-shadow: 0 0 0 28px rgba(0,0,0,.025), 0 0 0 58px rgba(0,0,0,.018); }
.home-price-card--featured::before {
    content: "RECOMENDADO";
    position: absolute;
    top: 22px;
    right: -34px;
    padding: 7px 44px;
    color: #16130c;
    background: var(--home-gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
    transform: rotate(45deg);
}

/* Self-service vs done-for-you: a dedicated conversion decision. */
.home-mode {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    border-block: 1px solid var(--home-line);
    background:
        radial-gradient(circle at 18% 10%, rgba(224,174,62,.08), transparent 24%),
        #101112;
}
.home-mode::after {
    content: "02";
    position: absolute;
    right: -30px;
    bottom: -100px;
    color: rgba(255,255,255,.025);
    font-family: "Space Grotesk", sans-serif;
    font-size: 330px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}
.home-mode-head {
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 48px;
}
.home-mode-head h2 {
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.055em;
}
.home-mode-head h2 em { color: var(--home-gold-soft); font-style: normal; }
.home-mode-head > p { margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.7; }
.home-mode-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.home-mode-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: clamp(30px, 4vw, 50px);
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    background: #151719;
}
.home-mode-card--service {
    border-color: rgba(224,174,62,.5);
    background: linear-gradient(150deg, rgba(224,174,62,.13), #151719 45%);
}
.home-mode-tag { color: var(--home-gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-mode-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-top: 54px;
    border: 1px solid rgba(224,174,62,.25);
    border-radius: 50%;
    color: var(--home-gold-soft);
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 800;
}
.home-mode-card h3 {
    margin: 24px 0 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    letter-spacing: -.04em;
}
.home-mode-card p { margin: 13px 0 0; color: var(--home-muted); font-size: 14px; line-height: 1.65; }
.home-mode-card ul { display: grid; gap: 10px; margin: 28px 0 34px; padding: 22px 0 0; border-top: 1px solid var(--home-line); list-style: none; }
.home-mode-card li { position: relative; padding-left: 22px; color: #d6d5d1; font-size: 13px; }
.home-mode-card li::before { content: "✓"; position: absolute; left: 0; color: var(--home-green); font-weight: 900; }
.home-mode-card .home-button { align-self: flex-start; margin-top: auto; }

@media (max-width: 900px) {
    .home-path-head, .home-mode-head { grid-template-columns: 1fr; gap: 22px; }
    .home-path-grid { grid-template-columns: 1fr; }
    .home-path-card { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--home-line); }
    .home-path-card:last-child { border-bottom: 0; }
    .home-mode-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .home-path { padding: 60px 0 68px; }
    .home-path-card { padding: 26px 18px; }
    .home-path-label { margin-top: 28px; }
    .home-mode { padding: 76px 0; }
    .home-mode-card { min-height: 450px; }
    .home-mode-card .home-button { width: 100%; }
}

/* Plan finder: personalized intent capture without requesting personal data. */
.home-plan-finder {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    border-block: 1px solid rgba(224,174,62,.14);
    background:
        radial-gradient(circle at 88% 18%, rgba(224,174,62,.1), transparent 25%),
        #0d0e0f;
}
.home-plan-finder::before {
    content: "?";
    position: absolute;
    top: -170px;
    right: -30px;
    color: rgba(255,255,255,.018);
    font-family: "Space Grotesk", sans-serif;
    font-size: 620px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}
.home-finder-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 46px;
}
.home-finder-head h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.055em;
}
.home-finder-head h2 em { color: var(--home-gold-soft); font-style: normal; }
.home-finder-head > p { margin: 0; color: var(--home-muted); font-size: 15px; line-height: 1.7; }
.home-finder {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: stretch;
}
.home-finder-questions {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius);
    background: #131516;
}
.home-finder-question {
    min-width: 0;
    margin: 0;
    padding: 20px;
    border: 0;
    border-bottom: 1px solid var(--home-line);
}
.home-finder-question:last-of-type { border-bottom: 0; }
.home-finder-question legend {
    width: 100%;
    margin-bottom: 16px;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
    font-weight: 650;
}
.home-finder-question legend span { margin-right: 10px; color: var(--home-gold); font-size: 10px; letter-spacing: .1em; }
.home-finder-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.home-finder-options--two { grid-template-columns: repeat(2, 1fr); }
.home-finder-options label { position: relative; cursor: pointer; }
.home-finder-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.home-finder-options label > span {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 11px;
    background: rgba(255,255,255,.025);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.home-finder-options label:hover > span { border-color: rgba(224,174,62,.3); transform: translateY(-2px); }
.home-finder-options input:checked + span {
    border-color: var(--home-gold);
    background: rgba(224,174,62,.09);
    box-shadow: inset 0 0 0 1px rgba(224,174,62,.18);
}
.home-finder-options input:focus-visible + span { outline: 2px solid var(--home-gold-soft); outline-offset: 3px; }
.home-finder-options b { color: #ecebe7; font-size: 12px; }
.home-finder-options small { margin-top: 4px; color: #838580; font-size: 10px; line-height: 1.35; }
.home-finder-options input:checked + span b { color: var(--home-gold-soft); }
.home-finder-submit { justify-self: start; margin: 4px 20px 10px; cursor: pointer; }

.home-finder-result {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: clamp(30px,4vw,46px);
    border: 1px solid rgba(224,174,62,.52);
    border-radius: var(--home-radius);
    background:
        linear-gradient(145deg, rgba(224,174,62,.16), rgba(224,174,62,.025) 48%),
        #161719;
    box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.home-finder-result::after {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(224,174,62,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(224,174,62,.025), 0 0 0 90px rgba(224,174,62,.015);
}
.home-finder-result-label { position: relative; z-index: 1; color: var(--home-gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.home-finder-result-icon {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-top: 38px;
    border-radius: 50%;
    color: #16130c;
    background: var(--home-gold);
    font-size: 20px;
}
.home-finder-result h3 {
    position: relative;
    z-index: 1;
    margin: 24px 0 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -.045em;
}
.home-finder-result-price {
    position: relative;
    z-index: 1;
    margin: 15px 0 0;
    color: var(--home-gold-soft);
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.035em;
}
.home-finder-result-price small { color: var(--home-muted); font-family: "Inter", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0; }
.home-finder-result > p:not(.home-finder-result-price) { position: relative; z-index: 1; margin: 14px 0 0; color: #b3b4af; font-size: 13px; line-height: 1.65; }
.home-finder-result ul { position: relative; z-index: 1; display: grid; gap: 9px; margin: 24px 0 30px; padding: 20px 0 0; border-top: 1px solid var(--home-line); list-style: none; }
.home-finder-result li { position: relative; padding-left: 22px; color: #dddcd7; font-size: 12px; }
.home-finder-result li::before { content: "✓"; position: absolute; left: 0; color: var(--home-green); font-weight: 900; }
.home-finder-result .home-button { position: relative; z-index: 1; margin-top: auto; }
.home-finder-privacy { position: relative; z-index: 1; display: block; margin-top: 10px; color: #747671; text-align: center; font-size: 9px; }
.home-finder-result.is-updated { animation: homeFinderPulse .45s ease; }
@keyframes homeFinderPulse { 0% { transform: scale(.985); } 100% { transform: scale(1); } }
.home-sticky-wa-icon { width: 16px; height: 16px; flex: 0 0 auto; }

/* Mobile conversion controls: one clean sticky action, no competing popups. */
@media (max-width: 900px) {
    .home-finder-head, .home-finder { grid-template-columns: 1fr; }
    .home-finder-head { gap: 18px; }
}

@media (max-width: 760px) {
    .home-plan-finder { padding: 76px 0; }
    .home-finder-head { margin-bottom: 28px; }
    .home-finder-head h2 { font-size: clamp(36px, 11vw, 48px); }
    .home-finder-questions { padding: 10px; }
    .home-finder-question { padding: 18px 10px; }
    .home-finder-options,
    .home-finder-options--two { grid-template-columns: 1fr; }
    .home-finder-options label > span { min-height: 64px; }
    .home-finder-submit { width: calc(100% - 20px); margin: 4px 10px 10px; }
    .home-finder-result { min-height: 480px; }

    .sticky-cta-bar { padding: 8px 0; }
    .sticky-cta-inner { padding: 0 10px; }
    .sticky-cta-text { display: none; }
    .sticky-cta-buttons { width: 100%; gap: 8px; }
    .sticky-cta-buttons .btn-primary {
        flex: 1;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
    }
    .sticky-cta-buttons .btn-whatsapp {
        width: 48px;
        min-width: 48px;
        height: 48px;
        display: inline-grid;
        place-items: center;
        padding: 0;
        border-radius: 11px;
        flex: 0 0 48px;
    }
    .sticky-cta-buttons .btn-whatsapp span { display: none; }
    .sticky-cta-buttons .home-sticky-wa-icon { width: 21px; height: 21px; margin: 0; }
    .whatsapp-btn,
    .social-proof-popup { display: none !important; }
    .footer { padding-bottom: 95px; }

    .home-hero { min-height: auto; }
    .home-store-stage { min-height: 420px; }
    .home-sale-toast { min-width: 200px; }
}

/* ==========================================================================
   Motion system — restores the original landing's depth and scroll rhythm.
   Scoped to the redesigned home so shared pages remain untouched.
   ========================================================================== */
.home-hero-copy .home-kicker,
.home-hero-copy .home-title,
.home-hero-copy .home-lead,
.home-hero-copy .home-hero-actions,
.home-hero-copy .home-hero-note {
    opacity: 0;
    animation: homeHeroRise .78s cubic-bezier(.2,.75,.25,1) forwards;
}
.home-hero-copy .home-kicker { animation-delay: .08s; }
.home-hero-copy .home-title { animation-delay: .16s; }
.home-hero-copy .home-lead { animation-delay: .26s; }
.home-hero-copy .home-hero-actions { animation-delay: .36s; }
.home-hero-copy .home-hero-note { animation-delay: .46s; }
.home-store-stage {
    --hero-depth-x: 0px;
    --hero-depth-y: 0px;
    opacity: 0;
    animation: homeHeroVisualIn 1s .22s cubic-bezier(.18,.8,.22,1) forwards;
}
.home-store-browser {
    transform: translate(var(--hero-depth-x), var(--hero-depth-y)) rotateY(-4deg) rotateX(1deg);
    animation: homeBrowserFloat 7s 1.35s ease-in-out infinite;
    transition: transform .32s ease-out, box-shadow .32s ease;
}
.home-store-stage:hover .home-store-browser {
    box-shadow: 0 44px 105px rgba(0,0,0,.54), 0 0 0 8px rgba(255,255,255,.035);
}
.home-sale-toast { animation: homeToastFloat 4.5s 1.2s ease-in-out infinite; }
.home-owner-badge { animation: homeBadgeGlow 3.8s 1.1s ease-in-out infinite; }
.home-proof-item {
    opacity: 0;
    animation: homeProofIn .62s cubic-bezier(.2,.75,.25,1) forwards;
}
.home-proof-item:nth-child(1) { animation-delay: .55s; }
.home-proof-item:nth-child(2) { animation-delay: .64s; }
.home-proof-item:nth-child(3) { animation-delay: .73s; }
.home-proof-item:nth-child(4) { animation-delay: .82s; }

@keyframes homeHeroRise {
    from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(4px); }
    to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@keyframes homeHeroVisualIn {
    from { opacity: 0; transform: translate3d(48px, 14px, 0) scale(.96); filter: blur(6px); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}
@keyframes homeBrowserFloat {
    0%, 100% { transform: translate(var(--hero-depth-x), var(--hero-depth-y)) rotateY(-4deg) rotateX(1deg) translateY(0); }
    50% { transform: translate(var(--hero-depth-x), var(--hero-depth-y)) rotateY(-3deg) rotateX(.5deg) translateY(-9px); }
}
@keyframes homeToastFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes homeBadgeGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,.28), 0 0 0 0 rgba(224,174,62,0); }
    50% { box-shadow: 0 10px 30px rgba(0,0,0,.28), 0 0 0 7px rgba(224,174,62,.07); }
}
@keyframes homeProofIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-reveal {
    opacity: 0;
    filter: blur(3px);
    transition:
        opacity .72s cubic-bezier(.2,.75,.25,1),
        transform .72s cubic-bezier(.2,.75,.25,1),
        filter .72s ease;
    transition-delay: var(--home-reveal-delay, 0ms);
    will-change: opacity, transform;
}
.home-reveal--up { transform: translate3d(0, 46px, 0); }
.home-reveal--left { transform: translate3d(-52px, 0, 0); }
.home-reveal--right { transform: translate3d(52px, 0, 0); }
.home-reveal--scale { transform: scale(.92); }
.home-reveal--fade { transform: none; }
.home-reveal.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) scale(1);
}

.home-steps { position: relative; }
.home-steps::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--home-gold), var(--home-gold-soft), transparent);
    transition: width 1.4s .2s cubic-bezier(.2,.75,.25,1);
}
.home-steps.is-inview::after { width: 100%; }

.home-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.home-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -80%;
    left: -45%;
    width: 28%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transform: rotate(18deg);
    transition: left .65s ease;
}
.home-button:hover::after { left: 125%; }

.home-path-card.home-reveal.is-inview:hover,
.home-feature-card.home-reveal.is-inview:hover,
.home-price-card.home-reveal.is-inview:hover,
.home-mode-card.home-reveal.is-inview:hover,
.home-resource-card.home-reveal.is-inview:hover {
    transform: translateY(-7px) scale(1.008);
}
.home-feature-card,
.home-price-card,
.home-mode-card {
    transition: transform .35s cubic-bezier(.2,.75,.25,1), border-color .35s ease, box-shadow .35s ease;
}
.home-feature-card:hover,
.home-mode-card:hover {
    border-color: rgba(224,174,62,.34);
    box-shadow: 0 24px 58px rgba(0,0,0,.2);
}
.home-price-card:hover { box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.home-finder-options input:checked + span {
    animation: homeOptionSelect .32s cubic-bezier(.2,.75,.25,1);
}
@keyframes homeOptionSelect {
    0% { transform: scale(.97); }
    100% { transform: scale(1); }
}

@media (max-width: 760px) {
    .conversion-home section[id],
    .conversion-home h2[id] { scroll-margin-top: 78px; }
    .home-reveal {
        filter: none;
        transition-duration: .55s;
    }
    .home-reveal--up { transform: translate3d(0, 24px, 0); }
    .home-reveal--left,
    .home-reveal--right { transform: translate3d(0, 24px, 0); }
    .home-reveal--scale { transform: scale(.96); }
    .home-store-browser { animation-duration: 8.5s; }
    .home-steps::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-copy .home-kicker,
    .home-hero-copy .home-title,
    .home-hero-copy .home-lead,
    .home-hero-copy .home-hero-actions,
    .home-hero-copy .home-hero-note,
    .home-store-stage,
    .home-store-browser,
    .home-sale-toast,
    .home-owner-badge,
    .home-proof-item {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        animation: none !important;
    }
    .home-reveal {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}
