:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --accent-primary: #ffffff;
    --accent-secondary: #f0f0f0;
    --accent-hover: #e0e0e0;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --card-bg: #111111;
    --input-bg: #1a1a1a;
    --input-border: #444444;
    --success-color: #ffffff;
    --error-color: #ffffff;
    --warning-color: #ffffff;
    --accent-light: #2a2a2a;
    --accent-lighter: #333333;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-feature-settings: 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/background/loop.png');
    background-size: 140%;
    background-repeat: no-repeat;
    background-position: top right 200%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

header {
    background-color: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
}

.nav {
    display: flex;
    align-items: center;
    padding: 0.6rem 1.7rem 0.5rem 1.5rem;
    justify-content: space-between;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.nav-brand h1 a {
    user-select: none;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-brand h1 a.version {
    font-size: 1.3rem;
    font-style: italic;
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.text-login {
    color: var(--text-muted);
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.4s ease;
}

.text-login-imp {
    color: var(--text-secondary);
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.4s ease;
}

.text-login:hover {
    color: var(--text-secondary);
}

.text-login-imp:hover {
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.data {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.data .date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    
}

.data .place {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title a.everything {
    font-style: italic;
    text-decoration: underline;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.button-primary {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border: none;
    padding: 0.6rem 1.1rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    transition: background-color 0.4s ease;
    text-decoration: none;
}

.button-primary:hover {
    background-color: #b4b4b4;
}

.button-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border: none;
    font-size: 1rem;
    transition: color 0.4s ease;
    text-decoration: none;
}

.button-secondary:hover {
    color: #b4b4b4;
}

.posts {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 1.5rem;
}

.posts-message {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
}

.posts-message.link {
    text-align: right;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s ease;
}

.posts-message.link:hover {
    color: var(--text-secondary);
}

.information-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.information-title.college {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.information-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
}

.information-content a.information-message
{
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.colleges-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    clip-path: inset(0 0 0 0);
}

.colleges-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.colleges-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: max-content;
    position: relative;
    z-index: 1;
}

.college-item {
    flex-shrink: 0;
    filter: grayscale(20%);
    margin: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    animation: fadeIn 0.3s ease;
}

.college-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
}

.college-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    bottom: 0;
    z-index: 1000;

}

.footer-content {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 1rem 1.7rem 0.5rem 1.5rem;

}

.footer-section {
    flex: 1;
    margin-right: 2rem;
    text-align: left;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}


.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.footer-section-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.footer-section-link:hover {
    color: var(--text-primary);
}



html {
    scroll-behavior: smooth;
}

.chat-form {
    display: flex;
    flex-direction: column;
}

.chat-textarea {
    width: 100%;
    min-height: 220px;
    resize: vertical;
    padding: 0.9rem 1rem;
    background: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--input-border);
    border-radius: 0.75rem;
    line-height: 1.5;
}

.chat-response {
    margin-top: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.pricing-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: left;
}

.pricing-tier h3 {
    margin-bottom: 0.5rem;
}

.checklist {
    margin: 0.5rem 0 1rem 1.25rem;
}

.checklist li {
    margin-bottom: 0.4rem;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

::selection {
    background: rgba(255, 255, 255, 1);
    color: rgb(0, 0, 0);
}

::-moz-selection {
    background: rgba(255, 255, 255, 1);
    color: rgb(0, 0, 0);
}

::-webkit-selection {
    background: rgba(255, 255, 255, 1);
    color: rgb(0, 0, 0);
}

.highlight-text {
    background: rgba(255, 255, 255, 1);
    color: rgb(0, 0, 0);
    padding: 0.03rem 0.2rem;
    border-radius: 0.3rem;
    font-weight: 600;
}



.hero-subhead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: -0.5rem auto 1.25rem auto;
    max-width: 800px;
}

.trust-notes {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.social-proof {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 1.25rem 0 2rem 0;
}

.section {
    margin: 3rem 0;
}

.testimonials .testimonial {
    font-style: italic;
    color: var(--text-secondary);
}

.faq details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}

.faq p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.1rem;
    text-align: left;
}

.faq-card h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.faq-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.cta-band {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 2rem 1rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
    row-gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 1rem;
}

.logo-item {
    width: 100%;
    max-width: 220px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img, .logo-text {
    filter: grayscale(100%) opacity(0.9);
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.logo-text {
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.6rem;
}

.logo-item img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.logo-item:hover img, .logo-item:hover .logo-text {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
        row-gap: 1.5rem;
    }
    .logo-item { height: 56px; }
    .logo-item img { max-height: 44px; }
}

@media (max-width: 600px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.5rem;
        row-gap: 1.25rem;
    }
    .logo-item { height: 48px; }
    .logo-item img { max-height: 38px; }
}

@media (max-width: 1024px) {
    body {
        background-size: 200%;
        background-position: top right 150%;
    }

    .container {
        max-width: 860px;
        padding: 0 16px;
    }

    .nav {
        padding: 0.9rem 1.1rem 0.5rem 1rem;
    }

    .nav-brand h1 { font-size: 1.6rem; }
    .title { font-size: 1.35rem; }

    .colleges-track { animation-duration: 70s; }
    .college-image { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
    body {
        background-size: 260%;
        background-position: top right 120%;
    }

    .container { padding: 0 14px; }

    .nav {
        gap: 0.75rem;
        padding: 0.8rem 0.9rem 0.45rem 0.9rem;
    }

    .nav-actions { gap: 0.9rem; }
    .nav-brand h1 { font-size: 1.45rem; }
    .nav-link { font-size: 0.9rem; }
    .text-login, .text-login-imp { font-size: 1rem; }

    .title {
        font-size: 1.25rem;
        margin-top: 2.25rem;
        margin-bottom: 2.25rem;
    }

    .buttons { gap: 1rem; }
    .button-primary, .button-secondary { font-size: 0.95rem; }

    .data { gap: 0.9rem; flex-wrap: wrap; }

    .college-item { margin: 0 1rem; padding: 0.75rem; border-radius: 2rem; }
    .college-image { width: 130px; height: 130px; }
    .college-text { font-size: 1.05rem; }

    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1rem;
    }
    .footer-section { margin-right: 0; }

    .chat-textarea { min-height: 180px; }

    .title, .information-title { text-align: center; }
    .hero-subhead,
    .trust-notes,
    .social-proof,
    .posts-message,
    .information-content,
    .information-content a.information-message,
    .footer-section p,
    .faq p,
    .chat-response {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    html, body { -webkit-text-size-adjust: 100%; }

    .container { padding: 0 12px; }

    .nav {
        padding: 0.7rem 0.8rem 0.4rem 0.8rem;
    }
    .nav-brand h1 { font-size: 1.3rem; }

    .title { font-size: 1.15rem; margin-bottom: 3rem; margin-top: 3rem;}

    .buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .button-primary, .button-secondary {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1rem;
    }

    .posts { gap: 1rem; }
    .information-content { gap: 1rem; }

    .college-image { width: 110px; height: 110px; }
    .college-text { font-size: 1rem; }

    .footer-bottom { margin-top: 1.5rem; }

    .chat-textarea {
        min-height: 150px;
        font-size: 1rem;
    }
    .chat-response { font-size: 0.95rem; }
}

@media (max-width: 600px) {
    .colleges-carousel-container { display: none; }

    .nav .text-login,
    .nav .text-login-imp {
        display: none !important;
    }
}

