﻿/* ========== Advisor Wait ========== */
.tf-wait {
    max-width: 860px;
    margin: 48px auto;
}

.tf-hero {
    padding: 22px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: center;
}

@media (max-width: 860px) {
    .tf-hero {
        grid-template-columns: 1fr;
    }
}

.tf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tf-dotlive {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--tf-accent);
    box-shadow: 0 0 0 5px rgba(34,197,94,0.10);
}

.tf-h1 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.tf-lead {
    margin: 0;
    color: var(--tf-muted);
}

.tf-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

/* Loader */
.tf-spinner {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 5px solid rgba(255,255,255,0.14);
    border-top-color: rgba(255,255,255,0.86);
    animation: tfspin 0.9s linear infinite;
}

@keyframes tfspin {
    to {
        transform: rotate(360deg);
    }
}

/* Sneak peek skeleton */
.tf-sneak {
    padding: 16px;
}

.tf-skel {
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

    .tf-skel::after {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-55%);
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
        animation: tfsweep 1.2s ease-in-out infinite;
    }

@keyframes tfsweep {
    to {
        transform: translateX(55%);
    }
}

.tf-skel-line {
    height: 12px;
    margin: 10px 0;
}

    .tf-skel-line.sm {
        width: 55%;
    }

    .tf-skel-line.md {
        width: 75%;
    }

    .tf-skel-line.lg {
        width: 92%;
    }

.tf-mini {
    font-size: 13px;
    color: var(--tf-muted);
    margin: 10px 0 0;
}

.tf-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tf-hidden {
    display: none !important;
}

/* ========== Landing / Home ========== */
.tf-landing {
    max-width: 980px;
    margin: 48px auto;
}

.tf-landing-hero {
    padding: 28px;
    margin-bottom: 18px;
}

.tf-landing-title {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 12px;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.tf-landing-lead {
    font-size: 18px;
    margin: 0;
    color: var(--tf-muted);
}

.tf-feature-box {
    margin: 18px 0;
}

.tf-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

    .tf-feature-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.tf-feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--tf-accent);
    margin-top: 7px;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.tf-price {
    font-size: 20px;
    font-weight: 800;
    margin: 14px 0;
}

.tf-disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--tf-muted);
}


/* ========== Advisor Form ========== */
.tf-form-wrap {
    max-width: 980px;
    margin: 34px auto;
}

.tf-form-hero {
    padding: 22px;
    margin-bottom: 16px;
}

.tf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 860px) {
    .tf-form-grid {
        grid-template-columns: 1fr;
    }
}

.tf-field label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.2px;
    margin-bottom: 7px;
    color: rgba(255,255,255,0.86);
}

.tf-help {
    margin-top: 8px;
    font-size: 13px;
    color: var(--tf-muted);
}

.tf-actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tf-divider {
    height: 1px;
    background: var(--tf-border);
    margin: 16px 0;
}

.tf-input, .tf-select, .tf-textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--tf-border);
    background: rgba(255,255,255,0.04);
    padding: 12px 12px;
    color: var(--tf-text);
}

    .tf-input:focus, .tf-select:focus, .tf-textarea:focus {
        outline: none;
        border-color: rgba(34,197,94,0.4);
        box-shadow: var(--tf-ring);
    }


/* ========== Advisor Result ========== */
.tf-result-wrap {
    max-width: 980px;
    margin: 34px auto;
}

.tf-result-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 14px;
    align-items: start;
}

@media (max-width: 980px) {
    .tf-result-grid {
        grid-template-columns: 1fr;
    }
}

.tf-report-box {
    padding: 18px;
}

.tf-report-html {
    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius);
    background: rgba(255,255,255,0.03);
    padding: 16px;
}

.tf-paywall {
    position: sticky;
    top: 88px;
}

.tf-paywall-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
}

.tf-paywall-p {
    margin: 0;
    color: var(--tf-muted);
    font-size: 14px;
    line-height: 1.5;
}

.tf-paywall-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

    .tf-paywall-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.tf-check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
    color: rgba(34,197,94,0.95);
    font-weight: 900;
    font-size: 12px;
}

.tf-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--tf-border);
}

/* ========== Report (rpt-*) ========== */
.rpt {
    color: var(--tf-text);
}

    .rpt h1, .rpt h2, .rpt h3 {
        margin: 0 0 10px;
        font-weight: 900;
        letter-spacing: -0.3px;
    }

    .rpt h2 {
        font-size: 18px;
    }

    .rpt h3 {
        font-size: 15px;
    }

    .rpt p {
        margin: 0 0 10px;
        color: var(--tf-muted);
        line-height: 1.55;
    }

    .rpt ul, .rpt ol {
        margin: 10px 0 0;
        padding-left: 18px;
        color: var(--tf-text);
    }

    .rpt li {
        margin: 6px 0;
        color: rgba(255,255,255,0.86);
    }

.rpt-hero {
    margin-bottom: 14px;
}

.rpt-verdict {
    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    padding: 16px;
    box-shadow: var(--tf-shadow-soft);
}

.rpt-disclaimer {
    font-size: 13px;
    color: var(--tf-muted);
    margin: 0 0 10px;
}

.rpt-verdict__label {
    font-size: 12px;
    color: var(--tf-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 900;
    margin-bottom: 6px;
}

.rpt-verdict__value {
    font-size: 22px;
    font-weight: 1000;
    margin-bottom: 6px;
}

.rpt-verdict__why {
    color: rgba(255,255,255,0.86);
}

.rpt-verdict__conds {
    margin-top: 10px;
    padding-left: 18px;
    color: rgba(255,255,255,0.86);
}

.rpt-verdict--BUY {
    border-color: rgba(34,197,94,0.35);
    background: linear-gradient(180deg, rgba(34,197,94,0.16), rgba(255,255,255,0.03));
}

.rpt-verdict--CONDITIONAL {
    border-color: rgba(245,158,11,0.35);
    background: linear-gradient(180deg, rgba(245,158,11,0.14), rgba(255,255,255,0.03));
}

.rpt-verdict--SKIP {
    border-color: rgba(239,68,68,0.35);
    background: linear-gradient(180deg, rgba(239,68,68,0.14), rgba(255,255,255,0.03));
}

.rpt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 980px) {
    .rpt-grid {
        grid-template-columns: 1fr;
    }
}

.rpt-card {
    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius);
    background: rgba(255,255,255,0.03);
    padding: 16px;
    box-shadow: var(--tf-shadow-soft);
}

.rpt-card--wide {
    grid-column: 1 / -1;
}

.rpt-mine {
    border-top: 1px solid var(--tf-border);
    padding-top: 12px;
    margin-top: 12px;
}

    .rpt-mine:first-of-type {
        border-top: 0;
        padding-top: 0;
        margin-top: 0;
    }

.rpt-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--tf-border);
    background: rgba(255,255,255,0.05);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2px;
    margin-left: 8px;
}

.rpt-badge--warn {
    border-color: rgba(245,158,11,0.35);
    background: rgba(245,158,11,0.10);
    color: rgba(245,158,11,0.95);
}

.rpt-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--tf-border);
}

    .rpt-table th, .rpt-table td {
        text-align: left;
        padding: 10px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        vertical-align: top;
        font-size: 13px;
    }

    .rpt-table thead th {
        color: rgba(255,255,255,0.86);
        background: rgba(255,255,255,0.05);
        font-weight: 900;
    }

    .rpt-table tbody tr:hover td {
        background: rgba(255,255,255,0.03);
    }

.rpt-callout {
    margin-top: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(96,165,250,0.28);
    background: rgba(96,165,250,0.08);
    color: rgba(255,255,255,0.88);
}

.rpt-footer small {
    color: var(--tf-muted);
}


.rpt-muted {
    color: var(--tf-muted);
}

.rpt-list-tight {
    margin: 0;
    padding-left: 18px;
}

/* ========== Reports View ========== */
.tf-report-wrap {
    max-width: 980px;
    margin: 34px auto;
}

.tf-report-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tf-report-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tf-report-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.tf-report-body {
    margin-top: 12px;
}

.tf-link {
    color: rgba(255,255,255,0.86);
    text-decoration: underline;
    text-underline-offset: 3px;
}

    .tf-link:hover {
        color: var(--tf-text);
    }

.tf-copy {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
