/* =========================================
   COMBINED STYLES - KIDOU NEXT PROJECT
   Organized and consolidated CSS from multiple files
   ========================================= */

/* =========================================
   CSS VARIABLES & ROOT STYLES
   ========================================= */
:root {
    /* Color System */
    --color-primary: #1a5490;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-blue: #4A90E2;
    --color-blue-dark: #357ABD;
    --color-red: #ff6b6b;
    --color-red-dark: #ee5a52;
    --color-cyan: #00d4ff;
    --color-cyan-dark: #09c;
    --color-text: #333;
    --color-text-light: #666;
    --color-text-lighter: #888;
    --color-bg: #fff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    
    /* Layout */
    --max-width: 1200px;
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Typography Scale */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Common Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    --gradient-accent: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    --gradient-red: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    
    /* Box Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
/* Responsive line breaks */
.br-mobile::after {
    content: "\A";
    white-space: pre;
    display: none;
}

@media (max-width: 768px) {
    .br-mobile::after {
        display: inline;
    }
}

/* =========================================
   GLOBAL RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Hiragino Sans, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color .3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
}

/* =========================================
   LAYOUT COMPONENTS
   ========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

/* =========================================
   CARD COMPONENTS SYSTEM
   ========================================= */
/* Base Card Component */
.card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--color-gray-light);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Card Variants */
.card--interactive:hover {
    transform: translateY(-4px);
    border-color: var(--color-blue);
}

.card--accent {
    border-left: 4px solid var(--color-blue);
}

.card--gradient {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

/* =========================================
   BUTTONS SYSTEM
   ========================================= */
/* Base Button Component */
.btn {
    display: inline-block;
    padding: .75rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    color: #fff;
}

/* Button Variants */
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary {
    padding: 1rem 3rem;
    background: var(--gradient-accent);
    color: #fff;
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
}

.btn-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-cyan);
    font-weight: 600;
    border: 2px solid var(--color-cyan);
    border-radius: var(--radius-full);
}

.btn-outline:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-cyan);
    transition: var(--transition-base);
    z-index: -1;
}

.btn-outline:hover:before {
    left: 0;
}

.btn-outline:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fffffff2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px #0000001a;
    z-index: 1000;
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: .5rem var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo img{
    width:100px;
}

.logo .logo-kidou {
    width: 100px;
    height: auto;
}

.logo .logo-next {
    width: 85px;
    height: auto;
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: .3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-menu a {
    font-weight: 500;
    padding: .5rem 0;
}

.nav-link-disabled {
    font-weight: 500;
    padding: .5rem 0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

main {
    margin-top: 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
    background-color: var(--color-bg);
    padding-top: 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo .logo-kidou {
        width: 50px;
    }
    
    .logo .logo-next {
        width: 60px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: .3s;
        box-shadow: 0 10px 27px #0000000d;
        padding: var(--space-md) 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: var(--space-sm) 0;
    }
}

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero-home {
    width: 100%;
    height: calc(100vh + 60px);
    position: relative;
    overflow: hidden;
    margin: -60px 0 0;
    padding: 60px 0 0;
    max-width: 100vw;
}

.hero-home .hero-animation {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
}

.hero-home .hero-animation svg {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* Common hero styles */
.about-hero,
.events-hero,
.startups-hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero:before,
.events-hero:before,
.startups-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>') repeat;
    opacity: .3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #f0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.page-title.startups {
    margin: 0 0 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #fffc;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-home {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        margin-top: -50px;
        padding-top: 50px;
    }
    
    .hero-home .hero-animation {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        top: 10px;
        height: calc(100% - 10px);
    }
    
    .about-hero,
    .events-hero,
    .startups-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* =========================================
   OVERVIEW SECTION
   ========================================= */
.overview-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.overview-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: .3;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.overview-section .section-title {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #f0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.overview-section .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    color: #ffffffe6;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: #00d4ff;
    font-weight: 600;
}

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

.feature-item {
    background: #ffffff0d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .1), transparent);
    transition: left .5s ease;
}

.feature-item:hover:before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff4d;
    box-shadow: 0 10px 30px #00d4ff1a;
}

.feature-number {
    font-size: 1rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    opacity: .8;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #fff;
    line-height: 1.8;
}

.feature-item p {
    color: #ffffffb3;
    font-size: .95rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #0000004d;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.deadline-alert {
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 64, 64, .3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.deadline-alert > * {
    position: relative;
    z-index: 2;
}

.deadline-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.deadline-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff4040;
    letter-spacing: .1em;
}

.deadline-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deadline-date {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    font-family: Courier New, monospace;
    line-height: 1;
}

.deadline-time {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4040;
    font-family: Courier New, monospace;
}

.program-description {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.program-description p {
    color: #ffffffe6;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .deadline-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .deadline-info {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-section .hero-text {
        margin-bottom: 3rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}

/* =========================================
   NEWS SECTION
   ========================================= */
.news-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.news-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: .4;
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.news-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #09c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffffb3;
    font-weight: 300;
}

.news-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: #ffffff08;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.news-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .05), transparent);
    transition: left .5s ease;
}

.news-item:hover:before {
    left: 100%;
}

.news-item:hover {
    transform: translateY(-2px);
    border-color: #00d4ff4d;
    box-shadow: 0 8px 25px #00d4ff1a;
}

.news-date {
    font-size: .9rem;
    color: #00d4ff;
    font-weight: 600;
    font-family: Courier New, monospace;
    min-width: 100px;
    position: relative;
    z-index: 1;
}

.news-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.news-arrow {
    font-size: 1.2rem;
    color: #ffffff80;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}

.news-item:hover .news-arrow {
    color: #00d4ff;
    transform: translate(5px);
}

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

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .news-date {
        margin-bottom: .5rem;
        min-width: auto;
    }
    
    .news-title {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .news-arrow {
        align-self: flex-end;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}

/* =========================================
   LINK BUTTONS SECTION
   ========================================= */
.link-buttons-section {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 4rem 0;
    position: relative;
}

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

.link-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.link-button--blue {
    background: linear-gradient(135deg, #4a6cf7, #667eea);
    color: #fff;
    border: 2px solid transparent;
}

.link-button--gray {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    color: #fff;
    border: 2px solid transparent;
}

.link-button--disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    pointer-events: none;
}

.link-button--disabled:hover {
    transform: none;
    box-shadow: none;
}

.link-button--disabled:hover:before {
    display: none;
}

.link-button--disabled:before {
    display: none;
}

.coming-soon {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.link-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    transition: left .5s ease;
}

.link-button:hover:before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #0000004d;
}

.link-button--blue:hover {
    box-shadow: 0 10px 30px #4a6cf766;
}

.link-button--gray:hover {
    box-shadow: 0 10px 30px #9ca3af66;
}

@media (max-width: 768px) {
    .buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .link-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        min-height: 60px;
    }
    
    .link-buttons-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .link-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
}

/* =========================================
   ABOUT PAGE - PROGRAM OVERVIEW
   ========================================= */
.program-overview {
    background: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    text-align: center;
}

.overview-text {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
}

.overview-text p {
    margin-bottom: 1rem;
    color: #333;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

.application-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-button {
    background: var(--gradient-primary);
    color: #fff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: var(--transition-base);
    letter-spacing: .1em;
    box-shadow: var(--shadow-md);
}

.application-button:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   ABOUT PAGE - PROGRAM DETAILS (REDESIGNED)
   ========================================= */
.program-details {
    padding: 60px 0;
    background: #ffffff;
}

.program-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Deadline Banner */
.deadline-banner {
    background: var(--gradient-red);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-xl) auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    text-align: center;
}

.deadline-icon {
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: white;
}

.deadline-text {
    display: flex;
    align-items: center;
}

.deadline-label {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
}

/* Focus Section */
.focus-section {
    margin-bottom: 80px;
}

.focus-header {
    text-align: center;
    margin-bottom: 40px;
}

.focus-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.focus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.focus-category {
    background: var(--color-bg);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}


.category-icon {
    margin-bottom: var(--space-md);
    color: var(--color-blue);
    display: flex;
    justify-content: center;
}

.category-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.3;
}

.category-details p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.focus-note {
    text-align: center;
    font-size: 16px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Support Overview */
.support-overview {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.support-overview:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #357ABD, #4A90E2);
    border-radius: 20px 20px 0 0;
}

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

.support-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

.support-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.support-item {
    text-align: center;
    flex-shrink: 0;
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(74, 144, 226, 0.1);
}


.support-icon {
    margin-bottom: 16px;
    color: #4A90E2;
    display: flex;
    justify-content: center;
}

.support-label {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.support-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #4A90E2;
    position: relative;
}

.connector-text {
    font-size: 16px;
    font-weight: 700;
    color: #4A90E2;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
    border: 2px solid #4A90E2;
}

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

.proof-title {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.3);
    border: 3px solid white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.support-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: white;
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2, #357ABD);
}


.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Target Section */
.target-section {
    margin-bottom: 60px;
}

.target-header {
    text-align: center;
    margin-bottom: 30px;
}

.target-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.target-content {
    background: #f8f9ff;
    border-left: 4px solid #4A90E2;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.target-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 16px 0;
}

.target-content p:last-child {
    margin-bottom: 0;
}

.target-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Responsive Design for New Program Details */
@media (max-width: 768px) {
    .program-details {
        padding: 40px 0;
    }
    
    .deadline-banner {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    
    .focus-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .focus-category {
        padding: 24px;
    }
    
    .category-name {
        font-size: 20px;
    }
    
    .support-overview {
        padding: 40px 20px;
    }
    
    .support-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .support-item {
        padding: 24px 16px;
        max-width: 280px;
        width: 100%;
    }
    
    .support-connector {
        transform: none;
        margin: 10px 0;
        flex-direction: row;
    }
    
    .support-connector svg {
        transform: rotate(90deg);
    }
    
    .connector-text {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .proof-title {
        font-size: 18px;
        padding: 16px 24px;
    }
    
    .support-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 20px 16px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .target-content {
        padding: 20px;
    }
}

/* Legacy Program Details Styles (for old section) */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    background: var(--color-gray-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-blue);
}

.detail-item--full {
    grid-column: 1 / -1;
}

.detail-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    position: relative;
}

.detail-title:before {
    content: "◆";
    color: var(--color-blue);
    margin-right: .5rem;
}

.detail-content {
    color: var(--color-text-light);
    line-height: 1.6;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    color: var(--color-text-light);
    margin-bottom: .8rem;
    padding-left: 1rem;
    position: relative;
}

.detail-list li:before {
    content: "□";
    position: absolute;
    left: 0;
    color: var(--color-blue);
}

.focus-areas {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.focus-area {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--color-text-light);
}

.area-number {
    background: var(--color-blue);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.notes-section {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.note-text {
    color: #555;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .5rem;
}

.note-text:last-child {
    margin-bottom: 0;
}

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

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    background: var(--gradient-red);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    letter-spacing: .1em;
}

.download-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: var(--shadow-md);
}

/* =========================================
   ABOUT PAGE - APPLICATION PROCESS
   ========================================= */
.application-process {
    background: #f8f9fa;
    padding: 4rem 0;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.step-box {
    background: #e6f3fb;
    border: 1px solid #4a9fd9;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    min-width: 200px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-box--deadline {
    background: #e6f3fb;
    border: 1px solid #4a9fd9;
}

.step-content {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #1a5490;
    line-height: 1.6;
    margin: 0;
}

.step-link {
    color: #1a5490;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-link:hover {
    color: #4A90E2;
}

.step-arrow {
    color: #4a9fd9;
    font-size: 1.8rem;
    font-weight: normal;
    display: flex;
    align-items: center;
}

/* =========================================
   SCHEDULE SECTION
   ========================================= */
.schedule-section {
    background: #fff;
    color: #333;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.schedule-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="schedule-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23333333" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23schedule-dots)"/></svg>') repeat;
}

.schedule-container {
    position: relative;
    z-index: 1;
}

.schedule-section .section-title {
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.main-schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px #0000000d;
    position: relative;
    gap: 20px;
}

.schedule-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}

.schedule-step:last-child .step-connector {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a6cf7, #667eea);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.schedule-step--completed .step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.schedule-step--future .step-number {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.step-content {
    text-align: center;
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease;
    box-shadow: 0 2px 10px #00000014;
}

.step-content:hover {
    background: #f8f9fa;
    border-color: #00d4ff4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px #0000001f;
}

.step-phase {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: .5rem;
    color: #333;
    line-height: 1.3;
}

.step-date {
    font-size: .85rem;
    color: #4a6cf7;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Hiragino Sans, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
}

.step-connector {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    width: 40px;
    justify-content: center;
}

.connector-line {
    display: none;
}

.connector-arrow {
    color: #4a6cf7;
    font-size: 1.8rem;
    font-weight: normal;
}

.support-period {
    background: linear-gradient(135deg, #4a6cf70d, #667eea0d);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 108, 247, .2);
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px #0000000d;
}

.support-header {
    text-align: center;
    margin-bottom: 2rem;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a6cf7;
    margin-bottom: .5rem;
    text-align: center;
}

.support-duration {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.support-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-start,
.timeline-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: #666;
    font-size: .9rem;
    font-weight: 500;
}

.timeline-point {
    width: 12px;
    height: 12px;
    background: #4a6cf7;
    border-radius: 50%;
}

.timeline-point--end {
    background: #28a745;
}

.support-months {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.support-month {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
}

.month-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6cf7, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.month-circle:hover {
    transform: translateY(-3px);
}

.month-text {
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}

.month-activities {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    text-align: center;
}

.activity {
    background: #4a6cf71a;
    padding: .3rem .6rem;
    border-radius: 12px;
    font-size: .75rem;
    color: #333;
    border: 1px solid rgba(74, 108, 247, .2);
}

.event-info {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0;
}

.info-card {
    background: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    display: block;
    max-width: 600px;
    box-shadow: 0 4px 20px #0000000d;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.info-content {
    width: 100%;
    text-align: center;
}

.info-title {
    font-weight: 600;
    color: #4a6cf7;
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.info-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: .5rem;
}

.info-note {
    color: #666;
    font-size: .9rem;
    margin: 0;
}

.link {
    color: #4a6cf7;
    text-decoration: underline;
    transition: color .3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.link:hover {
    color: #667eea;
}

/* =========================================
   SUPPORT TEAM SECTION
   ========================================= */
.support-team-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.team-group {
    margin-bottom: 4rem;
}

.group-title {
    background: #9e9e9e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin: 0 0 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all .3s ease;
}

.member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px #0000001a;
}

.member-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.member-info {
    text-align: left;
}

.member-detail {
    color: #555;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .3rem;
}

.member-detail:last-child {
    margin-bottom: 0;
}

/* =========================================
   EVENTS PAGE
   ========================================= */
.events-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px #00000014;
}

.event-header {
    background: #f8f9fa;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.event-content {
    padding: 2.5rem;
}

.event-main-card {
    background: #e6e6fa;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.event-type {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.event-datetime,
.event-venue {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.event-description {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.event-description p {
    color: #555;
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

.archive-button {
    background: #ffd8b8;
    color: #333;
    padding: .8rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all .3s ease;
    border: 2px solid transparent;
}

.archive-button:hover {
    background: #ffc89b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #ffc89b4d;
}

.event-details {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.detail-group {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.detail-label {
    font-weight: 600;
    color: #4a6cf7;
    font-size: 1rem;
}

.detail-content {
    color: #555;
    line-height: 1.8;
}

.venue-link {
    color: #4a6cf7;
    text-decoration: underline;
    transition: color .3s ease;
}

.venue-link:hover {
    color: #667eea;
}

.venue-note {
    margin: .5rem 0;
    font-size: .95rem;
    color: #666;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.program-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: center;
}

.program-time {
    font-weight: 600;
    color: #333;
}

.program-content {
    color: #555;
}

/* =========================================
   STARTUPS PAGE
   ========================================= */
.startups-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.startups-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.startup-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.startup-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6cf7, #667eea);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px #4a6cf74d;
}

.startup-content {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px #00000014;
    transition: all .3s ease;
}

.startup-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px #0000001f;
}

.header-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.logo-container {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
}

.header-info {
    flex: 1;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 .5rem;
}

.company-role {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.content-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.content-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.card-icon {
    color: #4a6cf7;
    font-size: 1rem;
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.content-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-section {
    margin-top: 5rem;
    text-align: center;
}

.contact-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 3rem;
    display: inline-block;
    box-shadow: 0 2px 8px #0000000f;
}

.contact-card p {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 2rem;
    font-weight: 500;
}

.contact-button {
    background: #ffd8b8;
    color: #333;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all .3s ease;
    border: 2px solid transparent;
}

.contact-button:hover {
    background: #ffc89b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #ffc89b4d;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    position: relative;
}

.footer:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>') repeat;
    opacity: .3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-organizer {
    font-size: 1rem;
    color: #ffffffe6;
    margin: 0;
    line-height: 1.6;
}

.footer-label {
    font-weight: 600;
    color: #00d4ff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-title {
    font-weight: 600;
    color: #00d4ff;
    font-size: 1.1rem;
    margin: 0;
}

.contact-org {
    color: #ffffffe6;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

.contact-email {
    color: #ffffffe6;
    font-size: 0.9rem;
    margin: 0;
    font-family: monospace;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: .8rem 2rem;
    background: #ffffff0d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, .3);
    border-radius: 50px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.contact-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .1), transparent);
    transition: left .5s ease;
}

.contact-link:hover:before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-2px);
    border-color: #00d4ff80;
    box-shadow: 0 8px 25px #00d4ff33;
    color: #fff;
}

/* =========================================
   RESPONSIVE DESIGN - MOBILE BREAKPOINTS
   ========================================= */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .application-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .process-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        width: 100%;
    }
    
    .step-box {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .main-schedule {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .schedule-step {
        width: 100%;
        max-width: 280px;
    }
    
    .step-connector {
        position: static;
        transform: none;
        margin: 1rem 0;
        justify-content: center;
    }
    
    .connector-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .support-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .support-months {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-start,
    .timeline-end {
        order: 1;
    }
    
    .support-months {
        order: 2;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-team-section {
        padding: 3rem 0;
    }
    
    .events-section {
        padding: 3rem 0;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-main-card {
        padding: 2rem 1.5rem;
    }
    
    .event-name {
        font-size: 1.5rem;
    }
    
    .event-datetime,
    .event-venue {
        font-size: 1rem;
    }
    
    .detail-group {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
    
    .detail-label {
        margin-bottom: .5rem;
    }
    
    .program-item {
        grid-template-columns: 80px 1fr;
    }
    
    .archive-button {
        padding: .7rem 2rem;
        font-size: .9rem;
    }
    
    .startups-section {
        padding: 3rem 0;
    }
    
    .startup-item {
        flex-direction: column;
        align-items: center;
    }
    
    .startup-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .startup-content {
        padding: 1.5rem;
    }
    
    .header-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .company-role {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 1.2rem;
    }
    
    .content-card h3 {
        font-size: 1rem;
    }
    
    .content-card p {
        font-size: .9rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-button {
        padding: .8rem 1.5rem;
        font-size: .9rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-info {
        gap: 1.5rem;
    }
    
    .footer-organizer {
        font-size: .9rem;
        text-align: center;
        line-height: 1.7;
    }
    
    .contact-link {
        padding: .7rem 1.5rem;
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .footer-organizer {
        font-size: .85rem;
    }
    
    .contact-link {
        padding: .6rem 1.2rem;
        font-size: .85rem;
    }
}

/* =========================================
   NEW ABOUT PAGE CONTENT STYLES
   ========================================= */
.new-content-section {
    padding: 0;
}

/* Focus Areas - New Style */
.focus-areas-new {
    margin-bottom: 60px;
}

.focus-categories-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.focus-category-new {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.focus-category-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.focus-category-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.category-icon-new {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 40px;
}

.category-icon-new img {
    width: 85px;
    height: 85px;
}

.category-name-new {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-details-new {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    text-align: center;
}

.category-details-new p {
    margin: 0;
}

/* Support Section - New Style */
.support-section-new {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
}

.support-title-new {
    text-align: center;
    margin-bottom: 30px;
}

.support-flow-new {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.flow-item-new {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flow-icon-new {
    font-size: 48px;
    margin-bottom: 10px;
}

.flow-icon-new img {
    width: 60px;
    height: 60px;
}

.flow-text-new {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.flow-arrow-new {
    font-size: 30px;
    color: #667eea;
    font-weight: bold;
}

.poc-section-new {
    text-align: center;
    margin-bottom: 40px;
}

.poc-title-new {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 50px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.support-services-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item-new {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
}

.service-item-new span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-icon-new {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.service-item-new:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Requirements - New Style */
.requirements-new {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.req-title-new {
    text-align: center;
    margin-bottom: 30px;
}

.req-item-new {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.req-item-new:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.highlight-new {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsive Design for New Content */
@media (max-width: 768px) {
    .focus-categories-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-icon-new {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }
    
    .category-icon-new img {
        width: 65px;
        height: 65px;
    }
    
    .category-name-new {
        font-size: 20px;
    }
    
    .support-section-new {
        padding: 30px 20px;
    }
    
    .support-flow-new {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-arrow-new {
        transform: rotate(90deg);
    }
    
    .flow-icon-new {
        font-size: 36px;
    }
    
    .flow-icon-new img {
        width: 45px;
        height: 45px;
    }
    
    .flow-text-new {
        font-size: 16px;
    }
    
    .poc-title-new {
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .support-services-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item-new {
        font-size: 14px;
        padding: 15px;
    }
    
    .requirements-new {
        padding: 20px;
    }
    
    .req-item-new {
        padding: 15px;
        font-size: 14px;
    }
    
    .req-item-new:hover {
        transform: translateX(5px);
    }
}