/* TechMae — shared styles for all pages.
   Brand variables live in :root at the top. */

/* ===== BRAND VARIABLES ===== */
:root {
    --primary-red: #EE1E4F;
    --soft-pink: #F5A9B8;
    --blush: #FCE7EF;
    --teal: #00A8B5;
    --midnight: #1A2B44;
    --near-black: #111111;
    --charcoal: #333333;
    --gray: #5A5A5A;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
}

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

body {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    min-height: 100vh;
    font-family: var(--font-body);
}

.mockup {
    max-width: 1280px;
    width: 100%;
    background: var(--white);
    border-radius: 48px;
    padding: 0;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--midnight);
    padding: 0.6rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar span {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.top-bar-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    margin-left: 1.2rem;
    font-weight: 500;
    transition: 0.2s;
}
.top-bar-links a:hover {
    color: white;
}
.top-bar-links .compass-link {
    color: var(--teal);
    font-weight: 600;
}
.top-bar-links .compass-link:hover {
    color: #33C2D0;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--blush);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    background: var(--primary-red);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 6px 16px rgba(238, 30, 79, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--near-black);
}
.logo-text span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--charcoal);
}
.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}
.nav-links a:hover {
    color: var(--primary-red);
}
.nav-links .compass-nav {
    color: var(--teal);
}
.nav-links .compass-nav:hover {
    color: #33C2D0;
}

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

.btn-nav-outline {
    border: 2px solid var(--primary-red);
    background: transparent;
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
}
.btn-nav-outline:hover {
    background: var(--primary-red);
    color: white;
}

.btn-nav-primary {
    background: var(--primary-red);
    border: none;
    padding: 0.4rem 1.6rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(238, 30, 79, 0.25);
    transition: 0.2s;
}
.btn-nav-primary:hover {
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    padding: 4rem 2.5rem 3rem;
    background: linear-gradient(135deg, var(--white), var(--blush));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(238, 30, 79, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    flex: 1 1 420px;
    position: relative;
    z-index: 1;
}

.hero-left .tag {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--near-black);
}
.hero-left h1 .highlight {
    color: var(--primary-red);
}

.hero-left .subhead {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin: 1.2rem 0 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-hero-primary {
    background: var(--primary-red);
    border: none;
    padding: 0.9rem 2.8rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1rem;
    box-shadow: 0 12px 32px rgba(238, 30, 79, 0.25);
    cursor: pointer;
    transition: 0.25s;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(238, 30, 79, 0.35);
}

.btn-hero-secondary {
    border: 2px solid var(--charcoal);
    background: transparent;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 1rem;
    transition: 0.25s;
}
.btn-hero-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.hero-right {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-visual {
    background: linear-gradient(145deg, var(--blush), #F8D2E2);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    border-radius: 60px 60px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.hero-visual .big-icon {
    font-size: 4.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}
.hero-visual h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--near-black);
}
.hero-visual p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    max-width: 220px;
}
.hero-visual .visual-quote {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* ===== QUIZ / "WHAT BROUGHT YOU HERE?" ===== */
.section-quiz {
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border-top: 1px solid var(--blush);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.section-header h1,
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--near-black);
    letter-spacing: -1px;
}
.section-header h1 .highlight,
.section-header h2 .highlight {
    color: var(--primary-red);
}
.section-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.quiz-option {
    background: var(--blush);
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}
.quiz-option:hover {
    background: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 30, 79, 0.06);
}

/* ===== COMMUNITIES ===== */
.section-communities {
    padding: 3.5rem 2.5rem;
    background: var(--blush);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.community-card {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem 1.6rem;
    transition: 0.3s;
    border: 2px solid transparent;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.community-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(238, 30, 79, 0.06);
}
.community-card .emoji {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}
.community-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--near-black);
}
.community-card .description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0.4rem 0 0.8rem;
    line-height: 1.5;
}
.community-card .next {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.8rem;
}
.community-card .btn-community {
    background: transparent;
    border: 2px solid var(--primary-red);
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
}
.community-card .btn-community:hover {
    background: var(--primary-red);
    color: white;
}

/* ===== WHAT'S HAPPENING ===== */
.section-happening {
    padding: 3.5rem 2.5rem;
    background: var(--white);
    border-top: 1px solid var(--blush);
    border-bottom: 1px solid var(--blush);
}

.happening-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.happening-card {
    background: var(--blush);
    border-radius: 24px;
    padding: 1.6rem 1.5rem;
    transition: 0.3s;
    border: 2px solid transparent;
    cursor: default;
}
.happening-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-4px);
}
.happening-card .tag {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.8rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.happening-card .tag.teal {
    background: var(--teal);
}
.happening-card .tag.midnight {
    background: var(--midnight);
}
.happening-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--near-black);
}
.happening-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0.3rem 0 0.6rem;
    line-height: 1.5;
}
.happening-card .meta {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
}
.happening-card .btn-happening {
    background: transparent;
    border: 2px solid var(--charcoal);
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.7rem;
    cursor: default;
    transition: 0.2s;
    display: inline-block;
    margin-top: 0.6rem;
}
.happening-card .btn-happening:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* ===== FIRST WEEK ===== */
.section-firstweek {
    padding: 3.5rem 2.5rem;
    background: var(--midnight);
    color: var(--white);
}
.section-firstweek .section-header h2 {
    color: var(--white);
}
.section-firstweek .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.week-day {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
    cursor: default;
}
.week-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}
.week-day .day {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.week-day .action {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.2rem;
}

/* ===== FOUNDER ===== */
.section-founder {
    padding: 4rem 2.5rem;
    background: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    border-top: 1px solid var(--blush);
}
.founder-left {
    flex: 2;
}
.founder-left .quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 0.8;
    opacity: 0.2;
}
.founder-left h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--near-black);
    margin-top: -0.5rem;
    line-height: 1.2;
}
.founder-left p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--charcoal);
    max-width: 550px;
    line-height: 1.7;
    margin-top: 1rem;
}
.founder-left .signature {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}
.founder-left .signature span {
    font-weight: 400;
    color: var(--gray);
}
.founder-right {
    flex: 1;
    text-align: center;
}
.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 0.5rem;
    box-shadow: 0 12px 32px rgba(238, 30, 79, 0.15);
}
.founder-avatar.second {
    background: var(--teal);
    margin-top: 0.5rem;
}
.founder-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--near-black);
}
.founder-title {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== COMMUNITY STANDARDS ===== */
.section-standards {
    padding: 3.5rem 2.5rem;
    background: var(--blush);
}
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.standards-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}
.standards-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.standards-item .icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.3rem;
}
.standards-item h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--near-black);
}

/* ===== FINAL CTA ===== */
.section-final-cta {
    padding: 4rem 2.5rem;
    background: linear-gradient(135deg, var(--blush), #F8D2E2);
    text-align: center;
}
.section-final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--near-black);
    letter-spacing: -1px;
}
.section-final-cta h2 .highlight {
    color: var(--primary-red);
}
.section-final-cta p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--charcoal);
    max-width: 550px;
    margin: 0.8rem auto 2rem;
}
.final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-final-primary {
    background: var(--primary-red);
    border: none;
    padding: 0.9rem 2.8rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(238, 30, 79, 0.25);
    transition: 0.25s;
}
.btn-final-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(238, 30, 79, 0.35);
}
.btn-final-secondary {
    background: var(--midnight);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-final-secondary:hover {
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    padding: 2.5rem 2.5rem 1.5rem;
    border-top: 1px solid var(--blush);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.footer .col {
    min-width: 100px;
}
.footer .col h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: var(--near-black);
}
.footer .col a {
    display: block;
    font-family: var(--font-body);
    color: var(--gray);
    text-decoration: none;
    margin: 0.2rem 0;
    font-size: 0.8rem;
    transition: 0.2s;
}
.footer .col a:hover {
    color: var(--primary-red);
}
.footer .col a.compass-footer {
    color: var(--teal);
    font-weight: 600;
}
.footer .col a.compass-footer:hover {
    color: #33C2D0;
}
.footer .social i {
    font-size: 1.2rem;
    color: var(--charcoal);
    transition: 0.2s;
    cursor: pointer;
}
.footer .social i:hover {
    color: var(--primary-red);
}
.footer-bottom {
    width: 100%;
    text-align: center;
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blush);
    margin-top: 1.5rem;
}

/* ===== COMPASS ===== */
.section-compass {
    background: linear-gradient(150deg, #1a1226 0%, #2a1b3d 100%);
    color: #f5efe6;
    padding: 5rem 2rem;
    margin: 4rem 0;
}
.section-compass .section-header h1,
.section-compass .section-header h2 { color: #f5efe6; }
.section-compass .section-header p { color: rgba(245,239,230,.68); max-width: 52ch; }
.compass-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--primary-red); margin-bottom: 1rem; font-weight: 700;
}
.compass-pathways {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem; max-width: 1100px; margin: 3rem auto 0;
}
.pw {
    border-left: 2px solid rgba(233,30,99,.45);
    padding-left: 1rem;
}
.pw span {
    display: block; font-family: 'Montserrat', sans-serif;
    font-size: .62rem; letter-spacing: .16em; color: rgba(245,239,230,.35);
    margin-bottom: .3rem;
}
.pw b { display: block; font-size: 1.05rem; margin-bottom: .2rem; }
.pw em { font-style: normal; font-size: .87rem; color: rgba(245,239,230,.58); line-height: 1.5; }

.compass-pilot {
    max-width: 760px; margin: 3.4rem auto 0;
    background: rgba(245,239,230,.05);
    border: 1px solid rgba(245,239,230,.16);
    padding: 2rem 2.2rem;
}
.cp-mark {
    display: inline-block; font-family: 'Montserrat', sans-serif;
    font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
    background: var(--primary-red); color: #fff; padding: .3rem .8rem; margin-bottom: 1rem;
}
.compass-pilot h2,
.compass-pilot h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: .9rem; }
.compass-pilot p { color: rgba(245,239,230,.7); line-height: 1.65; margin-bottom: .8rem; }
.cp-note { color: var(--primary-red) !important; font-weight: 600; margin-bottom: 0 !important; }

.compass-cta { text-align: center; margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-compass-primary {
    background: var(--primary-red); color: #fff; padding: 1rem 2.2rem;
    text-decoration: none; font-weight: 600; display: inline-block;
}
.btn-compass-secondary {
    border: 1px solid rgba(245,239,230,.3); color: #f5efe6; padding: .95rem 2rem;
    text-decoration: none; font-weight: 600; display: inline-block;
}
.btn-compass-secondary:hover { background: rgba(245,239,230,.08); }

/* ===== CONTROLS / KEYBOARD ===== */
.btn-nav-outline,
.btn-nav-primary,
.btn-hero-primary,
.btn-hero-secondary,
.quiz-option,
.community-card .btn-community,
.btn-final-primary,
.btn-final-secondary {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
    transition: none;
}
.section-firstweek :focus-visible,
.section-compass :focus-visible,
.top-bar :focus-visible {
    outline-color: var(--white);
}

.skip-link {
    position: absolute;
    top: 0;
    left: -9999px;
    z-index: 100;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 0 0 12px 0;
}
.skip-link:focus {
    left: 0;
}

.footer .social {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer .social a {
    display: inline-block;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    .top-bar-links a {
        margin: 0 0.6rem;
    }
    .navbar {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero {
        padding: 2rem 1.5rem;
    }
    .hero-left h1 {
        font-size: 2.8rem;
    }
    .section-quiz,
    .section-communities,
    .section-happening,
    .section-firstweek,
    .section-founder,
    .section-standards,
    .section-final-cta {
        padding: 2rem 1.5rem;
    }
    .section-compass {
        padding: 2.5rem 1.5rem;
        margin: 0;
    }
    .compass-pathways {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-top: 2rem;
    }
    .compass-pilot {
        margin-top: 2.2rem;
        padding: 1.5rem 1.25rem;
    }
    .compass-cta {
        margin-top: 1.8rem;
    }
    .footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    .footer .social {
        justify-content: center;
    }
    .section-founder {
        gap: 1.5rem;
    }
    .founder-left,
    .founder-right {
        flex: 1 1 100%;
    }
    .founder-right {
        order: -1;
    }
}

.logo-img { height: 46px; width: auto; display: block; }
@media (max-width: 900px) { .logo-img { height: 36px; } }
