.page-home {
    background:
        radial-gradient(circle at top left, rgba(255, 123, 77, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 208, 117, 0.24), transparent 26%),
        linear-gradient(180deg, #fbf4e8 0%, #f5eee3 38%, #fffaf3 100%);
}

.page-home .home-shell {
    --home-ink: #101723;
    --home-ink-soft: #5d6675;
    --home-accent: #f15a29;
    --home-accent-strong: #e74815;
    --home-highlight: #ffbf47;
    --home-surface: rgba(255, 252, 247, 0.84);
    --home-surface-strong: #fffdf8;
    --home-surface-dark: #111826;
    --home-border: rgba(16, 23, 35, 0.08);
    --home-shadow: 0 22px 55px rgba(23, 27, 38, 0.09);
    --home-radius: 30px;
    color: var(--home-ink);
    overflow: hidden;
}

.page-home .home-shell section,
.page-home .home-shell .activation-banner {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.page-home .activation-banner {
    margin-top: 118px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(223, 250, 210, 0.92);
    border: 1px solid rgba(78, 160, 83, 0.24);
    color: #265c2e;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(38, 92, 46, 0.08);
}

.page-home .hero-home {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
    padding: 136px 0 78px;
    position: relative;
}

.page-home .hero-copy,
.page-home .hero-visual {
    position: relative;
    z-index: 1;
}

.page-home .home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(16, 23, 35, 0.08);
    background: rgba(255, 255, 255, 0.64);
    color: var(--home-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.4);
}

.page-home .home-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--home-accent) 0%, var(--home-highlight) 100%);
}

.page-home .hero-title {
    margin: 18px 0 18px;
    font: 800 clamp(3rem, 7vw, 5.4rem)/0.95 "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.07em;
    max-width: 12ch;
}

.page-home .hero-title em {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--home-accent);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.page-home .hero-copy p {
    margin: 0;
    max-width: 640px;
    color: var(--home-ink-soft);
    font-size: 17px;
    line-height: 1.8;
}

.page-home .hero-actions,
.page-home .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.page-home .home-btn,
.page-home .home-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-home .home-btn {
    background: linear-gradient(135deg, var(--home-accent) 0%, #ff8758 100%);
    color: #fff;
    box-shadow: 0 22px 44px rgba(241, 90, 41, 0.24);
}

.page-home .home-btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--home-ink);
    border: 1px solid rgba(16, 23, 35, 0.09);
    box-shadow: 0 20px 36px rgba(16, 23, 35, 0.07);
}

.page-home .home-btn:hover,
.page-home .home-btn-secondary:hover {
    transform: translateY(-2px);
}

.page-home .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.page-home .hero-proof span,
.page-home .tool-marquee span,
.page-home .catalog-tags span,
.page-home .bundle-stack span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(16, 23, 35, 0.08);
    color: var(--home-ink);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(16, 23, 35, 0.05);
}

.page-home .hero-proof span::before,
.page-home .catalog-tags span::before,
.page-home .bundle-stack span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--home-accent);
}

.page-home .hero-visual {
    padding: 20px;
}

.page-home .control-board {
    position: relative;
    padding: 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 191, 71, 0.2), transparent 24%),
        linear-gradient(145deg, rgba(10, 16, 25, 0.98) 0%, rgba(19, 28, 41, 0.96) 62%, rgba(34, 20, 8, 0.9) 100%);
    color: #fff;
    box-shadow: 0 36px 80px rgba(17, 24, 38, 0.24);
    overflow: hidden;
}

.page-home .control-board::after {
    content: "";
    position: absolute;
    inset: auto -18% -34% auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(241, 90, 41, 0.28) 0%, rgba(241, 90, 41, 0) 70%);
    pointer-events: none;
}

.page-home .board-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.page-home .board-header strong {
    display: block;
    margin-bottom: 8px;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.page-home .board-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
}

.page-home .board-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-home .board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.page-home .board-card {
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.page-home .board-card h3,
.page-home .board-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.page-home .board-card p,
.page-home .board-card li {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 13px;
}

.page-home .board-metric {
    display: block;
    margin-top: 12px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #fff4d1;
}

.page-home .board-list,
.page-home .bundle-list,
.page-home .faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-home .board-list li,
.page-home .bundle-list li {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.page-home .board-list li::before,
.page-home .bundle-list li::before {
    content: "•";
    color: var(--home-highlight);
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.page-home .tool-marquee {
    padding-bottom: 24px;
}

.page-home .tool-marquee-track {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-home .home-section {
    padding: 42px 0;
}

.page-home .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.page-home .section-heading h2,
.page-home .cta-shell h2 {
    margin: 0 0 12px;
    font: 800 clamp(2rem, 4vw, 3.4rem)/1 "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.06em;
}

.page-home .section-heading p,
.page-home .cta-shell p {
    margin: 0;
    max-width: 700px;
    color: var(--home-ink-soft);
    font-size: 15px;
    line-height: 1.8;
}

.page-home .section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-accent-strong);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.page-home .metrics-grid,
.page-home .catalog-grid,
.page-home .bundle-grid,
.page-home .story-grid {
    display: grid;
    gap: 18px;
}

.page-home .metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home .metric-card,
.page-home .catalog-card,
.page-home .bundle-card,
.page-home .story-card,
.page-home .bento-card,
.page-home .cta-shell {
    border-radius: var(--home-radius);
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
}

.page-home .metric-card {
    padding: 24px;
}

.page-home .metric-card span {
    display: block;
    color: var(--home-ink-soft);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.page-home .metric-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.page-home .metric-card p {
    margin: 0;
    color: var(--home-ink-soft);
    line-height: 1.7;
    font-size: 14px;
}

.page-home .bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.page-home .bento-card {
    padding: 28px;
}

.page-home .bento-card.tall {
    grid-row: span 2;
    background:
        linear-gradient(160deg, rgba(17, 24, 38, 0.98) 0%, rgba(34, 45, 60, 0.96) 100%);
    color: #fff;
}

.page-home .bento-card.tall p,
.page-home .bento-card.tall li {
    color: rgba(255, 255, 255, 0.72);
}

.page-home .bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 20px;
    background: rgba(241, 90, 41, 0.14);
    color: var(--home-accent-strong);
}

.page-home .bento-card.tall .bento-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff4d1;
}

.page-home .bento-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.page-home .bento-card p {
    margin: 0;
    color: var(--home-ink-soft);
    line-height: 1.75;
    font-size: 14px;
}

.page-home .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-home .catalog-card {
    overflow: hidden;
}

.page-home .catalog-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 191, 71, 0.28), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 239, 231, 0.85) 100%);
}

.page-home .catalog-media img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 20px 42px rgba(16, 23, 35, 0.14);
}

.page-home .catalog-body {
    padding: 24px;
}

.page-home .catalog-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(241, 90, 41, 0.1);
    color: var(--home-accent-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-home .catalog-card h3,
.page-home .bundle-card h3 {
    margin: 14px 0 10px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.page-home .catalog-card p,
.page-home .bundle-card p {
    margin: 0;
    color: var(--home-ink-soft);
    line-height: 1.75;
    font-size: 14px;
}

.page-home .catalog-footer,
.page-home .bundle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.page-home .price-tag {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.page-home .price-tag small {
    font-size: 12px;
    color: var(--home-ink-soft);
    font-weight: 700;
}

.page-home .catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

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

.page-home .bundle-card {
    padding: 28px;
    position: relative;
}

.page-home .bundle-card.featured {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 244, 233, 0.9) 100%);
    border-color: rgba(241, 90, 41, 0.22);
    box-shadow: 0 28px 60px rgba(241, 90, 41, 0.12);
}

.page-home .bundle-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 191, 71, 0.16);
    color: #8a4a07;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-home .bundle-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 8px;
}

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

.page-home .story-card {
    padding: 28px;
}

.page-home .story-step {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(241, 90, 41, 0.12);
    color: var(--home-accent-strong);
    font-size: 18px;
    font-weight: 800;
}

.page-home .story-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.page-home .story-card p {
    margin: 0;
    color: var(--home-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.page-home .faq-shell {
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(251, 245, 235, 0.92) 100%);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
}

.page-home .faq-item + .faq-item {
    margin-top: 14px;
}

.page-home .faq-item {
    border-radius: 22px;
    border: 1px solid rgba(16, 23, 35, 0.08);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.page-home .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    font-size: 17px;
    font-weight: 800;
}

.page-home .faq-item summary::-webkit-details-marker {
    display: none;
}

.page-home .faq-item summary::after {
    content: "+";
    font-size: 20px;
    color: var(--home-accent-strong);
}

.page-home .faq-item[open] summary::after {
    content: "−";
}

.page-home .faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--home-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.page-home .cta-home {
    padding: 24px 0 90px;
}

.page-home .cta-shell {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(255, 191, 71, 0.2), transparent 24%),
        linear-gradient(145deg, rgba(15, 23, 35, 0.98) 0%, rgba(30, 25, 17, 0.94) 100%);
    color: #fff;
}

.page-home .cta-shell h2,
.page-home .cta-shell p {
    color: #fff;
}

.page-home .cta-shell p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.74);
}

.page-home .cta-shell .home-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

@media (max-width: 1180px) {
    .page-home .hero-home,
    .page-home .section-heading {
        grid-template-columns: 1fr;
    }

    .page-home .section-heading {
        display: grid;
        align-items: start;
    }

    .page-home .metrics-grid,
    .page-home .catalog-grid,
    .page-home .bundle-grid,
    .page-home .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .page-home .bento-card.tall {
        grid-row: auto;
        grid-column: span 2;
    }
}

@media (max-width: 780px) {
    .page-home .hero-home {
        padding-top: 118px;
    }

    .page-home .hero-title {
        max-width: none;
    }

    .page-home .board-grid,
    .page-home .metrics-grid,
    .page-home .catalog-grid,
    .page-home .bundle-grid,
    .page-home .story-grid,
    .page-home .bento-grid {
        grid-template-columns: 1fr;
    }

    .page-home .bento-card.tall {
        grid-column: auto;
    }

    .page-home .control-board,
    .page-home .faq-shell,
    .page-home .cta-shell {
        border-radius: 28px;
    }

    .page-home .hero-actions,
    .page-home .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-home .home-btn,
    .page-home .home-btn-secondary {
        width: 100%;
    }
}
