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

:root {
    --primary-color: #F6DE4E;
    --bg-dark: #0b0b0d;
    --bg-darker: #050506;
    --text-white: #f5f5f5;
    --text-gray: #c3c3c7;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --muted-border: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
    --glow: 0 15px 40px rgba(246, 222, 78, 0.18);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 18% 18%, rgba(246, 222, 78, 0.08), transparent 32%),
        radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(180deg, #090909 0%, #0b0b0d 55%, #050506 100%);
    color: var(--text-white);
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-md {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 6, 0.7);
    border-bottom: 1px solid var(--muted-border);
    backdrop-filter: blur(14px) saturate(160%);
    transition: var(--transition);
    padding: 14px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.nav-item:hover {
    color: var(--primary-color);
    border-color: rgba(246, 222, 78, 0.3);
}

/* Buttons */
.btn-outline {
    padding: 9px 20px;
    border: 1px solid var(--card-border);
    color: var(--text-white);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(246, 222, 78, 0.12);
    color: var(--primary-color);
    border-color: rgba(246, 222, 78, 0.4);
    box-shadow: var(--glow);
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(120deg, var(--primary-color), #ffe890);
    color: #0f0f0f;
    border-radius: 999px;
    border: 1px solid rgba(246, 222, 78, 0.3);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 48px;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background: linear-gradient(120deg, #fff3a0, var(--primary-color));
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 12px 30px rgba(246, 222, 78, 0.26);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Icon Badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-soft);
    color: var(--primary-color);
}

.icon-badge svg {
    width: 26px;
    height: 26px;
}

.icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 0;
}

.icon-compact svg {
    width: 22px;
    height: 22px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 140px;
    position: relative;
}

.hero-wrapper {
    width: 100%;
}

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

.hero-logo {
    width: 82px;
    height: 94px;
    margin: 0 auto 40px;
}

.hero-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 22px rgba(246, 222, 78, 0.45));
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 51px;
    height: 130px;
}

.scroll-indicator svg {
    width: 100%;
    height: 100%;
}

/* Dot animation - moves from top to bottom inside the mouse */
.scroll-dot {
    animation: scroll-dot-move 2.5s ease-in-out infinite;
}

@keyframes scroll-dot-move {
    0% {
        cy: 32;
        opacity: 0;
    }
    10% {
        cy: 32;
        opacity: 1;
    }
    40% {
        cy: 55;
        opacity: 1;
    }
    50% {
        cy: 60;
        opacity: 0;
    }
    100% {
        cy: 60;
        opacity: 0;
    }
}

/* Arrow animations - fade in and out sequentially */
.scroll-arrow-1 {
    animation: arrow-fade 2.5s ease-in-out 0.5s infinite;
}

.scroll-arrow-2 {
    animation: arrow-fade 2.5s ease-in-out 0.8s infinite;
}

.scroll-arrow-3 {
    animation: arrow-fade 2.5s ease-in-out 1.1s infinite;
}

@keyframes arrow-fade {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 108px 24px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 54px;
}

.section-title h3,
section > h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-white);
    letter-spacing: 0.08em;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Features Section */
.features-section {
    background: radial-gradient(circle at 15% 20%, rgba(246, 222, 78, 0.06), transparent 32%), var(--bg-darker);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.benefit-item {
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.benefit-item:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
}

.benefit-icon {
    margin-bottom: 14px;
}

.benefit-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Problem Statement Section */
.problem-section {
    background: var(--bg-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.problem-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.problem-item:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
}

.problem-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
}

.problem-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.problem-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: var(--bg-darker);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.solution-item {
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.solution-item:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
}

.solution-icon {
    margin: 0 auto 20px;
    display: inline-flex;
}

.solution-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.solution-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Core Values Section */
.values-section {
    background: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.value-card:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
}

.value-icon {
    margin: 0 auto 20px;
    display: inline-flex;
}

.value-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--bg-dark);
    text-align: center;
    border-top: 1px solid var(--muted-border);
    border-bottom: 1px solid var(--muted-border);
}

.tokenomics-chart {
    margin: 54px 0;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.pie-chart {
    width: 360px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    perspective-origin: 50% 30%;
}

.pie-3d {
    position: relative;
    width: 320px;
    height: 320px;
    transform: rotateX(32deg) rotateZ(-14deg);
    transform-style: preserve-3d;
    animation: pie-float 10s ease-in-out infinite;
}

.pie-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #3366cc 0% 50%,
        #dc3912 50% 62%,
        #ff9900 62% 72%,
        #109618 72% 80%,
        #990099 80% 88%,
        #0099c6 88% 95%,
        #dd4477 95% 98%,
        #66aa00 98% 100%
    );
    box-shadow:
        inset 0 -16px 26px rgba(0, 0, 0, 0.28),
        inset 0 14px 16px rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.pie-side {
    position: absolute;
    left: -6px;
    right: -6px;
    top: 58%;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 35%, rgba(10, 10, 10, 0.4) 70%, rgba(0, 0, 0, 0.2) 100%);
    box-shadow:
        inset 0 10px 22px rgba(255, 255, 255, 0.05),
        inset 0 -10px 16px rgba(0, 0, 0, 0.35),
        0 18px 32px rgba(0, 0, 0, 0.5);
    transform: translateZ(-28px) scaleX(1.02);
}

.pie-gloss {
    position: absolute;
    inset: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    transform: translateZ(8px);
}

.pie-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.pie-label.center {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    padding: 12px 0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-white);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.tokenomics-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.detail-item {
    padding: 24px;
    background: var(--card-bg);
    border-radius: 12px;
    text-align: left;
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.detail-item.full {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(246, 222, 78, 0.12), rgba(255, 255, 255, 0.03));
    border-color: rgba(246, 222, 78, 0.4);
}

.detail-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.detail-item p {
    font-size: 15px;
    color: var(--text-white);
    line-height: 1.6;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(246, 222, 78, 0.8), rgba(246, 222, 78, 0));
    opacity: 0.8;
}

.detail-item.full::before {
    background: linear-gradient(90deg, rgba(246, 222, 78, 1), rgba(246, 222, 78, 0.4));
}

.detail-item.full p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#tokenomics-pie-chart {
    min-height: 500px;
    margin: 0 auto;
    padding: 20px;
}

@keyframes pie-float {
    0% {
        transform: rotateX(32deg) rotateZ(-14deg) translateY(0);
    }
    50% {
        transform: rotateX(28deg) rotateZ(-18deg) translateY(-8px);
    }
    100% {
        transform: rotateX(31deg) rotateZ(-11deg) translateY(0);
    }
}

/* Roadmap Section */
.roadmap-section {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--muted-border);
    border-bottom: 1px solid var(--muted-border);
}

.roadmap-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(246, 222, 78, 0.3) 10%,
        rgba(246, 222, 78, 0.3) 90%,
        transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.roadmap-timeline {
    position: relative;
    margin-top: 80px;
    padding: 40px 0;
}

.roadmap-phase {
    position: relative;
    width: 45%;
    margin-bottom: 60px;
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-darker);
    border: 3px solid rgba(246, 222, 78, 0.4);
    border-radius: 50%;
    top: 40px;
    z-index: 2;
}

.roadmap-phase::after {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(246, 222, 78, 0.3);
    top: 49px;
    z-index: 1;
}

/* 홀수 Phase - 왼쪽 */
.roadmap-phase:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.roadmap-phase:nth-child(odd)::before {
    right: -60px;
}

.roadmap-phase:nth-child(odd)::after {
    left: 100%;
    width: 50px;
}

/* 짝수 Phase - 오른쪽 */
.roadmap-phase:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.roadmap-phase:nth-child(even)::before {
    left: -60px;
}

.roadmap-phase:nth-child(even)::after {
    right: 100%;
    width: 50px;
}

.roadmap-phase:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.roadmap-phase.highlight {
    border-color: rgba(246, 222, 78, 0.4);
    background: linear-gradient(140deg, rgba(246, 222, 78, 0.12), rgba(255, 255, 255, 0.03));
    box-shadow: 0 0 24px rgba(246, 222, 78, 0.28);
}

.roadmap-phase.highlight::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 24px;
    height: 24px;
    box-shadow: 0 0 15px rgba(246, 222, 78, 0.6);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.phase-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
}

.roadmap-phase.highlight .phase-number {
    opacity: 1;
}

.phase-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
    margin: 0;
}

.phase-period {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(246, 222, 78, 0.15);
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
}

.milestone-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 222, 78, 0.28);
}

.milestone-icon {
    flex-shrink: 0;
    border: 1px solid rgba(246, 222, 78, 0.3);
}

.milestone-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    background: var(--bg-dark);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.use-case-card {
    background: var(--card-bg);
    border: 1px solid var(--muted-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.use-case-card:hover {
    border-color: rgba(246, 222, 78, 0.28);
    box-shadow: var(--glow);
}

.use-case-icon {
    margin-bottom: 6px;
}

.use-case-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.use-case-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.use-case-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(246, 222, 78, 0.1);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 32px;
    margin-top: 60px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 222, 78, 0.28);
}

.member-avatar {
    font-size: 94px;
    margin-bottom: 20px;
}

.team-img {
    height: 94px;
    width: auto;
    flex-shrink: 0;
}

.team-member h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.team-member p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Advisor Section */
.advisor-section {
    background: var(--bg-darker);
}

.advisor-grid {
    display: grid;
    gap: 32px;
    margin-top: 60px;
}

.advisor-member {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--muted-border);
}

.advisor-img {
    height: 94px;
    width: auto;
    flex-shrink: 0;
}

.advisor-member h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.advisor-member p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 36px;
    margin-top: 48px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    background: var(--card-bg);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--muted-border);
    box-shadow: var(--shadow-soft);
    min-height: 180px;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 222, 78, 0.28);
}

.partner-item a {
    display: block;
    width: 100%;
}

.partner-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
    transition: var(--transition);
}

.partner-item img:hover {
    filter: brightness(1.1);
}

.partner-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(246, 222, 78, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links {
    display: contents;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    padding: 8px 16px;
    background: rgba(246, 222, 78, 0.1);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.footer-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.office {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-flag {
    height: 30px;
    width: auto;
    margin-bottom: 8px;
}

.office h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.office p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title h3,
    section > h3 {
        font-size: 36px;
    }

    .chart-container {
        flex-direction: column;
    }

    .pie-chart {
        width: 250px;
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .use-cases-grid,
    .problem-grid,
    .solution-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        gap: 20px;
    }

    .values-grid {
        gap: 20px;
    }

    .roadmap-section::before {
        left: 30px;
    }

    .roadmap-phase {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .roadmap-phase::before {
        left: -60px !important;
        right: auto !important;
    }

    .roadmap-phase::after {
        left: -60px !important;
        right: auto !important;
        width: 50px !important;
    }

    .phase-header {
        flex-wrap: wrap;
    }

    .phase-number {
        font-size: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title h3,
    section > h3 {
        font-size: 28px;
    }

    .feature-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .phase-header h4 {
        font-size: 20px;
    }

    .phase-number {
        font-size: 24px;
    }
}
