:root {
    --tt-guide-bg: #060504;
    --tt-guide-panel: rgba(19, 13, 9, 0.94);
    --tt-guide-panel-strong: rgba(25, 17, 12, 0.98);
    --tt-guide-border: rgba(255, 131, 35, 0.22);
    --tt-guide-text: #fff8f1;
    --tt-guide-text-dim: rgba(255, 225, 197, 0.72);
    --tt-guide-text-faint: rgba(255, 207, 169, 0.54);
    --tt-guide-accent: #ff690f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.tt-product-guide-page {
    margin: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 103, 18, 0.16), transparent 32%),
        linear-gradient(180deg, #090705 0%, #040302 100%);
    color: var(--tt-guide-text);
    font-family: Inter, "Segoe UI", sans-serif;
}

#tt-particle-canvas {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.tt-guide-shell {
    min-height: 100vh;
    position: relative;
}

.tt-guide-nav,
.tt-guide-main,
.tt-guide-footer {
    position: relative;
    z-index: 1;
}

.tt-guide-nav {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 7, 6, 0.94);
    backdrop-filter: blur(18px);
}

.tt-guide-logo {
    color: var(--tt-guide-text);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tt-guide-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tt-guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.tt-guide-btn:hover,
.tt-guide-btn:focus-visible,
.tt-guide-cta:hover,
.tt-guide-cta:focus-visible {
    transform: translateY(-1px);
}

.tt-guide-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    color: var(--tt-guide-text);
}

.tt-guide-btn-primary,
.tt-guide-cta {
    background: linear-gradient(180deg, #ff7418, #d05300);
    color: var(--tt-guide-text);
}

.tt-guide-main {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 54px 40px 86px;
}

.tt-guide-hero {
    margin-bottom: 28px;
    padding: 30px 34px;
    border: 1px solid var(--tt-guide-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 21, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(18, 12, 8, 0.96), rgba(10, 7, 5, 0.98));
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 122, 18, 0.05);
}

.tt-guide-eyebrow,
.tt-guide-product-label {
    color: #ff9e57;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tt-guide-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.tt-guide-hero h1,
.tt-guide-faq-head h2 {
    margin: 0 0 16px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.tt-guide-hero p,
.tt-guide-faq-head p {
    max-width: 820px;
    margin: 0;
    color: var(--tt-guide-text-dim);
    font-size: 18px;
    line-height: 1.75;
}

.tt-guide-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
}

.tt-guide-product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--tt-guide-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at top center, rgba(255, 107, 21, 0.12), transparent 44%),
        linear-gradient(180deg, rgba(16, 11, 8, 0.96), rgba(8, 6, 4, 0.98));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.tt-guide-product-reversed {
    grid-template-columns: 1fr;
}

.tt-guide-product-reversed .tt-guide-media {
    order: initial;
}

.tt-guide-product-reversed .tt-guide-copy {
    order: initial;
}

.tt-guide-media {
    display: grid;
    gap: 10px;
}

.tt-guide-primary-media,
.tt-guide-support-card {
    overflow: hidden;
    border: 1px solid rgba(255, 148, 67, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(transparent 95%, rgba(255, 121, 22, 0.035) 95%),
        linear-gradient(90deg, transparent 95%, rgba(255, 121, 22, 0.035) 95%),
        linear-gradient(180deg, #090603 0%, #050301 100%);
    background-size: 100% 24px, 24px 100%, auto;
}

.tt-guide-image,
.tt-guide-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 240px;
    object-fit: contain;
    object-position: center;
}

.tt-guide-support-image,
.tt-guide-support-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.tt-guide-video {
    background: #050301;
}

.tt-guide-media-caption {
    display: none;
    margin: 0;
    color: var(--tt-guide-text-faint);
    font-size: 12px;
    line-height: 1.5;
}

.tt-guide-supporting-media {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.tt-guide-support-card {
    margin: 0;
}

.tt-guide-support-card figcaption {
    padding: 8px 9px 9px;
    color: var(--tt-guide-text-faint);
    font-size: 10px;
    line-height: 1.35;
}

.tt-guide-copy {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 150, 76, 0.16);
    border-radius: 20px;
    background:
        radial-gradient(circle at top center, rgba(255, 107, 21, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(22, 15, 11, 0.97), rgba(11, 9, 7, 0.99));
}

.tt-guide-copy-head {
    display: grid;
    gap: 6px;
}

.tt-guide-copy h2,
.tt-guide-faq-card h3 {
    margin: 0;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.02;
}

.tt-guide-subtitle {
    margin: 0;
    color: rgba(255, 232, 210, 0.82);
    font-size: 13px;
    line-height: 1.42;
}

.tt-guide-price {
    color: var(--tt-guide-accent);
    font-size: 26px;
    font-weight: 900;
}

.tt-guide-price span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    font-weight: 500;
}

.tt-guide-decision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tt-guide-decision-block {
    padding: 12px;
    border: 1px solid rgba(255, 142, 56, 0.14);
    border-radius: 14px;
    background: rgba(255, 107, 21, 0.045);
}

.tt-guide-decision-block > span {
    display: block;
    margin-bottom: 8px;
    color: #ff9e57;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tt-guide-faq-card p {
    margin: 0;
    color: var(--tt-guide-text-dim);
    font-size: 13px;
    line-height: 1.45;
}

.tt-guide-highlights,
.tt-guide-feature-list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tt-guide-highlights li,
.tt-guide-feature-list li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 238, 223, 0.86);
    font-size: 12px;
    line-height: 1.35;
}

.tt-guide-highlights li::before,
.tt-guide-feature-list li::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff9033, #cf5b00);
    box-shadow: 0 0 14px rgba(255, 114, 16, 0.4);
}

.tt-guide-feature-pills {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.tt-guide-feature-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 142, 56, 0.18);
    border-radius: 999px;
    background: rgba(255, 107, 21, 0.08);
    font-size: 11px;
    line-height: 1.3;
}

.tt-guide-feature-pills span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff9033, #cf5b00);
    box-shadow: 0 0 14px rgba(255, 114, 16, 0.4);
}

.tt-guide-feature-pills span {
    color: rgba(255, 238, 223, 0.82);
}

.tt-guide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(255, 101, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tt-guide-faq {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid var(--tt-guide-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at top center, rgba(255, 107, 21, 0.08), transparent 48%),
        linear-gradient(180deg, rgba(15, 11, 8, 0.96), rgba(8, 6, 4, 0.98));
}

.tt-guide-faq-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.tt-guide-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tt-guide-faq-card {
    padding: 24px;
    border: 1px solid rgba(255, 145, 63, 0.16);
    border-radius: 18px;
    background: var(--tt-guide-panel);
}

.tt-guide-faq-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.tt-guide-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 0 40px 36px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 13px;
}

.tt-guide-footer a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-weight: 600;
}

.tt-guide-footer a:hover,
.tt-guide-footer a:focus-visible {
    color: #fff1e0;
}

@media (max-width: 1040px) {
    .tt-guide-products {
        grid-template-columns: 1fr;
    }

    .tt-guide-product,
    .tt-guide-product-reversed {
        grid-template-columns: 1fr;
    }

    .tt-guide-product-reversed .tt-guide-media,
    .tt-guide-product-reversed .tt-guide-copy {
        order: initial;
    }

    .tt-guide-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .tt-guide-nav,
    .tt-guide-main,
    .tt-guide-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tt-guide-nav {
        justify-content: center;
    }

    .tt-guide-nav-actions {
        width: 100%;
        justify-content: center;
    }

    .tt-guide-btn {
        width: 100%;
    }

    .tt-guide-main {
        padding-top: 44px;
        padding-bottom: 72px;
    }

    .tt-guide-hero,
    .tt-guide-product,
    .tt-guide-copy,
    .tt-guide-faq,
    .tt-guide-faq-card {
        padding: 22px 20px;
    }

    .tt-guide-hero p,
    .tt-guide-subtitle {
        font-size: 16px;
    }

    .tt-guide-image,
    .tt-guide-video {
        height: auto;
    }

    .tt-guide-decision-grid {
        grid-template-columns: 1fr;
    }

    .tt-guide-footer {
        flex-direction: column;
        text-align: center;
    }
}
