/* Section 2 - Social Media & Online Identity Styles */
/* Inheriting the Poolside aesthetic with social media-specific adaptations */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Poolside Color System */
    --bg-primary: #0a0f1c;
    --bg-secondary: #1a1f2e;
    --bg-card: rgba(26, 31, 46, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b4b8c5;
    --text-muted: #6b7280;
    
    /* Section 2 Specific Colors - Social Media Theme */
    --validation-color: #f59e0b;      /* Amber - attention seeking */
    --comparison-color: #ef4444;      /* Red - comparison trap */
    --burnout-color: #8b5cf6;        /* Purple - exhaustion */
    --strategy-color: #10b981;       /* Green - healthy solutions */
    
    /* Platform Colors */
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --twitter-color: #1da1f2;
    --tiktok-color: #ff0050;
    --linkedin-color: #0077b5;
    
    /* Accent Colors */
    --accent-primary: #4f46e5;
    --accent-secondary: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #4f46e5, #7c3aed);
    --border-subtle: rgba(79, 70, 229, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Animation Controls */
    --animation-speed: 1;
    --animation-duration-fast: calc(0.2s / var(--animation-speed));
    --animation-duration-normal: calc(0.5s / var(--animation-speed));
    --animation-duration-slow: calc(1s / var(--animation-speed));
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Performance optimizations */
    --blur-radius: 8px;
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-logo a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Home Button Styling */
.nav-link.home-link {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.nav-link.home-link::after {
    display: none; /* Remove the underline effect for home button */
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

/* Hamburger Menu Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Hero Section Styles */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-subtle);
}

.cta-button.secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(79, 70, 229, 0.1);
}

/* Enhanced Hero Navigation */
.hero-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.insight-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-primary);
    background: rgba(26, 31, 46, 0.8);
}

.insight-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.insight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.nav-button.primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.nav-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.nav-button.secondary {
    background: rgba(26, 31, 46, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.nav-button.secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(79, 70, 229, 0.1);
}

.button-icon {
    font-size: 1.2rem;
}

/* Digital Identity Diagram */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.digital-identity-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity-center {
    position: absolute;
    z-index: 3;
}

.core-self {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    animation: gentlePulse 3s ease-in-out infinite, floatCenter 4s ease-in-out infinite;
}

.self-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.core-self span {
    font-size: 0.75rem;
    font-weight: 600;
}

.identity-dimensions {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 30s linear infinite;
}

.dimension {
    position: absolute;
    width: 140px;
    padding: 1rem;
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: counterRotate 30s linear infinite;
}

.dimension:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    background: rgba(26, 31, 46, 0.9);
    animation-play-state: paused;
}

.dimension.authentic {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dimension.curated {
    bottom: 60px;
    left: 20px;
}

.dimension.perceived {
    bottom: 60px;
    right: 20px;
}

.dimension-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.dimension span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.dimension p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Circular Movement Animations */
@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes floatCenter {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Overview Section */
.overview-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text-content {
    padding-right: 2rem;
}

.overview-text-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.overview-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.overview-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.overview-images-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.image-item {
    position: relative;
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
}

.image-with-title {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.image-with-title:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.image-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    background: linear-gradient(135deg, var(--bg-card), rgba(79, 70, 229, 0.1));
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
    line-height: 1.4;
}

.overview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.image-with-title:hover .overview-img {
    transform: scale(1.05);
}

.overview-img:hover {
    transform: scale(1.05);
}

/* Add staggered animation effect */
.image-item:nth-child(1) {
    animation: slideInStackTop 0.8s ease-out;
}

.image-item:nth-child(2) {
    animation: slideInStackBottom 0.8s ease-out 0.3s both;
}

@keyframes slideInStackTop {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInStackBottom {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Responsive Design for Overview */
@media (max-width: 968px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .overview-images-stack {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .image-item {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 3rem 0;
    }
    
    .overview-content {
        gap: 2rem;
    }
    
    .overview-text-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-description p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .overview-images-stack {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Topic Sections */
.topic-section {
    padding: 6rem 0;
    position: relative;
}

.topic-section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.topic-header {
    text-align: center;
    margin-bottom: 4rem;
}

.topic-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 2px solid;
}

.topic-tag.validation {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--validation-color);
    color: var(--validation-color);
}

.topic-tag.comparison {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--comparison-color);
    color: var(--comparison-color);
}

.topic-tag.burnout {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--burnout-color);
    color: var(--burnout-color);
}

.topic-tag.strategies {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--strategy-color);
    color: var(--strategy-color);
}

.topic-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.topic-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-main h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-main p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Validation Cycle */
.validation-cycle {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.cycle-step {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.cycle-step:hover {
    transform: translateY(-4px);
    border-color: var(--validation-color);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--validation-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.cycle-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cycle-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cycle-arrow {
    font-size: 1.5rem;
    color: var(--validation-color);
    font-weight: bold;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--comparison-color);
}

.warning-content ul {
    list-style: none;
    padding: 0;
}

.warning-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.5;
}

.warning-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--comparison-color);
    font-weight: bold;
}

/* Social Media Stats */
.social-stats {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
}

.social-stats h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Reality vs Highlights */
.reality-vs-highlights {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.reality-side, .highlight-side {
    text-align: center;
}

.reality-side h3 {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-side h3 {
    color: var(--comparison-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reality-moments, .highlight-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.moment, .post {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.moment {
    background: rgba(107, 114, 128, 0.2);
    color: var(--text-muted);
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.post {
    background: rgba(239, 68, 68, 0.1);
    color: var(--comparison-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.vs-divider {
    font-size: 2rem;
    font-weight: 900;
    color: var(--comparison-color);
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid var(--comparison-color);
}

/* Effects Grid */
.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.effect-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.effect-card.negative {
    border-color: rgba(239, 68, 68, 0.3);
}

.effect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.effect-card.negative:hover {
    border-color: var(--comparison-color);
}

.effect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.effect-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.effect-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Strategies Grid */
.reframe-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.strategy:hover {
    transform: translateY(-4px);
    border-color: var(--strategy-color);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--strategy-color);
}

.strategy p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Burnout Symptoms */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.symptom-category {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
}

.symptom-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--burnout-color);
}

.symptom-category ul {
    list-style: none;
    padding: 0;
}

.symptom-category li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.symptom-category li:last-child {
    border-bottom: none;
}

.symptom-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Digital Detox Strategies */
.detox-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detox-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.detox-card:hover {
    transform: translateY(-4px);
    border-color: var(--strategy-color);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.detox-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--strategy-color);
}

.detox-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detox-tips {
    list-style: none;
    padding: 0;
}

.detox-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.detox-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--strategy-color);
    font-weight: bold;
}

/* Footer Styles */
.section-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .section-footer {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Performance and accessibility optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: var(--animation-duration-fast) !important;
        animation-iteration-count: 1 !important;
        transition-duration: var(--animation-duration-fast) !important;
        scroll-behavior: auto !important;
    }
    
    .parallax-bg,
    .orbital-animation,
    .floating-element {
        animation: none !important;
        transform: none !important;
    }
}

/* Hardware acceleration for smooth animations */
.challenge-card,
.platform-card,
.strategy-card,
.timeline-item,
.progress-bar,
.orbit-element {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize hover effects */
.interactive-element {
    transition: transform var(--animation-duration-normal) var(--animation-timing),
                box-shadow var(--animation-duration-normal) var(--animation-timing),
                filter var(--animation-duration-normal) var(--animation-timing);
}

.interactive-element:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: var(--shadow-large);
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 2s infinite;
}

@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .implementation-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crisis-strategies {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .strategies-header h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journey-paths {
        grid-template-columns: 1fr;
    }
    
    .implementation-timeline {
        grid-template-columns: 1fr;
    }
      .hero-insights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-navigation {
        flex-direction: column;
    }
    
    .nav-button {
        min-width: auto;
        width: 100%;
    }
    
    .digital-identity-diagram {
        width: 300px;
        height: 300px;
    }
    
    .dimension {
        width: 120px;
        padding: 0.75rem;
    }
    
    .core-self {
        width: 60px;
        height: 60px;
    }
    
    .dimension.authentic {
        top: 10px;
    }
    
    .dimension.curated {
        bottom: 40px;
        left: 10px;
    }
    
    .dimension.perceived {
        bottom: 40px;
        right: 10px;
    }
    
    .cycle-visualization {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cycle-arrow {
        transform: rotate(90deg);
    }
    
    .demo-split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        justify-self: center;
    }
    
    .effects-grid,
    .triggers-grid,
    .tools-grid,    .contribution-actions {
        grid-template-columns: 1fr;
    }
    
    .nav-card {
        padding: 1rem;
        text-align: center;
    }
    
    .nav-card.back,
    .nav-card.next {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .challenge-card,
    .strategy-card {
        padding: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .impact-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .connection-web {
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .nav-card {
        transition: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e5e5e5;
        --border-subtle: rgba(255, 255, 255, 0.3);
    }
}

/* Focus States for Accessibility */
.cycle-step:focus,
.effect-card:focus,
.strategy:focus,
.detox-card:focus,
.nav-card:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Digital Challenges Section Styles */
.digital-challenges-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.challenges-overview {
    margin-bottom: 4rem;
}

.challenge-impact-meter {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
}

.challenge-impact-meter h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.impact-visualization {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-bar {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    gap: 1rem;
    align-items: center;
}

.impact-label {
    font-weight: 600;
    color: var(--text-primary);
}

.impact-progress {
    height: 12px;
    background: var(--accent-gradient);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.impact-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.impact-stat {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
}

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

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.challenge-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.challenge-header {
    margin-bottom: 2rem;
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.challenge-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.challenge-tag.validation {
    background: rgba(245, 158, 11, 0.2);
    color: var(--validation-color);
}

.challenge-tag.comparison {
    background: rgba(239, 68, 68, 0.2);
    color: var(--comparison-color);
}

.challenge-tag.burnout {
    background: rgba(139, 92, 246, 0.2);
    color: var(--burnout-color);
}

.challenge-tag.anxiety {
    background: rgba(16, 185, 129, 0.2);
    color: var(--strategy-color);
}

.challenge-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.challenge-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.challenge-cycle h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cycle-visualization {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cycle-step {
    background: rgba(255,255,255,0.05);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.cycle-step.active {
    background: rgba(79, 70, 229, 0.2);
    border-color: var(--accent-primary);
}

.step-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.cycle-step span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.cycle-arrow {
    color: var(--text-muted);
    font-weight: bold;
}

.challenge-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.warning-indicators h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.indicators-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.indicator {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    border-left: 3px solid var(--validation-color);
}

.comparison-demo {
    margin-bottom: 1.5rem;
}

.demo-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.reality-column, .highlight-column {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
}

.reality-column h4, .highlight-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.reality-moments, .highlight-moments {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.moment {
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

.moment.sad { border-left: 3px solid var(--comparison-color); }
.moment.frustrated { border-left: 3px solid var(--validation-color); }
.moment.lonely { border-left: 3px solid var(--burnout-color); }
.moment.tired { border-left: 3px solid var(--text-muted); }
.moment.happy { border-left: 3px solid var(--strategy-color); }
.moment.success { border-left: 3px solid var(--accent-primary); }
.moment.social { border-left: 3px solid var(--linkedin-color); }
.moment.lifestyle { border-left: 3px solid var(--instagram-gradient); }

.vs-divider {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.psychological-effects h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.effects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.effect-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.effect-item.negative {
    border-left: 3px solid var(--comparison-color);
}

.effect-icon {
    font-size: 1rem;
}

.burnout-symptoms h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.symptoms-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.symptom-category {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.category-icon {
    font-size: 1.2rem;
}

.category-header h5 {
    font-weight: 600;
    color: var(--text-primary);
}

.symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.symptom {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.recovery-timeline h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    flex-shrink: 0;
}

.timeline-content h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.anxiety-triggers h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.trigger-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.trigger-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trigger-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.trigger-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.coping-strategies-preview h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strategies-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.strategy-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--strategy-color);
}

.challenges-summary {
    margin-top: 3rem;
}

.summary-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    backdrop-filter: blur(20px);
}

.summary-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.summary-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.connection-web {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.connection-node {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    border: 2px solid;
}

.connection-node.validation {
    border-color: var(--validation-color);
    background: rgba(245, 158, 11, 0.1);
    color: var(--validation-color);
}

.connection-node.comparison {
    border-color: var(--comparison-color);
    background: rgba(239, 68, 68, 0.1);
    color: var(--comparison-color);
}

.connection-node.burnout {
    border-color: var(--burnout-color);
    background: rgba(139, 92, 246, 0.1);
    color: var(--burnout-color);
}

.connection-node.anxiety {
    border-color: var(--strategy-color);
    background: rgba(16, 185, 129, 0.1);
    color: var(--strategy-color);
}

/* Enhanced Strategies Section Styles */
.strategies-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.strategies-header {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.strategies-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.strategies-journey {
    margin-bottom: 4rem;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.journey-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.path-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.path-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.path-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.path-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.path-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-item {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.core-strategies {
    margin-bottom: 4rem;
}

.core-strategies h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.strategy-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.strategy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.strategy-header .strategy-icon {
    font-size: 2rem;
}

.strategy-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    margin-left: 1rem;
}

.difficulty-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-badge.easy {
    background: rgba(16, 185, 129, 0.2);
    color: var(--strategy-color);
}

.difficulty-badge.medium {
    background: rgba(245, 158, 11, 0.2);
    color: var(--validation-color);
}

.strategy-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.strategy-techniques h5,
.strategy-metrics h5,
.authenticity-framework h5,
.authenticity-challenges h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.technique-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.technique {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.technique-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.technique-details h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.technique-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--strategy-color);
}

.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.framework-step {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.step-letter {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.challenges-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Make the 5th item span full width on its own row */
.challenge-category:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.challenge-category {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.challenge-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.challenge-category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
}

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

.challenge-points li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.challenge-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Self Understanding Section Styles */
.self-understanding-hero {
    margin: 3rem 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.8), rgba(124, 58, 237, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-overlay h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.understanding-benefits {
    margin: 4rem 0;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-list {
    max-width: 700px;
    margin: 2rem auto 0;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.bullet-point {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: bold;
    line-height: 1.4;
    flex-shrink: 0;
}

.benefit-content {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    flex: 1;
}

.benefit-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

.self-insight-section {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
}

.self-insight-section::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-display);
    line-height: 1;
}

.self-insight-section::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-display);
    line-height: 1;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.insight-text p {
    font-size: 1.4rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 20%, var(--accent-primary) 50%, var(--border-subtle) 80%, transparent 100%);
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
}

/* Simplified References Section */
.references-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.references-header {
    text-align: center;
    margin-bottom: 4rem;
}

.references-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.references-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.references-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reference-category {
    background: rgba(26, 31, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.reference-category:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.4);
    background: rgba(26, 31, 46, 0.9);
}

.reference-category h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reference-category ul {
    list-style: none;
    padding: 0;
}

.reference-category li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.reference-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.reference-category em {
    color: var(--text-primary);
    font-style: italic;
}

/* Section Navigation Styles - Modern Dark Theme */
.section-navigation {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.section-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(64, 81, 144, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.nav-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46,  0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 120px;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover {
    background: linear-gradient(135deg, rgba(64, 81, 144, 0.3) 0%, rgba(45, 56, 98, 0.3) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(100, 149, 237, 0.3);
}

.nav-card.back {
    justify-content: flex-start;
    flex-direction: row;
}

.nav-card.next {
    justify-content: flex-end;
    flex-direction: row;
}

.nav-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #6495ed;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6495ed, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(100, 149, 237, 0.3);
    transition: all 0.3s ease;
}

.nav-card:hover .nav-icon {
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(100, 149, 237, 0.5);
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-card.back .nav-content {
    align-items: flex-start;
    text-align: left;
}

.nav-card.next .nav-content {
    align-items: flex-end;
    text-align: right;
}

.nav-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.nav-card:hover .nav-content h3 {
    color: #e6f3ff;
}

.nav-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .nav-card {
        min-height: 120px;
    }
}

/* Enhanced Hover Effects for Desktop */
@media (min-width: 1024px) {
    .nav-card:hover {
        transform: translateY(-6px) scale(1.03);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .nav-card {
        transition: none;
    }
    
    .nav-card:hover {
        transform: none;
    }
    
    .nav-card::before,
    .nav-card:hover::before {
        display: none;
    }
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: var(--text-primary);
        text-align: center;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .hamburger {
        display: flex;
        z-index: 10000;
    }
}

/* Enhanced Card Backgrounds for List Content Sections */

/* Boundary Examples Cards */
.boundary-examples {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.boundary-examples:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.boundary-examples .example {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-left: 3px solid var(--accent-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.boundary-examples .example:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Technique List Cards */
.technique-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.technique-list:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.technique-list .technique {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.technique-list .technique:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Principles List Cards */
.principles-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.principles-list:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.principles-list .principle {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.principles-list .principle:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Framework Steps Cards */
.framework-steps {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.framework-steps:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.framework-steps .framework-step {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.framework-steps .framework-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Challenges List Cards */
.authenticity-challenges .challenges-list,
.strategy-card .challenges-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: block; /* Override grid for these specific instances */
    grid-template-columns: none;
}

.authenticity-challenges .challenges-list:hover,
.strategy-card .challenges-list:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.authenticity-challenges .challenges-list .challenge,
.strategy-card .challenges-list .challenge {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-left: 3px solid var(--accent-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.authenticity-challenges .challenges-list .challenge:hover,
.strategy-card .challenges-list .challenge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Benefits List Enhanced Cards */
.strategy-benefits .benefits-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.strategy-benefits .benefits-list:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strategy-benefits .benefits-list .benefit {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.75rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.strategy-benefits .benefits-list .benefit:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Metrics List Cards */
.metrics-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metrics-list:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metrics-list .metric {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-left: 3px solid var(--strategy-color);
    transition: all 0.2s ease;
}

.metrics-list .metric:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(5px);
}

/* Enhanced Visual Effects for List Cards */

/* Add subtle glow effects on hover */
.boundary-examples:hover,
.technique-list:hover,
.principles-list:hover,
.framework-steps:hover,
.authenticity-challenges .challenges-list:hover,
.strategy-card .challenges-list:hover,
.strategy-benefits .benefits-list:hover,
.metrics-list:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(79, 70, 229, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Color-coded borders for different content types */
.boundary-examples {
    border-left: 4px solid rgba(239, 68, 68, 0.6); /* Red for boundaries */
}

.technique-list {
    border-left: 4px solid rgba(16, 185, 129, 0.6); /* Green for techniques */
}

.principles-list {
    border-left: 4px solid rgba(139, 92, 246, 0.6); /* Purple for principles */
}

.framework-steps {
    border-left: 4px solid rgba(245, 158, 11, 0.6); /* Orange for frameworks */
}

.authenticity-challenges .challenges-list,
.strategy-card .challenges-list {
    border-left: 4px solid rgba(59, 130, 246, 0.6); /* Blue for challenges */
}

.strategy-benefits .benefits-list {
    border-left: 4px solid rgba(16, 185, 129, 0.6); /* Green for benefits */
}

.metrics-list {
    border-left: 4px solid rgba(16, 185, 129, 0.8); /* Stronger green for metrics */
}

/* Improved content hierarchy within cards */
.boundary-examples .example:first-child,
.technique-list .technique:first-child,
.principles-list .principle:first-child,
.framework-steps .framework-step:first-child,
.authenticity-challenges .challenges-list .challenge:first-child,
.strategy-card .challenges-list .challenge:first-child,
.strategy-benefits .benefits-list .benefit:first-child {
    margin-top: 0;
}

.boundary-examples .example:last-child,
.technique-list .technique:last-child,
.principles-list .principle:last-child,
.framework-steps .framework-step:last-child,
.authenticity-challenges .challenges-list .challenge:last-child,
.strategy-card .challenges-list .challenge:last-child,
.strategy-benefits .benefits-list .benefit:last-child {
    margin-bottom: 0;
}

/* Enhanced typography for better readability */
.boundary-examples h5,
.technique-list h5,
.principles-list h5,
.framework-steps h5,
.authenticity-challenges h5,
.strategy-benefits h5,
.metrics-list h5 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}

/* Subtle animation for better user feedback */
@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.boundary-examples,
.technique-list,
.principles-list,
.framework-steps,
.authenticity-challenges .challenges-list,
.strategy-card .challenges-list,
.strategy-benefits .benefits-list,
.metrics-list {
    animation: cardEnter 0.3s ease-out;
}

/* Focus states for accessibility */
.boundary-examples:focus-within,
.technique-list:focus-within,
.principles-list:focus-within,
.framework-steps:focus-within,
.authenticity-challenges .challenges-list:focus-within,
.strategy-card .challenges-list:focus-within,
.strategy-benefits .benefits-list:focus-within,
.metrics-list:focus-within {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 700px) {
  .challenges-list {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
}
