@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Circuit Board Background Pattern */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 199, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    animation: circuit-flow 20s ease-in-out infinite;
    z-index: -2;
}

.circuit-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 50%, rgba(0, 255, 255, 0.05) 51%, transparent 52%),
        linear-gradient(0deg, transparent 50%, rgba(0, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 100px 100px, 100px 100px;
    animation: circuit-pulse 15s ease-in-out infinite alternate;
}

@keyframes circuit-flow {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(20px) translateY(-10px); }
    66% { transform: translateX(-15px) translateY(15px); }
}

@keyframes circuit-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 199, 0, 0.2));
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 1000px;
    position: relative;
}

.king-maker-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    padding: 4px;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

.king-maker-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 199, 0, 0.3); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 80px rgba(255, 199, 0, 0.6); }
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: title-glow 4s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 199, 0, 0.7); }
}

.subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    color: #000;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
}

.secondary-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.tertiary-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.tertiary-btn:hover {
    background: rgba(255, 199, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 199, 0, 0.2);
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    clear: both;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Content Grid System */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.content-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00FFFF;
    transition: all 0.3s ease;
}

.content-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.content-item h3 {
    color: #00FFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-item p {
    color: #ddd;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    margin: 4rem 0;
}

.process-section h3 {
    color: #FFD700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 199, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 199, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 199, 0, 0.2);
    border-color: rgba(255, 199, 0, 0.6);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #ccc;
    line-height: 1.7;
}

/* Beyond Section */
.beyond-section {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.beyond-section h3 {
    color: #00FFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.beyond-section p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Meet The Kingmaker Section */
.meet-section {
    background: rgba(255, 199, 0, 0.05);
}

.enigma-quote {
    text-align: center;
    margin: 3rem 0;
}

.enigma-quote blockquote {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    background: rgba(0, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.kingmaker-traits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.trait-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 199, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.trait-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 199, 0, 0.2);
    border-color: rgba(255, 199, 0, 0.6);
}

.trait-item h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trait-item p {
    color: #ccc;
    line-height: 1.7;
}

.shadow-architect {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.shadow-architect h3 {
    color: #00FFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.shadow-architect p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Vision Section */
.vision-section {
    background: rgba(0, 255, 255, 0.05);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
}

.vision-item h4 {
    font-size: 1.3rem;
    color: #00FFFF;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vision-item p {
    color: #ccc;
    line-height: 1.7;
}

.evolution-path {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.evolution-path h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.evolution-path p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(255, 199, 0, 0.05);
}

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

.philosophy-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 199, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 199, 0, 0.2);
    border-color: rgba(255, 199, 0, 0.6);
}

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

.philosophy-item h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    color: #ccc;
    line-height: 1.7;
}

.revolution-thought {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(255, 199, 0, 0.2);
}

.revolution-thought h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.revolution-thought p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Projects Section */
.projects-section {
    background: rgba(0, 255, 255, 0.05);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
}

.project-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-card h3 {
    color: #00FFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-card p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00FFFF;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Partners Section - EVA Details */
.partner-detail {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partner-logo-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #00FFFF, #FFD700);
    animation: tech-glow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.partner-logo-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.partner-logo-large a {
    display: block;
    width: 100%;
    height: 100%;
}

.partner-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 15px;
}

.partner-detail h3 {
    color: #00FFFF;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partner-detail > p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* EVACodes Contact Section */
.evacodes-contact {
    background: rgba(255, 199, 0, 0.1);
    border: 2px solid rgba(255, 199, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    text-align: center;
}

.evacodes-contact h4 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.evacodes-contact p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

.eva-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.eva-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.eva-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
}

.eva-feature h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.eva-feature p {
    color: #ccc;
    line-height: 1.7;
}

.partnership-philosophy,
.partnership-benefits {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.partnership-philosophy h3,
.partnership-benefits h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partnership-philosophy p,
.partnership-benefits p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Ecosystem Section */
.ecosystem-section {
    background: rgba(255, 199, 0, 0.05);
}

.building-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(255, 199, 0, 0.2);
}

.building-section h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.building-section p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.7;
}

.ecosystem-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.principle-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 199, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 199, 0, 0.2);
    border-color: rgba(255, 199, 0, 0.6);
}

.principle-item h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-item p {
    color: #ccc;
    line-height: 1.7;
}

@keyframes tech-glow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

/* Patents Section */
.patents {
    background: rgba(255, 199, 0, 0.05);
}

.patents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.patent-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.patent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
}

.patent-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #00FFFF;
    margin-bottom: 1.5rem;
}

.patent-desc {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.patent-date {
    font-size: 1rem;
    color: #FFD700;
    font-weight: 600;
    background: rgba(255, 199, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.ip-leadership {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.ip-leadership h3 {
    color: #00FFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ip-leadership p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    color: #ccc;
    font-size: 1rem;
}

.contact-info a {
    color: #00FFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Social Media Styles */
.social-section {
    margin: 2rem 0 1rem;
    text-align: center;
}

.social-section h4 {
    color: #00FFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 199, 0, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 199, 0, 0.3));
    border-color: #00FFFF;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .king-maker-image {
        width: 200px;
        height: 200px;
    }
    
    .partner-logo-large {
        width: 150px;
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    nav ul {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    nav ul li a {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .content-grid,
    .process-grid,
    .kingmaker-traits,
    .vision-grid,
    .philosophy-grid,
    .projects-grid,
    .eva-features,
    .ecosystem-principles,
    .patents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step,
    .trait-item,
    .vision-item,
    .philosophy-item,
    .project-card,
    .eva-feature,
    .principle-item,
    .patent-card {
        padding: 1.5rem;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    nav {
        padding: 0.8rem 1rem;
    }
    
    .enigma-quote blockquote {
        font-size: 1.3rem;
        padding: 2rem;
    }
    
    .evacodes-contact {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .king-maker-image {
        width: 150px;
        height: 150px;
    }
    
    .partner-logo-large {
        width: 120px;
        height: 120px;
    }
    
    .process-step,
    .trait-item,
    .vision-item,
    .philosophy-item,
    .project-card,
    .eva-feature,
    .principle-item,
    .patent-card {
        padding: 1rem;
    }
    
    nav ul li a {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .project-logo {
        width: 100px;
        height: 100px;
    }
    
    .enigma-quote blockquote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .beyond-section,
    .shadow-architect,
    .evolution-path,
    .revolution-thought,
    .building-section,
    .partnership-philosophy,
    .partnership-benefits {
        padding: 1.5rem;
    }
    
    .evacodes-contact {
        padding: 1rem;
        margin: 1rem 0 1.5rem;
    }
}