* {
    box-sizing: border-box;
}
:root {
    --primary: #2563eb;
    --dark: #0b1225;
    --text: #182033;
    --muted: #687086;
    --light: #f5f7fb;
    --border: #e4e8f0;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.site-header {
    border-bottom: 1px solid var(--border);
}
.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}
.custom-logo {
	width: 60px;
	height: 60px;
}
.main-navigation ul {
    display: flex;
    gap: 24px;
    list-style: none;
}
.main-navigation a {
    color: var(--text);
    text-decoration: none;
}
.announcement-bar {
    padding: 10px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
}
.hero-section {
    padding: 110px 0 80px;
    background: var(--dark);
    color: #fff;
    text-align: center;
}
.hero-content {
    max-width: 900px;
}
.eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #8fb4ff;
}
.hero-section h1 {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 auto 24px;
}
.hero-section p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: #c9d1e5;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}
.btn.primary {
    background: var(--primary);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}
.stat-item,
.stat-card {
    padding: 20px;
    border-radius: 12px;
}
.stat-item strong,
.stat-card strong {
    display: block;
    font-size: 26px;
    color: var(--primary);
}
.stat-item span,
.stat-card span {
    color: var(--muted);
    font-size: 13px;
}
.section {
    padding: 90px 0;
}
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 42px;
}
.section-heading h2 {
    font-size: 36px;
    margin: 0 0 12px;
}
.section-heading p {
    color: var(--muted);
}
.cards-grid {
    display: grid;
    gap: 22px;
}
.two-columns {
    grid-template-columns: repeat(2, 1fr);
}
.three-columns {
    grid-template-columns: repeat(3, 1fr);
}
.info-card,
.leaderboard-card,
.star-card,
.process-card,
.contact-profile,
.cta-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}
.info-card ul {
    padding-left: 20px;
    color: var(--muted);
}
.timeline {
    max-width: 850px;
    margin: auto;
}
.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 18px;
}
.timeline-year {
    color: var(--primary);
    font-weight: 800;
    padding-top: 20px;
}
.timeline-content {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.timeline-content h3 {
    margin-top: 0;
}
.timeline-content p,
.leaderboard-card p,
.process-step p {
    color: var(--muted);
}
.analytics-section,
.career-section {
    background: var(--dark);
    color: #fff;
}
.analytics-section .section-heading p,
.career-section p {
    color: #c9d1e5;
}
.stat-card {
    background: rgba(255, 255, 255, 0.06);
}
.chart-wrapper {
    margin-top: 30px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    height: 320px;
}
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef3ff;
    color: var(--primary);
    font-size: 12px;
}
.progress {
    height: 8px;
    background: #edf0f5;
    border-radius: 99px;
    margin: 20px 0 8px;
    overflow: hidden;
}
.progress span {
    display: block;
    height: 100%;
    background: var(--primary);
}
.star-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}
.career-grid,
.faq-grid,
.helpdesk-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
blockquote {
    margin: 0;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #d9e0ef;
}
blockquote footer {
    margin-top: 20px;
    color: #fff;
}
.process-step {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.process-step:last-child {
    border: 0;
}
.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}
.faq-list p {
    color: var(--muted);
}
.site-footer {
    padding: 70px 0 0;
    background: #050918;
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}
.footer-grid p,
.footer-grid a {
    color: #aeb8cd;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
}
.footer-grid li {
    margin-bottom: 10px;
}
.footer-grid a {
    text-decoration: none;
}
.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aeb8cd;
}
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    .stats-grid,
    .two-columns,
    .three-columns,
    .career-grid,
    .faq-grid,
    .helpdesk-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-section {
        padding: 80px 0 60px;
    }
    .section {
        padding: 60px 0;
    }
    .timeline-item {
        grid-template-columns: 70px 1fr;
    }
}
