/* Shared shell for BAGTS power pages — mirrors index.html look/feel */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #ff0080;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, border-color 0.2s;
    mix-blend-mode: difference;
}

.cursor.clicking {
    transform: scale(1.5);
    border-color: #00ff9f;
}

.typo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
}

.url-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.url-bar {
    flex: 1;
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid #333;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.url-bar:hover {
    border-color: #00ff9f;
}

.typed-text {
    color: #00ff9f;
}

.wrong-letter {
    color: #ff0080;
    animation: shake 0.3s;
}

.url-path {
    color: #7a7a7a;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.reaction {
    font-size: 2rem;
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.glitch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 0, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 0, 255, 0.03) 3px
        );
    pointer-events: none;
    z-index: 1;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 72px;
}

.typo-reveal {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 0;
    padding-bottom: 2rem;
    position: relative;
}

/* Subtle neon hairline: brand beat → intent beat */
.typo-reveal::after {
    content: '';
    display: block;
    width: min(8rem, 40vw);
    height: 1px;
    margin: 2rem auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 128, 0.55),
        rgba(0, 255, 159, 0.55),
        transparent
    );
}

.wrong {
    color: #ff0080;
    display: block;
    animation: glitch 1s infinite;
}

.right {
    color: #00ff9f;
    display: block;
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.28em;
    margin-bottom: 0.75rem;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-intent {
    font-size: clamp(1.35rem, 3.6vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0.5rem auto 0;
    letter-spacing: 0.01em;
    word-spacing: 0.06em;
    line-height: 1.4;
    max-width: min(36rem, 92vw);
    padding: 0 0.5rem 1.25rem;
    border-bottom: 1px solid rgba(0, 255, 159, 0.22);
}

.subtitle {
    font-size: clamp(1.05rem, 2.6vw, 1.45rem);
    color: #888;
    margin: 1.75rem auto 0;
    font-weight: 300;
    max-width: min(40rem, 92vw);
    line-height: 1.7;
    letter-spacing: 0.015em;
    word-spacing: 0.04em;
    padding: 0 0.75rem;
}

.subtitle span {
    color: #00ff9f;
    font-weight: 600;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.35rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.cta-primary {
    font-size: 1.1rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    border: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    transform: scale(1.05);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    font-size: 1rem;
    padding: 16px 28px;
    background: transparent;
    border: 2px solid #00ff9f;
    color: #00ff9f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.cta-secondary:hover {
    transform: scale(1.04);
    background: rgba(0, 255, 159, 0.12);
}

.vendors {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 100%);
}

.section-title {
    font-size: clamp(1.85rem, 4.5vw, 3.25rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    word-spacing: 0.05em;
    line-height: 1.15;
    background: linear-gradient(135deg, #00ff9f, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    text-align: center;
    color: #888;
    font-size: 1.08rem;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    letter-spacing: 0.01em;
    word-spacing: 0.04em;
}

.section-sub span {
    color: #00ff9f;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.vendor-grid--featured {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.vendor-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 159, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.vendor-card:hover::before {
    opacity: 1;
}

.vendor-card:hover {
    transform: translateY(-5px);
    border-color: #00ff9f;
}

.vendor-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.vendor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.vendor-tagline {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.45;
    letter-spacing: 0.01em;
    word-spacing: 0.03em;
}

.vendor-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00ff9f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.vendor-link::after {
    content: '→';
    transition: transform 0.3s;
}

.vendor-card:hover .vendor-link::after {
    transform: translateX(5px);
}

/* Related internal cards (not Amazon) */
.nav-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 128, 0.08));
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-card:hover {
    transform: translateY(-4px);
    border-color: #00d4ff;
}

.nav-card:hover::before {
    opacity: 1;
}

.nav-card .vendor-emoji,
.nav-card .vendor-name,
.nav-card .vendor-tagline,
.nav-card .vendor-link {
    position: relative;
    z-index: 1;
}

.nav-card .vendor-link {
    color: #00d4ff;
}

.guide {
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a0a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(0, 255, 159, 0.1);
}

.guide-inner {
    max-width: 740px;
    margin: 0 auto;
}

.guide h2 {
    font-size: clamp(1.55rem, 3.8vw, 2.25rem);
    font-weight: 900;
    color: #00ff9f;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
    word-spacing: 0.04em;
    line-height: 1.25;
}

.guide h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #c4b5ff;
    margin: 2rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    word-spacing: 0.05em;
}

.guide p {
    color: #9a9a9a;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    word-spacing: 0.03em;
}

.guide p strong {
    color: #c8c8c8;
}

.guide ul {
    margin: 0 0 1.25rem 1.2rem;
    color: #9a9a9a;
}

.guide li {
    margin-bottom: 0.65rem;
    line-height: 1.7;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    word-spacing: 0.03em;
}

.guide li strong {
    color: #c8c8c8;
}

.guide-pull {
    border-left: 3px solid rgba(255, 0, 128, 0.45);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #888;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.55rem;
    margin: 1.25rem 0 0.5rem;
}

.chip {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #777;
}

.faq {
    padding: 60px 20px 80px;
    background: #0a0a0a;
}

.faq-list {
    max-width: 740px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    color: #eee;
    font-size: 1.05rem;
}

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

.faq-item summary::after {
    content: ' +';
    color: #00ff9f;
    float: right;
}

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

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: #9a9a9a;
    line-height: 1.65;
    font-size: 0.98rem;
}

/* Hankified venture strip — curated sibling projects */
.ventures-strip {
    padding: 48px 20px 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #120818 50%, #050505 100%);
    border-top: 1px solid rgba(255, 0, 128, 0.25);
}

.ventures-strip__inner {
    max-width: 900px;
    text-align: center;
}

.ventures-strip__kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.ventures-strip__lede {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.ventures-strip__chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0 auto 1.25rem;
    max-width: 720px;
    text-align: left;
}

.venture-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    row-gap: 0.12rem;
    align-items: center;
    padding: 0.75rem 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    text-align: left;
    min-width: 0;
    width: 100%;
}

.venture-chip:hover {
    transform: translateY(-3px);
    border-color: #00ff9f;
    background: rgba(0, 255, 159, 0.06);
}

.venture-chip__icon {
    grid-row: 1 / span 2;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3px;
    box-sizing: border-box;
}

.venture-chip__icon--fallback {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.35), rgba(0, 255, 159, 0.35));
}

.venture-chip__name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.venture-chip__tag {
    color: #777;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.ventures-strip__more a {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.ventures-strip__more a:hover {
    text-decoration: underline;
}

.footer-guides {
    margin: 1.25rem auto 0.25rem;
    max-width: 42rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    justify-content: center;
    align-items: center;
}

.footer-guides a {
    color: #6dd4b0;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-guides a:hover {
    color: #00ff9f;
    text-decoration: underline;
}

.footer-guides__sep {
    color: #444;
    font-size: 0.7rem;
    user-select: none;
}

@media (max-width: 700px) {
    .ventures-strip__chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .ventures-strip__chips {
        grid-template-columns: 1fr;
    }
}

.footer {
    text-align: center;
    padding: 60px 20px;
    color: #555;
    font-size: 0.9rem;
    background: #050505;
    border-top: 1px solid #00ffff;
}

.footer p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer .footer-line {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer .footer-line + .footer-line {
    margin-top: 0.5rem;
    opacity: 0.6;
}

.footer .magic {
    color: #00ffff;
}

.creator-link {
    color: #00ff9f;
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 159, 0.35);
    text-underline-offset: 3px;
    font-weight: 600;
}

.creator-link:hover {
    text-decoration-color: #00ff9f;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ad-zone {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.ad-zone.is-live {
    display: block;
}

.ad-zone__frame {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 1.25rem 1.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ad-zone__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.04), rgba(0, 255, 159, 0.04));
    pointer-events: none;
}

.ad-zone__frame:hover {
    border-color: rgba(0, 255, 159, 0.25);
}

.ad-zone__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.ad-zone__inner {
    position: relative;
    z-index: 1;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-zone--hero {
    padding: 0 20px 2.5rem;
}

.ad-zone--pre-footer {
    padding: 0 20px 2.5rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

@media (max-width: 768px) {
    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vendor-card {
        padding: 30px 20px;
    }

    .url-bar {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .hero {
        min-height: 0;
        justify-content: flex-start;
        padding: 120px 20px 56px;
    }

    .typo-reveal {
        font-size: clamp(2rem, 12vw, 6rem);
        padding-bottom: 1.5rem;
    }

    .typo-reveal::after {
        margin-top: 1.5rem;
        width: min(6rem, 36vw);
    }

    .hero-intent {
        margin-top: 0.35rem;
        padding-bottom: 1rem;
        line-height: 1.42;
        max-width: min(34rem, 94vw);
    }

    .subtitle {
        font-size: clamp(1rem, 4vw, 1.35rem);
        margin-top: 1.5rem;
        line-height: 1.72;
    }

    .hero .cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 20rem;
        margin-top: 2.25rem;
        gap: 1.15rem;
    }

    .hero .cta-primary,
    .hero .cta-secondary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-primary {
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    .cta-secondary {
        font-size: 0.9rem;
        padding: 12px 22px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    body {
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    .ad-zone--hero,
    .ad-zone--pre-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
