/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --color-cream: #f5f3ef;
    --color-sage: #7a9b8a;
    --color-sage-light: #a8c5b5;
    --color-sage-dark: #5a7b6a;
    --color-teal: #4a6b6b;
    --color-dark: #0A0A0A;
    --color-dark-secondary: #111111;
    --color-light: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.7);
    --color-text: #e0e0e0;
    
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-dark);
    background-color: #0A0A0A;
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: clip;
}

img,
video,
canvas {
    max-width: 100%;
    height: auto;
}

@media (hover: none) {
    a:hover {
        opacity: 1;
    }

    .navbar .mouse-text-effect:hover {
        transform: none;
        filter: none;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s var(--transition-smooth);
}

a:hover {
    opacity: 0.8;
}

/* Two-tone text styling */
.text-bright {
    color: #ffffff;
}

.text-muted {
    color: rgba(255, 255, 255, 0.52);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 1.5rem 3rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    background: transparent;
    transition: background 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.logo-dot {
    display: none;
}
/* Mouse Text Effect */
.mouse-text-effect {
    position: relative;
    display: inline-block;
    cursor: default;
    transition: all 0.3s ease;
}

/* Glow effect on hover for all navbar elements */
.navbar .mouse-text-effect {
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar .mouse-text-effect:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Logo specific effect */
.nav-logo.mouse-text-effect {
    color: rgba(255, 255, 255, 0.5);
}

.nav-logo.mouse-text-effect:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Dynamic Info Pill hover effect */
.dynamic-info-pill.mouse-text-effect:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* CTA button hover effect */
.nav-cta.mouse-text-effect:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-light);
    transition: width 0.3s var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--color-light);
    color: var(--color-dark);
    opacity: 1;
}

.cta-dot, .btn-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-light);
    transition: all 0.3s var(--transition-smooth);
}

/* ============================================
   Sections General
   ============================================ */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: transparent;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #0A0A0A;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(122, 155, 138, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(74, 107, 107, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: clamp(96px, 12vh, 160px);
    padding-bottom: 5vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-subhead {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 52ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.hero-subhead a strong {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-subhead a:hover strong {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    width: fit-content;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-actions .btn {
    padding: 0.9rem 1.4rem;
}

.hero-more {
    margin-top: 0.25rem;
}

.hero-more-summary {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    width: fit-content;
    list-style: none;
}

.hero-more summary::-webkit-details-marker {
    display: none;
}

.hero-more[open] .hero-more-summary {
    color: rgba(255, 255, 255, 0.9);
}

.hero-more .hero-description {
    margin-top: 1rem;
}

.hero-center {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* WebGL Water Ripple Effect */
.ripple-image {
    width: clamp(220px, 60vw, 320px);
    height: clamp(220px, 60vw, 320px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background-image: url('assets/WhatsApp%20Image%202025-12-04%20at%2007.53.37.jpeg');
    background-size: cover;
    background-position: center top;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Disc Player Component */
.disc-player {
    position: relative;
    width: 100px;
    height: 100px;
    background: rgba(28, 28, 30, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: visible;
    border: none;
    padding: 0;
    color: inherit;
}

.disc-player:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.25);
    outline-offset: 4px;
}

.disc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.disc-hint {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.disc {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc.spinning {
    animation: spin 3s linear infinite;
}

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

.disc-grooves {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.disc-grooves .groove {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
}

.disc-grooves .groove:nth-child(1) { width: 85%; height: 85%; }
.disc-grooves .groove:nth-child(2) { width: 75%; height: 75%; }
.disc-grooves .groove:nth-child(3) { width: 65%; height: 65%; }
.disc-grooves .groove:nth-child(4) { width: 55%; height: 55%; }
.disc-grooves .groove:nth-child(5) { width: 45%; height: 45%; }
.disc-grooves .groove:nth-child(6) { width: 38%; height: 38%; }
.disc-grooves .groove:nth-child(7) { width: 32%; height: 32%; }
.disc-grooves .groove:nth-child(8) { width: 28%; height: 28%; }

.disc-center {
    width: 24%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(circle, #666 0%, #1a1a1a 70%);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.disc-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.needle-arm {
    position: absolute;
    top: 8px;
    right: -8px;
    width: 40px;
    height: 10px;
    transform-origin: right center;
    transform: rotate(15deg);
    transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 10;
}

.needle-arm.playing {
    transform: rotate(0deg);
}

.needle-pivot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.needle-bar {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 85%;
    height: 3px;
    background: #666;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.needle-head {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3680ce;
}

/* Dynamic Info Pill */
.dynamic-info-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    background: #0a0a0a;
    border-radius: 50px;
}

/* Header Disc Player */
.header-disc-player {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.header-disc-player .disc {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.header-disc-player .disc.playing {
    animation: spin 2s linear infinite;
}

.header-disc-player .disc-grooves {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
}

.header-disc-player .groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-disc-player .groove:nth-child(1) { width: 90%; height: 90%; }
.header-disc-player .groove:nth-child(2) { width: 75%; height: 75%; }
.header-disc-player .groove:nth-child(3) { width: 60%; height: 60%; }
.header-disc-player .groove:nth-child(4) { width: 45%; height: 45%; }

.header-disc-player .disc-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #f0f0f0 0%, #ccc 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-disc-player .disc-shine {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.header-disc-player .needle-arm {
    position: absolute;
    top: 5px;
    right: -8px;
    transform-origin: top right;
    transform: rotate(-25deg);
    transition: transform 0.5s ease;
}

.header-disc-player .needle-arm.playing {
    transform: rotate(-10deg);
}

.header-disc-player .needle-pivot {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
}

.header-disc-player .needle-bar {
    width: 3px;
    height: 25px;
    background: linear-gradient(to bottom, #888, #555);
    margin-left: 2.5px;
    border-radius: 2px;
}

.header-disc-player .needle-head {
    width: 6px;
    height: 6px;
    background: #444;
    margin-left: 0;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.dynamic-info-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dynamic-info-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dynamic-info-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dynamic-info-name {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.dynamic-info-role {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.2;
}

/* Widgets Row Container */
.widgets-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 2.5rem;
    margin-top: -2rem;
    animation: fadeInUp 0.8s ease-out;
}

.widget-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 16px;
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    width: fit-content;
    margin-bottom: 0;
    animation: none;
}

.weather-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.weather-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.weather-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.weather-temp {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.weather-location {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Clock Widget */
.clock-widget {
    display: flex;
    align-items: center;
    gap: 8px;
}

.clock-time {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.clock-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.clock-seconds {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 400;
}

.clock-period {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Eyes Component - Follows Cursor */
.eyes-container {
    display: flex;
    gap: 8px;
    align-items: center;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.8);
    padding: 12px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.35s var(--transition-smooth), transform 0.35s var(--transition-smooth);
}

.eyes-container.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

@supports (min-height: 100svh) {
    .section {
        min-height: 100svh;
    }
}

.eye {
    width: 28px;
    height: 40px;
    background: #fffef9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

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

.pupil {
    width: 12px;
    height: 12px;
    background: #0c0c0c;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.05s ease-out;
}

.pupil-highlight {
    width: 4px;
    height: 4px;
    background: #fffef9;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-cream);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.2s var(--transition-smooth);
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 680px;
    animation: fadeInUp 1s ease-out 0.1s backwards;
}

.hero-description p {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    line-height: 2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-description .text-bright {
    color: rgba(255, 255, 255, 0.92);
}

.hero-description .text-muted {
    color: rgba(255, 255, 255, 0.5);
}

.hero-description p strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.hero-description p a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-description p a strong {
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-description p a:hover strong {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-description p:last-of-type {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--color-teal);
    color: var(--color-light);
}

.btn-primary:hover {
    background: var(--color-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.btn-secondary {
    background: var(--color-cream);
    color: var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-muted), transparent);
    animation: scrollPulse 2s infinite;
}

/* ============================================
   Achievements Section - Apple-Inspired
   ============================================ */
.achievements-section {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Magnetic Pattern Background */
.magnetic-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.magnetic-tile {
    position: absolute;
    will-change: transform, opacity;
    transition: none;
    transform-origin: center center;
    pointer-events: none;
    user-select: none;
}

.magnetic-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: inherit;
}

.achievements-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background-color: #0A0A0A;
    z-index: 0;
}

.achievements-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(122, 155, 138, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(74, 107, 107, 0.05) 0%, transparent 40%);
}

.achievement-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(122, 155, 138, 0.3) 0%, transparent 70%);
    animation: glowFloat 8s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(74, 107, 107, 0.25) 0%, transparent 70%);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.achievements-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
}

/* Apple-Style Achievement Card */
.achievement-card {
    position: relative;
    width: min(680px, calc(100vw - 3rem));
    height: min(480px, calc(100vh - 14rem));
    perspective: 1500px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.achievement-card:hover .card-inner {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 35px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Background Image Layer */
.card-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.7) saturate(1.15) contrast(1.05);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: clip-path, transform, opacity;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-bg-next {
    opacity: 0;
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.55) 100%
        );
    z-index: 2;
}

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

/* Card Content */
.card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem 2.25rem;
    color: #ffffff;
}

/* Top Badge */
.card-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px 6px 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #7a9b8a;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Content Area */
.card-main {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.card-left-column,
.card-right-column {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-left-column {
    text-align: left;
}

.card-right-column {
    text-align: right;
}

.card-item {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    opacity: 0.28;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    padding: 3px 0;
}

.card-item:hover {
    opacity: 1 !important;
}

.card-achievement-item.is-active,
.card-category-item.is-active {
    opacity: 0.92;
}

.card-achievement-item.is-active {
    padding-left: 12px;
    transform: translateX(4px);
}

.card-category-item.is-active {
    padding-right: 12px;
    transform: translateX(-4px);
}

.card-achievement-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 6px;
    border-radius: 50%;
    background: #7a9b8a;
    box-shadow: 0 0 10px rgba(122, 155, 138, 0.5);
}

.card-category-item.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7a9b8a;
    box-shadow: 0 0 8px rgba(122, 155, 138, 0.5);
}

/* Center Featured Text */
.card-center {
    width: 44%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    height: 10vh;
    overflow: visible;
}

.card-featured-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.card-featured-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 2.4vw, 1.65rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1em;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
    will-change: transform, opacity;
    padding: 0 10px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-caption {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: -0.01em;
    max-width: 200px;
}

.card-superpowers {
    display: block;
    margin-top: 4px;
    opacity: 0.85;
}

.superpower-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    opacity: 0.9;
}

/* Superpowers pill (reuses the exact header .dynamic-info-pill component) */
.superpowers-pill-wrap {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/* Match the header pill “feel” outside the navbar */
.superpowers-pill.mouse-text-effect {
    padding: 8px 16px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.superpowers-pill.mouse-text-effect:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.card-progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.progress-track {
    width: 100px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7a9b8a, #a8c5b5);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
    width: 100px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(
        400px circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    transition: opacity 0.3s ease;
}

.achievement-card:hover .card-shine {
    opacity: 1;
}

/* Navigation Dots */
.card-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

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

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.nav-dot.is-active {
    background: #7a9b8a;
    box-shadow: 0 0 15px rgba(122, 155, 138, 0.5);
    transform: scale(1.2);
}

/* Image Transition Classes */
.card-bg.card-enter-down {
    clip-path: inset(100% 0 0 0);
    opacity: 1;
}

.card-bg.card-enter-up {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
}

.card-bg.card-enter-active {
    transition: clip-path 0.7s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    clip-path: inset(0% 0 0% 0);
}

.card-bg.card-exit-down {
    transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transform: translateY(5%);
    opacity: 0;
}

.card-bg.card-exit-up {
    transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transform: translateY(-5%);
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .achievement-card {
        height: auto;
        min-height: 500px;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-main {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .card-left-column,
    .card-right-column,
    .card-center {
        width: 100%;
        text-align: center;
    }
    
    .card-left-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }
    
    .card-right-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }
    
    .card-achievement-item.is-active,
    .card-category-item.is-active {
        transform: none;
        padding: 4px 16px;
    }
}

/* Grain Effect Overlay */
.grain-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-0.5%, 0.5%); }
    40% { transform: translate(0.5%, -0.5%); }
    50% { transform: translate(-1%, 1%); }
    60% { transform: translate(1%, -1%); }
    70% { transform: translate(0%, 0.5%); }
    80% { transform: translate(-0.5%, -0.5%); }
    90% { transform: translate(0.5%, 0%); }
}

.balance-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.balance-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s infinite ease-in-out;
}

.circle-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s infinite ease-in-out 1s;
}

.balance-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FX Slider - matches https://framer.com/m/fx-Slider-GVGv.js@8bSMWT0dbSVYxvex3EPh */
.fx-slider-frame {
    width: min(1200px, calc(100vw - 4rem));
    height: min(800px, calc(100vh - 10rem));
}

.fx-slider {
    --fx-bg: #000000;
    --fx-text: #F5F5F5;
    --fx-duration: 0.64s;
    --fx-ease: cubic-bezier(0.86, 0, 0.07, 1);
    --fx-ui-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --fx-parallax: 5%;
    --fx-item-gap: 0.25rem;

    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--fx-bg);
    color: var(--fx-text);
}

.fx-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fx-image {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: brightness(0.8);
    will-change: clip-path, transform, opacity;
}

.fx-image-next {
    opacity: 0;
}

.fx-ui {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5vh 2rem;
}

.fx-header,
.fx-footer-text {
    font-size: 10vw;
    line-height: 0.8;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.fx-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.fx-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: var(--fx-item-gap);
}

.fx-column-left {
    text-align: left;
}

.fx-column-right {
    text-align: right;
}

.fx-item {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 0.3;
    cursor: pointer;
    position: relative;
    transition: all 0.5s var(--fx-ui-ease);
    user-select: none;
}

.fx-item:hover {
    opacity: 1 !important;
}

.fx-artist-item.is-active,
.fx-category-item.is-active {
    opacity: 1;
}

.fx-artist-item.is-active {
    padding-left: 15px;
    transform: translateX(10px);
}

.fx-category-item.is-active {
    padding-right: 15px;
    transform: translateX(-10px);
}

.fx-artist-item.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fx-text);
}

.fx-category-item.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fx-text);
}

.fx-featured {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    height: 10vh;
    overflow: hidden;
    font-size: 1.5vw;
}

.fx-featured-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.fx-featured-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 1.5vw;
    font-weight: 500;
    letter-spacing: -0.02em;
    will-change: transform, opacity;
}

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

.fx-progress-container {
    width: 160px;
    height: 1px;
    margin: 2vh auto 0;
    position: relative;
}

.fx-progress-bar {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(245, 245, 245, 0.3);
}

.fx-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--fx-text);
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.fx-progress-numbers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    transform: translateY(-50%);
    margin: 0 -25px;
    opacity: 0.7;
}

@media (max-width: 720px) {
    .fx-featured {
        font-size: 14px;
        width: 30%;
    }
    .fx-featured-line {
        font-size: 14px;
    }
}

/* Transition helpers */
.fx-image.fx-enter-down {
    clip-path: inset(100% 0 0 0);
    opacity: 1;
}

.fx-image.fx-enter-up {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
}

.fx-image.fx-enter-active {
    transition: clip-path var(--fx-duration) var(--fx-ease), opacity var(--fx-duration) var(--fx-ease);
    clip-path: inset(0% 0 0% 0);
}

.fx-image.fx-exit-down {
    transition: transform var(--fx-duration) var(--fx-ease), opacity var(--fx-duration) var(--fx-ease);
    transform: translateY(var(--fx-parallax));
    opacity: 0;
}

.fx-image.fx-exit-up {
    transition: transform var(--fx-duration) var(--fx-ease), opacity var(--fx-duration) var(--fx-ease);
    transform: translateY(calc(var(--fx-parallax) * -1));
    opacity: 0;
}

.balance-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-muted);
    opacity: 0.7;
}

.toggle-input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 56px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--color-light);
    border-radius: 50%;
    transition: all 0.4s var(--transition-bounce);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: var(--color-teal);
}

.toggle-input:checked + .toggle-slider::after {
    transform: translateX(26px);
}

.balance-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s var(--transition-smooth);
}

.balance-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   Journey Section
   ============================================ */
.journey-section {
    background: transparent;
    background-color: #0A0A0A;
}

.journey-background {
    position: absolute;
    inset: 0;
    background-color: #0A0A0A;
}

.journey-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(122, 155, 138, 0.08) 0%, transparent 50%);
}

.journey-light {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 400px;
    background: linear-gradient(180deg, 
        rgba(200, 230, 220, 0.8) 0%, 
        rgba(180, 210, 200, 0.4) 40%,
        transparent 100%
    );
    clip-path: polygon(40% 0%, 60% 0%, 80% 100%, 20% 100%);
    animation: lightPulse 4s infinite ease-in-out;
}

.journey-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.journey-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.journey-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.scroll-explore {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: transparent;
    background-color: #0A0A0A;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Magnetic Pattern Background */
.magnetic-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.magnetic-tile {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    will-change: transform, opacity;
    transition: none;
    transform-origin: center center;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.02em;
}

.contact-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 10;
    background: rgba(10, 10, 10, 0.85);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 1rem;
    justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: transparent;
    background-color: #0A0A0A;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-serif);
    font-size: 1.75rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-muted);
    opacity: 0.6;
}

/* ============================================
   Site Footer with Social Pill
   ============================================ */
.site-footer {
    background: transparent;
    background-color: #0A0A0A;
    padding: 4rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-social-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    background: #0a0a0a;
    border-radius: 50px;
    transition: box-shadow 0.3s ease;
}

.footer-social-pill:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.footer-social-pill .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-pill .social-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-social-pill .social-link svg {
    flex-shrink: 0;
}

.site-footer .footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-social-pill .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-pill .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.05);
    }
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding-top: 100px;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .hero-left,
    .hero-center,
    .hero-right {
        width: 100%;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .polaroid-shuffle {
        position: relative;
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .widgets-row {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 0;
        margin-bottom: 1.75rem;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero-content {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
        gap: 2rem;
    }

    .hero-left {
        gap: 1.75rem;
    }

    .hero-subhead {
        max-width: 100%;
    }

    /* Keep the primary interaction aligned with the copy on mobile */
    .hero-center {
        justify-content: flex-start;
    }

    .disc-wrap {
        align-items: flex-start;
    }

    .disc-hint {
        text-align: left;
    }

    .disc-player {
        width: 92px;
        height: 92px;
        border-radius: 14px;
    }

    .disc {
        width: 64px;
        height: 64px;
    }

    .needle-arm {
        top: 7px;
        right: -7px;
        width: 36px;
    }

    .ripple-image {
        background-position: center 18%;
    }

    /* Avoid clipping the label under the stack on smaller viewports */
    .stack-instructions {
        position: static;
        transform: none;
        margin-top: -0.25rem;
        text-align: center;
    }

    .hero-headline {
        font-size: clamp(2rem, 6.8vw, 2.4rem);
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    .navbar.scrolled {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .widget-divider {
        display: none;
    }

    .eyes-container {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: max(16px, env(safe-area-inset-bottom));
        padding: 10px 14px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .polaroid-shuffle {
        width: 140px;
        height: 180px;
    }
    
    .polaroid {
        width: 120px;
        padding: 10px 10px 30px 10px;
    }
    
    .polaroid-image {
        width: 100px;
        height: 100px;
    }
    
    .countries-grid {
        gap: 0.4rem;
    }
    
    .countries-grid span {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .balance-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .journey-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
    
    .balance-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .balance-image-container {
        width: 280px;
        height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar.scrolled,
    .widgets-row,
    .eyes-container {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-top: clamp(96px, 12vh, 140px);
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .hero-left {
        gap: 1.5rem;
    }

    .hero-chips {
        gap: 8px;
    }

    .hero-chip {
        padding: 7px 10px;
        font-size: 0.7rem;
    }

    .disc-wrap {
        gap: 8px;
    }

    .hero-description p {
        font-size: 0.9rem;
        line-height: 1.85;
        margin-bottom: 1.5rem;
    }

    .ripple-image {
        width: min(72vw, 280px);
        height: min(72vw, 280px);
    }

    .achievements-section {
        padding: 3rem 1rem;
    }

    .achievement-card {
        width: calc(100vw - 2rem);
        min-height: 460px;
    }

    .card-content {
        padding: 1.5rem 1.25rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-progress {
        align-items: flex-start;
    }

    .progress-track,
    .progress-numbers {
        width: 120px;
    }

    .card-featured-line {
        white-space: normal;
        max-width: 22ch;
        line-height: 1em;
        text-wrap: balance;
    }

    .card-center {
        height: auto;
        min-height: 56px;
    }

    .polaroid-shuffle {
        width: 120px;
        height: 160px;
    }

    .polaroid {
        width: 105px;
        padding: 9px 9px 28px 9px;
    }

    .polaroid-image {
        width: 90px;
        height: 90px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   Smooth Scroll Reveal
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Polaroid Shuffle Component
   ============================================ */
.polaroid-shuffle {
    position: relative;
    width: 180px;
    height: 220px;
    z-index: 20;
    perspective: 1000px;
}

.polaroid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 12px 12px 36px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    cursor: grab;
    touch-action: none;
    user-select: none;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.3s ease;
}

.polaroid:active {
    cursor: grabbing;
}

.polaroid-image {
    width: 116px;
    height: 116px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1px;
    filter: sepia(0.15) contrast(1.1) brightness(0.95);
    position: relative;
}

.polaroid-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.03) 2px,
            rgba(0,0,0,0.03) 4px
        ),
        radial-gradient(
            ellipse at center,
            transparent 60%,
            rgba(0,0,0,0.15) 100%
        );
    pointer-events: none;
}

.polaroid-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 12px;
}

.stack-instructions {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.02em;
    min-height: 1.2em;
}

.typewriter {
    display: inline-block;
}

.typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    opacity: 0.6;
}

@keyframes blink {
    50% { opacity: 0; }
}
