/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #020611;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


.section-space {
    padding: 120px 0;
}


/* =========================================
   SPACE BACKGROUND
========================================= */

.space-bg {
    position: fixed;

    inset: 0;

    z-index: -2;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(32, 104, 180, 0.16),
            transparent 40%
        ),
        radial-gradient(
            circle at 0% 60%,
            rgba(30, 90, 180, 0.10),
            transparent 30%
        ),
        #020611;
}


.stars {
    position: absolute;

    inset: 0;

    opacity: 0.65;

    background-image:
        radial-gradient(
            #ffffff 1px,
            transparent 1px
        );

    background-size:
        48px 48px;

    animation:
        starsMove 100s linear infinite;
}


.stars-large {
    opacity: 0.3;

    background-size:
        90px 90px;

    animation-duration:
        150s;
}


@keyframes starsMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-300px);
    }

}


.glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    filter: blur(150px);

    opacity: 0.12;
}


.glow-one {
    top: 10%;
    right: -200px;

    background: #1686ff;
}


.glow-two {
    bottom: -250px;
    left: -200px;

    background: #0077ff;
}


.orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(110, 190, 255, 0.08);
}


.orbit-one {
    width: 900px;
    height: 400px;

    top: 25%;
    left: -300px;

    transform: rotate(-25deg);
}


.orbit-two {
    width: 900px;
    height: 350px;

    right: -400px;
    bottom: 20%;

    transform: rotate(30deg);
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    border-bottom:
        1px solid
        rgba(130, 200, 255, 0.10);

    background:
        rgba(2, 6, 17, 0.78);

    backdrop-filter:
        blur(18px);
}


.header-container {
    width: min(1280px, calc(100% - 40px));

    min-height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: white;
}


.logo-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #8bd8ff;

    font-weight: 900;

    border:
        1px solid
        rgba(120, 210, 255, 0.45);
}


.logo-text {
    font-size: 17px;

    font-weight: 600;

    letter-spacing: 1px;
}


.logo-text strong {
    color: #8bd8ff;

    font-weight: 900;
}


/* =========================================
   DESKTOP NAV
========================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 30px;
}


.desktop-nav a {
    position: relative;

    color:
        rgba(235, 245, 255, 0.65);

    font-size: 12px;

    font-weight: 800;

    transition: 0.3s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: #ffffff;
}


.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -12px;

    width: 100%;
    height: 2px;

    background: #75d0ff;
}


/* =========================================
   HEADER BUTTON
========================================= */

.header-inquiry-btn {
    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 18px;

    color: white;

    font-size: 11px;

    font-weight: 900;

    border:
        1px solid
        rgba(110, 205, 255, 0.45);

    background:
        linear-gradient(
            135deg,
            rgba(20, 100, 180, 0.70),
            rgba(5, 25, 50, 0.8)
        );

    transition: 0.3s ease;
}


.header-inquiry-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 25px
        rgba(70, 180, 255, 0.25);
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    background: transparent;

    border:
        1px solid
        rgba(120, 200, 255, 0.20);

    cursor: pointer;
}


.mobile-menu-btn span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    background: white;
}


.mobile-nav {
    display: none;
}


/* =========================================
   HERO
========================================= */

.about-hero {
    min-height: calc(100vh - 76px);

    display: flex;

    align-items: center;

    padding: 80px 0;
}


.about-hero-container {
    width: min(1180px, calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap: 70px;
}


/* =========================================
   TAG
========================================= */

.section-tag {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #85d9ff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.section-tag span {
    width: 40px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #78d5ff
        );
}


.section-tag span:last-child {
    background:
        linear-gradient(
            90deg,
            #78d5ff,
            transparent
        );
}


/* =========================================
   HERO CONTENT
========================================= */

.about-hero-content h1 {
    margin-top: 25px;

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 900;
}


.about-hero-content h1 span {
    display: block;

    color: #84d8ff;
}


.about-hero-content p {
    max-width: 650px;

    margin-top: 28px;

    color:
        rgba(220, 235, 250, 0.62);

    font-size: 15px;

    line-height: 1.9;
}


.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    margin-top: 35px;
}


.primary-btn,
.secondary-btn,
.outline-btn,
.whatsapp-btn {
    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 22px;

    font-size: 12px;

    font-weight: 900;

    transition: 0.35s ease;
}


.primary-btn {
    color: white;

    background:
        linear-gradient(
            135deg,
            #1268a8,
            #082b50
        );

    border:
        1px solid
        rgba(110, 210, 255, 0.65);

    box-shadow:
        0 0 25px
        rgba(50, 160, 255, 0.15);
}


.secondary-btn,
.outline-btn {
    color:
        rgba(235, 245, 255, 0.85);

    border:
        1px solid
        rgba(130, 200, 255, 0.22);

    background:
        rgba(255, 255, 255, 0.025);
}


.primary-btn:hover,
.secondary-btn:hover,
.outline-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(30, 130, 255, 0.20);
}


/* =========================================
   HERO VISUAL
========================================= */

.about-visual {
    position: relative;

    width: 100%;
    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.core-circle {
    position: relative;

    width: 290px;
    height: 290px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(80, 190, 255, 0.28),
            rgba(8, 35, 70, 0.92) 55%,
            rgba(2, 8, 18, 1)
        );

    border:
        1px solid
        rgba(130, 220, 255, 0.32);

    box-shadow:
        inset 0 0 60px
        rgba(70, 170, 255, 0.18),

        0 0 70px
        rgba(40, 140, 255, 0.15);

    animation:
        coreFloat 6s ease-in-out infinite;
}


@keyframes coreFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


.core-circle::before {
    content: "";

    position: absolute;

    inset: -25px;

    border-radius: 50%;

    border:
        1px solid
        rgba(100, 210, 255, 0.12);
}


.core-inner {
    text-align: center;

    letter-spacing: 3px;
}


.core-inner span {
    display: block;

    color:
        rgba(210, 240, 255, 0.7);

    font-size: 20px;

    font-weight: 500;
}


.core-inner strong {
    display: block;

    margin-top: 6px;

    color: #8ddfff;

    font-size: 36px;

    font-weight: 900;
}


/* =========================================
   VISUAL ORBITS
========================================= */

.visual-orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(100, 200, 255, 0.15);
}


.orbit-a {
    width: 460px;
    height: 180px;

    transform: rotate(-25deg);

    animation:
        orbitRotate 20s linear infinite;
}


.orbit-b {
    width: 420px;
    height: 500px;

    animation:
        orbitRotate 30s linear infinite reverse;
}


.orbit-c {
    width: 540px;
    height: 260px;

    transform: rotate(45deg);

    animation:
        orbitRotate 35s linear infinite;
}


@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    color: white;

    font-size: 11px;

    font-weight: 800;

    background:
        rgba(8, 25, 45, 0.88);

    border:
        1px solid
        rgba(120, 205, 255, 0.22);

    backdrop-filter: blur(10px);

    animation:
        floatingCard 5s ease-in-out infinite;
}


.floating-card i {
    color: #84d9ff;
}


.card-one {
    top: 55px;
    left: 0;
}


.card-two {
    right: 0;
    top: 220px;

    animation-delay: 1s;
}


.card-three {
    bottom: 55px;
    left: 30px;

    animation-delay: 2s;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   OUR STORY
========================================= */

.story-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    align-items: center;

    gap: 90px;
}


.story-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.story-card-main {
    position: relative;

    width: 100%;

    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 45, 75, 0.75),
            rgba(3, 10, 20, 0.95)
        );

    border:
        1px solid
        rgba(120, 205, 255, 0.18);
}


.story-number {
    color: #7ed7ff;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;
}


.story-line {
    width: 70px;
    height: 1px;

    margin: 25px 0;

    background: #77d2ff;
}


.story-card-main h3 {
    font-size: 34px;

    line-height: 1.2;
}


.story-card-main p {
    margin-top: 22px;

    color:
        rgba(220, 235, 250, 0.55);

    font-size: 13px;

    line-height: 1.8;
}


.story-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(40, 150, 255, 0.14);

    filter: blur(80px);

    z-index: -1;
}


.section-label {
    color: #82d8ff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}


.story-content h2,
.section-heading h2,
.founder-content h2,
.cta-content h2 {
    margin-top: 18px;

    font-size:
        clamp(36px, 4vw, 58px);

    line-height: 1.1;

    font-weight: 900;
}


.story-content h2 span,
.section-heading h2 span,
.founder-content h2 span,
.cta-content h2 span {
    display: block;

    color: #83d9ff;
}


.story-content > p {
    margin-top: 22px;

    color:
        rgba(220, 235, 250, 0.60);

    font-size: 14px;

    line-height: 1.9;
}


.story-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    margin-top: 35px;
}


.highlight-item {
    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(235, 245, 255, 0.80);

    font-size: 11px;

    font-weight: 700;
}


.highlight-item i {
    color: #83d9ff;

    font-size: 10px;
}


/* =========================================
   STATISTICS
========================================= */

.statistics-section {
    padding: 50px 0;

    border-top:
        1px solid
        rgba(120, 200, 255, 0.12);

    border-bottom:
        1px solid
        rgba(120, 200, 255, 0.12);

    background:
        rgba(255, 255, 255, 0.015);
}


.stats-wrapper {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.stat-item {
    position: relative;

    text-align: center;

    padding: 20px;
}


.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 20%;

    width: 1px;
    height: 60%;

    background:
        linear-gradient(
            transparent,
            rgba(150, 210, 255, 0.35),
            transparent
        );
}


.stat-number {
    color: white;

    font-size:
        clamp(28px, 3vw, 44px);

    font-weight: 900;
}


.stat-number small {
    color: #86d9ff;

    font-size: 20px;
}


.stat-item p {
    margin-top: 8px;

    color:
        rgba(220, 235, 250, 0.52);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   VISION
========================================= */

.vision-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


.vision-card {
    padding: 50px;

    min-height: 400px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 35, 60, 0.80),
            rgba(3, 10, 20, 0.92)
        );

    border:
        1px solid
        rgba(120, 205, 255, 0.15);

    transition: 0.4s ease;
}


.vision-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(120, 210, 255, 0.40);

    box-shadow:
        0 20px 50px
        rgba(20, 100, 200, 0.12);
}


.vision-icon {
    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 30px;

    color: #83d9ff;

    font-size: 20px;

    border:
        1px solid
        rgba(120, 210, 255, 0.25);

    background:
        rgba(50, 150, 255, 0.08);
}


.vision-card > span {
    color:
        rgba(130, 215, 255, 0.65);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}


.vision-card h2 {
    margin-top: 18px;

    font-size: 36px;

    line-height: 1.2;
}


.vision-card h2 strong {
    display: block;

    color: #85d9ff;
}


.vision-card p {
    margin-top: 22px;

    color:
        rgba(220, 235, 250, 0.55);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 750px;

    margin-bottom: 60px;
}


.section-heading p {
    margin-top: 22px;

    color:
        rgba(220, 235, 250, 0.58);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   VERTICALS
========================================= */

.verticals-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.vertical-card {
    min-height: 370px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    color: white;

    background:
        linear-gradient(
            145deg,
            rgba(12, 32, 55, 0.80),
            rgba(2, 9, 19, 0.95)
        );

    border:
        1px solid
        rgba(120, 200, 255, 0.14);

    transition: 0.4s ease;
}


.vertical-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(120, 210, 255, 0.50);

    box-shadow:
        0 20px 45px
        rgba(20, 100, 220, 0.12);
}


.vertical-card-top {
    display: flex;

    justify-content: space-between;

    color:
        rgba(150, 210, 255, 0.45);

    font-size: 11px;

    font-weight: 900;
}


.vertical-card-icon {
    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin: 40px 0 25px;

    color: #86dcff;

    font-size: 22px;

    border:
        1px solid
        rgba(120, 210, 255, 0.22);

    background:
        rgba(60, 160, 255, 0.06);
}


.vertical-card h3 {
    font-size: 20px;

    line-height: 1.3;
}


.vertical-card p {
    margin-top: 14px;

    color:
        rgba(220, 235, 250, 0.50);

    font-size: 12px;

    line-height: 1.8;
}


.card-status {
    margin-top: auto;

    padding-top: 25px;

    color:
        rgba(160, 215, 255, 0.65);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}


.active-status {
    color: #7ce0ff;
}


.coming-soon {
    color:
        rgba(220, 235, 250, 0.40);
}


/* =========================================
   FOUNDER
========================================= */

.founder-wrapper {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    align-items: center;

    gap: 90px;
}


.founder-visual {
    position: relative;
}


.founder-image-placeholder {
    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color:
        rgba(160, 215, 255, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(18, 45, 75, 0.85),
            rgba(3, 10, 20, 0.95)
        );

    border:
        1px solid
        rgba(120, 205, 255, 0.18);
}


.founder-image-placeholder i {
    font-size: 70px;

    color:
        rgba(120, 210, 255, 0.20);
}


.founder-image-placeholder span {
    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}


.founder-experience {
    position: absolute;

    right: -30px;
    bottom: 40px;

    padding: 20px 25px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        rgba(5, 20, 40, 0.95);

    border:
        1px solid
        rgba(120, 205, 255, 0.25);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.25);
}


.founder-experience strong {
    color: #83d9ff;

    font-size: 34px;
}


.founder-experience span {
    color:
        rgba(230, 240, 250, 0.65);

    font-size: 10px;

    line-height: 1.5;
}


.founder-content > p {
    margin-top: 22px;

    color:
        rgba(220, 235, 250, 0.58);

    font-size: 14px;

    line-height: 1.9;
}


.outline-btn {
    margin-top: 30px;
}


/* =========================================
   CTA
========================================= */

.about-cta {
    position: relative;

    padding: 130px 0;

    text-align: center;

    overflow: hidden;

    border-top:
        1px solid
        rgba(120, 200, 255, 0.12);
}


.cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;
}


.cta-content .section-label {
    display: inline-block;
}


.cta-content p {
    max-width: 600px;

    margin: 22px auto 0;

    color:
        rgba(220, 235, 250, 0.58);

    font-size: 14px;

    line-height: 1.9;
}


.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;
}


.whatsapp-btn {
    color: white;

    border:
        1px solid
        rgba(120, 200, 255, 0.25);

    background:
        rgba(255, 255, 255, 0.03);
}


.whatsapp-btn:hover {
    transform: translateY(-4px);

    border-color:
        rgba(120, 220, 255, 0.55);
}


.cta-glow {
    position: absolute;

    width: 600px;
    height: 300px;

    left: 50%;
    bottom: -250px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(30, 130, 255, 0.22);

    filter: blur(100px);
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 60px 0 30px;

    border-top:
        1px solid
        rgba(120, 200, 255, 0.10);
}


.footer-container {
    width: min(1180px, calc(100% - 40px));

    margin: auto;

    text-align: center;
}


.footer-logo {
    color: white;

    font-size: 22px;

    letter-spacing: 2px;
}


.footer-logo strong {
    color: #82d9ff;
}


.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 28px;
}


.footer-links a {
    color:
        rgba(220, 235, 250, 0.50);

    font-size: 11px;

    font-weight: 700;

    transition: 0.3s ease;
}


.footer-links a:hover {
    color: #8bdcff;
}


.footer-bottom {
    margin-top: 40px;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(220, 235, 250, 0.30);

    font-size: 10px;

    border-top:
        1px solid
        rgba(120, 200, 255, 0.08);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}


.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

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


    .about-hero-container,
    .story-grid,
    .founder-wrapper {
        gap: 50px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .desktop-nav,
    .header-inquiry-btn {
        display: none;
    }


    .mobile-menu-btn {
        display: block;
    }


    .mobile-nav.active {
        display: flex;

        flex-direction: column;

        padding: 20px;

        background:
            rgba(2, 6, 17, 0.98);

        border-top:
            1px solid
            rgba(120, 200, 255, 0.10);
    }


    .mobile-nav a {
        padding: 14px;

        color:
            rgba(235, 245, 255, 0.80);

        font-size: 12px;

        font-weight: 800;

        border-bottom:
            1px solid
            rgba(120, 200, 255, 0.08);
    }


    .about-hero {
        min-height: auto;

        padding: 100px 0 80px;
    }


    .about-hero-container,
    .story-grid,
    .founder-wrapper {
        grid-template-columns:
            1fr;
    }


    .about-visual {
        height: 450px;
    }


    .story-grid,
    .founder-wrapper {
        gap: 50px;
    }


    .stats-wrapper {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 35px;
    }


    .stat-item:nth-child(2)::after {
        display: none;
    }


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


    .section-space {
        padding: 80px 0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 550px) {

    .container,
    .about-hero-container,
    .footer-container {
        width: calc(100% - 30px);
    }


    .about-hero-content h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }


    .about-hero-content p {
        font-size: 13px;
    }


    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }


    .primary-btn,
    .secondary-btn,
    .whatsapp-btn {
        width: 100%;
    }


    .about-visual {
        height: 380px;
    }


    .core-circle {
        width: 220px;
        height: 220px;
    }


    .orbit-a {
        width: 340px;
    }


    .orbit-b {
        width: 300px;
        height: 380px;
    }


    .orbit-c {
        width: 370px;
    }


    .floating-card {
        padding: 9px 11px;

        font-size: 9px;
    }


    .card-one {
        left: 0;
        top: 30px;
    }


    .card-two {
        right: 0;
    }


    .card-three {
        left: 0;
        bottom: 30px;
    }


    .story-card-main,
    .vision-card {
        padding: 35px 25px;
    }


    .story-highlights {
        grid-template-columns:
            1fr;
    }


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


    .founder-image-placeholder {
        min-height: 400px;
    }


    .founder-experience {
        right: 15px;
        bottom: 20px;
    }


    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

}