/* ══════════════════════════════════════════════════════════
   Studio — AI-Powered Web Design Agency
   Dark Premium Apple-Inspired + Liquid Glass Morphism
   ══════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --primary: 0 0% 100%;
    --primary-foreground: 213 45% 67%;
    --border: 0 0% 100% / 0.2;
    --radius: 9999px;
    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Barlow', sans-serif;
}

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    background: #000;
    overflow: visible;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

/* ── Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════
   LIQUID GLASS
   ══════════════════════════════════════════════════════════ */

.liquid-glass {
    background: rgba(255, 255, 255, 0.01);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.15) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.15) 80%,
        rgba(255, 255, 255, 0.45) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.liquid-glass-strong {
    background: rgba(255, 255, 255, 0.03);
    background-blend-mode: luminosity;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: none;
    box-shadow:
        4px 4px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.liquid-glass-strong::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.2) 80%,
        rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 24px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 6px 6px 20px;
    border-radius: 9999px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    overflow: visible;
    height: 1000px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 150px;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 16px 4px 4px;
    border-radius: 9999px;
    margin-bottom: 32px;
}

.badge-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 0.8;
    letter-spacing: -4px;
    margin-bottom: 28px;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(50px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .word.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.btn-text:hover {
    color: #fff;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-solid:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ── Partners Bar ────────────────────────────────────── */

.partners-bar {
    margin-top: auto;
    padding-bottom: 32px;
    padding-top: 64px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.partners-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.partners-logos span {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partners-logos span:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════ */

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: #fff;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 20px;
}

.section-subtext {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ── Video Sections Common ───────────────────────────── */

.section-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section-video.desaturated {
    filter: saturate(0);
}

.video-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, #000, transparent);
    z-index: 1;
    pointer-events: none;
}

.video-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 1;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   START SECTION (How It Works)
   ══════════════════════════════════════════════════════════ */

.start-section {
    position: relative;
    min-height: 700px;
    padding: 128px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.start-content {
    position: relative;
    z-index: 10;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   FEATURES CHESS
   ══════════════════════════════════════════════════════════ */

.features-chess {
    padding: 96px 24px;
}

.fc-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.chess-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 64px;
    text-align: left;
}

.chess-row-reverse {
    flex-direction: row-reverse;
}

.chess-text {
    flex: 1;
}

.chess-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 16px;
}

.chess-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
}

.chess-media {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.chess-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════════════ */

.features-grid-section {
    padding: 96px 24px;
}

.fg-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.03);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 8px;
}

.feature-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   CURRICULUM
   ══════════════════════════════════════════════════════════ */

.curriculum-section {
    padding: 120px 24px;
    background-color: #000;
}

.curr-container {
    max-width: 900px;
    margin: 0 auto;
}

.curr-glass-card {
    border-radius: 64px;
    padding: 64px 48px;
    background: radial-gradient(circle at top, rgba(255,102,0,0.12) 0%, rgba(0,0,0,1) 70%);
    box-shadow: 0 0 140px rgba(255, 102, 0, 0.15), inset 0 0 0 1px rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.curr-header {
    text-align: center;
    margin-bottom: 64px;
}

.curr-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ff6600;
    margin-bottom: 12px;
}

.curr-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.curr-meta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.arrow-orange {
    color: #ff6600;
}

.orange-star {
    color: #ff6600;
    margin-right: 8px;
}

.orange-text {
    color: #ff6600;
}

.curr-week {
    display: flex;
    margin-bottom: 48px;
    position: relative;
}

.curr-week-badge {
    background: #ff6600;
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 4px;
    height: fit-content;
    white-space: nowrap;
    margin-right: 24px;
    margin-top: 4px;
    z-index: 2;
}

.curr-week-content {
    flex: 1;
    border-left: 2px dotted rgba(255,255,255,0.2);
    padding-left: 24px;
    padding-bottom: 24px;
}

.curr-session {
    margin-bottom: 40px;
}

.curr-session-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.curr-session-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curr-learn-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    margin-top: 20px;
}

.curr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curr-list li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.workflow-flow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
    margin-left: 24px;
}

.curr-outcome {
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ff6600;
    line-height: 1.6;
}

.outcome-label {
    opacity: 0.8;
}

/* Takeaways */
.curr-takeaways {
    margin-top: 80px;
    text-align: center;
}

.curr-takeaways-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 16px;
}

.curr-takeaways-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 32px;
}

.curr-takeaway-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 48px;
    max-width: 450px;
    text-align: left;
}

.curr-takeaway-list li {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.curr-internship {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
}

.curr-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .curr-glass-card {
        padding: 48px 24px;
        border-radius: 32px;
    }
    .curr-week {
        flex-direction: column;
    }
    .curr-week-badge {
        margin-bottom: 16px;
        display: inline-block;
    }
    .curr-week-content {
        border-left: none;
        padding-left: 0;
    }
}

/* ══════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════ */

.stats-section {
    position: relative;
    padding: 128px 24px;
    overflow: hidden;
}

.stats-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-card {
    border-radius: 24px;
    padding: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */

.testimonials-section {
    padding: 96px 24px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.testimonial-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: #fff;
}

.testimonial-role {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════════════════════
   MENTORS
   ══════════════════════════════════════════════════════════ */

.mentors-section {
    padding: 96px 24px;
}

.mentors-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mentor-card {
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.05);
}

.mentor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.mentor-role {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════
   CTA FOOTER
   ══════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 160px 24px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #fff;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 20px;
}

.cta-subtext {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 48px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 96px;
}

.site-footer {
    width: 100%;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS & MOTION
   ══════════════════════════════════════════════════════════ */

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .hero {
        height: 800px;
    }
    .chess-row, .chess-row-reverse {
        flex-direction: column;
        gap: 32px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-pill {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-buttons > * {
        width: 100%;
        justify-content: center;
    }
    .partners-logos {
        gap: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
