:root {
    --navy: #0f2747;
    --navy-mid: #163455;
    --accent: #2563eb;
    --accent-bright: #3b82f6;
    --accent-glow: #60a5fa;
    --white: #ffffff;
    --off-white: #f8fafd;
    --gray-light: #eef3fa;
    --gray-mid: #94a3b8;
    --gray-dark: #475569;
    --text: #0f172a;
    --text-soft: #334155;
    /* Main Brand Color from landing */
    --primary: #262262;
    --text-gray: #5a6b7c;
}

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

/* Base Body Override to accommodate Fixed Header from main style.css */
body.about-page {
    font-family: 'Poppins', 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 90px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* Header & Footer Override to ensure they look identical to landing but work with about's parallax */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons-container {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: #f0f4ff;
}

.btn-solid {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
}

.btn-solid:hover {
    background: #1a164d;
    border-color: #1a164d;
    box-shadow: 0 5px 15px rgba(38, 34, 98, 0.2);
    transform: translateY(-2px);
}

/* User Info Styles from Landing */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-details {
    text-align: right;
    line-height: 1.2;
}

.user-details span {
    display: block;
    font-weight: 700;
    color: var(--primary);
}

.user-details small {
    font-size: 12px;
    color: #888;
}

.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    object-fit: cover;
}

.btn-logout {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff5f5;
    border: 1px solid #ffcccc;
    color: #d93025;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-logout:hover {
    background: #ffcccc;
    color: white;
}

/* Tombol Go To Dashboard Sync from Landing */
.btn-dashboard {
    background: #f0f0ff;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Footer Sync */
footer {
    padding: 80px 0 40px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-column h4 {
    margin-bottom: 24px;
    color: var(--navy);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-soft);
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

/* Parallax Background Shape System */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    top: 10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--accent-glow);
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent);
}

.shape-3 {
    top: 50%;
    left: 40%;
    width: 25vw;
    height: 25vw;
    background: var(--accent-bright);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Sections */
section {
    padding: 120px 0;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, white 0%, var(--off-white) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 24px 0;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    color: var(--accent);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-soft);
    max-width: 600px;
}

/* Bento Intro */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
}

.bento-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-light);
}

.bento-item.highlight {
    background: var(--navy);
    color: white;
    grid-column: span 2;
}

.bento-item.highlight h3 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.bento-item.full {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Philosophy */
.philosophy-section {
    background: var(--navy);
    color: white;
}

.philosophy-section h2,
.philosophy-section p {
    color: white;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 10px;
}

.phil-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}

.phil-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-light);
}

.synergy-orb {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-core {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px var(--accent-glow);
    z-index: 2;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit span {
    position: absolute;
    background: white;
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.orbit:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

.orbit:nth-child(1) span {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit:nth-child(2) {
    width: 70%;
    height: 70%;
    animation: spin 15s linear reverse infinite;
}

.orbit:nth-child(2) span {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit:nth-child(3) {
    width: 40%;
    height: 40%;
    animation: spin 10s linear infinite;
}

.orbit:nth-child(3) span {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Vision/Mission */
.vimi-section {
    padding: 120px 0;
}

.vimi-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.vision-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.mission-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mission-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-light);
    -webkit-text-stroke: 1px var(--accent);
    color: transparent;
}

/* Build Cloud */
.build-section {
    background: var(--off-white);
}

.build-grid {
    background: white;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
}

.features-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
}

.tag {
    background: var(--gray-light);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.impact-card {
    padding: 24px;
    border-radius: 20px;
    background: var(--off-white);
}

.impact-card i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 12px;
}

/* Approach Card */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.approach-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.approach-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    background: var(--navy);
    color: white;
}

.approach-card:hover i,
.approach-card:hover h3 {
    color: white;
}

.approach-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Future Box */
.future-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: white;
    padding: 80px 6vw;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.future-box h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.future-box p {
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right,
.reveal-bottom {
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-bottom {
    transform: translateY(40px);
}

.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@media (max-width: 1024px) {

    .phil-content,
    .vimi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-grid,
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    header {
        padding: 0 20px;
        height: 80px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .auth-buttons-container {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item,
    .bento-item.highlight,
    .bento-item.full {
        grid-column: span 1;
    }

    .impact-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
}