/* About Page - Dark Cinematic Theme */

:root {
    /* Dark Theme Colors */
    --background: #0a0a0a;
    --foreground: #f5f5f5;
    --card: #1a1a1a;
    --card-foreground: #f5f5f5;
    --primary: #dab900;
    --primary-foreground: #0a0a0a;
    --secondary: #2a2a2a;
    --secondary-foreground: #f5f5f5;
    --muted: #1f1f1f;
    --muted-foreground: #a1a1a1;
    --accent: #dab900;
    --accent-foreground: #0a0a0a;
    --border: #2a2a2a;
    --charcoal: #1a1a1a;
    --warm-light: #dab900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: #a89100;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218, 185, 0, 0.4);
}

/* Section 1: Hero */
.about-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
}

.light-beam {
    position: absolute;
    top: -50%;
    right: 20%;
    width: 300px;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(218, 185, 0, 0.15),
        rgba(218, 185, 0, 0.05),
        transparent
    );
    transform: rotate(25deg);
    filter: blur(30px);
    animation: beamDrift 12s ease-in-out infinite;
}

@keyframes beamDrift {
    0%, 100% { transform: rotate(25deg) translateX(0); }
    50% { transform: rotate(25deg) translateX(30px); }
}

.studio-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.3),
        transparent
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    /* Metallic gold gradient */
    background: linear-gradient(
        to bottom,
        #ffd700 0%,      /* bright gold top */
        #ffec8b 20%,     /* lighter highlight */
        #b38d31 50%,     /* mid-tone gold */
        #ffec8b 80%,     /* lighter highlight */
        #ffd700 100%     /* bright gold bottom */
    );

    /* Clipping logic to put the gradient inside the text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Use filter instead of text-shadow for a cleaner look with gradients */
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

.hero-subline {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: fadeUp 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-oneliner {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section 2: Origin Story */
.origin-story {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.origin-grid {
    display: flex;
    
    gap: 4rem;
    align-items: center;
}

.origin-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

.origin-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpDelay 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.origin-paragraph:nth-child(1) { animation-delay: 0.2s; }
.origin-paragraph:nth-child(2) { animation-delay: 0.4s; }
.origin-paragraph:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUpDelay {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.origin-visual {
    position: relative;
    height: 500px;
}

.film-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-item {
    position: absolute;
    background: var(--card);
    border: 1px solid rgba(218, 185, 0, 0.2);
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.collage-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 55%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.collage-2 {
    bottom: 0;
    left: 10%;
    width: 50%;
    height: 45%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.collage-3 {
    top: 20%;
    right: 0;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.collage-item:hover {
    transform: scale(1.05);
}

/* Section 3: Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-block,
.vision-block {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mission-block { animation-delay: 0.2s; }
.vision-block { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;

    /* Metallic gold gradient */
    background: linear-gradient(
        to bottom,
        #ffd700 0%,      /* bright gold top */
        #ffec8b 20%,     /* lighter highlight */
        #b38d31 50%,     /* mid-tone gold */
        #ffec8b 80%,     /* lighter highlight */
        #ffd700 100%     /* bright gold bottom */
    );

    /* Clip gradient to text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Very subtle shadow to ensure readability on cream or white backgrounds */
    filter: drop-shadow(0 1px 2px rgba(62, 12, 16, 0.2));
}

.block-text {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.divider-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.philosophy-quote {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: var(--foreground);
    margin: 3rem auto 0;
    max-width: 600px;
    position: relative;
    opacity: 0;
    animation: fadeGlow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes fadeGlow {
    to {
        opacity: 1;
        text-shadow: 0 0 20px rgba(218, 185, 0, 0.3);
    }
}

/* Section 4: Who We Are */
.who-we-are {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;

    /* Metallic gold gradient */
    background: linear-gradient(
        to bottom,
        #ffd700 0%,      /* bright gold top */
        #ffec8b 20%,     /* lighter highlight */
        #b38d31 50%,     /* mid-tone gold */
        #ffec8b 80%,     /* lighter highlight */
        #ffd700 100%     /* bright gold bottom */
    );

    /* Clip gradient to text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Uses filter: drop-shadow for better compatibility with background-clip */
    /* Using a dark maroon tint (rgba(62, 12, 16)) for the shadow to match your theme */
    filter: drop-shadow(0 2px 4px rgba(62, 12, 16, 0.3));
}

.section-subline {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Leadership Strip */
.leadership-strip {
    margin-bottom: 4rem;
}

.leader-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    border: 1px solid rgba(218, 185, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.leader-image {
    border-radius: 0.5rem;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.leader-card:hover .leader-image img {
    filter: grayscale(0%);
}

.leader-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.leader-role {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.leader-bio {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--card);
    border: 1px solid rgba(218, 185, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(218, 185, 0, 0.25);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.7),
        transparent
    );
    transform: translateY(calc(100% - 80px));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Section 5: What We Do (Timeline) */
.what-we-do {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    padding: 3rem 0;
    min-height: 1px;
    --checkpoint-size: 60px;
    --mid-gutter: calc(var(--checkpoint-size) / 2 + 28px); /* 30 + 28 = 58px */
}

.timeline-spine {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        var(--primary),
        transparent
    );
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-spine.active {
    height: calc(100% - 6rem);
}

.progress-indicator {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(218, 185, 0, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    z-index: 50;
    pointer-events: none;
}

/* Timeline Scenes */
.timeline-scene {
    position: relative;
    margin-bottom: 6rem;
    opacity: 0;
    min-height: 320px;            /* prevents “zero height” while images load */
    will-change: opacity, transform;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.timeline-scene.visible {
    opacity: 1;
    transform: translateY(0);
}

.scene-checkpoint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.checkpoint-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    border: 2px solid var(--muted);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.5s;
    backdrop-filter: blur(10px);
}

.timeline-scene.visible .checkpoint-number {
    background: linear-gradient(135deg, var(--primary), #a89100);
    box-shadow: 0 0 18px rgba(218,185,0,.35);
    border-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 30px rgba(218, 185, 0, 0.5);
}

.scene-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;                  /* a touch more room between image/text */
  align-items: center;
  padding: 0 3rem;
}


.scene-left .scene-content  { grid-template-columns: 45% minmax(0, 55%); }
.scene-right .scene-content { grid-template-columns: minmax(0, 55%) 45%; }

.scene-left .scene-text{
  padding-left: var(--mid-gutter);
}

/* text left, image right (your Scene 2) → push text away from the spine */
.scene-right .scene-text{
  padding-right: var(--mid-gutter);
}

.scene-visual {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(218, 185, 0, 0.2);
}
.scene-visual { min-height: 220px; }


.scene-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.timeline-scene:hover .scene-visual img {
    transform: scale(1.05);
}

.scene-text {
    padding: 2rem;
}

.scene-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.scene-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.scene-features {
    list-style: none;
    margin-bottom: 2rem;
}

.scene-features li {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.scene-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.scene-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.scene-cta:hover {
    gap: 0.75rem;
}

.scene-cta svg {
    transition: transform 0.3s;
}

.scene-cta:hover svg {
    transform: translateX(4px);
}

/* Full Width Scene (Scene 4) */
.scene-full .scene-content {
    grid-template-columns: 1fr;
}

.scene-content-full {
    max-width: 1000px;
    margin: 0 auto;
}

.scene-text-full {
    text-align: center;
    padding: 3rem;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.distribution-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(218, 185, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.distribution-item:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(218, 185, 0, 0.4);
    transform: translateY(-4px);
}

.distribution-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.distribution-item p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Section 6: Award */
.award-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.award-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(218, 185, 0, 0.1),
        transparent 70%
    );
}

.award-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.award-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    color: var(--primary);
    animation: zoomIn 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.award-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.award-subtitle {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.award-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Section 7: Studio Philosophy */
.studio-philosophy {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;

    /* Metallic gold gradient */
    background: linear-gradient(
        to bottom,
        #ffd700 0%,      /* bright gold top */
        #ffec8b 20%,     /* lighter highlight */
        #b38d31 50%,     /* mid-tone gold */
        #ffec8b 80%,     /* lighter highlight */
        #ffd700 100%     /* bright gold bottom */
    );

    /* Clip gradient to text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Drop-shadow for depth and readability */
    filter: drop-shadow(0 2px 5px rgba(62, 12, 16, 0.4));
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    text-align: center;
    opacity: 0;
    animation: fadeUpDelay 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.philosophy-paragraph:nth-child(1) { animation-delay: 0.2s; }
.philosophy-paragraph:nth-child(2) { animation-delay: 0.4s; }

.philosophy-divider {
    width: 200px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary),
        transparent
    );
    animation: drawLine 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    transform: scaleX(0);
}

@keyframes drawLine {
    to { transform: scaleX(1); }
}

/* Section 8: Dual CTA */
.dual-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    border: 1px solid rgba(218, 185, 0, 0.2);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(218, 185, 0, 0.25);
    border-color: rgba(218, 185, 0, 0.4);
}

.cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Footer */
/* .site-footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.footer-upper {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--muted);
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary);
}

.footer-text {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.footer-lower {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .origin-grid {
        
        gap: 3rem;
    }

    .origin-visual {
        height: 400px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .divider-line {
        width: 120px;
        height: 2px;
        margin: 0 auto;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .scene-content,
    .scene-left .scene-content,
    .scene-right .scene-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .distribution-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subline {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .progress-indicator {
        right: 1rem;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- Mobile/Tablet responsiveness --- */
@media (max-width: 1024px){
  .scene-content,
  .scene-left .scene-content,
  .scene-right .scene-content{
    grid-template-columns: 1fr;  /* stack */
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* hide the vertical spine on smaller screens,
     and drop the badge above the block */
  .timeline-spine{ display:none; }
  .scene-checkpoint{
    position: static;
    transform: none;
    margin: 0 0 .75rem 0;
  }
  .checkpoint-number{
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-left: .25rem;
  }

  /* remove center gutter paddings on stacked layout */
  .scene-left .scene-text,
  .scene-right .scene-text{
    padding-left: 0;
    padding-right: 0;
  }

  /* make visuals responsive and keep corners tidy */
  .scene-visual{ border-radius: .6rem; }
  .scene-text{ padding: 0; }
}

/* Very small phones */
@media (max-width: 420px){
  .scene-features li{ font-size: .9rem; }
  .scene-title{ font-size: 1.35rem; }
  .scene-description{ font-size: 1rem; }
}