:root {
    --tt-bg: #0a0a0a;
    --tt-bg-alt: #080808;
    --tt-card-bg: #111111;
    --tt-text: #ffffff;
    --tt-text-dim: rgba(255, 255, 255, 0.65);
    --tt-text-faint: rgba(255, 255, 255, 0.45);
    --tt-accent: #ff4d00;
    --tt-discord: #5865f2;
    --tt-border: rgba(255, 255, 255, 0.08);
    --tt-max-width: 1160px;
}

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

body.tt-front-page {
    margin: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 77, 0, 0.12), transparent 34%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
    color: var(--tt-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-site-shell {
    min-height: 100vh;
}

.tt-nav,
.tt-hero,
.tt-products,
.tt-how,
.tt-compare,
.tt-discord,
.tt-footer {
    position: relative;
    z-index: 1;
}

.tt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 40px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--tt-border);
    backdrop-filter: blur(18px);
}

.tt-nav.tt-nav-no-links {
    justify-content: space-between;
}

.tt-logo,
.tt-footer-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--tt-text);
}

.tt-nav-links,
.tt-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tt-nav-links {
    display: flex;
    gap: 32px;
}

.tt-nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.tt-nav-right,
.tt-hero-cta,
.tt-discord-perks {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tt-btn-outline,
.tt-btn-primary,
.tt-cta-main,
.tt-cta-secondary,
.tt-card-btn,
.tt-discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.tt-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--tt-text);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.tt-btn-primary {
    background: var(--tt-accent);
    color: var(--tt-text);
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.tt-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 64px;
}

.tt-hero-badge,
.tt-section-title,
.tt-badge,
.tt-col-header {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.tt-hero-badge {
    color: var(--tt-accent);
    margin-bottom: 20px;
}

.tt-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(54px, 9vw, 80px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.tt-hero p {
    max-width: 560px;
    margin: 0 0 40px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.tt-hero-preview {
    width: min(100%, 1360px);
    margin-top: 42px;
}

.tt-showcase {
    padding: 28px;
    border: 1px solid rgba(255, 132, 39, 0.32);
    border-radius: 24px;
    background:
        radial-gradient(circle at top center, rgba(255, 118, 28, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(13, 9, 6, 0.96), rgba(7, 5, 3, 0.98));
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(255, 124, 32, 0.08),
        0 0 50px rgba(255, 102, 0, 0.12);
    text-align: left;
}

.tt-showcase-head {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.tt-showcase-eyebrow {
    margin-bottom: 12px;
    color: #ff9f4d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tt-showcase-head h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.02;
}

.tt-showcase-head p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 227, 201, 0.68);
    font-size: 16px;
    line-height: 1.7;
}

.tt-showcase-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.92fr);
    gap: 26px;
    align-items: stretch;
}

.tt-showcase-media,
.tt-showcase-panel {
    min-width: 0;
}

.tt-showcase-media {
    display: grid;
    gap: 16px;
}

.tt-showcase-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 148, 72, 0.18);
    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;
    box-shadow:
        inset 0 0 0 1px rgba(255, 123, 24, 0.03),
        0 20px 48px rgba(0, 0, 0, 0.3);
}

.tt-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    transition: opacity 0.56s ease, transform 0.56s ease;
}

.tt-showcase-video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    background: #050301;
    transition: opacity 0.56s ease, transform 0.56s ease;
}

.tt-showcase-image-next {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px) scale(1.012);
}

.tt-showcase-video-next {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px) scale(1.012);
}

.tt-showcase.is-transitioning .tt-showcase-image {
    opacity: 0;
    transform: translateX(-24px) scale(0.992);
}

.tt-showcase.is-transitioning.is-video-active .tt-showcase-image,
.tt-showcase.is-transitioning.is-video-transition .tt-showcase-image {
    opacity: 0;
}

.tt-showcase.is-transitioning .tt-showcase-image-next {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.tt-showcase.is-transitioning .tt-showcase-video {
    opacity: 0;
    transform: translateX(-24px) scale(0.992);
}

.tt-showcase.is-transitioning .tt-showcase-video-next {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.tt-showcase-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 108px));
    justify-content: flex-start;
    gap: 12px;
}

button.tt-showcase-thumb {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    position: relative;
    padding: 0;
    border: 1px solid rgba(255, 154, 74, 0.18) !important;
    border-radius: 14px;
    background: rgba(20, 13, 9, 0.9) !important;
    overflow: hidden;
    cursor: pointer;
    color: #fff3e7 !important;
    -webkit-text-fill-color: #fff3e7;
    box-shadow: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.tt-showcase-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1.4 / 1;
    object-fit: cover;
    object-position: top center;
}

.tt-showcase-thumb:hover,
.tt-showcase-thumb:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 154, 74, 0.42);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.tt-showcase-thumb.is-active {
    border-color: rgba(255, 130, 28, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 130, 28, 0.14), 0 14px 30px rgba(255, 101, 0, 0.16);
}

.tt-showcase-thumbs.is-hidden,
.tt-showcase-thumbs[hidden] {
    display: none;
}

.tt-showcase-thumb-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border: 1px solid rgba(255, 163, 88, 0.42);
    border-radius: 999px;
    background: rgba(9, 6, 4, 0.88);
    color: #ffcf9f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tt-showcase-panel {
    display: grid;
    align-content: space-between;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 153, 76, 0.18);
    border-radius: 20px;
    background:
        radial-gradient(circle at top center, rgba(255, 118, 28, 0.09), transparent 40%),
        linear-gradient(180deg, rgba(20, 14, 10, 0.96), rgba(11, 9, 7, 0.98));
}

.tt-showcase-panel-top {
    display: grid;
    gap: 12px;
}

.tt-showcase-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border: 1px solid rgba(255, 138, 50, 0.2);
    border-radius: 999px;
    background: rgba(255, 111, 0, 0.09);
    color: #ffae68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tt-showcase-panel h3 {
    margin: 0;
    font-size: clamp(28px, 3.3vw, 40px);
    font-weight: 800;
    line-height: 1.02;
}

.tt-showcase-panel p {
    margin: 0;
    color: rgba(255, 225, 197, 0.7);
    font-size: 16px;
    line-height: 1.7;
}

.tt-showcase-caption {
    padding: 14px 16px;
    border: 1px solid rgba(255, 145, 64, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 233, 213, 0.76);
    font-size: 14px;
    line-height: 1.65;
}

.tt-showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tt-showcase-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 146, 66, 0.14);
    border-radius: 999px;
    background: rgba(255, 108, 12, 0.08);
    color: #fff0df;
    font-size: 13px;
    font-weight: 600;
}

.tt-showcase-feature::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff8e32, #cf5b00);
    box-shadow: 0 0 14px rgba(255, 114, 16, 0.46);
}

.tt-showcase-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    padding: 16px 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff6c0f, #c65500);
    color: #fff7ef;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(255, 101, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tt-showcase-button:hover,
.tt-showcase-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 101, 0, 0.26);
}

.tt-showcase-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

button.tt-showcase-select {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 132, 39, 0.3) !important;
    border-radius: 16px;
    background: rgba(15, 11, 8, 0.88) !important;
    color: #fff3e7 !important;
    -webkit-text-fill-color: #fff3e7;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.tt-showcase-select:hover,
.tt-showcase-select:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 154, 74, 0.26);
    background: rgba(22, 16, 11, 0.94);
}

.tt-showcase-select.is-active {
    border-color: rgba(255, 132, 39, 0.5);
    background:
        radial-gradient(circle at top center, rgba(255, 118, 28, 0.1), transparent 60%),
        rgba(21, 15, 10, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.tt-showcase-select-label {
    color: rgba(255, 172, 110, 0.72) !important;
    -webkit-text-fill-color: rgba(255, 172, 110, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tt-showcase-select-title {
    color: #fff3e7 !important;
    -webkit-text-fill-color: #fff3e7;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.tt-app-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 132, 39, 0.45);
    border-radius: 14px;
    background:
        radial-gradient(circle at top center, rgba(255, 114, 32, 0.16), transparent 26%),
        linear-gradient(180deg, #090603 0%, #050301 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    text-align: left;
}

.tt-app-frame-gallery {
    position: relative;
    overflow: visible;
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.46),
        0 0 0 1px rgba(255, 124, 32, 0.14),
        0 0 50px rgba(255, 102, 0, 0.16);
}

.tt-app-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(255, 120, 28, 0.1);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

.tt-gallery-stage {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.tt-gallery-media {
    position: relative;
    display: block;
}

.tt-app-screenshot-next {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
}

.tt-gallery-stage.is-transitioning .tt-app-screenshot {
    opacity: 0;
    transform: scale(1.01);
}

.tt-gallery-stage.is-transitioning .tt-app-screenshot-next {
    opacity: 1;
    transform: scale(1.015);
}

.tt-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(72, 72, 72, 0.8);
    border-radius: 999px;
    background: rgba(24, 24, 24, 0.98);
    color: rgba(214, 214, 214, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.tt-slider-arrow:hover {
    transform: translateY(-50%) scale(1.04);
    border-color: rgba(98, 98, 98, 0.9);
    background: rgba(36, 36, 36, 0.99);
}

.tt-slider-arrow span {
    font-size: 22px;
    line-height: 1;
}

.tt-slider-arrow-prev {
    left: -78px;
}

.tt-slider-arrow-next {
    right: -78px;
}

.tt-gallery-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 129, 39, 0.14), transparent 48%),
        linear-gradient(180deg, transparent 40%, rgba(7, 5, 4, 0.82) 100%);
    opacity: 0.74;
    transition: opacity 0.24s ease;
}

.tt-gallery-stage:hover::after,
.tt-gallery-stage:focus-visible::after {
    opacity: 0.96;
}

.tt-gallery-stage:hover .tt-app-screenshot,
.tt-gallery-stage:focus-visible .tt-app-screenshot {
    transform: scale(1.015);
}

.tt-gallery-stage:hover .tt-gallery-overlay,
.tt-gallery-stage:focus-visible .tt-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.tt-gallery-overlay {
    position: absolute;
    inset: auto 26px 24px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.tt-gallery-overlay-copy {
    display: grid;
    gap: 8px;
    max-width: 480px;
}

.tt-gallery-overlay-title,
.tt-gallery-overlay-text,
.tt-gallery-overlay-btn {
    color: #fff3e5;
}

.tt-gallery-overlay-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tt-gallery-overlay-text {
    color: rgba(255, 236, 220, 0.84);
    font-size: 14px;
    line-height: 1.5;
}

.tt-gallery-overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 154, 74, 0.5);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 122, 18, 0.92), rgba(188, 78, 0, 0.96));
    box-shadow: 0 14px 40px rgba(255, 106, 0, 0.24);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tt-app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 4, 3, 0.88);
}

.tt-app-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.tt-app-chip {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f08a27, #a64a04);
    box-shadow: 0 0 18px rgba(255, 120, 28, 0.35);
}

.tt-app-title,
.tt-app-brand-name,
.tt-app-panel-title,
.tt-app-telemetry-head span:first-child {
    color: #f7dcc0;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tt-app-title {
    font-size: 13px;
}

.tt-app-subtitle,
.tt-app-brand-meta,
.tt-app-breadcrumb,
.tt-app-sidebar-section,
.tt-app-hero-caption,
.tt-app-hero-version,
.tt-app-stat-label,
.tt-app-system-row span,
.tt-app-metric-row span,
.tt-app-telemetry-head span:last-child {
    color: rgba(255, 203, 164, 0.72);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tt-app-window-dots {
    display: flex;
    gap: 10px;
}

.tt-app-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 181, 130, 0.35);
}

.tt-app-body {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: 720px;
}

.tt-app-sidebar {
    padding: 18px 14px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 2, 1, 0.88);
}

.tt-app-brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-app-brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: linear-gradient(180deg, #e27b1a, #9e4603);
    color: #fff3e5;
    font-weight: 800;
}

.tt-app-brand-name {
    font-size: 13px;
}

.tt-app-brand-meta {
    margin-top: 5px;
}

.tt-app-sidebar-section {
    margin: 18px 10px 10px;
}

.tt-app-sidebar-item,
.tt-app-sidebar-list span {
    display: block;
    border: 1px solid transparent;
    border-radius: 6px;
    color: rgba(255, 225, 197, 0.86);
    font-size: 17px;
    line-height: 1.1;
}

.tt-app-sidebar-item {
    margin: 0 6px 16px;
    padding: 12px 14px;
    background: rgba(255, 111, 0, 0.12);
    border-color: rgba(255, 132, 39, 0.12);
}

.tt-app-sidebar-list {
    display: grid;
    gap: 10px;
    margin: 0 6px;
}

.tt-app-sidebar-list span {
    padding: 8px 10px;
    font-size: 15px;
    color: rgba(255, 208, 174, 0.78);
}

.tt-app-main {
    padding: 18px 20px 22px;
    background:
        linear-gradient(transparent 95%, rgba(255, 121, 22, 0.04) 95%),
        linear-gradient(90deg, transparent 95%, rgba(255, 121, 22, 0.04) 95%);
    background-size: 100% 24px, 24px 100%;
}

.tt-app-breadcrumb {
    margin-bottom: 22px;
}

.tt-app-section-tag {
    margin-bottom: 18px;
    color: #ff9f4d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tt-app-hero-panel,
.tt-app-panel,
.tt-app-stat-card {
    border: 1px solid rgba(255, 180, 122, 0.26);
    border-radius: 12px;
    background: rgba(14, 8, 4, 0.82);
}

.tt-app-hero-panel {
    padding: 22px 28px;
    margin-bottom: 22px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 123, 24, 0.04);
}

.tt-app-hero-caption,
.tt-app-hero-version {
    text-align: center;
}

.tt-app-hero-title {
    margin: 14px 0 10px;
    color: #ff973e;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(255, 117, 22, 0.62);
}

.tt-app-telemetry-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.tt-app-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.tt-app-stat-card {
    padding: 14px 14px 16px;
}

.tt-app-stat-value {
    margin: 10px 0 12px;
    color: #ffb270;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.tt-app-stat-bar {
    height: 3px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.tt-app-stat-bar span {
    display: block;
    width: 34%;
    height: 100%;
    background: linear-gradient(90deg, #d96800, #ff9a3b);
}

.tt-app-stat-meta,
.tt-app-panel-body,
.tt-app-secondary-action {
    color: rgba(255, 218, 189, 0.76);
}

.tt-app-lower-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.95fr;
    gap: 16px;
}

.tt-app-panel {
    padding: 18px;
}

.tt-app-panel-main {
    min-height: 300px;
}

.tt-app-panel-header {
    margin-bottom: 18px;
}

.tt-app-panel-title {
    margin-bottom: 10px;
    font-size: 14px;
}

.tt-app-panel-body {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.55;
}

.tt-app-metric-list,
.tt-app-system-list {
    display: grid;
    gap: 12px;
}

.tt-app-metric-row,
.tt-app-system-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-app-metric-row strong,
.tt-app-system-row strong {
    color: #fff1e0;
    font-size: 15px;
    font-weight: 600;
}

.tt-app-panel-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.tt-app-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    padding: 14px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #cb6304, #ad4f00);
    color: #fff3e6;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tt-app-secondary-action {
    font-size: 15px;
}

.tt-cta-main,
.tt-cta-secondary {
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
}

.tt-cta-main,
.tt-card-btn {
    background: var(--tt-accent);
    color: var(--tt-text);
    font-weight: 700;
}

.tt-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--tt-text);
    font-weight: 600;
}

.tt-products,
.tt-how,
.tt-compare,
.tt-discord,
.tt-footer {
    padding-left: 40px;
    padding-right: 40px;
}

.tt-products,
.tt-compare {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tt-products-hero {
    width: min(100%, 1440px);
    margin-top: 44px;
    padding: 0;
    scroll-margin-top: 110px;
}

.tt-products-hero .tt-section-title {
    margin-bottom: 28px;
}

.tt-buy-guide {
    width: min(100%, 1440px);
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-26px);
    pointer-events: none;
    transition:
        max-height 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease,
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        margin-bottom 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 1.05s;
}

.tt-products.is-buy-guide-open .tt-buy-guide {
    margin-bottom: 32px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
        max-height 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease,
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        margin-bottom 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}

.tt-buy-guide-inner {
    padding-top: 8px;
}

.tt-buy-guide-shell {
    padding: 8px 0 6px;
}

.tt-buy-guide-header {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}

.tt-buy-guide-kicker {
    margin-bottom: 12px;
    color: #ff9b47;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tt-buy-guide-header p {
    margin: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 226, 198, 0.68);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    text-wrap: balance;
}

.tt-buy-guide-header a {
    color: #ffb066;
    font-weight: 700;
    text-decoration: none;
}

.tt-buy-guide-header a:hover,
.tt-buy-guide-header a:focus-visible {
    color: #ffd2a3;
    text-decoration: underline;
}

.tt-buy-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.tt-buy-guide-card {
    padding: 22px 20px 24px;
    border: 1px solid rgba(255, 141, 56, 0.24);
    border-radius: 16px;
    background:
        radial-gradient(circle at top center, rgba(255, 104, 18, 0.11), transparent 52%),
        linear-gradient(180deg, rgba(20, 14, 10, 0.94), rgba(11, 9, 7, 0.96));
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    text-align: center;
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
    transition:
        opacity 0.34s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.2s ease;
}

.tt-products.is-buy-guide-open .tt-buy-guide-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tt-products.is-buy-guide-open .tt-buy-guide-card:nth-child(1) {
    transition-delay: 0.04s;
}

.tt-products.is-buy-guide-open .tt-buy-guide-card:nth-child(2) {
    transition-delay: 0.1s;
}

.tt-products.is-buy-guide-open .tt-buy-guide-card:nth-child(3) {
    transition-delay: 0.16s;
}

.tt-products.is-buy-guide-open .tt-buy-guide-card:nth-child(4) {
    transition-delay: 0.22s;
}

.tt-buy-guide-card:hover {
    border-color: rgba(255, 155, 85, 0.38);
}

.tt-buy-guide-card-label {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 183, 128, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tt-buy-guide-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.tt-buy-guide-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

.tt-cta-main[aria-expanded="true"] {
    box-shadow: 0 18px 44px rgba(255, 100, 0, 0.2);
}

.tt-how {
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--tt-bg-alt);
    text-align: center;
}

.tt-discord {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.tt-footer {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: 1px solid var(--tt-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.tt-section-title {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 60px;
}

.tt-cards,
.tt-steps,
.tt-compare-table {
    width: min(100%, var(--tt-max-width));
    margin: 0 auto;
}

.tt-cards {
    display: grid;
    width: min(100%, 1440px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.tt-card {
    overflow: hidden;
    background: var(--tt-card-bg);
    border: 1px solid var(--tt-border);
    border-radius: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tt-card.featured {
    border-color: rgba(255, 77, 0, 0.5);
}

.tt-card:hover,
.tt-btn-outline:hover,
.tt-btn-primary:hover,
.tt-cta-main:hover,
.tt-cta-secondary:hover,
.tt-card-btn:hover,
.tt-discord-btn:hover {
    transform: translateY(-2px);
}

.tt-card:hover {
    border-color: rgba(255, 77, 0, 0.4);
}

.tt-card-preview {
    position: relative;
    min-height: 258px;
    padding: 18px;
    background:
        radial-gradient(circle at top center, rgba(255, 96, 0, 0.08), transparent 44%),
        linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.tt-card-preview-image {
    display: block;
    width: 100%;
    height: 222px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(255, 120, 28, 0.08);
}

.tt-card-preview-trigger {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 145, 64, 0.68);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 122, 18, 0.96), rgba(188, 78, 0, 0.98));
    color: #050505 !important;
    -webkit-text-fill-color: #050505;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(255, 98, 0, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tt-card-preview-trigger span {
    color: #050505 !important;
    -webkit-text-fill-color: #050505;
}

.tt-card-preview-trigger:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255, 140, 44, 0.98), rgba(212, 88, 0, 0.99));
    border-color: rgba(255, 181, 112, 0.86);
    box-shadow: 0 16px 36px rgba(255, 98, 0, 0.28);
}

.tt-best-seller {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--tt-accent);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tt-text);
}

.tt-card-body {
    padding: 28px;
}

.tt-card-name {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 700;
}

.tt-card-subtitle {
    margin-bottom: 10px;
    color: rgba(255, 181, 124, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tt-card-price {
    margin-bottom: 4px;
    color: var(--tt-accent);
    font-size: 32px;
    font-weight: 900;
}

.tt-card-price span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
}

.tt-card-desc,
.tt-step p,
.tt-discord-card p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.tt-card-desc {
    margin-bottom: 16px;
    font-size: 14px;
}

.tt-features {
    margin-bottom: 24px;
}

.tt-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: var(--tt-text-dim);
    font-size: 14px;
}

.tt-features li::before {
    content: "\2713";
    color: var(--tt-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.tt-card-btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
}

body.tt-preview-open {
    overflow: hidden;
}

.tt-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 32px;
}

.tt-preview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.tt-preview-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    padding: 18px;
    border: 1px solid rgba(255, 132, 39, 0.38);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(14, 8, 4, 0.98), rgba(8, 5, 3, 0.98));
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.tt-preview-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 108px);
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-preview-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.92);
    color: #fff3e5;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1320px) {
    .tt-cards,
    .tt-buy-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.tt-how h2,
.tt-compare h2,
.tt-discord-card h2 {
    margin: 0 0 16px;
    font-weight: 800;
}

.tt-how h2 {
    font-size: 42px;
}

.tt-sub {
    margin: 0 0 64px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.tt-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tt-step {
    padding: 0 10px;
}

.tt-step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 77, 0, 0.4);
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.15);
    color: var(--tt-accent);
    font-size: 18px;
    font-weight: 800;
}

.tt-step h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.tt-compare h2 {
    margin-bottom: 12px;
    text-align: center;
    font-size: 38px;
}

.tt-compare-head {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.tt-compare-head .tt-sub {
    margin-bottom: 0;
}

.tt-compare-table {
    overflow-x: auto;
    padding-bottom: 6px;
}

.tt-compare-row {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, minmax(180px, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tt-compare-row.header {
    align-items: stretch;
    border-bottom: 0;
}

.tt-col-header,
.tt-compare-cell {
    padding: 18px 20px;
}

.tt-col-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: rgba(255, 234, 216, 0.78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(17, 17, 17, 0.9);
}

.tt-col-header:first-child {
    border-radius: 14px 0 0 0;
}

.tt-col-header:last-child {
    border-radius: 0 14px 0 0;
}

.tt-col-header-product {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.tt-compare-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 1px solid rgba(255, 134, 42, 0.26);
    border-radius: 999px;
    background: rgba(255, 107, 16, 0.08);
    color: #ffab61;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.tt-compare-product-name {
    color: #fff3e6;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.tt-compare-cell {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
    background: rgba(7, 7, 7, 0.38);
}

.tt-compare-cell.label {
    color: rgba(255, 246, 236, 0.92);
    font-weight: 600;
    background: rgba(13, 13, 13, 0.72);
}

.tt-discord-card {
    width: min(100%, 680px);
    padding: 60px 80px;
    background:
        radial-gradient(circle at top center, rgba(255, 111, 0, 0.12), transparent 40%),
        linear-gradient(180deg, #15100b 0%, #0b0907 100%);
    border: 1px solid rgba(255, 122, 18, 0.34);
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 36px rgba(255, 106, 0, 0.12);
}

.tt-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 16px;
    background: rgba(255, 114, 16, 0.12);
    border-radius: 20px;
    color: #ff9d4a;
}

.tt-discord-card h2 {
    font-size: 36px;
}

.tt-discord-perks {
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tt-discord-perks span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 226, 198, 0.62);
    font-size: 13px;
}

.tt-discord-perks span::before {
    content: "\2713";
    color: #ff8b2a;
    font-weight: 700;
}

.tt-discord-btn {
    padding: 16px 40px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ff6c0f, #c65500);
    color: var(--tt-text);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 101, 0, 0.24);
}

.tt-footer-copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.tt-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.tt-footer-link {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.tt-footer-note {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

@media (max-width: 960px) {
    .tt-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 24px;
    }

    .tt-nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tt-products,
    .tt-how,
    .tt-compare,
    .tt-discord,
    .tt-footer,
    .tt-hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tt-cards,
    .tt-buy-guide-grid,
    .tt-steps {
        grid-template-columns: 1fr;
    }

    .tt-showcase-shell,
    .tt-showcase-selector {
        grid-template-columns: 1fr;
    }

    .tt-app-body,
    .tt-app-stat-grid,
    .tt-app-lower-grid {
        grid-template-columns: 1fr;
    }

    .tt-app-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tt-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .tt-showcase {
        padding: 22px;
    }

    .tt-showcase-panel {
        padding: 24px;
    }

    .tt-buy-guide-header {
        margin-bottom: 22px;
    }

    .tt-buy-guide-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .tt-card-preview-trigger {
        right: 24px;
        bottom: 24px;
        padding: 5px 9px;
        font-size: 9px;
    }

    .tt-preview-modal {
        padding: 20px;
    }

    .tt-preview-dialog {
        width: min(100vw - 24px, 960px);
        padding: 14px;
    }

    .tt-discord-card {
        padding: 40px 28px;
    }

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

@media (max-width: 640px) {
    .tt-nav {
        gap: 14px;
    }

    .tt-nav-right,
    .tt-hero-cta {
        width: 100%;
        flex-direction: column;
    }

    .tt-btn-outline,
    .tt-btn-primary,
    .tt-cta-main,
    .tt-cta-secondary,
    .tt-discord-btn {
        width: 100%;
    }

    .tt-hero {
        padding-top: 180px;
    }

    .tt-hero-preview {
        margin-top: 38px;
    }

    .tt-showcase {
        padding: 18px;
        border-radius: 18px;
    }

    .tt-showcase-head {
        margin-bottom: 22px;
    }

    .tt-showcase-head p,
    .tt-showcase-panel p,
    .tt-showcase-caption {
        font-size: 14px;
    }

    .tt-showcase-panel {
        padding: 20px;
    }

    .tt-showcase-button {
        width: 100%;
    }

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

    .tt-products-hero {
        margin-top: 32px;
    }

    .tt-products.is-buy-guide-open .tt-buy-guide {
        margin-bottom: 26px;
    }

    .tt-buy-guide-header p {
        font-size: 14px;
    }

    .tt-gallery-overlay {
        inset: auto 14px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tt-gallery-overlay-btn {
        min-width: 100%;
    }

    .tt-slider-arrow {
        width: 44px;
        height: 44px;
        top: 50%;
    }

    .tt-slider-arrow-prev {
        left: -22px;
    }

    .tt-slider-arrow-next {
        right: -22px;
    }

    .tt-app-topbar,
    .tt-app-main,
    .tt-app-sidebar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tt-app-panel-actions,
    .tt-app-metric-row,
    .tt-app-system-row,
    .tt-app-telemetry-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tt-app-primary-action {
        min-width: 100%;
    }

    .tt-how h2,
    .tt-compare h2,
    .tt-discord-card h2 {
        font-size: 32px;
    }

    .tt-compare-row,
    .tt-compare-row.header {
        min-width: 980px;
    }

    .tt-preview-image {
        max-height: calc(100vh - 90px);
    }
}
