:root {
    --primary-color: #0056b3;
    /* Professional blue */
    --secondary-color: #333333;
    /* Dark grey */
    --text-color: #4a4a4a;
    /* Medium grey for text */
    --light-bg: #f8f9fa;
    /* Soft light grey */
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', sans-serif;
    --spacing-unit: 1rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.trademark {
    font-size: 0.8rem;
    vertical-align: super;
    margin-left: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #004494;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #cecece;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Utility */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    background-color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #eef2f5 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.bar {
    width: 20px;
    background-color: var(--primary-color);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.bar-1 {
    height: 40px;
    opacity: 0.4;
}

.bar-2 {
    height: 70px;
    opacity: 0.7;
}

.bar-3 {
    height: 100px;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Agenda Section */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.agenda-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.time-tag {
    display: inline-block;
    background-color: #f0f4ff;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.agenda-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.agenda-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Section */
.bg-light {
    background-color: var(--light-bg);
}

.background-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
    max-width: 90%;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* Staggered Animation Defaults */
.animate-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-stagger>.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Graphic Styles */
.hero-graphic-container {
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at top right, #f8f9fa 0%, #eef2f5 100%);
    perspective: 1000px;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 86, 179, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 86, 179, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotateX(60deg) scale(2);
    transform-origin: top center;
    opacity: 0.6;
}

.floating-data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.6);
    animation: floatPoint 4s ease-in-out infinite;
}

.p1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.p2 {
    top: 60%;
    left: 80%;
    animation-delay: 1.5s;
    width: 8px;
    height: 8px;
}

.p3 {
    top: 20%;
    left: 70%;
    animation-delay: 0.8s;
    background: #00c6ff;
}

@keyframes floatPoint {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 140px;
    z-index: 2;
    margin-bottom: -20px;
    /* Push down slightly */
}

/* Updated Bars */
.bar-4 {
    height: 60px;
    opacity: 0.5;
}

.bar-5 {
    height: 90px;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    top: 20%;
    right: 15%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.fc-label {
    font-size: 0.8rem;
    color: #666;
}

.fc-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Background Abstract Graphic: Sustainable Growth */
.network-graphic-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6efff 100%);
    /* Lighter, cleaner background */
    position: relative;
    overflow: hidden;
    border: 1px solid #dbeafe;
}

.growth-graphic-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
}

.growth-node {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 86, 179, 0.2);
}

.root-node {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.growth-line {
    background-color: var(--primary-color);
    opacity: 0.6;
    position: absolute;
    transform-origin: bottom center;
}

.main-stem {
    width: 4px;
    height: 60%;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.growth-branch {
    position: absolute;
    bottom: 100px;
    left: 50%;
    width: 100px;
    height: 100px;
}

.b1 {
    transform: translateX(-50%) rotate(-45deg);
    height: 80px;
}

.b1 .growth-line {
    width: 3px;
    height: 100%;
    bottom: 0;
    left: 50%;
}

.b1 .leaf-node {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
}

.b2 {
    transform: translateX(-50%) rotate(45deg);
    height: 80px;
    bottom: 140px;
}

.b2 .growth-line {
    width: 3px;
    height: 100%;
    bottom: 0;
    left: 50%;
}

.b2 .leaf-node {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
}

.b3 {
    transform: translateX(-50%) rotate(0deg);
    height: 120px;
    bottom: 50px;
}

.b3 .growth-line {
    width: 4px;
    height: 100%;
    bottom: 0;
    left: 50%;
}

.b3 .leaf-node {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #00c6ff;
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: floatStat 4s ease-in-out infinite;
}

.s1 {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.s2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.fs-icon {
    width: 24px;
    height: 24px;
    background: #eef2f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
}

.fs-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@keyframes floatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .background-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        text-align: center !important;
    }

    .stat-highlight {
        align-items: center;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-left: 0;
        padding-top: 1.5rem;
        width: fit-content;
        margin: 2rem auto 0;
    }
}

/* Growth Section */
.growth-timeline {
    position: relative;
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}

.timeline-line {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.growth-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    text-align: center;
}

.growth-pill {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition);
}

.growth-pill::after {
    content: '';
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: var(--border-color);
    transition: var(--transition);
}

.growth-point:hover .growth-pill {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.growth-point:hover .growth-pill::after {
    height: 35px;
    bottom: -39px;
    background-color: var(--primary-color);
}

.year-label {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.growth-dot {
    width: 16px;
    height: 16px;
    background-color: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 3;
}

.growth-point:hover .growth-dot {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .growth-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .timeline-line {
        width: 2px;
        height: 100%;
        left: 27px;
        bottom: auto;
        top: 0;
    }

    .growth-point {
        flex-direction: row;
        width: 100%;
        align-items: center;
        gap: 2rem;
    }

    .growth-pill {
        margin-bottom: 0;
        order: 2;
    }

    .growth-pill::after {
        display: none;
    }

    .growth-dot {
        order: 1;
        margin-left: 20px;
    }

    .year-label {
        margin-top: 0;
        order: 3;
        width: 60px;
    }
}

/* Strategy Section */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    /* More square squared off */
    border-top: 4px solid transparent;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.strategy-card:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.strategy-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.strategy-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #f0f4ff;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #ddd, #f0f0f0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Financials Section */
.financial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 300px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.chart-bar {
    width: 15%;
    background-color: #dbeafe;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--transition);
}

.chart-bar:hover,
.chart-bar.active {
    background-color: var(--primary-color);
}

.chart-bar:hover .chart-value,
.chart-bar.active .chart-value {
    opacity: 1;
    transform: translateY(0);
}

.chart-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.chart-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    border: none;
    /* Override base */
}

.fin-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.fin-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.fin-list strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Revenue Section */
.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.revenue-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: var(--transition);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.revenue-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004494 100%);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
}

.revenue-card.highlight .rev-year,
.revenue-card.highlight .rev-amount,
.revenue-card.highlight .rev-desc {
    color: var(--white);
}

.rev-year {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Roadmap Glow Cards */
.glow-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.5);
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
    transition: var(--transition);
}

.glow-card::before {
    content: "";
    position: absolute;
    top: var(--y, 0);
    left: var(--x, 0);
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    box-shadow: 0 0 40px 20px rgba(0, 86, 179, 0.1);
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.glow-card:hover::before {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.roadmap-item {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes growBar {
    from {
        height: 0;
    }

    to {
        height: var(--height);
    }
}

.bar-chart.visible .chart-bar {
    height: 0;
    /* meaningful initial state before animation */
    animation: growBar 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chart-bar {
    width: 15%;
    background-color: #dbeafe;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--transition);
    height: 0;
    /* Default invisible until visible class added */
}



.rev-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.rev-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Plans Section */
.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: var(--white);
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.quarter-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.roadmap-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.roadmap-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Contact / Form */
.contact-section {
    text-align: center;
}

@media (max-width: 992px) {
    .financial-container {
        grid-template-columns: 1fr;
    }

    .revenue-card.highlight {
        transform: scale(1);
    }
}