:root {
    --orange: #ff5722;
    --orange-dark: #d94718;
    --navy: #2d3047;
    --navy-dark: #17192a;
    --ink: #242536;
    --muted: #626477;
    --surface: #ffffff;
    --surface-soft: #fff7f2;
    --border: rgba(45, 48, 71, 0.12);
    --success: #247a52;
    --shadow: 0 24px 70px rgba(45, 48, 71, 0.1);
    --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy-dark);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(45, 48, 71, 0.07);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    color: var(--navy);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.brand span {
    color: var(--orange);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 0.94rem;
    font-weight: 800;
}

.site-nav > a:not(.button):hover,
.site-footer__links a:hover {
    color: var(--orange-dark);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 32px rgba(255, 87, 34, 0.24);
}

.button--secondary {
    color: var(--navy);
    border-color: var(--border);
    background: #fff;
    box-shadow: 0 10px 24px rgba(45, 48, 71, 0.07);
}

.button--light {
    color: var(--navy-dark);
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.button--small {
    min-height: 44px;
    padding: 10px 18px;
}

.hero {
    overflow: hidden;
    padding: 68px 0 54px;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 87, 34, 0.15), transparent 28%),
        radial-gradient(circle at 92% 30%, rgba(45, 48, 71, 0.09), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
    gap: 58px;
    align-items: center;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.11);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #ffe1d5;
    background: rgba(255, 255, 255, 0.1);
}

.hero h1,
.section-heading h2,
.split-layout h2,
.audience-layout h2,
.final-cta h2 {
    margin: 0;
    color: var(--navy-dark);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero h1 {
    max-width: 770px;
    font-size: clamp(2.8rem, 6vw, 5.35rem);
}

.hero h1 span {
    color: var(--orange-dark);
}

.hero__lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    list-style: none;
}

.hero__proof li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__proof li::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    content: '';
}

.hero__visual {
    position: relative;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(45, 48, 71, 0.09);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.hero__visual img {
    width: 100%;
    max-height: 600px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center 31%;
}

.hero__visual figcaption {
    position: absolute;
    right: 36px;
    bottom: 36px;
    left: 36px;
    padding: 13px 16px;
    border-radius: 15px;
    color: #fff;
    background: rgba(23, 25, 42, 0.9);
    font-size: 0.9rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.channel-strip {
    padding: 24px 0;
    color: #fff;
    background: var(--navy-dark);
}

.channel-strip__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.12fr;
    gap: 24px;
    align-items: center;
}

.channel-strip__grid > div {
    min-width: 0;
}

.channel-strip__number {
    display: block;
    margin-bottom: 2px;
    color: #ffb69d;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.channel-strip strong {
    font-size: 1.08rem;
}

.channel-strip p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.channel-strip__connector {
    color: var(--orange);
    font-size: 1.7rem;
    font-weight: 900;
}

.channel-strip__result {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.07);
}

.section {
    padding: 96px 0;
}

.section--soft {
    background: var(--surface-soft);
}

.section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 15% 5%, rgba(255, 87, 34, 0.18), transparent 28%),
        var(--navy-dark);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 36px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    margin-inline: auto;
}

.section-heading h2,
.split-layout h2,
.audience-layout h2,
.final-cta h2 {
    font-size: clamp(2.15rem, 4.7vw, 3.65rem);
}

.section-heading > p:last-child,
.split-layout__content > p,
.audience-layout > div > p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(45, 48, 71, 0.06);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.11);
}

.icon-box svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.benefit-card h3 {
    margin: 20px 0 8px;
    color: var(--navy-dark);
    font-size: 1.2rem;
    line-height: 1.2;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: center;
}

.split-layout__visual {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.split-layout__visual img {
    width: 100%;
    max-height: 660px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center 36%;
}

.split-layout h2,
.final-cta h2 {
    color: #fff;
}

.split-layout__content > p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-list {
    display: grid;
    gap: 20px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
}

.feature-list li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 5px solid var(--orange);
    border-radius: 50%;
    content: '';
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    font-size: 1.05rem;
}

.feature-list span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.68);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
}

.steps__number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--navy-dark);
    font-weight: 900;
}

.steps h3 {
    margin: 2px 0 7px;
    color: var(--navy-dark);
    font-size: 1.15rem;
}

.steps p {
    margin: 0;
    color: var(--muted);
}

.domain-section {
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 87, 34, 0.1), transparent 34%),
        #fff;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 940px;
    margin: 44px auto 0;
}

.domain-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(45, 48, 71, 0.07);
}

.domain-card--featured {
    border-color: rgba(255, 87, 34, 0.42);
    background: linear-gradient(145deg, rgba(255, 87, 34, 0.07), #fff 48%);
}

.domain-card__label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.11);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.domain-card h3 {
    margin: 20px 0 10px;
    color: var(--navy-dark);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.domain-card > p:not(.domain-example) {
    margin: 0;
    color: var(--muted);
}

.domain-example,
.domain-examples {
    margin: 24px 0 0;
    padding: 15px 17px;
    border: 1px solid rgba(45, 48, 71, 0.1);
    border-radius: 15px;
    color: var(--navy-dark);
    background: var(--surface-soft);
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: clamp(0.84rem, 1.7vw, 0.96rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.domain-examples {
    display: grid;
    gap: 8px;
    list-style: none;
}

.domain-note {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    text-align: center;
}

.agentic-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(45, 48, 71, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 48, 71, 0.035) 1px, transparent 1px),
        linear-gradient(145deg, #f7f5ff, #fff 58%, #fff7f2);
    background-size: 34px 34px, 34px 34px, auto;
}

.agentic-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 72px;
    align-items: center;
}

.agentic-copy h2 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(2.15rem, 4.7vw, 3.65rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.agentic-copy__lead {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.agentic-benefits {
    display: grid;
    gap: 19px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.agentic-benefits li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}

.agentic-benefits__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 87, 34, 0.18);
    border-radius: 14px;
    color: var(--orange-dark);
    background: #fff;
    box-shadow: 0 8px 20px rgba(45, 48, 71, 0.06);
}

.agentic-benefits__icon svg,
.agentic-product__visual svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.agentic-benefits strong,
.agentic-benefits span {
    display: block;
}

.agentic-benefits strong {
    color: var(--navy-dark);
    font-size: 1.04rem;
}

.agentic-benefits li div span {
    margin-top: 3px;
    color: var(--muted);
}

.agentic-availability {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.agentic-preview {
    position: relative;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(45, 48, 71, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.agentic-preview::before {
    position: absolute;
    inset: -22px -22px auto auto;
    z-index: -1;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.14);
    filter: blur(12px);
    content: '';
}

.agentic-preview__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 2px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--navy-dark);
    font-size: 0.9rem;
}

.agentic-preview__header > span:last-child {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.agentic-preview__status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(36, 122, 82, 0.1);
}

.agentic-message {
    max-width: 88%;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: 19px;
}

.agentic-message > span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agentic-message p {
    margin: 5px 0 0;
}

.agentic-message--customer {
    margin-left: auto;
    color: #fff;
    background: var(--navy-dark);
}

.agentic-message--customer > span {
    color: rgba(255, 255, 255, 0.68);
}

.agentic-message--assistant {
    border: 1px solid rgba(255, 87, 34, 0.16);
    background: var(--surface-soft);
}

.agentic-product {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    margin-top: 14px;
    padding: 13px;
    border: 1px solid rgba(45, 48, 71, 0.1);
    border-radius: 15px;
    background: #fff;
}

.agentic-product__visual {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.1);
}

.agentic-product strong,
.agentic-product span,
.agentic-product small {
    display: block;
}

.agentic-product strong {
    color: var(--navy-dark);
}

.agentic-product span {
    color: var(--success);
    font-weight: 900;
}

.agentic-product small {
    margin-top: 2px;
    color: var(--muted);
}

.agentic-preview__note {
    margin: 16px 2px 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 70px;
    align-items: center;
}

.audience-layout figure {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 87, 34, 0.16);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
}

.audience-layout img {
    width: 100%;
    max-height: 520px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center 30%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--orange-dark);
    font-weight: 900;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link span {
    transition: transform 180ms ease;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.faq-layout .section-heading {
    position: sticky;
    top: 120px;
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #fff;
}

.faq-list summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 20px;
    color: var(--navy-dark);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    width: 30px;
    height: 30px;
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.1);
    content: '+';
    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.final-cta {
    padding: 30px 0 96px;
}

.final-cta__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px;
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 87, 34, 0.55), transparent 36%),
        var(--navy-dark);
    box-shadow: var(--shadow);
}

.final-cta__panel > div {
    max-width: 760px;
}

.final-cta p:last-child {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.final-cta .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 52px 0 26px;
    color: rgba(255, 255, 255, 0.72);
    background: #10111d;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.brand--footer {
    color: #fff;
}

.site-footer p {
    margin: 8px 0 0;
}

.site-footer__links {
    display: grid;
    gap: 10px;
    text-align: right;
    font-weight: 800;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

@media (max-width: 980px) {
    .site-header__inner {
        align-items: flex-start;
        padding-block: 16px;
    }

    .site-nav {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero__grid,
    .split-layout,
    .agentic-layout,
    .audience-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        max-width: 680px;
    }

    .hero__visual img {
        max-height: 560px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .domain-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .agentic-preview {
        max-width: 680px;
    }

    .channel-strip__grid {
        grid-template-columns: 1fr;
    }

    .channel-strip__connector {
        display: none;
    }

    .faq-layout .section-heading {
        position: static;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        position: static;
    }

    .site-header__inner {
        display: grid;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-nav > a:not(.button) {
        display: none;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__grid {
        gap: 36px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
    }

    .hero__actions,
    .hero__actions .button,
    .site-nav .button,
    .final-cta .button {
        width: 100%;
    }

    .hero__visual {
        padding: 12px;
        border-radius: 25px;
    }

    .hero__visual img {
        max-height: 480px;
        border-radius: 18px;
    }

    .hero__visual figcaption {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .section {
        padding: 72px 0;
    }

    .benefit-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .domain-card {
        padding: 26px 22px;
    }

    .agentic-preview {
        padding: 18px;
        border-radius: 24px;
    }

    .agentic-message {
        max-width: 96%;
    }

    .split-layout,
    .agentic-layout,
    .audience-layout,
    .faq-layout {
        gap: 38px;
    }

    .final-cta__panel,
    .site-footer__grid,
    .site-footer__bottom {
        display: grid;
    }

    .final-cta__panel {
        padding: 30px 24px;
        border-radius: 25px;
    }

    .site-footer__links {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Vitrina de tiendas por rubro */
.storefronts {
    position: relative;
    overflow: hidden;
}

.storefronts::before {
    content: '';
    position: absolute;
    top: -170px;
    right: -140px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.12);
    filter: blur(100px);
    pointer-events: none;
}

.storefronts .container {
    position: relative;
    z-index: 1;
}

.storefronts__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.storefronts__tab {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--muted);
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.storefronts__tab:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 87, 34, 0.4);
    color: var(--orange-dark);
}

.storefronts__tab[aria-selected="true"] {
    border-color: transparent;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.28);
}

.storefronts__tab:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.storefronts__stage {
    position: relative;
    max-width: 1000px;
    margin-inline: auto;
}

.storefronts__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.975) translateY(16px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.storefronts__panel[data-active] {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.storefronts__frame {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.storefronts__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fff, #f7f4f9);
}

.storefronts__dot {
    flex: none;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.storefronts__dot:nth-child(1) { background: #ff5f57; }
.storefronts__dot:nth-child(2) { background: #febc2e; }
.storefronts__dot:nth-child(3) { background: #28c840; }

.storefronts__url {
    flex: 1;
    margin-left: 10px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(45, 48, 71, 0.06);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.storefronts__frame img {
    width: 100%;
    height: auto;
}

.storefronts__frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -65%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.storefronts__frame:hover::after {
    animation: storefronts-shine 1.1s ease;
}

@keyframes storefronts-shine {
    0% { left: -65%; opacity: 1; }
    100% { left: 125%; opacity: 0; }
}

.storefronts__caption {
    max-width: 720px;
    min-height: 86px;
    margin: 24px auto 0;
    text-align: center;
}

.storefronts__caption h3 {
    margin: 0 0 8px;
    color: var(--navy-dark);
    font-size: 1.3rem;
    line-height: 1.25;
}

.storefronts__caption p {
    margin: 0;
    color: var(--muted);
}

.storefronts__note {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 18px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.storefronts__note strong {
    color: var(--navy-dark);
}

@media (max-width: 720px) {
    .storefronts__tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .storefronts__url {
        display: none;
    }

    .storefronts__caption {
        min-height: 0;
    }

    .storefronts__caption h3 {
        font-size: 1.12rem;
    }
}
