/* Insivio - Main Stylesheet */

:root {
    --primary: #0A1628;
    --secondary: #1E3A5F;
    --accent: #00D4AA;
    --accent-light: #00FFD1;
    --accent-blue: #00A3FF;
    --accent-purple: #7B61FF;
    --text: #E8F1F8;
    --text-muted: #8FA3B8;
    --gradient-1: linear-gradient(135deg, #00D4AA 0%, #00A3FF 50%, #7B61FF 100%);
    --gradient-2: linear-gradient(180deg, #0A1628 0%, #152238 100%);
    --glow: 0 0 60px rgba(0, 212, 170, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--primary); color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }

/* LANGUAGE - Indonesian hidden by default */
.lid { display: none; }

/* LANG TOGGLE BUTTONS */
.lang-toggle { display: flex !important; gap: 0.4rem; margin-left: 0.75rem; flex-shrink: 0; }
.lang-btn { padding: 0.35rem 0.85rem; border-radius: 6px; border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); color: var(--text); font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; }
.lang-btn.active { background: var(--accent); color: #000; border-color: var(--accent); }
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(10,22,40,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.dropdown-toggle::after { content: '\25BE'; font-size: 0.7rem; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(10,22,40,0.95); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 0.5rem 0; min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; margin-top: 0.5rem; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.75rem 1.25rem; color: var(--text-muted); text-decoration: none; transition: all 0.3s; }
.dropdown-menu a:hover, .dropdown-menu .active { background: rgba(0,212,170,0.1); color: var(--accent); }
.nav-cta { padding: 0.75rem 1.5rem; background: var(--gradient-1); border: none; border-radius: 8px; color: var(--primary); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 8rem 5% 4rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,212,170,0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(123,97,255,0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0,163,255,0.1) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent); }
.hero-content { position: relative; text-align: center; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3); border-radius: 50px; font-size: 0.875rem; color: var(--accent); margin-bottom: 2rem; animation: fadeInUp 0.8s ease; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease 0.1s backwards; }
.hero h1 .grad { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-product-name { font-size: clamp(3.5rem, 10vw, 6rem); line-height: 1; margin-bottom: 0.5rem; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: fadeInUp 0.8s ease 0.1s backwards; }
.hero-tagline { font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 500; animation: fadeInUp 0.8s ease 0.15s backwards; }
.hero-tagline .grad { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: 1.25rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 3rem; animation: fadeInUp 0.8s ease 0.2s backwards; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s backwards; }
.btn-primary { padding: 1rem 2.5rem; background: var(--gradient-1); border: none; border-radius: 10px; color: var(--primary); font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-secondary { padding: 1rem 2.5rem; background: transparent; border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; color: var(--text); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* STATS */
.stats { display: flex; justify-content: center; gap: 4rem; padding: 4rem 5%; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stat { text-align: center; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

/* SECTION HELPERS */
.section-label { display: inline-block; padding: 0.5rem 1rem; background: rgba(0,212,170,0.1); border-radius: 50px; font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.2; max-width: 700px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }

/* PROBLEM */
.problem { padding: 8rem 5%; text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 3rem auto 0; }
.problem-card { padding: 2rem; background: linear-gradient(135deg, rgba(30,58,95,0.3) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; text-align: left; }
.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* FEATURES */
.features { padding: 8rem 5%; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.feature-card { padding: 2rem; background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(0,212,170,0.3); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); line-height: 1.7; }

/* HOW IT WORKS */
.how-it-works { padding: 8rem 5%; background: linear-gradient(180deg, transparent 0%, rgba(30,58,95,0.2) 50%, transparent 100%); }
.how-header { text-align: center; margin-bottom: 4rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1000px; margin: 0 auto; }
.step { text-align: center; }
.step-number { width: 60px; height: 60px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 0 auto 1.5rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.step p { color: var(--text-muted); line-height: 1.7; }

/* PRIVACY */
.privacy-section { padding: 8rem 5%; }
.privacy-content { max-width: 700px; margin: 0 auto; text-align: center; }
.privacy-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.privacy-content h2 span { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.privacy-content > p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; margin-bottom: 2rem; }
.privacy-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.privacy-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3); border-radius: 50px; font-size: 0.9rem; color: var(--accent); }

/* INVESTOR */
.investor-section { padding: 6rem 5%; }
.investor-form { max-width: 560px; margin: 0 auto; background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2.5rem; }
.investor-form h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.investor-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text); font-size: 0.95rem; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group select option { background: #0F1F35; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--gradient-1); border: none; border-radius: 8px; color: var(--primary); font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.form-success { display: none; text-align: center; padding: 1.5rem; color: var(--accent); font-size: 1rem; margin-top: 1rem; }

/* OFFICE */
.office-section { padding: 5rem 5%; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 2.5rem auto 0; }
.office-card { background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; }
.office-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.office-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.office-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.office-badge { font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
.hq-badge { background: rgba(0,212,170,0.2); color: var(--accent); border: 1px solid rgba(0,212,170,0.4); }
.upcoming-badge { background: rgba(123,97,255,0.2); color: var(--accent-purple); border: 1px solid rgba(123,97,255,0.4); }

/* CTA */
.cta { padding: 8rem 5%; text-align: center; background: var(--gradient-2); }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.cta p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { padding: 5rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.footer-links h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; display: block; margin-bottom: 0.75rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer { text-align: center; font-size: 0.8rem; color: var(--text-muted); max-width: 800px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.6; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.875rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-weight: 600; }
.social-links a:hover { background: var(--accent); color: var(--primary); }

/* VIDEO SECTION */
.video-section { padding: 6rem 5%; text-align: center; }
.video-wrapper {
    position: relative;
    max-width: 860px;
    margin: 2.5rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 0 60px rgba(0, 212, 170, 0.15), 0 30px 80px rgba(0,0,0,0.4);
}
.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .lang-toggle { display: flex !important; }
    .stats { gap: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .office-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }
    .hero-buttons, .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .privacy-badges { flex-direction: column; align-items: center; }
}

/* ========================================
   DISCOVERY PAGE STYLES
   ======================================== */

/* Discovery Hero Variations */
.hero-bg.discovery { background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(123,97,255,0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0,163,255,0.1) 0%, transparent 50%); }
.hero-grid.discovery { background-image: linear-gradient(rgba(123,97,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(123,97,255,0.03) 1px, transparent 1px); }
.hero-badge.purple { background: rgba(123,97,255,0.1); border-color: rgba(123,97,255,0.3); color: var(--accent-purple); }

/* Pipeline Section */
.pipeline { padding: 8rem 5%; background: linear-gradient(180deg, transparent 0%, rgba(30,58,95,0.2) 50%, transparent 100%); }
.pipeline-header { text-align: center; margin-bottom: 4rem; }
.pipeline-stages { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.stage-card { padding: 2rem; background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; }
.stage-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--gradient-1); border-radius: 50%; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 1rem; }
.stage-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.stage-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.stage-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.stage-card ul { list-style: none; }
.stage-card li { color: var(--text-muted); font-size: 0.9rem; padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem; }
.stage-card li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Audience Section */
.audience { padding: 8rem 5%; }
.audience-header { text-align: center; margin-bottom: 4rem; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.audience-card { padding: 2rem; background: linear-gradient(135deg, rgba(30,58,95,0.3) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; text-align: center; transition: all 0.3s; }
.audience-card:hover { transform: translateY(-4px); border-color: rgba(0,212,170,0.3); }
.audience-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.audience-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.audience-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Technology Section */
.technology { padding: 8rem 5%; background: linear-gradient(180deg, transparent 0%, rgba(30,58,95,0.15) 50%, transparent 100%); }
.technology-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tech-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.tech-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.tech-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.tech-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: rgba(30,58,95,0.3); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; }
.tech-list-icon { font-size: 1.75rem; flex-shrink: 0; }
.tech-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.tech-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }
.molecule-card { background: linear-gradient(135deg, rgba(30,58,95,0.5) 0%, rgba(30,58,95,0.2) 100%); border: 1px solid rgba(123,97,255,0.3); border-radius: 20px; padding: 3rem 2rem; text-align: center; width: 100%; box-shadow: 0 0 60px rgba(123,97,255,0.1); }
.molecule-core { font-size: 4rem; margin-bottom: 1rem; }
.molecule-label { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.molecule-sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }

/* Coming Soon Section */
.coming-soon { padding: 8rem 5%; text-align: center; }
.coming-soon-card { max-width: 640px; margin: 0 auto; padding: 3rem; background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(123,97,255,0.3); border-radius: 24px; }
.coming-soon-icon { font-size: 3rem; margin-bottom: 1rem; }
.coming-soon-card h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.coming-soon-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }

@media (max-width: 1024px) { .technology-inner { grid-template-columns: 1fr; } }

/* ========================================
   ABOUT/LEGAL PAGE STYLES
   ======================================== */

.page-section { padding: 8rem 5% 4rem; }
.page-header { text-align: center; margin-bottom: 4rem; }
.page-content { max-width: 800px; margin: 0 auto; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--text); }
.page-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; color: var(--text); }
.page-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul, .page-content ol { color: var(--text-muted); margin: 1rem 0 1rem 1.5rem; line-height: 1.8; }
.page-content li { margin-bottom: 0.5rem; }
.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 3rem 0; }
.team-card { padding: 2rem; background: linear-gradient(135deg, rgba(30,58,95,0.4) 0%, rgba(30,58,95,0.1) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; text-align: center; }
.team-avatar { font-size: 4rem; margin-bottom: 1rem; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-role { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.value-card { padding: 1.5rem; background: rgba(30,58,95,0.3); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Job Listings */
.job-card { padding: 1.5rem; background: rgba(30,58,95,0.3); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; margin-bottom: 1rem; }
.job-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.job-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.job-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
