/* css/styles.css */

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Colors */
    --color-black: #050C16;
    --color-black-light: #0d1624;
    --color-white: #ffffff;
    --color-orange-neon: #FF6B00;
    --color-orange-glow: rgba(255, 107, 0, 0.4);
    --color-gold: #FFD700;
    --color-green-neon: #39FF14;
    --color-green-glow: rgba(57, 255, 20, 0.4);
    --color-blue-royal: #2E5BFF;
    --color-gray: #888888;
    --color-gray-light: #cccccc;
    --color-gray-dark: #222222;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* UI Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.8);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   2. REUSABLE COMPONENTS
   ========================================= */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.border-gold {
    border-color: rgba(255, 215, 0, 0.3);
}

.neon-btn {
    display: inline-block;
    background-color: var(--color-orange-neon);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--color-orange-glow);
}

.neon-btn:hover {
    background-color: #ff8533;
    box-shadow: 0 0 25px var(--color-orange-neon);
    transform: translateY(-2px);
}

@keyframes pulseBreathe {
    0% { box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4), inset 0 2px 5px rgba(255,255,255,0.4); transform: scale(1); }
    50% { box-shadow: 0 8px 30px rgba(57, 255, 20, 0.8), inset 0 2px 5px rgba(255,255,255,0.4); transform: scale(1.03); }
    100% { box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4), inset 0 2px 5px rgba(255,255,255,0.4); transform: scale(1); }
}

.btn-green {
    background: linear-gradient(135deg, #a8ff78, #188d04);
    color: #000;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4), inset 0 2px 5px rgba(255,255,255,0.4);
    border: 1px solid #1c8808;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
    animation: pulseBreathe 3s infinite;
}

.btn-green:hover {
    background: linear-gradient(135deg, #b5ff8c, #1fba04);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.7), inset 0 2px 5px rgba(255,255,255,0.6);
    color: #000;
    animation: none;
    transform: translateY(-3px) scale(1.05);
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #FFD700, var(--color-orange-neon));
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4), inset 0 2px 5px rgba(255,255,255,0.4);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
    animation: goldPulse 3s infinite;
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #ffeb6b, #ff8533);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.7), inset 0 2px 5px rgba(255,255,255,0.6);
    color: var(--color-black);
    animation: none;
    transform: translateY(-3px) scale(1.05);
}

@keyframes goldPulse {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transform: scale(1); }
    50% { box-shadow: 0 8px 30px rgba(255, 107, 0, 0.8); transform: scale(1.03); }
    100% { box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); transform: scale(1); }
}

.btn-orange {
    background: var(--color-orange-neon);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #FF8533;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.7);
    transform: translateY(-3px) scale(1.05);
}

.highlight-gold-orange {
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.2);
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.neon-green {
    color: var(--color-green-neon);
    text-shadow: 0 0 8px var(--color-green-glow);
    font-weight: bold;
}

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

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.scroll-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadePulse 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 10px var(--color-orange-glow));
}

@keyframes fadePulse {
    0% { opacity: 0; transform: translateY(-15px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* =========================================
   3. HEADER
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--color-blue-royal);
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--color-orange-neon);
    color: var(--color-orange-neon);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--color-orange-neon);
    color: var(--color-white);
    box-shadow: 0 0 10px var(--color-orange-glow);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 5% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    background-color: var(--color-white);
    color: var(--color-black);
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes breathe {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text-col {
    flex: 1;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-hero-img {
    width: 140%;
    max-width: 140%;
    min-width: 500px;
    margin-left: -20%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    max-width: 800px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-transform: none;
    background: linear-gradient(135deg, #FFD700 0%, var(--color-orange-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-invite-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    max-width: 900px;
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.highlight-auth-gold {
    color: var(--color-gold);
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--color-white);
    opacity: 0.9;
}

.interactive-message-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #7c7c7c, #636363);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.interactive-message-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.interactive-message-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 60%);
    animation: spinSlowly 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.interactive-message-box > * {
    position: relative;
    z-index: 1;
}

@keyframes spinSlowly {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.interactive-calc {
    margin: 3rem auto;
    max-width: 600px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.interactive-calc h3 {
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.interactive-calc p {
    color: var(--color-black-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.slider-container input[type=range] {
    flex: 1;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    --slider-val: 50%;
}

.slider-container input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #e0e0e0;
    background-image: linear-gradient(to right, #FFD700, #FF6B00);
    background-size: var(--slider-val) 100%;
    background-repeat: no-repeat;
}

.slider-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #FFD700;
    margin-top: -7px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
}

.slider-value-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slider-value-display .big-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-black);
    line-height: 1;
}

.slider-value-display .slider-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    line-height: 1.2;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.grid-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.grid-card .card-title {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.grid-card .card-val {
    font-size: 1.5rem;
    font-weight: 800;
}

.grid-card .text-green {
    color: #2e8b22;
}

.grid-card .card-sub {
    font-size: 0.65rem;
    color: #666;
    margin-top: 0.3rem;
}

.calc-alert {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2e7d32;
}

.calc-alert span {
    font-size: 1.5rem;
}

.calc-alert-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.calc-alert-text p {
    font-size: 0.85rem;
    margin: 0;
    color: #2e7d32;
}

/* =========================================
   4.5. SECTION TRANSITIONS
   ========================================= */
.section-transition {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 215, 0, 0.05) 50%, rgba(255, 107, 0, 0.1) 70%, rgba(255, 255, 255, 0.05) 85%, var(--color-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.laser-line {
    width: 80%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-orange-neon), var(--color-gold), var(--color-orange-neon), transparent);
    box-shadow: 0 0 20px var(--color-orange-neon), 0 0 40px var(--color-gold);
}

.glow-orb-neon {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #2E5BFF 0%, rgba(46, 91, 255, 0.4) 40%, transparent 70%);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 50%;
    box-shadow: 0 0 30px #2E5BFF, inset 0 0 40px #2E5BFF, 0 0 15px var(--color-gold);
    pointer-events: none;
    animation: bluePulseBreathe 4s infinite;
}

.glow-orb-neon::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-orange-neon));
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
}

@keyframes bluePulseBreathe {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 50px #2E5BFF, inset 0 0 60px #2E5BFF, 0 0 25px var(--color-gold); }
    100% { transform: scale(1); opacity: 0.8; }
}

/* =========================================
   5. INACTION SECTION (MODERN SCROLL REVEAL)
   ========================================= */
.inaction-modern {
    background-color: var(--color-white);
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inaction-header {
    margin-bottom: 4rem;
}

.serif-title {
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1A1A1A;
    font-weight: 700;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.2;
}

.route-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35vh; /* Large gap for impressive scroll reveal pacing */
    position: relative;
}

.route-a {
    padding-bottom: 25vh;
}

.route-b {
    padding: 20vh 0 10vh 0;
    position: relative;
}

.route-b-content {
    display: flex;
    flex-direction: column;
    gap: 35vh;
    position: relative;
    z-index: 2;
}

/* Base styling for reveal texts */
.reveal-text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto;
    transition: all 0.6s ease-out;
    opacity: 0.2; /* JS will take over, this is fallback */
}

.text-grey {
    color: #4A4A4A;
}

.text-gold {
    color: #D4AF37; /* Adjusted premium gold to look better on white */
}

.glow-green {
    color: #39FF14;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.sticky-bg {
    position: sticky;
    top: 10vh;
    width: 100%;
    height: 80vh;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    animation: fadeInBg 2s ease forwards;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 0.08; }
}

.growth-chart-svg {
    width: 100%;
    height: 100%;
}

.closing-cta {
    max-width: 800px;
    margin: 15vh auto 5rem auto;
    padding-top: 5rem;
    border-top: 1px solid #EAEAEA;
    position: relative;
    z-index: 3;
}

.final-statement {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* =========================================
   6. MANIFESTO
   ========================================= */
.manifesto {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.manifesto-bg-transition {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-black) 30%, rgba(255, 107, 0, 0.15) 75%, rgba(255, 215, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.manifesto.is-visible .manifesto-bg-transition {
    opacity: 1;
}

.warning-banner-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
}

.warning-ribbon-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80px; 
    transform: translateY(-50%);
    background: #FFCC00;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.warning-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
}

.warning-triangle {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.warning-text {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #111;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 5px; 
}

.manifesto-text {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--color-black-light);
    line-height: 1.8;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* =========================================
   3.5. CAPITAL TRUTHS (ACCORDION)
   ========================================= */
.capital-truths {
    background-color: var(--color-white);
    padding: 80px 5%;
}

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

h2.section-title {
    color: #002855;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.accordion {
    border-top: 1px solid rgba(0, 40, 85, 0.1);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 40, 85, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #002855;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.accordion-header:hover {
    color: #F37021;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #F37021;
    font-size: 1.8rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-item.active .accordion-header {
    color: #F37021;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #4A4A4A;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.truths-closing {
    text-align: center;
    margin-top: 4rem;
}

.truths-closing p {
    font-size: 1.2rem;
    font-style: italic;
    color: #002855;
    font-weight: 600;
    line-height: 1.6;
}

.btn-orange-surya {
    background: #F37021;
    color: var(--color-white);
}
.btn-orange-surya:hover {
    background: #FF8533;
    box-shadow: 0 0 15px rgba(243, 112, 33, 0.8);
    transform: scale(1.05);
}

/* =========================================
   7. THE TICKET (MAC CONTAINER)
   ========================================= */
.ticket {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: var(--color-white);
}

.particles-canvas {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* MAC CONTAINER */
.mac-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(250, 250, 250, 0.95); /* Ultra-light grey, 95% opacity */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.8s ease-out;
}

.mac-header {
    background: rgba(230, 230, 230, 0.9);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.mac-body {
    padding: 3rem 4rem;
    font-family: 'Montserrat', sans-serif;
    color: #4A4A4A;
    text-align: center;
}

.mac-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
    color: #1A1A1A;
    letter-spacing: 1px;
}

.mac-manifesto {
    margin-bottom: 3.5rem;
}

.mac-manifesto p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #002855;
    font-weight: 500;
}

.mac-requirements {
    background: rgba(0, 40, 85, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.req-intro, .req-subtitle {
    margin: 0 0 0.5rem 0;
}

.mac-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.mac-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4A4A4A;
    font-weight: 600;
}

.neon-green-glow {
    color: #28a745;
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
    font-weight: 800;
}

.bold-glow {
    font-size: 1.3rem;
    text-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
}

.mac-promise {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 40, 85, 0.1);
}

.mac-promise p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
    font-style: italic;
    font-weight: 500;
}

/* =========================================
   8. FORM SECTION (MULTI-STEP)
   ========================================= */
.transition-gradient {
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, var(--color-white) 0%, #000000 100%);
    position: relative;
    z-index: 1;
}

.filter-form {
    padding: 80px 5% 100px 5%;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

/* Step Indicators */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transform: scale(1.3);
}

.step-dot.completed {
    background: #F37021; /* Orange */
}

/* Form Steps */
.form-step {
    animation: fadeInSlideUp 0.5s ease forwards;
}

.step-question {
    font-size: 1.5rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.next-step-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.form-warning {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid red;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border-radius: 0 4px 4px 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-orange-neon);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 10px -10px var(--color-orange-glow);
}

.form-group input[type="file"] {
    padding: 0.8rem;
    background: rgba(0,0,0,0.3);
}

.error-msg {
    color: var(--color-orange-neon);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.submit-btn.disabled {
    background-color: var(--color-gray-dark);
    color: var(--color-gray);
    cursor: not-allowed;
    box-shadow: none;
}

.submit-btn:not(.disabled) {
    background-color: var(--color-orange-neon);
    color: var(--color-white);
    box-shadow: 0 0 15px var(--color-orange-glow);
}

.submit-btn:not(.disabled):hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--color-orange-neon);
}

/* =========================================
   9. ORIENTATION
   ========================================= */
.orientation-white {
    padding: 100px 5%;
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    z-index: 2;
}

.orientation-black {
    padding: 120px 5%;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.glass-card {
    background: rgba(10, 31, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 91, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(46, 91, 255, 0.2), inset 0 0 15px rgba(255, 107, 0, 0.1);
}

.glow-text {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.glass-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-gray-light);
}

.signature-wrapper {
    display: inline-block;
    overflow: hidden;
}

.glass-card.is-visible .signature-text-anim {
    width: 100% !important;
    opacity: 1 !important;
}

.sig-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
}

.glass-card.is-visible .sig-path {
    animation: drawSignatureLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.glass-card.is-visible .sig-line3 { animation-delay: 0s; }    /* Big loop first */
.glass-card.is-visible .sig-line1 { animation-delay: 1.5s; }  /* Underline second */
.glass-card.is-visible .sig-line2 { animation-delay: 2.5s; }  /* Cross slash last */

@keyframes drawSignatureLine {
    to { stroke-dashoffset: 0; }
}

/* =========================================
   10. FOOTER
   ========================================= */
.main-footer {
    padding: 80px 5% 40px;
    background-color: var(--color-black);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-power-phrase {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-inspiration {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.legal-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-links a {
    text-decoration: underline;
}

.legal-links a:hover {
    color: var(--color-white);
}

/* =========================================
   12. MOUSE GLOW
   ========================================= */
.mouse-glow {
    position: fixed;
    top: 0; left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; /* Detrás del texto (z-index por defecto es auto pero se mantiene detrás del contenido con position relative) */
    will-change: transform;
    display: none;
}

/* Solo mostrar en escritorio o permitir en móvil si se desea. Aquí mostramos en general, lo encenderemos con JS */
.mouse-glow.active {
    display: block;
}

/* =========================================
   12.5 CERTIFICACIONES / MARQUEE
   ========================================= */
.certifications-section {
    position: relative;
    background-color: var(--color-white);
    padding: 6rem 0 4rem 0;
    overflow: hidden;
    color: var(--color-black);
}

.dynamic-bg-element {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(243,112,33,0.03) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    animation: rotateBg 25s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.certifications-content {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.cert-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-black);
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-heading);
}

.marquee-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.slider-marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-marquee::before, .slider-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.slider-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.slider-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 4rem; /* This works as a gap */
}

.marquee-item img {
    height: 50px;
    width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.marquee-badge {
    background-color: #d1d1d1;
    color: #1a1a1a;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}

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

/* =========================================
   NEW SECTIONS: VISION & CONNECTOR
   ========================================= */
.vision-section, .connector-section {
    background-color: var(--color-white);
    padding: 6rem 5%;
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.vision-container, .connector-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-title, .connector-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 4rem;
    color: var(--color-black);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-content, .connector-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.vision-text-col, .connector-text-col {
    flex: 1;
}

.vision-img-col, .connector-diagram-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Progressive Text */
.progressive-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #444;
}

.weight-light { font-weight: 300; }
.weight-medium { font-weight: 500; }
.weight-bold { font-weight: 700; color: #222; }
.weight-heavy { font-weight: 800; color: #111; }
.weight-black { font-weight: 900; }

.highlight-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.text-gold-dark { color: #A97142; }
.text-emphasis {
    background: linear-gradient(135deg, #C5A059, #8C6A30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Image */
.floating-luxury-image {
    position: relative;
    padding: 2rem;
    animation: float 8s ease-in-out infinite;
}

.desaturate-img {
    filter: grayscale(80%) contrast(1.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border-radius: 12px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Active Sun Card (Ruta B Inspiration) */
.active-sun-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 3px; /* Espacio para el trazo dorado perimetral */
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
    overflow: hidden;
}

.active-sun-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    /* Borde radiante sutil dorado */
    background: conic-gradient(transparent, rgba(197, 160, 89, 0.2), #FFB700, #FF6600, transparent);
    animation: rotateDestello 8s linear infinite;
    z-index: 0;
}

.asc-inner {
    position: relative;
    background: #fff;
    border-radius: 14px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

/* Animación de fondo dorado en movimiento */
.asc-swirl {
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: -30%;
    left: -50%;
    background: radial-gradient(ellipse at bottom, rgba(255, 183, 0, 0.15) 0%, transparent 60%);
    transform: rotate(-15deg);
    animation: waveSwirl 6s ease-in-out infinite alternate;
}

@keyframes waveSwirl {
    0% { transform: rotate(-10deg) translateY(0); }
    100% { transform: rotate(-25deg) translateY(30px); }
}

/* Grillas y Flechas (Gráfico estilo trading verde neon) */
.graph-trend {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 100px;
    height: 70px;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px rgba(39, 201, 63, 0.5));
    animation: floatUp 4s infinite alternate ease-in-out;
}

.up-arrow {
    position: absolute;
    filter: drop-shadow(0 0 8px rgba(39, 201, 63, 0.6));
    animation: floatUp 5s infinite alternate ease-in-out reverse;
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Botón/Círculo Central Radiante */
.sun-orb {
    position: relative;
    width: 190px;
    height: 190px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 
        0 15px 35px rgba(255, 183, 0, 0.25),
        inset 0 -5px 15px rgba(255, 102, 0, 0.05),
        inset 0 5px 15px rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 183, 0, 0.4);
    z-index: 3;
    animation: orbLevitate 4s ease-in-out infinite alternate;
}

@keyframes orbLevitate {
    0% { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(255, 183, 0, 0.35), inset 0 -5px 15px rgba(255, 102, 0, 0.1); }
    100% { transform: translateY(8px); box-shadow: 0 10px 25px rgba(255, 183, 0, 0.15), inset 0 -5px 15px rgba(255, 102, 0, 0.05); }
}

.sun-orb-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFB700, #FF6600, #A97142);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* New Dynamic Button */
.btn-dynamic-gold {
    background: linear-gradient(135deg, #FFB700, #FF6600);
    color: #001B3A;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px; /* Bordes totalmente redondeados */
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25); /* Sombreado suave */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: goldPulse 2s infinite ease-in-out; /* Movimiento tipo pulso */
}
.btn-dynamic-gold:hover {
    color: #4169E1;
    background: linear-gradient(135deg, #FFc533, #FF8533);
    /* En hover detenemos ligeramente el pulso extra si queremos, o solo aplicamos otro glow. Se mantiene suave. */
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4);
}

@keyframes goldPulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25); }
    50% { transform: scale(1.03); box-shadow: 0 12px 25px rgba(255, 102, 0, 0.4); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25); }
}

/* Mac Window Terminal Style Box */
.mac-window-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.mac-window-header {
    background: #f6f6f6;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 18px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mac-red { background-color: #FF5F56; }
.mac-yellow { background-color: #FFBD2E; }
.mac-green { background-color: #27C93F; }

.mac-window-body {
    padding: 2.5rem 3rem;
}

/* Connector Schema */
.clean-schema {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 350px;
    background: #fafafa;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #eaeaea;
}

.schema-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    border: 1px dashed #ccc;
    border-radius: 8px;
    transition: all 0.3s;
}

.schema-node.highlight-node {
    color: #A97142;
    border: 1px solid #A97142;
    background: rgba(169, 113, 66, 0.05);
}

.schema-node.final-node {
    color: #2e8b22;
    border: 1px solid #a5d6a7;
    background: #e8f5e9;
}

.schema-icon {
    width: 40px;
    height: 40px;
}

.schema-arrow {
    display: flex;
    justify-content: center;
    color: #ccc;
}
.schema-arrow svg {
    width: 24px;
    height: 24px;
}

/* Contrast Vault Box */
.contrast-vault-box {
    position: relative;
    padding: 2px; /* Espacio para el borde animado */
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden; /* Corta el borde excedente */
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contrast-vault-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    /* Destello degradado color plata con un degradado de dorado intenso dejando rastro */
    background: conic-gradient(
        transparent 0%,
        transparent 60%,
        #e0e0e0 80%,    /* plata */
        #FFB700 95%,    /* dorado brillante */
        #FF6600 100%    /* dorado intenso rastro */
    );
    animation: rotateDestello 4s linear infinite;
    z-index: 0;
}

@keyframes rotateDestello {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vault-inner {
    position: relative;
    background: #fff;
    z-index: 1;
    padding: 2.5rem;
    height: 100%;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.contrast-vault-box:hover {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    transform: translateY(-3px);
}

.vault-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #C5A059;
}

.vault-title {
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
}

.vault-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transition-gradient-light {
    height: 100px;
    background: linear-gradient(to bottom, var(--color-white), #f9f9f9);
}

/* =========================================
   13. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero {
        padding-top: 180px;
    }
    .hero-bg-gradient {
        width: 100vw;
        height: 100vw;
        top: 0;
        right: 0;
    }
    .calc-row {
        flex-direction: column;
        gap: 1rem;
    }
    .calc-results-grid {
        grid-template-columns: 1fr;
    }
    .glass-panel {
        padding: 1.5rem 1rem;
    }
    .form-wrapper {
        box-sizing: border-box;
        max-width: 100%;
    }
    .filter-form {
        padding: 80px 1rem;
    }

    /* New Sections Responsive */
    .vision-content, .connector-content {
        flex-direction: column;
        gap: 2rem;
    }
    .vision-img-col {
        order: -1;
    }
    .vision-title, .connector-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .floating-luxury-image {
        padding: 0;
    }
    
    .clean-schema {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 1rem;
        align-items: center;
        gap: 0.5rem;
    }
    .schema-node {
        padding: 0.5rem;
        font-size: 0.75rem;
        text-align: center;
    }
    .schema-icon {
        width: 24px;
        height: 24px;
    }
    .schema-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .contrast-vault-box {
        padding: 2px;
    }
    .vault-inner {
        padding: 1.5rem;
    }
    
    .mac-window-body {
        padding: 1.5rem;
    }
}

/* =========================================
   14. CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: var(--color-black);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.4);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange-neon);
}
