:root {
    --bg-light: #fdf9f0;
    --text-main: #0c0d12;
    /* Deep Ink Black */
    --text-muted: #5e5e6b;
    --accent-gold: #ba9d6b;
    --accent-gold-soft: rgba(186, 157, 107, 0.15);
    --glass-ink: rgba(12, 13, 18, 0.05);
    --glass-border: rgba(12, 13, 18, 0.1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --radius-pill: 100px;
    --radius-card: 32px;
}

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

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

html {
    scroll-behavior: smooth;
}

body.light-theme {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

/* Custom Cursor */
#cursor {
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out;
    mix-blend-mode: multiply;
}

#cursor-blur {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-gold-soft) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

/* Video Background Scoped to Hero */
.hero {
    position: relative;
    overflow: hidden;
}

/* Premium Atmosphere Background */
.hero-background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #fdf9f0;
}

.aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    pointer-events: none;
    will-change: transform;
}

.aura-1 {
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: aura-drift 25s infinite alternate ease-in-out;
}

.aura-2 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #e6d5b8 0%, transparent 70%);
    bottom: -15%;
    left: -5%;
    animation: aura-drift 30s infinite alternate-reverse ease-in-out;
}

.aura-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #ba9d6b 0%, transparent 70%);
    top: 20%;
    left: 20%;
    opacity: 0.15;
    animation: aura-drift 20s infinite alternate ease-in-out;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 3;
}

@keyframes aura-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(2%, 4%) scale(1.05);
    }

    66% {
        transform: translate(-2%, 2%) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Floating Gradient Backgrounds */
body:before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, #fffbf2 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, #fdf5e6 0%, transparent 40%);
    z-index: -3;
    opacity: 0.5;
}

/* Container */
.vision-content {
    text-align: center;
    max-width: 900px;
    /* Centered and aligned correctly */
    margin: 0 auto;
}

.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 40px;
}

.quotes-background>.container {
    padding: 0;
}

/* Liquid Glass Utility */
.liquid-glass {
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px #ffffff;
    position: relative;
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    gap: 20px;
}

.nav-logo {
    height: 32px;
    width: auto;
    border-radius: 4px;
    margin-right: 12px;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo-arc {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-login {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.btn-enroll {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--text-main);
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    z-index: 2000;
    padding: 100px 40px;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-menu-drawer.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 32px;
    font-family: var(--font-serif);
    font-weight: 500;
}

.mobile-link.accent {
    color: var(--accent-gold);
}

/* Hero Section - Centered */
.hero.centered-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.hero-content-centered {
    max-width: 1000px;
    z-index: 10;
    position: relative;
}

.with-margin-top {
    margin-top: 60px;
}

.hero-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--accent-gold);
    margin-bottom: 32px;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(56px, 12vw, 120px);
    line-height: 0.95;
    margin: 40px auto;
    color: var(--text-main);
    letter-spacing: -0.04em;
    font-weight: 500;
}

.text-accent-serif {
    font-style: italic;
    color: var(--accent-gold);
    font-family: 'Instrument Serif', serif;
    position: relative;
    display: inline-block;
}

.text-accent-serif::after {
    display: none;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Decreased gap */
}

.btn-primary-gold {
    background: var(--text-main);
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: inline-block;
}

.btn-primary-gold:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: var(--accent-gold);
}

.h-pulse {
    animation: h-pulse 2s infinite;
}

@keyframes h-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.hero-stats-centered {
    display: flex;
    gap: 48px;
    padding: 24px;
    /* Decreased padding */
    border-top: 1px solid var(--accent-gold-soft);
}

.stat-item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: var(--text-muted);
}

.stat-item b {
    font-size: 28px;
    color: var(--text-main);
    font-family: var(--font-serif);
}

/* Marquee */
.marquee-section {
    padding: 60px 0;
    background-color: #410010;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-size: 32px;
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Vision Section */
.vision-section {
    padding: 160px 0;
}

.display-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 40px;
}

.center {
    text-align: center;
}

.center-flex {
    justify-content: center;
}

.lead-text {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.vision-features {
    display: flex;
    gap: 48px;
    margin-top: 60px;
}

.v-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.v-feat i {
    color: var(--accent-gold);
}

/* Programme Cards */
.programme-section {
    padding: 80px 0 160px;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.prog-card {
    padding: 64px 48px;
    border-radius: var(--radius-card);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prog-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 40px 80px rgba(186, 157, 107, 0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gold-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--accent-gold);
}

.prog-card h4 {
    font-size: 24px;
    font-family: var(--font-serif);
    margin-bottom: 20px;
}

.prog-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.card-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 16px;
    color: var(--accent-gold);
}

/* Quote Section with Atmosphere */
.quotes-section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background: #fdf9f0;
}

.quotes-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.quotes-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    will-change: transform;
}

.q-aura-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #410010 0%, transparent 70%);
    /* Burgundy tone */
    top: -10%;
    left: -10%;
    animation: aura-drift 20s infinite alternate ease-in-out;
}

.q-aura-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: aura-drift 25s infinite alternate-reverse ease-in-out;
}

.quotes-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
}

.quotes-scroll-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    z-index: 2;
}

.quotes-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: quotes-marquee 60s linear infinite;
}

.quotes-track:hover {
    animation-play-state: paused;
}

@keyframes quotes-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.quote-card-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 40px;
    min-width: 500px;
    max-width: 500px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(186, 157, 107, 0.05);
    transition: all 0.5s ease;
}

.quote-card-light:hover {
    background: white;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 50px 100px rgba(186, 157, 107, 0.1);
}

.q-content {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 32px;
    color: var(--text-main);
}

.q-source {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--accent-gold);
}

/* Feature & Specs Grids */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.action-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.content-readable {
    text-align: left;
    max-width: 900px;
    margin: 80px auto;
    line-height: 1.8;
    font-size: 18px;
    color: var(--text-muted);
}

.content-readable h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--text-main);
    margin: 48px 0 24px;
}

.content-readable h3:first-child {
    margin-top: 0;
}

.content-readable p {
    margin-bottom: 24px;
}

.content-readable ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.content-readable li {
    margin-bottom: 12px;
}

/* Responsive Overrides */
@media (max-width: 992px) {

    .specs-grid,
    .action-card-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Banner */
.cta-banner {
    padding-bottom: 160px;
}

.cta-inner {
    padding: 100px 48px;
    border-radius: 40px;
    text-align: center;
    margin: 0 2rem;
}

.cta-inner h3 {
    font-family: var(--font-serif);
    font-size: 64px;
    margin-bottom: 24px;
}

.cta-inner p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.btn-primary-gold.large {
    padding: 1rem 2rem;
    font-size: 18px;
}

/* About Page & Founders */
.about-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 80px;
    margin-bottom: 32px;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 80px 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.founder-card.inverted {
    grid-template-columns: 1.5fr 1fr;
}

.founder-img-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.founder-img-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.founder-bio {
    font-size: 18px;
    color: var(--text-muted);
}

.manifesto-pill {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
}

/* Onboarding Progressive Form */
.onboarding-page {
    padding: 140px 24px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-container {
    max-width: 700px;
    width: 100%;
}

.onboarding-card {
    padding: 60px;
    border-radius: 40px;
    position: relative;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.4s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    margin-bottom: 32px;
}

.input-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    font-family: var(--font-sans);
    font-size: 16px;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.success-content {
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 24px;
}

.founder-cta-fixed {
    margin-top: 40px;
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(186, 157, 107, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.founder-cta-fixed p {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.5;
}

.btn-chat-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #1a1f3c;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
    min-width: 240px;
}

.btn-chat-whatsapp:hover {
    transform: translateY(-3px);
    background: #25d366;
}

/* Footer */
.footer {
    background: #1c1b19;
    color: #fff;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .brand {
    font-size: 32px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    max-width: 340px;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.f-col h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    color: var(--accent-gold);
}

.f-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    transition: color 0.3s;
}

.social-pill {
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-pill:hover {
    opacity: 0.7;
}

.f-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .programme-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(48px, 15vw, 100px);
    }

    .hero-stats-centered {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 16px 16px;
    }

    .nav-content {
        padding: 6px 12px 6px 16px;
        gap: 12px;
    }

    .nav-actions {
        gap: 8px;
    }

    .brand {
        font-size: 16px;
    }

    .nav-logo {
        height: 24px;
        margin-right: 8px;
    }

    .mobile-toggle {
        display: block;
        padding: 4px;
    }

    .btn-login {
        display: none;
    }

    .hero-title {
        font-size: 64px;
    }

    .quote-card-light {
        min-width: 85vw;
        max-width: 85vw;
        padding: 40px 30px;
        margin: 0 10px;
    }

    .q-content {
        font-size: 22px;
    }

    .quotes-track {
        gap: 20px;
        animation: quotes-marquee 40s linear infinite;
        /* Faster on mobile for better flow */
    }

    .quotes-section {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner h3 {
        font-size: 32px;
    }

    .vision-features {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}






