:root {
    --primary-color: #051d40;
    --secondary-color: #be2e78;
    --accent-blue: #4a9eff;
    --primary-light: #2a5788;
    --primary-dark: #0f2548;
    --secondary-light: #d456a0;
    --secondary-dark: #8f1e58;
    --text-light: #ffffff;
    --text-dark: #193967;
    --text-muted: #6c757d;
    --bg-light: #a6ce39;
    --bg-dark: var(--primary-color);
    --light-blue: #e3eaf1;
    --accent-color: #4a9eff;
    --success-color: #8eb032;
    --warning-color: #f59e0b;
    --danger-color: #ff6b6b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    border: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    transition: filter 0.3s ease;
}

.navbar:not(.scrolled) .nav-logo {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo {
    filter: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar:not(.scrolled) .brand-text {
    color: white;
}

.navbar:not(.scrolled) .brand-live {
    color: var(--secondary-color);
}

.navbar.scrolled .brand-text {
    color: var(--secondary-color);
}

.navbar.scrolled .brand-live {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link.primary {
    font-weight: 700;
    font-size: 1.05rem;
}

.nav-link.travel-fund {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(190, 46, 120, 0.3);
}

.nav-link.travel-fund:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(190, 46, 120, 0.4);
}

.nav-link.secondary {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link.primary {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar.scrolled .nav-link.travel-fund {
    background: var(--secondary-color);
    color: white;
}

.navbar.scrolled .nav-link.secondary {
    color: var(--gray-600);
}

.nav-link:hover {
    color: var(--accent-color);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.btn-orcid {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.navbar.scrolled .btn-orcid {
    background: white;
    color: var(--gray-800);
    border: 2px solid #A6CE39;
}

.btn-orcid:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .btn-orcid:hover {
    background: #A6CE39;
    color: white;
    box-shadow: 0 4px 12px rgba(166, 206, 57, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 75px;
    min-height: calc(100vh - 80px);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(190, 46, 120, 0.1) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a9eff;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button Styles */
.btn-primary {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(190, 46, 120, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-audience {
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    min-height: 44px;
}

.btn-audience:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateX(2px);
}

.btn-audience i {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.audience-cta .btn-audience {
    color: white;
    font-weight: 700;
}

.audience-cta .btn-audience:visited {
    color: white;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-hiring {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hiring:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Section Layout */
.three-pillars-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.pillars-container,
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    background: rgba(190, 46, 120, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Audience Components */
.audience-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.audience-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.audience-content {
    flex: 1;
}

.audience-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.audience-content p {
    margin: 0 0 1rem 0;
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.95rem;
}

.audience-cta {
    margin-top: 1rem;
}

/* Knowledge Bricks */
.building-blocks-visual {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.building-blocks-visual h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.brick-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.brick-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blocks-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.research-block {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.research-block:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.research-block.methods { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.research-block.data { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.research-block.claims { background: linear-gradient(135deg, #f59e0b, #d97706); }
.research-block.code { background: linear-gradient(135deg, #10b981, #059669); }
.research-block.reviews { background: linear-gradient(135deg, #ef4444, #dc2626); }

.research-block i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.research-block span {
    font-weight: 600;
    font-size: 0.9rem;
}

.blocks-caption {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pillar Cards */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.pillar-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.pillar-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1.0rem;
}

.pillar-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.pillar-link:hover {
    background: var(--primary-color);
    color: white;
    gap: 0.75rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--secondary-color);
    color: white;
}

.timeline-item.current .timeline-marker {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
    background: var(--gray-300);
    color: var(--gray-600);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
}

.timeline-period {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Team Section */
.team-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.member-org {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
}

.hiring-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px dashed var(--primary-color);
}

.hiring-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hiring-section p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.open-positions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.position-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 500;
}

.position-item i {
    color: var(--primary-color);
}

.backing-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.backing-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.backing-section p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Audience Sections */
.audience-section {
    padding: 5rem 3rem;
    position: relative;
}

.audience-section.researchers {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.audience-section.organizations {
    background: linear-gradient(135deg, #fefefe, #f1f5f9);
}

.audience-section.industry {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.audience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.audience-content {
    text-align: center;
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.audience-icon i {
    font-size: 2.5rem;
    color: white;
}

.audience-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.audience-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.audience-content > p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.primary-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.primary-benefit {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 6px solid var(--secondary-color);
    position: relative;
}

.primary-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.primary-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.primary-benefit .benefit-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-benefit p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem;
}

.secondary-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.secondary-benefit {
    background: white;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.secondary-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
}

.secondary-benefit .benefit-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-benefit p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Pricing */
.pricing-highlight {
    margin: 2rem 0;
}

.pricing-tier {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-tier h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: var(--gray-600);
}

/* Credit System & Travel Fund */
.credit-system {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.credit-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.credit-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.credit-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.credit-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.credit-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.credit-panel.featured {
    border-color: #4a9eff;
    transform: scale(1.05);
}

.panel-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a9eff;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.panel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4a9eff;
}

.panel-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.panel-header h4 {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.panel-header p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.requirement {
    background: rgba(74, 158, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.panel-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.feature-item.small {
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.feature-item i {
    color: #4a9eff;
    font-size: 1rem;
    flex-shrink: 0;
}

.panel-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.panel-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a9eff;
}

.subscription-tiers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.tier-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a9eff;
}

.tier-price {
    margin-bottom: 1rem;
}

.tier-price .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.tier-price .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tier-description {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.credit-explanation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.transparency-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.credit-earning-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.credit-earning-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.credit-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.credit-activity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.credits {
    font-weight: 700;
    color: #4a9eff;
}

.activity {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .three-panel-grid {
        grid-template-columns: 1fr;
    }
    
    .credit-panel.featured {
        transform: none;
    }

    .audience-row {
        flex-direction: column;
    }
    
    .audience-item {
        flex-direction: column;
        text-align: center;
    }
    
    .audience-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .primary-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .secondary-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .primary-benefit {
        padding: 2rem;
    }
    
    .secondary-benefit {
        padding: 1.5rem;
    }

    .blocks-diagram {
        flex-direction: column;
        gap: 1rem;
    }

    .building-blocks-visual {
        padding: 2rem 1rem;
    }

    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .timeline-content {
        width: 100%;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .credit-activities {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .audience-row {
        flex-direction: row;
    }
    
    .audience-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }
    
    .audience-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1200px) {
    .credit-activities {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Beta Form Section */
.beta-form-section {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.beta-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.beta-waitlist-form {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
}

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

.form-header h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* Modal Styles (if using Option 2) */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    z-index: 1001;
}

.close:hover {
    color: var(--secondary-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .beta-waitlist-form {
        padding: 2rem;
    }
    
    .beta-form-section {
        padding: 3rem 1rem;
    }
}



/* Ensure buttons have same styling as links */
button.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.2s;
    font-size: 1rem; /* Explicitly set font size */
    font-family: inherit; /* Use the same font as the page */
    cursor: pointer;
}

button.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Also ensure the icon has proper sizing */
button.btn-cta-secondary i {
    margin-right: 0.5rem;
    font-size: inherit; /* Inherit the button's font size */
}


button.btn-hiring {
    /* Ensure button matches link styling */
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem; /* Explicitly set font size to match original */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

button.btn-hiring:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
button.btn-hiring {
    /* Ensure button matches link styling */
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem; /* Explicitly set font size to match original */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

button.btn-hiring:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
