/* Digital Self - Poolside-Inspired Modular Design */

:root {
    /* Primary Colors - Dark Blue Theme */
    --bg-primary: #0a0f1c;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #252b3b;
    --bg-card: #2a3142;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c2cc;
    --text-muted: #8892a0;
    --text-accent: #6366f1;
    
    /* Accent Colors */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-secondary: linear-gradient(135deg, #ec4899, #f59e0b);
    --gradient-tertiary: linear-gradient(135deg, #10b981, #3b82f6);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --section-padding: 8rem 0;
    --container-padding: 0 2rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.95);
    border-bottom: 1px solid var(--accent-blue);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 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: 2.5rem;
    align-items: center;
}

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

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

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

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

.nav-link.active {
    color: var(--accent-blue);
}

.nav-link.active::after {
    width: 100%;
    background: var(--accent-blue);
}

.talk-btn {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.talk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.talk-btn::after {
    display: none;
}

/* Hamburger Menu */
.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 var(--glass-border);
    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 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 {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Text Block Styles */
.text-block {
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    z-index: -1;
    transition: all 0.4s ease;
}

.text-block:hover::before {
    background: rgba(255, 255, 255, 0.08);
}

.text-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: var(--accent-blue);
}

/* Primary Large Block - "We explore" */
.primary-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: var(--gradient-primary);
    border: none;
}

.primary-large h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* Accent Block - "the digital self," */
.accent-block {
    grid-column: 3 / 6;
    grid-row: 1 / 2;
    background: var(--gradient-secondary);
    border: none;
}

.accent-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: white;
}

/* Secondary Large Block - "a mosaic of identity" */
.secondary-large {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    background: var(--bg-card);
}

.secondary-large h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent-blue);
}

/* Small Block - "between self & screen." */
.small-block {
    grid-column: 4 / 6;
    grid-row: 2 / 3;
    background: var(--bg-tertiary);
}

.small-block p {
    font-size: 1.8rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Quote Emphasis - "Authenticity in pixels," */
.quote-emphasis {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
    background: var(--bg-secondary);
}

.quote-emphasis h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
}

/* Highlight Gradient - "reimagined." */
.highlight-gradient {
    grid-column: 4 / 6;
    grid-row: 3 / 4;
    background: var(--gradient-tertiary);
    border: none;
}

.highlight-gradient h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: white;
}

/* CTA Block */
.cta-block {
    grid-column: 6 / 7;
    grid-row: 1 / 4;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Link-specific styling to maintain button appearance */
    text-decoration: none !important;
    color: inherit !important;
    
    /* Additional link resets */
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-clip: padding-box;
}

/* All link states */
.cta-block:link,
.cta-block:visited,
.cta-block:hover,
.cta-block:active,
.cta-block:focus {
    text-decoration: none !important;
    color: inherit !important;
}

.cta-block:hover {
    background: var(--accent-blue) !important;
}

.cta-block:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.cta-block:active {
    transform: translateY(2px);
}

.cta-content {
    text-align: center;
    pointer-events: none; /* Prevent nested elements from interfering with link behavior */
}

.cta-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit !important;
    pointer-events: none;
}

.arrow {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-blue);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cta-block:hover .arrow {
    color: white;
    transform: translateX(5px);
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-tertiary);
    top: 60%;
    right: 30%;
    animation-delay: -14s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(10px) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-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;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.about-content-grid {
    display: grid;
    gap: 1.5rem;
}

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

.content-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.content-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Enhanced Digital Visualization - Centered for thinking statue */
.visualization-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    min-height: 600px;
    width: 100%;
}

.data-orbits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
    animation-duration: 40s;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: -6px;
}

.data-node.social {
    background: var(--accent-blue);
    left: 50%;
    box-shadow: 0 0 15px var(--accent-blue);
}

.data-node.privacy {
    background: var(--accent-purple);
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-purple);
}

.data-node.ethics {
    background: var(--accent-green);
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
    box-shadow: 0 0 15px var(--accent-green);
}

.data-node.wellbeing {
    background: var(--accent-pink);
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-pink);
}

.data-node.identity {
    background: var(--accent-orange);
    left: 25%;
    top: 25%;
    box-shadow: 0 0 15px var(--accent-orange);
}

.data-node.connection {
    background: var(--accent-blue);
    left: 75%;
    top: 75%;
    box-shadow: 0 0 15px var(--accent-blue);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.8); }
}

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

.digital-self-viz {
    position: relative;
    height: 400px;
    z-index: 1;
}

.avatar-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-profile {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

.data-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.point-1 { animation-delay: 0s; }
.point-2 { animation-delay: 0.7s; }
.point-3 { animation-delay: 1.4s; }
.point-4 { animation-delay: 2.1s; }
.point-5 { animation-delay: 2.8s; }
.point-6 { animation-delay: 3.5s; }
.point-7 { animation-delay: 4.2s; }
.point-8 { animation-delay: 4.9s; }
.point-9 { animation-delay: 5.6s; }
.point-10 { animation-delay: 6.3s; }
.point-11 { animation-delay: 7s; }
.point-12 { animation-delay: 7.7s; }

/* Quote Section */
.quote-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
}

.quote-content-center blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    font-style: italic;
}

.quote-attribution {
    text-align: right;
}

.quote-attribution p {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

/* Sections Container */
.sections-container {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.sections-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;
}

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

.sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-card {
       background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow);
    border-color: var(--accent-blue);
}

.section-card:active {
    transform: translateY(-5px);
    transition: all 0.1s ease;
}

.card-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.pattern-understanding {
    background: var(--gradient-primary);
}

.pattern-social {
    background: var(--gradient-secondary);
}

.pattern-ethics {
    background: var(--gradient-tertiary);
}

.pattern-wellbeing {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-pink));
}

.card-icon {
    font-size: 3rem;
    z-index: 2;
    position: relative;
    filter: grayscale(0);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.link-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.card-link:hover .link-arrow {    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-text p:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* References Section */
.references-section {
    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;
}

.reference-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.reference-category h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -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-blue);
    font-weight: bold;
}

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

/* Thinking Statue Image - Using actual thinkingStatue.png */
.thinking-statue-container {
    position: relative;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.statue-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.thinking-statue-image {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.thinking-statue-image:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    filter: brightness(1) contrast(1.2);
}

.statue-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 3;
}

.digital-thoughts-overlay {
    display: flex;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 0.8rem 1rem;
    animation: thoughtFloat 3s ease-in-out infinite;
}

.digital-thoughts-overlay .thought-icon {
    font-size: 1.2rem;
    animation: thoughtCycle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.digital-thoughts-overlay .thought-icon:nth-child(2) {
    animation-delay: -1.3s;
}

.digital-thoughts-overlay .thought-icon:nth-child(3) {
    animation-delay: -2.6s;
}

.statue-inscription {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.statue-inscription:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.reflection-particles {
    position: absolute;
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.7;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat1 8s ease-in-out infinite;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.thought-icon {
    font-size: 0.7rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.statue-body {
    position: relative;
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-pink));
    border-radius: 25px 25px 15px 15px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.contemplation-pose {
    position: absolute;
    top: 20px;
    left: -15px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    animation: armContemplation 5s ease-in-out infinite;
}

.contemplation-pose::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 5px;
    width: 15px;
    height: 30px;
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-pink));
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.statue-inscription {
    text-align: center;
    max-width: 200px;
}

.statue-inscription p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.reflection-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--accent-blue);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat1 8s ease-in-out infinite;
}

.particle-2 {
    top: 40%;
    right: 15%;
    animation: particleFloat2 10s ease-in-out infinite;
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation: particleFloat3 7s ease-in-out infinite;
    background: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
}

.particle-4 {
    bottom: 10%;
    right: 10%;
    animation: particleFloat4 9s ease-in-out infinite;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

/* Digital Self Question - Positioned above thinking statue */
.digital-self-question {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.digital-self-question:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.digital-self-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digital-self-question p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Enlarged Thinking Statue - Centered with bigger size */
.thinking-statue-container.enlarged {
    width: 100%;
    height: 100%;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    transform: scale(1.1);
}

.thinking-statue-container.enlarged .statue-image-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thinking-statue-container.enlarged .thinking-statue-image {
    width: 350px;
    height: auto;
    transform: scale(1.2);
    transition: all 0.5s ease;
}

.thinking-statue-container.enlarged .thinking-statue-image:hover {
    transform: translateY(-10px) scale(1.25);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.5);
}

.thinking-statue-container.enlarged .statue-overlay {
    top: -25px;
    right: -25px;
}

.thinking-statue-container.enlarged .digital-thoughts-overlay {
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
}

.thinking-statue-container.enlarged .digital-thoughts-overlay .thought-icon {
    font-size: 1.3rem;
}

.thinking-statue-container.enlarged .statue-inscription {
    font-size: 1.0rem;
    padding: 1.2rem 1.8rem;
    margin-top: 1.5rem;
    text-align: center;
}

.thinking-statue-container.enlarged .reflection-particles {
    width: 350px;
    height: 350px;
}

.thinking-statue-container.enlarged .particle {
    width: 8px;
    height: 8px;
}

/* Thinking Statue Element - Digital Self Contemplation */

/* ===== MOBILE RESPONSIVENESS ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-grid {
        gap: 1.3rem;
        max-width: 1100px;
    }
    
    .text-block {
        padding: 1.7rem;
    }
    
    /* Adjust text sizes for tablets */
    .primary-large h1,
    .secondary-large h1 {
        font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    }
    
    .quote-emphasis h2,
    .highlight-gradient h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }
    
    .accent-block h2 {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
    }
    
    .small-block p {
        font-size: 1.6rem;
    }
    
    /* About Section */
    .about-grid {
        gap: 3rem;
    }
    
    /* Thinking Statue - Tablet optimization */
    .thinking-statue-container.enlarged {
        transform: scale(0.9);
        min-height: 650px;
    }
    
    .thinking-statue-container.enlarged .thinking-statue-image {
        width: 320px;
        transform: scale(1.05);
    }
    
    .thinking-statue-container.enlarged .statue-inscription {
        font-size: 1rem;
        padding: 1.1rem 1.7rem;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay {
        padding: 0.8rem 1.3rem;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay .thought-icon {
        font-size: 1.3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Update existing footer media query */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }    /* Hero Section - Better mobile layout */
    .hero {
        padding: 7rem 0 3rem;
        min-height: 110vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-container {
        padding: 0 1rem;
        display: block;
    }
    
    /* Hero Grid - Complete mobile transformation */
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        max-width: 100%;
        margin: 0;
    }
    
    .text-block {
        grid-column: unset !important;
        grid-row: unset !important;
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Reorder blocks for better mobile flow */
    .primary-large {
        order: 1;
    }
    
    .accent-block {
        order: 2;
    }
    
    .secondary-large {
        order: 3;
    }
    
    .small-block {
        order: 4;
    }
    
    .quote-emphasis {
        order: 5;
    }
    
    .highlight-gradient {
        order: 6;
    }
    
    .cta-block {
        order: 7;
        min-height: 120px;
    }
    
    /* Adjust text sizes for mobile readability */
    .primary-large h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        text-align: center;
    }
    
    .secondary-large h1 {
        font-size: clamp(2rem, 6.5vw, 3rem);
        text-align: center;
    }
    
    .quote-emphasis h2 {
        font-size: clamp(1.6rem, 5.5vw, 2.4rem);
        text-align: center;
    }
    
    .highlight-gradient h2 {
        font-size: clamp(1.6rem, 5.5vw, 2.4rem);
        text-align: center;
    }
    
    .accent-block h2 {
        font-size: clamp(1.3rem, 4.5vw, 1.9rem);
        text-align: center;
    }
    
    .small-block p {
        font-size: 1.5rem;
        text-align: center;    }
    
    .cta-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    /* About Section - Mobile optimization */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
      /* Thinking Statue - Improved mobile display - BIGGER SIZE */
    .visualization-area {
        min-height: 500px;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .thinking-statue-container.enlarged {
        transform: scale(0.95);
        min-height: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .thinking-statue-container.enlarged .thinking-statue-image {
        width: 320px;
        height: auto;
        transform: scale(1.0);
        transition: transform 0.3s ease;
    }
    
    .thinking-statue-container.enlarged .thinking-statue-image:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .thinking-statue-container.enlarged .statue-inscription {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        margin-top: 1.2rem;
        text-align: center;
        max-width: 300px;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay {
        padding: 0.7rem 1.2rem;
        border-radius: 25px;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay .thought-icon {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
    
    .thinking-statue-container.enlarged .reflection-particles {
        width: 280px;
        height: 280px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .thinking-statue-container.enlarged .particle {
        width: 7px;
        height: 7px;
    }
      /* Sections Grid */
    .sections-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    /* Quote Section */
    .quote-layout {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .quote-content-center blockquote {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
      /* Navigation */
    .nav-menu {
        display: none;
        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;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .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-menu .nav-link:hover,
    .nav-menu .nav-link:focus {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        outline: 2px solid var(--accent-blue);
        outline-offset: 2px;
    }
      .hamburger {
        display: flex;
        z-index: 10000;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hide desktop nav menu on mobile */
    .nav-menu:not(.active) {
        display: none;
    }
    
    .hamburger:focus-visible {
        outline: 2px solid var(--accent-blue);
        outline-offset: 2px;
        border-radius: 4px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {    /* Hero Section - Further mobile optimization */
    .hero {
        padding: 6rem 0 2.5rem;
        min-height: 110vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-container {
        padding: 0 0.75rem;
    }
    
    .hero-grid {
        gap: 1rem;
    }
    
    .text-block {
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    /* Further reduced text sizes for small screens */
    .primary-large h1,
    .secondary-large h1 {
        font-size: clamp(1.9rem, 8.5vw, 2.6rem);
        line-height: 1.2;
    }
    
    .quote-emphasis h2,
    .highlight-gradient h2 {
        font-size: clamp(1.4rem, 6.5vw, 2.1rem);
        line-height: 1.3;
    }
    
    .accent-block h2 {
        font-size: clamp(1.1rem, 5.5vw, 1.6rem);
        line-height: 1.3;
    }
    
    .small-block p {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .cta-block {
        min-height: 100px;
    }
    
    .cta-content h3 {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content-grid {
        gap: 1.2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
      /* Thinking Statue - Bigger size for small screens */
    .visualization-area {
        min-height: 450px;
        padding: 1rem;
    }
    
    .thinking-statue-container.enlarged {
        transform: scale(0.85);
        min-height: 450px;
    }
    
    .thinking-statue-container.enlarged .thinking-statue-image {
        width: 280px;
        max-width: 90vw;
    }
    
    .thinking-statue-container.enlarged .statue-inscription {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
        margin-top: 1rem;
        max-width: 280px;
        line-height: 1.4;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay {
        padding: 0.6rem 1rem;
        border-radius: 20px;
        top: 18%;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay .thought-icon {
        font-size: 1.1rem;
        margin: 0 0.2rem;
    }
    
    .thinking-statue-container.enlarged .reflection-particles {
        width: 240px;
        height: 240px;
    }
    
    .thinking-statue-container.enlarged .particle {
        width: 6px;
        height: 6px;
    }
    
    /* Container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Section padding */
    :root {
        --section-padding: 4rem 0;
    }
    
    /* Quote block */
    .quote-content-center blockquote {
        font-size: clamp(1rem, 5vw, 1.4rem);
        line-height: 1.4;
    }
}

/* Very small screens - landscape orientation and ultra-compact phones */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-grid {
        gap: 0.8rem;
    }
    
    .text-block {
        padding: 0.9rem;
    }
    
    .primary-large h1,
    .secondary-large h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .quote-emphasis h2,
    .highlight-gradient h2 {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    }
    
    .accent-block h2 {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
    }
    
    .small-block p {
        font-size: 1.1rem;
    }
    
    .cta-block {
        min-height: 80px;
    }
    
    .about-section {
        padding: 2rem 0;
    }
    
    .thinking-statue-container.enlarged {
        transform: scale(0.5);
        min-height: 280px;
    }
    
    .visualization-area {
        min-height: 280px;
        padding: 0.5rem;
    }
    
    .thinking-statue-container.enlarged .statue-inscription {
        font-size: 0.75rem;
        padding: 0.6rem 0.9rem;
        margin-top: 0.8rem;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay {
        padding: 0.4rem 0.8rem;
        top: 20%;
    }
    
    .thinking-statue-container.enlarged .digital-thoughts-overlay .thought-icon {
        font-size: 0.9rem;
    }
}

/* Ultra-wide screens optimization */
@media (min-width: 1600px) {
    .hero-grid {
        max-width: 1500px;
        gap: 2rem;
    }
    
    .text-block {
        padding: 2.5rem;
    }
    
    .thinking-statue-container.enlarged {
        transform: scale(1.15);
        min-height: 900px;
    }
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.team-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--glass-shadow), 0 0 30px rgba(59, 130, 246, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover .member-image {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

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

.member-role {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Team Section Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-header h2 {
        font-size: 2.5rem;
    }
    
    .team-header p {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .team-header {
        margin-bottom: 3rem;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 1.2rem;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
}

/* Back to Top Button */
.back-to-top-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
  transition: background 0.3s, transform 0.2s;
  margin-top: 1.5rem;
}

.back-to-top-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}