/**
 * Stanford Striking Theme
 * Auto-generated
 */

:root {
    --sts-primary: #141335;
    --sts-primary-light: #43434e;
    --sts-primary-dark: #0c0c0c;
    --sts-bronze: #3285ed;
    --sts-bronze-light: #c99cf5;
    --sts-bronze-dark: #895fbf;
    --sts-silver: #b8b5c3;
    --sts-silver-light: #d2e2dd;
    --sts-charcoal: #F5F0FF;
    --sts-midnight: #FFFFFF;
    --sts-slate: #FFFFFF;
    --sts-text: #E8EDF2;
    --sts-text-dim: #90a0a8;
    --sts-text-dark: #121b2b;
    --sts-border: #dad4f5;
    --sts-success: #31c776;
    --sts-warning: #e1433d;
    --sts-highlight: #f5de0a;
    --sts-curve-sm: 4px;
    --sts-curve-md: 8px;
    --sts-curve-lg: 14px;
    --sts-glow: 0 2px 8px rgba(0,0,0,0.08);
    --sts-glow-bronze: 0 6px 24px rgba(57,125,245,0.25);
    --sts-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --sts-font-heading: 'Playfair Display', serif;
    --sts-font-text: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.sts-page {
    font-family: var(--sts-font-text);
    background: linear-gradient(180deg, var(--sts-charcoal) 0%, var(--sts-midnight) 100%);
    color: var(--sts-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--sts-bronze);
    text-decoration: none;
    transition: var(--sts-anim);
}

a:hover {
    color: var(--sts-bronze-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   NAVIGATION BAR
================================================ */
.sts-topbar {
    background: linear-gradient(180deg, var(--sts-primary-dark) 0%, var(--sts-charcoal) 100%);
    border-bottom: 1px solid var(--sts-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(15px);
}

.sts-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sts-brand {
    display: flex;
    align-items: center;
    gap: 17px;
    text-decoration: none;
    margin-right: auto;
}

.sts-brand__title {
    font-family: var(--sts-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--sts-text);
    letter-spacing: 0.6px;
}

.sts-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.sts-menu__link {
    display: inline-block;
    padding: 10px 24px;
    color: var(--sts-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: var(--sts-curve-sm);
    transition: var(--sts-anim);
}

.sts-menu__link:hover,
.sts-menu__link.current {
    color: var(--sts-bronze);
    background: rgba(58,135,239,0.12);
}

.sts-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 11px 27px;
    background: linear-gradient(135deg, var(--sts-bronze) 0%, var(--sts-bronze-dark) 100%);
    color: var(--sts-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 52px;
    transition: var(--sts-anim);
    box-shadow: var(--sts-glow-bronze);
}

.sts-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(51,128,245,0.5);
    color: var(--sts-charcoal);
}

.sts-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 13px;
    background: transparent;
    border: 3px solid var(--sts-bronze);
    border-radius: var(--sts-curve-sm);
    cursor: pointer;
}

.sts-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--sts-bronze);
    transition: var(--sts-anim);
}

.sts-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.sts-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.sts-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sts-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--sts-primary-dark);
    transition: max-height 0.35s ease;
}

.sts-drawer.open {
    display: block;
    max-height: 420px;
    padding: 27px 31px;
}

.sts-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sts-drawer__nav a {
    display: block;
    padding: 11px 24px;
    color: var(--sts-text);
    font-size: 15px;
    border-radius: var(--sts-curve-sm);
}

.sts-drawer__nav a:hover {
    background: rgba(52,122,240,0.12);
    color: var(--sts-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.sts-content {
    min-height: calc(100vh - 200px);
}

.sts-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 31px;
}

/* ================================================
   HERO BANNER
================================================ */
.sts-hero {
    text-align: center;
    padding: 0 0 18px;
    margin-bottom: 13px;
}

.sts-hero__tag {
    display: inline-block;
    padding: 10px 27px;
    background: rgba(53,132,245,0.18);
    color: var(--sts-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 53px;
    margin-bottom: 23px;
}

.sts-hero__heading {
    font-family: var(--sts-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--sts-text);
    margin-bottom: 17px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sts-hero__desc {
    font-size: 22px;
    color: var(--sts-text-dim);
    max-width: 640px;
    margin: 0 auto 37px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.sts-section-intro {
    text-align: center;
    margin-bottom: 47px;
}

.sts-section-intro__label {
    display: inline-block;
    padding: 7px 20px;
    background: rgba(54,125,241,0.18);
    color: var(--sts-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 53px;
    margin-bottom: 14px;
}

.sts-section-intro__title {
    font-family: var(--sts-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--sts-text);
    margin-bottom: 15px;
}

.sts-section-intro__text {
    font-size: 16px;
    color: var(--sts-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.sts-providers {
    margin: 50px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.sts-providers__grid {
    background: var(--sts-slate);
    border-radius: var(--sts-curve-lg);
    overflow: hidden;
    box-shadow: var(--sts-glow);
}

.sts-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 24px;
    padding: 19px 30px;
    background: #0a1b27;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    text-align: center;
    align-items: center;
}

.sts-providers__head > div {
    text-align: center;
    color: #fff;
}

.sts-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 23px;
    padding: 24px 29px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e1e0e6;
    background: #ffffff;
    transition: background 0.2s ease;
}

.sts-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.sts-providers__row:last-child {
    border-bottom: none;
}

.sts-providers__row:hover {
    background: #e8edf5;
}

.sts-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #946bcc;
}

.sts-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sts-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 9px;
    background: #fff;
    padding: 14px 13px;
    border: 1px solid #eee;
}

.sts-company-cell__tagline {
    font-size: 12px;
    color: #9a67c8;
    text-align: center;
    font-weight: 500;
}

.sts-perks {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.sts-perk {
    display: block;
    padding: 6px 17px;
    background: #eaf2e8;
    color: #216620;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    border: 1px solid #c4eac4;
}

.sts-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sts-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.sts-stars__star {
    font-size: 17px;
}

.sts-stars__star.lit {
    color: #ed9e0a;
}

.sts-stars__star.dim {
    color: #d4d1e0;
}

.sts-score__num {
    font-weight: 700;
    color: #253651;
    font-size: 17px;
}

.sts-score__bbb {
    font-size: 11px;
    color: #1f661c;
    font-weight: 700;
    background: #e8f5e9;
    padding: 1px 10px;
    border-radius: 3px;
}

.sts-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sts-invest__amount {
    font-weight: 700;
    color: #2c3e56;
    font-size: 17px;
}

.sts-invest__label {
    font-size: 11px;
    color: #76888f;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sts-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.sts-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 23px;
    background: linear-gradient(135deg, #9664c6 0%, #5fa3f1 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--sts-anim);
}

.sts-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(63,135,245,0.3);
}

.sts-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 21px;
    color: #4f5456;
    border: 1px solid #ccc7c9;
    font-size: 11px;
    border-radius: 5px;
    transition: var(--sts-anim);
}

.sts-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #292a2b;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.sts-toc {
    background: linear-gradient(135deg, rgba(64,129,242,0.12) 0%, rgba(65,122,245,0.05) 100%);
    border: 2px solid var(--sts-bronze);
    border-radius: var(--sts-curve-lg);
    padding: 31px 34px;
    margin: 37px 0;
}

.sts-toc__title {
    font-family: var(--sts-font-heading);
    font-size: 22px;
    color: var(--sts-text);
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sts-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.sts-toc__list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    color: var(--sts-text);
    font-size: 14px;
    border-radius: var(--sts-curve-sm);
    transition: var(--sts-anim);
}

.sts-toc__list li a:hover {
    background: rgba(66,132,243,0.18);
    color: var(--sts-bronze);
}

.sts-toc__list li a::before {
    content: '\2192';
    color: var(--sts-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.sts-article {
    margin: 47px 0;
}

.sts-article h1 {
    font-family: var(--sts-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--sts-text);
    margin-bottom: 26px;
    text-align: center;
}

.sts-block {
    margin: 41px 0;
    padding: 32px;
    background: var(--sts-slate);
    border-radius: var(--sts-curve-lg);
}

.sts-block#overview {
    background: transparent;
    padding: 0;
}

.sts-block h2 {
    font-family: var(--sts-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--sts-text);
    margin-bottom: 20px;
}

.sts-block__body {
    font-size: 17px;
    line-height: 1.85;
}

.sts-block__body p {
    margin-bottom: 21px;
}

.sts-block__body ul,
.sts-block__body ol {
    margin: 17px 0;
    padding-left: 30px;
}

.sts-block__body li {
    margin-bottom: 9px;
}

.sts-block__body strong {
    color: var(--sts-text);
}

.sts-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 18px auto;
}

/* Content images */
.sts-content-image {
    margin: 39px 0;
    border-radius: var(--sts-curve-lg);
    overflow: hidden;
    box-shadow: var(--sts-glow);
}

.sts-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.sts-faq {
    padding: 58px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--sts-curve-lg);
    margin: 49px 0;
}

.sts-faq .sts-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 19px;
}

.sts-faq-header {
    text-align: center;
    margin-bottom: 42px;
}

.sts-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #367bf0 0%, #67a4f5 100%);
    color: white;
    padding: 5px 16px;
    border-radius: 23px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sts-faq-title {
    font-size: 31px;
    font-weight: 700;
    color: #161f29;
    margin: 0;
}

.sts-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sts-faq-item {
    background: white;
    border-radius: 9px;
    box-shadow: 0 2px 11px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.sts-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.sts-faq-item.active .sts-faq-answer {
    max-height: 500px;
    padding: 0 23px 22px;
}

.sts-faq-item.active .sts-faq-icon {
    transform: rotate(180deg);
}

.sts-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #201b24;
    gap: 14px;
}

.sts-faq-question:hover {
    color: #3d7ff5;
}

.sts-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #347bf5;
}

.sts-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 23px;
}

.sts-faq-answer-inner {
    color: #4d5356;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.sts-reviews {
    margin: 61px 0;
    overflow: hidden;
}

.sts-reviews__carousel {
    display: flex;
    gap: 28px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sts-reviews__carousel:hover {
    animation-play-state: paused;
}

.sts-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--sts-slate);
    padding: 26px;
    border-radius: var(--sts-curve-lg);
    border: 2px solid var(--sts-border);
}

.sts-review-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 17px;
}

.sts-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--sts-bronze) 0%, var(--sts-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--sts-charcoal);
    overflow: hidden;
}

.sts-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sts-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sts-review-card__name {
    font-weight: 600;
    color: var(--sts-text);
}

.sts-review-card__location {
    font-size: 13px;
    color: var(--sts-text-dim);
}

.sts-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--sts-success);
    color: var(--sts-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.sts-review-card__stars {
    margin-bottom: 15px;
}

.sts-review-card__text {
    font-size: 15px;
    color: var(--sts-text);
    margin-bottom: 13px;
    font-style: italic;
    line-height: 1.7;
}

.sts-review-card__date {
    font-size: 12px;
    color: var(--sts-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.sts-footer {
    background: linear-gradient(180deg, var(--sts-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--sts-border);
    padding: 58px 0 41px;
    margin-top: 67px;
}

.sts-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
}

.sts-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 57px;
    margin-bottom: 50px;
    padding-bottom: 43px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sts-footer__brand-name {
    font-family: var(--sts-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--sts-text);
    margin-bottom: 17px;
}

.sts-footer__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--sts-text-dim);
    max-width: 360px;
}

.sts-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--sts-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.sts-footer__links {
    list-style: none;
}

.sts-footer__links li {
    margin-bottom: 10px;
}

.sts-footer__links a {
    color: var(--sts-text-dim);
    font-size: 15px;
    transition: var(--sts-anim);
}

.sts-footer__links a:hover {
    color: var(--sts-bronze);
}

.sts-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.sts-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.sts-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.sts-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .sts-providers__head {
        display: none;
    }
    .sts-providers__row {
        grid-template-columns: 1fr;
        padding: 25px 23px;
        text-align: center;
    }
    .sts-company-cell__logo {
        max-width: 200px;
    }
    .sts-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .sts-menu {
        display: none;
    }
    .sts-hamburger {
        display: flex;
        margin-left: auto;
    }
    .sts-topbar__action {
        display: none;
    }
    .sts-hero__heading {
        font-size: 32px;
    }
    .sts-hero__desc {
        font-size: 16px;
    }
    .sts-toc__list {
        grid-template-columns: 1fr;
    }
    .sts-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .sts-article h1 {
        font-size: 33px;
    }
    .sts-block h2 {
        font-size: 24px;
    }
    .sts-sticky-bar {
        flex-direction: column;
        gap: 7px;
        padding: 10px 9px;
        text-align: center;
    }
    .sts-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .sts-faq { padding: 38px 0; }
    .sts-faq-title { font-size: 25px; }
    .sts-faq-question { font-size: 15px; padding: 15px 22px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.sts-hero__tag { margin-bottom: 3px !important; margin-top: 0 !important; }
.sts-hero__heading { margin-bottom: 4px !important; margin-top: 0 !important; }
h1 { font-size: clamp(25px, 3vw, 32px) !important; margin-bottom: 13px !important; }
.sts-hero__desc { margin-bottom: 15px !important; }
.sts-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 11px !important; border: none !important; }

body.sts-page { padding-bottom: 72px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.sts-page {
    background: #FFFFFF;
    color: #0a1532;
}
.sts-content { color: #11112d; }
.sts-hero__heading { color: #0a0e29; }
.sts-hero__desc { color: #737174; }
.sts-section-intro__title { color: #0e1933; }
.sts-section-intro__text { color: #746a6a; }
.sts-block { background: #F5F0FF; }
.sts-block#overview { background: transparent; }
.sts-block h2 { color: #150e39; }
.sts-block__body { color: #0b1e2b; }
.sts-block__body strong { color: #161926; }
.sts-article h1 { color: #0c1635; }
.sts-toc { background: rgba(57,136,239,0.05); }
.sts-toc__title { color: #0a1230; }
.sts-toc__list li a { color: #130e2c; }
.sts-review-card { background: #fff; border-color: #dadbf5; }
.sts-review-card__name { color: #141a36; }
.sts-review-card__text { color: #0a1632; }
.sts-review-card__location { color: #6c6669; }
.sts-review-card__date { color: #636265; }
.sts-wrapper { color: #111e38; }
.sts-faq-title { color: #0d1a33; }
.sts-faq-question { color: #18162e; }
.sts-faq-answer-inner { color: #6a6766; }
.sts-footer {
    background: linear-gradient(180deg, #190e39 0%, #0a0a0a 100%);
}
