:root {
    --bg: #050505;
    --panel: #0c0c0f;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --muted: #a3adbb;
    --dim: #667085;
    --orange: #ea580c;
    --amber: #d9a441;
    --green: #5bbf77;
    --cyan: #58b8c5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Outfit", Arial, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(234, 88, 12, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 88, 12, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(217, 164, 65, 0.08), transparent 34%),
        #050505;
    background-size: 44px 44px, 44px 44px, auto, auto;
}

a {
    color: inherit;
}

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

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 40px 24px 72px;
}

.hub-header {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.avatar {
    width: 118px;
    height: 118px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.brand-title {
    margin: 0;
    font-size: 2.05rem;
    line-height: 1;
    font-weight: 800;
}

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

.handle {
    margin: 12px 0 0;
    color: var(--text);
    font-weight: 600;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    color: var(--amber);
}

.socials a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.socials a:hover {
    background: rgba(217, 164, 65, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.product-list {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.product-card {
    display: block;
    position: relative;
    aspect-ratio: 1983 / 793;
    overflow: hidden;
    border-radius: 8px;
    background: #050505;
    text-decoration: none;
    box-shadow: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 28px rgba(234, 88, 12, 0.36),
        0 0 62px rgba(234, 88, 12, 0.18),
        0 0 72px rgba(0, 209, 178, 0.14);
}

.product-card:focus-visible {
    outline: 2px solid rgba(234, 88, 12, 0.9);
    outline-offset: 4px;
}

.home-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.055);
    transition: transform 180ms ease, filter 180ms ease;
}

.product-card:hover .home-card-image {
    filter: brightness(1.06) saturate(1.08);
    transform: scale(1.065);
}

.product-kicker,
.sales-kicker,
.mini-kicker {
    margin: 0 0 14px;
    color: var(--accent, var(--orange));
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-title {
    margin: 0;
    max-width: none;
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.home-story {
    width: min(780px, 100%);
    margin: 64px auto 0;
    padding: 42px;
    border-top: 1px solid var(--line);
}

.home-story .mini-kicker {
    text-align: center;
}

.home-story h2 {
    margin: 0 auto 24px;
    max-width: 620px;
    text-align: center;
    font-size: 2.7rem;
    line-height: 1.05;
}

.story-text {
    display: grid;
    gap: 18px;
    color: #d9e0ea;
    font-size: 1.08rem;
    line-height: 1.7;
}

.story-text p {
    margin: 0;
}

.story-text strong {
    color: #fff;
}

.home-footer {
    width: min(980px, 100%);
    margin: 62px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.home-footer p {
    margin: 0;
    color: rgba(244, 244, 245, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    margin-bottom: 14px;
    border: 1px solid rgba(88, 184, 197, 0.28);
    border-radius: 8px;
    color: #bfeaf0;
    background: rgba(88, 184, 197, 0.08);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.1;
}

.section-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-nav-inner {
    width: min(1120px, 100%);
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
}

.nav-logo {
    width: auto;
    height: 52px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: #fff;
}

.sales-page {
    position: relative;
    z-index: 1;
}

.sales-hero,
.section-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 72px 24px;
}

.sales-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
    align-items: center;
}

.sales-title {
    margin: 0 0 22px;
    max-width: 760px;
    font-size: 4.3rem;
    line-height: 0.98;
    font-weight: 800;
}

.sales-title span {
    color: var(--accent, var(--orange));
}

.sales-lead {
    max-width: 660px;
    margin: 0 0 28px;
    color: #d7dde7;
    font-size: 1.22rem;
    line-height: 1.6;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.centered-cta {
    justify-content: center;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, var(--accent, var(--orange)), var(--amber));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 44px rgba(234, 88, 12, 0.28);
}

.checkout-btn {
    background: linear-gradient(135deg, #ff5a0a 0%, #ff8a00 48%, #f4c95d 100%);
    box-shadow:
        0 14px 36px rgba(234, 88, 12, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 34px rgba(244, 201, 93, 0.16);
}

.checkout-btn:hover {
    box-shadow:
        0 18px 48px rgba(234, 88, 12, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 0 48px rgba(244, 201, 93, 0.22);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 52%, #1ebe5d 100%);
    box-shadow:
        0 14px 36px rgba(37, 211, 102, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 36px rgba(37, 211, 102, 0.16);
}

.whatsapp-btn:hover {
    box-shadow:
        0 18px 48px rgba(37, 211, 102, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 0 54px rgba(37, 211, 102, 0.22);
}

.btn.secondary {
    background: transparent;
    border-color: var(--line);
    color: #dce3ed;
    box-shadow: none;
}

.btn.secondary:hover {
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.btn.disabled {
    background: transparent;
    border-color: var(--line);
    color: var(--dim);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    filter: none;
}

.hero-photo {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
}

.hero-photo img {
    width: 100%;
    aspect-ratio: 1 / 1.16;
    object-fit: cover;
}

.community-page .sales-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.community-page .hero-photo img {
    aspect-ratio: 1115 / 706;
}

.section-band {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.section-band.dark {
    background: #020202;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 18px;
}

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

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

.info-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 12, 15, 0.75);
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.bullet-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.bullet-list li {
    display: flex;
    gap: 12px;
    color: #dbe2ec;
    line-height: 1.45;
}

.bullet-list li::before {
    content: "•";
    color: var(--accent, var(--orange));
}

.manual-modules {
    overflow: hidden;
    padding-bottom: 54px;
    background: #141414;
}

.manual-modules .section-inner {
    padding-bottom: 26px;
}

.manual-modules .section-lead {
    max-width: 680px;
}

.modules-rail {
    width: 100%;
    overflow: hidden;
    padding: 0 0 22px;
}

.modules-track {
    width: max-content;
    display: flex;
    gap: 24px;
    animation: modules-scroll 56s linear infinite;
}

.modules-rail:hover .modules-track {
    animation-play-state: paused;
}

.module-card {
    flex: 0 0 320px;
    color: var(--text);
}

.module-image {
    position: relative;
    height: 451px;
    overflow: hidden;
    border: 0;
    border-radius: 6px;
    background: #080808;
}

.module-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-card h3 {
    min-height: 54px;
    margin: 18px 0 8px;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.module-card p {
    margin: 0;
    color: var(--dim);
    font-size: 0.95rem;
}

.module-clock {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.86);
    color: #fff;
    font-size: 1.25rem;
}

@keyframes modules-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .modules-track {
        animation: none;
    }
}

.final-cta {
    text-align: center;
}

.final-cta .section-lead {
    margin: 0 auto 24px;
}

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--line);
    padding: 28px 24px;
    color: var(--dim);
    text-align: center;
}

@media (max-width: 820px) {
    .page-shell {
        padding: 34px 16px 52px;
    }

    .brand-title {
        font-size: 1.9rem;
    }

    .product-list {
        gap: 14px;
    }

    .site-nav-inner {
        min-height: 68px;
        padding: 0 18px;
    }

    .nav-logo {
        height: 46px;
    }

    .nav-links {
        display: none;
    }

    .sales-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 20px;
    }

    .community-page .sales-hero {
        grid-template-columns: 1fr;
    }

    .sales-title {
        font-size: 3rem;
    }

    .sales-lead {
        font-size: 1.08rem;
    }

    .hero-photo {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .community-page .hero-photo {
        max-width: 520px;
    }

    .section-inner {
        padding: 48px 20px;
    }

    .module-card {
        flex-basis: 280px;
    }

    .module-image {
        height: 394px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-shell {
        padding: 28px 16px 46px;
    }

    .hub-header {
        margin-bottom: 30px;
    }

    .brand-title {
        font-size: 1.75rem;
    }

    .site-nav-inner {
        min-height: 62px;
        padding: 0 16px;
    }

    .nav-logo {
        height: 40px;
    }

    .sales-hero {
        gap: 24px;
        padding: 34px 20px 42px;
    }

    .sales-title {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 2.35rem;
        line-height: 1.02;
        overflow-wrap: break-word;
    }

    .sales-lead {
        margin-bottom: 22px;
        font-size: 1rem;
        line-height: 1.58;
    }

    .section-inner {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-lead {
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
    }

    .hero-photo {
        max-width: 100%;
    }

    .avatar {
        width: 96px;
        height: 96px;
    }

    .product-list {
        gap: 12px;
    }

    .home-card-image {
        transform: scale(1.035);
    }

    .product-card:hover .home-card-image {
        transform: scale(1.045);
    }

    .home-story {
        margin-top: 42px;
        padding: 30px 0 0;
    }

    .home-story h2 {
        font-size: 2.05rem;
    }

    .story-text {
        gap: 16px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .home-footer {
        margin-top: 46px;
        padding-top: 22px;
    }

    .home-footer p {
        font-size: 0.72rem;
        line-height: 1.55;
        letter-spacing: 0.04em;
    }

    .cta-row,
    .btn {
        width: 100%;
    }

    .btn {
        min-height: 50px;
        padding: 13px 16px;
        text-align: center;
        white-space: normal;
    }

    .manual-modules {
        padding-bottom: 42px;
    }

    .modules-track {
        gap: 18px;
        animation-duration: 64s;
    }

    .module-card {
        flex-basis: 252px;
    }

    .module-image {
        height: 356px;
    }

    .module-card h3 {
        min-height: 62px;
        margin-top: 14px;
        font-size: 1rem;
    }

    .module-card p {
        font-size: 0.88rem;
    }

    .module-clock {
        top: 12px;
        right: 12px;
        width: 46px;
        height: 46px;
        border-radius: 10px;
        font-size: 1.05rem;
    }
}
