/* --- LANDING SPECIFIC VARIABLES --- */
:root {
    --text-muted-on-dark: #EBEBF5; 
    --radius-lg: 24px;
}

/* --- BASE & UTILITIES --- */
.landing-wrap {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Override .container width for landing */
.container { max-width: 1240px; padding: 0 20px; position: relative; z-index: 5; }
.container-sm { max-width: 800px; margin: 0 auto; }

.relative { position: relative; }
.d-block { display: block; }
.text-left { text-align: left; }

.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mt-10 { margin-top: 10px; } 
.mt-20 { margin-top: 20px; } 
.mt-30 { margin-top: 30px; } 
.mt-40 { margin-top: 40px; } 
.mt-60 { margin-top: 60px; } 
.mt-80 { margin-top: 80px; } 
.mb-60 { margin-bottom: 60px; } 

.p-30 { padding: 30px; } 
.p-40 { padding: 40px; } 
.p-50 { padding: 50px; } 
.p-10 { padding: 10px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.rounded-full { border-radius: 9999px; }
.inline-block { display: inline-block; }
.border-2 { border-width: 2px; border-style: solid; }
.border-lime { border-color: var(--lime); }
.uppercase { text-transform: uppercase; }
.bg-gradient-dark { background: linear-gradient(180deg, rgba(60,60,80,0.4) 0%, rgba(0,0,0,0.2) 100%); }

/* Fonts */
.title-lg { 
    font-family: 'Manrope', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800; 
    line-height: 1.1; 
    margin: 0; 
}
.text-white { color: #fff !important; }
.text-muted-on-dark { color: var(--text-muted-on-dark) !important; }
.strikethrough-red { text-decoration: line-through; text-decoration-color: #ff4757; color: #fff; }

.text-p-start { color: var(--p-start); }
.text-outline { -webkit-text-stroke: 1px rgba(255,255,255,0.9); color: transparent; }
.text-lg { font-size: 20px; line-height: 1.5; font-weight: 500; }
.text-xl { font-size: 24px; font-weight: 700; }
.text-2xl { font-size: 32px; font-weight: 800; }
.text-3xl { font-size: 48px; font-weight: 800; }
.text-sm { font-size: 14px; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }

/* --- DARK GLASS EFFECT (Override default) --- */
.glass-panel {
    background: rgba(60, 60, 80, 0.25); 
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.5);
    border-left-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(0, 0, 0, 0.4);
    border-right-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-muted-on-dark);
}
.glass-panel h3, .glass-panel h4, .glass-panel strong:not(.text-lime) {
    color: #fff !important;
}
.glass-panel:hover {
    border-top-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
/* Inner glass panel for nested elements */
.glass-panel.inner-glass {
    background: rgba(40, 40, 60, 0.3);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.1);
}

/* Ambient Effects */
.noise-overlay {
    position: fixed; inset: 0;
    opacity: 0.03; pointer-events: none; z-index: 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAABMTExERERmZmYzMzMyMjJ4F772AAAACHRSTlMAM8z/M////wD0I40QAAAAQklEQVQ4y2NgQAX8DIwsCgwMDCz//v1jYAGi/////2fgBqL/////HyD8/w8A8f8PAPB/D4D4/x8A4v9/AAD//w8AABE0D5fZ6J55AAAAAElFTkSuQmCC');
}
.ambient-orb {
    position: fixed; border-radius: 50%; filter: blur(150px);
    opacity: 0.35; z-index: 0; pointer-events: none;
}
.orb-1 { top: -30%; left: -10%; width: 900px; height: 900px; background: var(--p-start); }
.orb-2 { bottom: -30%; right: -10%; width: 700px; height: 700px; background: var(--lime); opacity: 0.25; }
.orb-3 { top: 40%; left: 50%; transform: translateX(-50%); width: 1000px; height: 600px; background: radial-gradient(circle, var(--p-start), transparent); opacity: 0.15; z-index: -1; }


/* Buttons */
.btn {
    padding: 14px 28px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s;
    display: inline-flex;
    align-items: center; justify-content: center;
}
.btn-lime-glow {
    background: rgba(204, 255, 0, 0.1); border: 1px solid var(--lime); color: var(--lime);
    box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
}
.btn-lime-glow:hover { background: var(--lime); color: #000;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.7); }

/* Landing specific primary button override */
.btn-primary {
    background: linear-gradient(90deg, var(--p-start), var(--p-end));
    color: #fff;
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.3); border: none; position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(123, 97, 255, 0.6); }
.btn-primary:hover::before { left: 100%; }

.btn-lg { padding: 20px 40px; font-size: 18px; }
.btn-xl { padding: 24px 50px; font-size: 20px; width: 100%; max-width: 400px; }

/* === NAVBAR === */
.navbar { padding: 30px 0; position: absolute; width: 100%; z-index: 100; top: 0; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

/* === BRAND === */
.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.brand-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}
.brand-sub {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    display: block;
    width: 100%;
}

.nav-actions { display: flex; gap: 20px; align-items: center; }
.link-login { color: rgba(255,255,255,0.7); font-weight: 600; transition: 0.2s; }
.link-login:hover { color: #fff; }

/* === 1. HERO SECTION === */
.section-hero { min-height: 90vh; display: flex; align-items: center; padding-top: 140px; position: relative; }
.hero-content { position: relative; z-index: 2; }

/* NEW HERO BADGE STYLE */
.hero-badge {
    display: inline-flex; 
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.hero-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}
.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--lime);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--lime);
}
.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid var(--lime);
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 5vw, 68px); 
    font-weight: 800; 
    line-height: 1.3; 
    margin-bottom: 30px; 
    letter-spacing: -1px;
}
.normal-weight { font-weight: 400; font-family: 'Inter', sans-serif; letter-spacing: 0; }

.hero-subtitle { font-family: 'Manrope', sans-serif; font-size: 32px; letter-spacing: 4px; margin-bottom: 50px; opacity: 0.8; }
.hero-arrow-box { margin-top: 40px; }
.arrow-circle {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px;
    color: var(--lime); animation: bounce 2s infinite; color: var(--lime) !important;
}

/* === 2. CONCEPT SECTION === */
.section-concept { padding: 100px 0; }
.concept-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.desc-text { font-size: 20px; margin-top: 20px; max-width: 400px; color: var(--text-muted-on-dark); }

.concept-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.glass-card { padding: 30px; border-radius: 20px; }
.icon-wrapper { color: var(--lime); margin-bottom: 20px; filter: drop-shadow(0 0 8px rgba(204,255,0,0.5)); }
.glass-card h4 { margin: 0 0 15px 0; font-size: 22px; font-weight: 800; }
.glass-card p { margin: 0; font-size: 18px; line-height: 1.4; }

.concept-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 50px; }
.bottom-content { max-width: 900px; }
.main-msg { font-size: 22px; line-height: 1.5; margin-bottom: 40px; }
.action-row { display: flex; align-items: center; gap: 30px; }
.trust-msg { font-size: 13px; line-height: 1.4; color: var(--text-muted-on-dark); }

/* === 3. BENTO GRID === */
.section-bento { padding: 50px 0; }
.bento-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 25px; }

.tile { border-radius: 30px; padding: 50px; position: relative; overflow: hidden; }
.tile-main { grid-row: span 2; display: flex; flex-direction: column; }
.tile-bg-gradient { 
    position: absolute; top: 0;
    right: 0; width: 100%; height: 100%; 
    background: radial-gradient(circle at 100% 0%, rgba(123, 97, 255, 0.2), transparent 60%); 
    pointer-events: none;
}
.tile-header { margin-bottom: 40px; position: relative; z-index: 2; }
.badge { background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 8px; font-size: 11px;
    font-weight: 700; display: inline-block; margin-bottom: 15px; color: #fff; }
.tile-sub { font-size: 20px; font-weight: 600; margin: 0; }
.tile-title { font-family: 'Manrope', sans-serif; font-size: 56px; line-height: 1; margin-bottom: 30px; color: #fff; }
.tile-text { font-size: 18px; margin-bottom: 40px; max-width: 500px; }
.tile-note { 
    display: flex; gap: 15px; padding: 20px; border-radius: 16px; margin-bottom: 40px; font-size: 16px;
    background: rgba(255,255,255,0.05);
}
.note-icon { width: 24px; height: 24px; background: var(--lime); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0; box-shadow: 0 0 10px var(--lime); }
.mechanic-wrap { margin-top: auto; }
.mechanic { padding-left: 20px; border-left: 3px solid var(--lime); font-size: 16px; }
.bento-slogan { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; line-height: 1.2; }

.tile-side { display: flex; flex-direction: column; }
.side-title { font-family: 'Manrope', sans-serif; font-size: 32px; line-height: 1.1; margin-bottom: 30px; color: #fff; }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { 
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: space-between; gap: 10px; font-weight: 500;
}
/* New LVL Badge Style */
.lvl-badge {
    font-size: 12px; font-weight: 800; color: var(--lime); 
    padding: 4px 8px;
    border: 1px solid var(--lime); border-radius: 6px;
    white-space: nowrap; flex-shrink: 0; background: rgba(204, 255, 0, 0.05);
}
.side-footer { margin-top: auto; font-weight: 700; color: #fff; line-height: 1.4; }

.tile-banner { grid-column: 2; display: flex; align-items: center; justify-content: center; padding: 30px; border-radius: 30px; }
.banner-text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 24px; display: flex; gap: 15px; align-items: center; color: #fff; }

/* === 4. HEROES SLIDER === */
.section-heroes { padding: 80px 0; overflow: hidden; }
.modern-slider-wrap { 
    width: 100%; overflow-x: auto; padding-bottom: 30px; 
    -webkit-overflow-scrolling: touch;
}
/* Styled Scrollbar - WIDENED to 3x size */
.custom-scrollbar::-webkit-scrollbar { height: 12px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 6px; box-shadow: 0 0 10px var(--lime); border: 2px solid var(--bg-main); }
.slider-track { display: flex; gap: 30px; width: max-content; padding: 0 20px; }

.hero-card { width: 360px; border-radius: 24px; overflow: hidden; transition: 0.3s; }
.hero-card:hover { border-color: var(--lime); }
.card-image { height: 280px; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { position: absolute; top: 20px; right: 20px; padding: 6px 12px; border-radius: 8px; font-weight: 700; font-size: 12px; color: #fff !important; }
/* UPDATED CARD CONTENT PADDING */
.card-content { padding: 25px; }
.card-role { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: 1px; margin-bottom: 10px; }
.card-name { font-size: 28px; font-weight: 700; margin-bottom: 15px; color: #fff; }
/* UPDATED QUOTE LINE-HEIGHT */
.card-quote { font-style: italic; margin-bottom: 25px; padding-left: 15px; border-left: 2px solid var(--p-start); line-height: 1.4; }
/* UPDATED STATS LINE-HEIGHT */
.card-stats { padding: 15px; border-radius: 12px; font-size: 14px; background: rgba(255,255,255,0.05); line-height: 1.4; }
.card-stats div { margin-bottom: 5px; }
.card-stats span { color: #fff; font-weight: 600; margin-right: 5px; }
.card-special { border-color: var(--p-start); box-shadow: 0 0 30px rgba(123, 97, 255, 0.2); }

/* === 5. VS BLOCK === */
.section-vs { padding: 100px 0; }
.vs-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }

/* Left: Dull */
.vs-dull { 
    background: #141418; padding: 50px; border-radius: 30px; opacity: 0.6;
    filter: grayscale(1) contrast(0.8); border: 1px solid #222; transition: 0.3s;
}
.vs-dull:hover { opacity: 0.8; }
.dull-head { color: #666; font-family: 'Manrope', sans-serif; font-size: 24px; margin-bottom: 40px; font-weight: 800; }
.vs-item { margin-bottom: 30px; }
.vs-title { font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.vs-dull .vs-title { color: #999; }
.vs-desc { font-size: 16px; line-height: 1.5; }
.vs-dull .vs-desc { color: #666; }

/* Right: Bright (Glowing) */
.vs-bright { 
    padding: 50px; border-radius: 30px; position: relative; overflow: hidden;
    border-color: var(--lime);
    box-shadow: 0 0 60px rgba(204, 255, 0, 0.2);
}
.vs-bg-glow {
    position: absolute;
    top: -50%; right: -50%; width: 100%; height: 100%;
    background: radial-gradient(circle, var(--p-start), transparent 60%); opacity: 0.5; pointer-events: none;
    mix-blend-mode: screen;
}
.bright-head { 
    font-family: 'Manrope', sans-serif; font-size: 24px; margin-bottom: 40px; font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--lime));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    position: relative; z-index: 2; filter: drop-shadow(0 0 5px rgba(204,255,0,0.3));
}
.vs-bright .vs-item { position: relative; z-index: 2; }
.vs-bright .vs-desc { font-size: 18px; }

/* === 6. PARENTS BLOCK === */
.section-parents { padding: 100px 0; }
.letter-box {
    background: #e6e7ee; color: #000000; padding: 60px;
    border-radius: 4px; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(-1deg); margin: 50px 0;
}
.letter-box p, .letter-box strong, .letter-box span, .letter-box div, .letter-box li { color: #000 !important; }
.letter-box .text-secondary { color: #666 !important; }
.letter-header { display: flex; justify-content: space-between; border-bottom: 2px solid #000; padding-bottom: 20px; margin-bottom: 30px; }
.letter-to { font-weight: 700; font-size: 14px; text-transform: uppercase; }
.letter-note { font-size: 12px; margin-top: 5px; color: #555 !important; }
.letter-stamp { border: 2px solid #ff4757; color: #ff4757 !important; padding: 5px 10px; font-weight: 800; transform: rotate(-10deg); font-size: 12px; letter-spacing: 2px; }
.letter-body { font-size: 16px; line-height: 1.6; }
.highlight-text { font-size: 20px; font-weight: 800; margin: 20px 0; background: var(--lime); color: #000 !important; display: inline-block; padding: 2px 5px; }
.benefits-list { display: grid; gap: 20px; margin: 30px 0; }
.benefit { display: flex; gap: 15px; }
.num { font-weight: 900; font-size: 24px; opacity: 0.3; }
.letter-footer { margin-top: 30px; font-style: italic; border-top: 1px solid #ccc; padding-top: 20px; }

/* === 7. SECTION STRUCTURE === */
.section-structure { padding: 100px 0; position: relative; }
/* Consistent Sub-headers for Dozens/Circles */
.section-sub-title { font-family: 'Manrope', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 15px; letter-spacing: 2px; line-height: 1.1; }
.section-sub-desc { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 700; margin-top: 0; letter-spacing: 1px; }

.structure-intro { padding: 40px; border-radius: 30px; }
.intro-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.structure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.st-card { padding: 30px; border-radius: 24px; transition: 0.3s; height: 100%; display: flex; flex-direction: column; }
.st-card:hover { transform: translateY(-5px); background: rgba(60, 60, 80, 0.4); }
.st-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px; color: var(--lime); border: 1px solid rgba(255,255,255,0.1); }
.st-title { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 15px; color: #fff; }
.st-text { font-size: 15px; line-height: 1.6; color: var(--text-muted-on-dark); flex-grow: 1; margin-bottom: 0; }

/* CIRCLES */
.circles-intro { padding: 40px; border-radius: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.circles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.circle-card { padding: 30px; border-radius: 24px; text-align: left; transition: 0.3s; display: flex; flex-direction: column; height: 100%; }
.circle-card:hover { transform: translateY(-7px); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.circle-icon { width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #fff; position: relative; overflow: hidden; }
/* Icon Gradients */
.icon-biz { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4); }
.icon-sport { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); box-shadow: 0 5px 20px rgba(255, 154, 158, 0.4); }
.icon-art { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); box-shadow: 0 5px 20px rgba(161, 140, 209, 0.4); }
.icon-tech { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); box-shadow: 0 5px 20px rgba(132, 250, 176, 0.4); color: #000; }
.icon-fun { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); box-shadow: 0 5px 20px rgba(250, 112, 154, 0.4); }
.circle-icon svg { width: 30px; height: 30px; }
.circle-title { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; color: #fff; letter-spacing: 1px; }
.circle-desc { font-size: 15px; color: var(--text-muted-on-dark); line-height: 1.5; margin: 0; }
.circle-more { display: flex; align-items: center; justify-content: center;
    text-align: center; border: 2px dashed rgba(255,255,255,0.1); background: transparent; }
.circle-more:hover { border-color: var(--lime); background: rgba(204, 255, 0, 0.05); }

/* Formula Block */
.formula-block { padding: 50px; border-radius: 30px; border-color: rgba(255,255,255,0.15); }
.formula-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; max-width: 900px; margin: 0 auto; }
.formula-item { text-align: center; }
.f-val { font-family: 'Manrope', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.f-label { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }
.f-sign { font-size: 32px; color: rgba(255,255,255,0.2); font-weight: 300; }
.f-result .f-val { font-size: 64px; text-shadow: 0 0 30px rgba(204, 255, 0, 0.3); }

/* MENTORSHIP STYLES */
.mentorship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mentor-card { padding: 40px; border-radius: 24px; text-align: left; display: flex; flex-direction: column; height: 100%; transition: 0.3s; }
.mentor-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(123, 97, 255, 0.15); }
.m-icon-wrap { width: 70px; height: 70px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 25px; 
    font-size: 32px; box-shadow: inset 0 0 20px rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.m-icon-wrap svg { width: 36px; height: 36px; }
.icon-skill { color: var(--lime); background: rgba(204, 255, 0, 0.05); }
.icon-wisdom { color: var(--p-start); background: rgba(123, 97, 255, 0.05); }

.m-title { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
.m-desc { font-size: 16px; color: var(--text-muted-on-dark); line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }
.m-desc strong { color: #fff; }
.m-result { padding: 15px 20px; background: rgba(255,255,255,0.03); border-radius: 12px; font-size: 15px; line-height: 1.5; border-left: 2px solid rgba(255,255,255,0.1); }
.badge-x2 { background: var(--lime); color: #000; font-weight: 800; padding: 2px 6px; border-radius: 4px; display: inline-block; transform: rotate(-5deg); margin: 0 4px; box-shadow: 0 0 10px var(--lime); }

.glow-bg-purple { position: absolute; top: -50%; left: 20%; width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.2), transparent 70%); pointer-events: none; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 2; }
.tag-item { background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1); transition: 0.2s; cursor: default; }
.tag-item:hover { border-color: var(--lime); color: #fff; transform: translateY(-2px); background: rgba(255,255,255,0.1); }


/* CURRENCY SECTION */
.currency-intro-expanded .intro-flex { display: flex; gap: 40px; align-items: flex-start; }
.intro-left { flex: 1.5; }
.intro-right { flex: 1; }
.child-analogy { margin-top: 30px; display: flex; gap: 20px;
    align-items: center; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 16px; }
.child-analogy .emoji { font-size: 40px; }
.secret-note { transform: rotate(2deg); border: 1px solid rgba(255,255,255,0.1); padding: 25px; position: relative; }
.secret-label { position: absolute; top: -12px; right: 20px; background: #ff4757; color: white;
    font-weight: bold; font-size: 10px; padding: 4px 8px; border-radius: 4px; transform: rotate(-2deg); }

.ambient-glow-lime { position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(204,255,0,0.15), transparent 70%); top: 50%;
    left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.klondike-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.k-item { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.k-item:hover { transform: translateY(-5px); border-color: var(--lime); box-shadow: 0 10px 30px rgba(204,255,0,0.1); }
.k-icon { font-size: 32px; margin-bottom: 10px; }
.k-label { font-weight: 800; font-size: 14px; color: #fff; }

.badge-fear { display: inline-block; background: rgba(255,255,255,0.1);
    color: #fff; font-size: 12px; font-weight: bold; padding: 6px 16px; border-radius: 30px; letter-spacing: 1px; }
.fear-list { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.fear-item { background: rgba(255, 71, 87, 0.1); color: #ff6b81; padding: 10px 20px; border-radius: 30px; font-weight: 600;
    border: 1px solid rgba(255, 71, 87, 0.2); }

.bro-bg-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(123, 97, 255, 0.2), transparent 70%); pointer-events: none; }
.bro-hero-block { border: 1px solid rgba(123, 97, 255, 0.3); box-shadow: 0 0 50px rgba(123, 97, 255, 0.15); }
.scenario-row { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.scenario-compare { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sc-arrow { font-size: 30px; color: rgba(255,255,255,0.3); }
.sc-bad, .sc-good { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.sc-bad { opacity: 0.6; }

.final-question-block { border-color: var(--lime); }
.arrow-down { font-size: 24px; color: var(--lime); animation: bounce 2s infinite; }

/* === 8. MISSION & CTA === */
.section-mission { padding: 100px 0; }
.mission-title { text-align: left; margin-bottom: 60px; color: #fff; }
.mission-flow { max-width: 800px; }
.mission-step { display: flex; gap: 20px; margin-bottom: 30px; }
.step-line { width: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; flex-shrink: 0; }
.step-line.active { background: var(--p-start); box-shadow: 0 0 15px var(--p-start); }
.step-text { font-size: 18px; }
.mission-content-left { max-width: 800px; } 
.manifesto-box { padding: 30px; border-radius: 20px; line-height: 1.6; margin-top: 20px; }
.rocket-phrase { font-family: 'Manrope', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 40px; color: var(--lime); text-shadow: 0 0 10px rgba(204,255,0,0.3); }
.cta-final { padding: 50px; border-radius: 30px; display: inline-block; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* === BROTHERHOOD SECTION (NEW) === */
.section-brotherhood {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.brotherhood-card {
    border-radius: 40px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.brotherhood-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(123, 97, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.brotherhood-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.brotherhood-header-left {
    flex: 1;
}

.brotherhood-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
}

.brotherhood-header-right {
    max-width: 380px;
    padding-top: 10px;
}

.brotherhood-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.brotherhood-manifesto {
    margin-bottom: 60px;
}

.manifesto-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0;
}

.manifesto-text strong {
    color: #fff;
    font-weight: 600;
}

.manifesto-highlight {
    display: inline;
    background: linear-gradient(transparent 60%, rgba(204, 255, 0, 0.2) 60%);
    padding: 0 4px;
    margin: 0 -4px;
}

.brotherhood-for-you {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px;
}

.for-you-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trait-marker {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.5);
}

/* === CTA MID SECTION === */
.section-cta-mid {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

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

/* === BESIDES SCHOOL SECTION === */
.section-besides-school {
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

.besides-school-card {
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.besides-glow-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.besides-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.besides-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.besides-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-top: 20px;
}

.besides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Column styles with accent borders */
.besides-col {
    padding: 35px;
    border-radius: 24px;
}

.besides-base {
    border-left: 4px solid var(--p-start);
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(123, 97, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.besides-but {
    border-left: 4px solid var(--lime);
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.05), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(204, 255, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Left block title - bright purple */
.besides-base-title {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #A78BFA;
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.3));
}

.besides-base-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted-on-dark);
}

.besides-base-text strong {
    color: #fff;
}

.besides-base-footer {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(123, 97, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Right block title */
.besides-col-title {
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(204, 255, 0, 0.3));
}

.besides-skills-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.besides-skill-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-muted-on-dark);
    line-height: 1.5;
}

.skill-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 0 0 8px var(--lime);
}

/* Center note */
.besides-center-note {
    text-align: center;
    padding: 30px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.besides-center-note p {
    margin: 0;
    font-size: 18px;
}

.besides-center-note p:first-child {
    margin-bottom: 8px;
}

.besides-center-note p:last-child {
    font-size: 20px;
}

/* Final block */
.besides-final-block {
    position: relative;
    z-index: 2;
}

.besides-final-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    border-radius: 24px;
    background: rgba(123, 97, 255, 0.08);
    border: 1px solid rgba(123, 97, 255, 0.15);
    margin-bottom: 40px;
}

.besides-final-left h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
}

.besides-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--text-muted-on-dark);
}

.besides-point:last-child {
    margin-bottom: 0;
}

.point-icon {
    color: var(--lime);
    font-size: 14px;
    margin-top: 3px;
}

.besides-final-phrase {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.besides-final-phrase p {
    margin: 0;
}

.besides-final-phrase p:first-child {
    font-size: 18px;
    margin-bottom: 8px;
}