
/* =========================================================
   NIBBLY — ABOUT PAGE
   assets/css/about.css
   Premium Light + Cyan + Deep Navy
   Mobile First
   ========================================================= */


/* =========================================================
   ABOUT PAGE VARIABLES
   ========================================================= */

:root {
    --about-cyan: #a3f1ff;
    --about-cyan-2: #08b9e8;
    --about-cyan-3: #009ed1;

    --about-navy: #092542;
    --about-text: #31506b;
    --about-muted: #668197;

    --about-bg: #fbfeff;
    --about-white: #ffffff;
    --about-line: #dff3f8;

    --about-soft: #eefbfe;
    --about-shadow:
        0 18px 50px rgba(14, 80, 110, 0.09);

    --about-shadow-lg:
        0 28px 70px rgba(8, 105, 145, 0.14);

    --about-radius: 28px;
}


/* =========================================================
   PAGE
   ========================================================= */

.nbl-about-page {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fdff 48%,
            #ffffff 100%
        );
}


/* Decorative page glow */

.nbl-about-page::before {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 220px;
    border-radius: 50%;
    background: rgba(163, 241, 255, 0.18);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.nbl-about-page::after {
    content: "";
    position: fixed;
    width: 360px;
    height: 360px;
    left: -220px;
    bottom: 160px;
    border-radius: 50%;
    background: rgba(8, 185, 232, 0.07);
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}


/* =========================================================
   COMMON ABOUT ELEMENTS
   ========================================================= */

.nbl-about-page section {
    position: relative;
    z-index: 1;
}

.nbl-about-page .nbl-container {
    position: relative;
    z-index: 2;
}

.nbl-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;

    border-radius: 999px;

    background: #e8faff;
    border: 1px solid #b9edf8;

    color: var(--about-cyan-3);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    box-shadow:
        0 7px 20px rgba(8, 185, 232, 0.07);
}

.nbl-about-eyebrow i {
    font-size: 10px;
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.nbl-about-hero {
    min-height: 540px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(163, 241, 255, 0.75),
            rgba(229, 251, 255, 0.52) 23%,
            rgba(255, 255, 255, 0) 54%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #fbfeff 48%,
            #effcff 100%
        );
}


/* Dot grid */

.nbl-about-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(8, 185, 232, 0.13) 1px,
            transparent 1px
        );

    background-size: 28px 28px;

    opacity: 0.32;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 42%,
            #000 100%
        );
}


/* Hero grid */

.nbl-about-hero-grid {
    min-height: 540px;

    display: grid;
    grid-template-columns: 46% 54%;

    align-items: center;

    gap: 20px;
}


/* =========================================================
   HERO COPY
   ========================================================= */

.nbl-about-hero-copy {
    position: relative;
    z-index: 5;

    padding: 55px 0;
}

.nbl-about-hero-copy h1 {
    max-width: 650px;

    margin: 18px 0 16px;

    font-family: Manrope, Inter, sans-serif;

    font-size: 54px;

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 900;

    color: var(--about-navy);
}

.nbl-about-hero-copy h1 span {
    color: var(--about-cyan-2);
}

.nbl-about-hero-copy > p {
    max-width: 530px;

    margin: 0 0 25px;

    color: var(--about-text);

    font-size: 15px;

    font-weight: 600;

    line-height: 1.75;
}


/* Hero mini info */

.nbl-about-hero-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 23px;
}

.nbl-about-hero-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid var(--about-line);

    color: #36556d;

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(10, 80, 105, 0.06);
}

.nbl-about-hero-meta i {
    color: var(--about-cyan-2);
}


/* Hero buttons */

.nbl-about-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.nbl-about-visual {
    position: relative;

    min-height: 480px;

    display: grid;

    place-items: center;
}


/* Big cyan atmosphere */

.nbl-about-visual::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(163, 241, 255, 0.55),
            rgba(163, 241, 255, 0.16) 48%,
            transparent 72%
        );

    filter: blur(4px);

    animation: nblAboutGlow 5s ease-in-out infinite;
}


/* Main glass circle */

.nbl-about-orb {
    position: relative;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    z-index: 4;

    background:
        radial-gradient(
            circle at 38% 30%,
            #ffffff 0%,
            #f6fdff 45%,
            #e3faff 100%
        );

    border: 1px solid rgba(8, 185, 232, 0.25);

    box-shadow:
        0 30px 80px rgba(5, 100, 140, 0.15),
        0 0 0 14px rgba(163, 241, 255, 0.13),
        0 0 0 30px rgba(163, 241, 255, 0.05);
}


/* Orbital rings */

.nbl-about-orb::before,
.nbl-about-orb::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(8, 185, 232, 0.24);

    border-radius: 50%;

    pointer-events: none;
}

.nbl-about-orb::before {
    width: 410px;
    height: 150px;

    transform:
        rotateX(64deg)
        rotateZ(-15deg);

    animation:
        nblAboutOrbit 15s linear infinite;
}

.nbl-about-orb::after {
    width: 450px;
    height: 220px;

    transform:
        rotateX(65deg)
        rotateZ(28deg);

    animation:
        nblAboutOrbit 20s linear infinite reverse;
}


/* Logo */

.nbl-about-orb-logo {
    position: relative;

    width: 185px;
    height: 185px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    z-index: 5;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        inset 0 0 35px rgba(255, 255, 255, 0.95),
        0 18px 45px rgba(8, 120, 160, 0.12);
}

.nbl-about-orb-logo img {
    width: 145px;
    height: 145px;

    object-fit: contain;

    border-radius: 50%;
}


/* Floating badges */

.nbl-about-float {
    position: absolute;

    z-index: 8;

    min-width: 112px;

    padding: 11px 13px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid var(--about-line);

    box-shadow:
        0 16px 35px rgba(8, 90, 120, 0.12);

    backdrop-filter: blur(14px);

    display: flex;

    align-items: center;

    gap: 9px;

    animation:
        nblAboutFloat 4s ease-in-out infinite;
}

.nbl-about-float i {
    width: 34px;
    height: 34px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    background: #e9faff;

    color: var(--about-cyan-2);

    font-size: 15px;
}

.nbl-about-float strong {
    display: block;

    color: var(--about-navy);

    font-size: 10px;

    font-weight: 900;
}

.nbl-about-float small {
    display: block;

    margin-top: 2px;

    color: var(--about-muted);

    font-size: 8px;

    font-weight: 600;
}

.nbl-about-float.one {
    top: 11%;
    left: 5%;
}

.nbl-about-float.two {
    top: 16%;
    right: 0;

    animation-delay: -1.2s;
}

.nbl-about-float.three {
    bottom: 12%;
    left: 8%;

    animation-delay: -2.2s;
}

.nbl-about-float.four {
    right: 5%;
    bottom: 10%;

    animation-delay: -3s;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.nbl-about-section {
    padding: 75px 0;
}

.nbl-about-section-head {
    max-width: 720px;

    margin: 0 auto 42px;

    text-align: center;
}

.nbl-about-section-head h2 {
    margin: 13px 0 12px;

    font-family: Manrope, Inter, sans-serif;

    font-size: 38px;

    line-height: 1.1;

    letter-spacing: -1.6px;

    font-weight: 900;

    color: var(--about-navy);
}

.nbl-about-section-head h2 span {
    color: var(--about-cyan-2);
}

.nbl-about-section-head p {
    margin: 0 auto;

    max-width: 650px;

    color: var(--about-text);

    font-size: 14px;

    font-weight: 600;

    line-height: 1.7;
}


/* =========================================================
   STORY SECTION
   ========================================================= */

.nbl-about-story {
    padding: 78px 0;
}

.nbl-about-story-grid {
    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    gap: 40px;
}


/* Story visual */

.nbl-about-story-visual {
    position: relative;

    min-height: 410px;

    border-radius: 32px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #e8fbff,
            #ffffff 55%,
            #dff9ff
        );

    border: 1px solid var(--about-line);

    box-shadow: var(--about-shadow-lg);
}


/* Decorative circles */

.nbl-about-story-visual::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -110px;
    right: -80px;

    border-radius: 50%;

    background: rgba(163, 241, 255, 0.4);

    filter: blur(4px);
}

.nbl-about-story-visual::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    bottom: -80px;
    left: -70px;

    border-radius: 50%;

    border: 30px solid rgba(163, 241, 255, 0.18);
}


/* Store illustration */

.nbl-about-store {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 280px;
    height: 205px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(8, 185, 232, 0.16);

    box-shadow:
        0 20px 45px rgba(8, 100, 140, 0.12);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--about-cyan-2);
}

.nbl-about-store i {
    position: relative;

    z-index: 2;

    font-size: 68px;
}

.nbl-about-store strong {
    position: relative;

    z-index: 2;

    margin-top: 9px;

    color: var(--about-navy);

    font-size: 13px;

    font-weight: 900;
}

.nbl-about-store small {
    position: relative;

    z-index: 2;

    margin-top: 4px;

    color: var(--about-muted);

    font-size: 9px;

    font-weight: 700;
}


/* Story year badge */

.nbl-about-year {
    position: absolute;

    left: 24px;
    bottom: 22px;

    padding: 13px 17px;

    border-radius: 16px;

    background: var(--about-navy);

    color: #fff;

    box-shadow:
        0 16px 35px rgba(9, 37, 66, 0.18);
}

.nbl-about-year strong {
    display: block;

    font-family: Manrope, sans-serif;

    font-size: 20px;

    line-height: 1;
}

.nbl-about-year span {
    display: block;

    margin-top: 4px;

    color: #c9f7ff;

    font-size: 8px;

    font-weight: 700;
}


/* Story copy */

.nbl-about-story-copy {
    padding-left: 10px;
}

.nbl-about-story-copy h2 {
    margin: 14px 0;

    font-family: Manrope, sans-serif;

    font-size: 38px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    font-weight: 900;
}

.nbl-about-story-copy h2 span {
    color: var(--about-cyan-2);
}

.nbl-about-story-copy > p {
    max-width: 570px;

    margin: 0 0 17px;

    color: var(--about-text);

    font-size: 14px;

    font-weight: 600;

    line-height: 1.75;
}


/* Story points */

.nbl-about-story-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px;

    margin-top: 24px;
}

.nbl-about-story-point {
    padding: 15px;

    border-radius: 17px;

    background: #fff;

    border: 1px solid var(--about-line);

    box-shadow:
        0 10px 25px rgba(10, 80, 105, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.nbl-about-story-point:hover {
    transform: translateY(-5px);

    border-color: #b5edf8;

    box-shadow:
        0 18px 35px rgba(10, 80, 105, 0.1);
}

.nbl-about-story-point i {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: #e9faff;

    color: var(--about-cyan-2);

    margin-bottom: 9px;
}

.nbl-about-story-point strong {
    display: block;

    color: var(--about-navy);

    font-size: 11px;

    font-weight: 900;
}

.nbl-about-story-point span {
    display: block;

    margin-top: 4px;

    color: var(--about-muted);

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================================
   LOCAL FIRST / BELIEF CARDS
   ========================================================= */

.nbl-about-beliefs {
    padding: 75px 0;

    background:
        linear-gradient(
            180deg,
            rgba(238, 251, 254, 0.65),
            rgba(255, 255, 255, 0)
        );
}

.nbl-about-belief-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.nbl-about-belief-card {
    position: relative;

    min-height: 255px;

    padding: 26px;

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid var(--about-line);

    box-shadow: var(--about-shadow);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.nbl-about-belief-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    bottom: -60px;

    border-radius: 50%;

    background: rgba(163, 241, 255, 0.25);

    filter: blur(2px);
}

.nbl-about-belief-card:hover {
    transform: translateY(-8px);

    border-color: #b4ebf7;

    box-shadow:
        0 24px 50px rgba(10, 80, 105, 0.12);
}

.nbl-about-belief-icon {
    width: 62px;
    height: 62px;

    border-radius: 20px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #e6faff,
            #ffffff
        );

    border: 1px solid #c9eff7;

    color: var(--about-cyan-2);

    font-size: 27px;

    box-shadow:
        0 12px 25px rgba(8, 185, 232, 0.09);

    margin-bottom: 21px;
}

.nbl-about-belief-card h3 {
    margin: 0 0 8px;

    font-family: Manrope, sans-serif;

    font-size: 18px;

    font-weight: 900;

    color: var(--about-navy);
}

.nbl-about-belief-card p {
    max-width: 300px;

    margin: 0;

    color: var(--about-text);

    font-size: 11px;

    font-weight: 600;

    line-height: 1.65;
}


/* =========================================================
   ECOSYSTEM SECTION
   ========================================================= */

.nbl-about-ecosystem {
    padding: 80px 0;
}

.nbl-about-ecosystem-card {
    position: relative;

    min-height: 490px;

    border-radius: 32px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(163, 241, 255, 0.38),
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f1fcff
        );

    border: 1px solid var(--about-line);

    box-shadow: var(--about-shadow-lg);
}


/* Ecosystem center */

.nbl-about-eco-center {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 150px;
    height: 150px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: rgba(255, 255, 255, 0.94);

    border: 4px solid rgba(163, 241, 255, 0.48);

    box-shadow:
        0 0 0 14px rgba(163, 241, 255, 0.12),
        0 0 70px rgba(8, 185, 232, 0.2),
        0 20px 45px rgba(10, 80, 105, 0.12);

    z-index: 5;
}

.nbl-about-eco-center img {
    width: 105px;
    height: 105px;

    object-fit: contain;

    border-radius: 50%;
}


/* Eco rings */

.nbl-about-eco-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotateX(66deg);

    border: 1px solid rgba(8, 185, 232, 0.27);

    border-radius: 50%;

    pointer-events: none;
}

.nbl-about-eco-ring.r1 {
    width: 260px;
    height: 260px;

    animation:
        nblAboutOrbit 12s linear infinite;
}

.nbl-about-eco-ring.r2 {
    width: 390px;
    height: 230px;

    animation:
        nblAboutOrbit 17s linear infinite reverse;
}

.nbl-about-eco-ring.r3 {
    width: 530px;
    height: 300px;

    animation:
        nblAboutOrbit 23s linear infinite;
}


/* App nodes */

.nbl-about-eco-node {
    position: absolute;

    width: 125px;
    min-height: 100px;

    padding: 13px;

    border-radius: 19px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #d9f2f7;

    box-shadow:
        0 15px 35px rgba(10, 80, 105, 0.1);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    z-index: 8;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.nbl-about-eco-node:hover {
    transform: translateY(-7px) scale(1.03);

    box-shadow:
        0 23px 45px rgba(10, 80, 105, 0.15);
}

.nbl-about-eco-node i {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: #e9faff;

    color: var(--about-cyan-2);

    font-size: 17px;

    margin-bottom: 7px;
}

.nbl-about-eco-node strong {
    color: var(--about-navy);

    font-size: 10px;

    font-weight: 900;
}

.nbl-about-eco-node span {
    margin-top: 3px;

    color: var(--about-muted);

    font-size: 8px;

    font-weight: 600;
}

.nbl-about-eco-node.user {
    top: 9%;
    left: 12%;
}

.nbl-about-eco-node.seller {
    top: 9%;
    right: 12%;
}

.nbl-about-eco-node.rider {
    bottom: 9%;
    left: 12%;
}

.nbl-about-eco-node.manager {
    bottom: 9%;
    right: 12%;
}

.nbl-about-eco-node.employee {
    left: 50%;
    bottom: 3%;

    transform: translateX(-50%);
}

.nbl-about-eco-node.employee:hover {
    transform:
        translateX(-50%)
        translateY(-7px)
        scale(1.03);
}


/* =========================================================
   VALUES
   ========================================================= */

.nbl-about-values {
    padding: 75px 0;
}

.nbl-about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}

.nbl-about-value-card {
    padding: 22px;

    border-radius: 21px;

    background: #fff;

    border: 1px solid var(--about-line);

    box-shadow:
        0 12px 30px rgba(10, 80, 105, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nbl-about-value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(10, 80, 105, 0.11);
}

.nbl-about-value-top {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}

.nbl-about-value-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: #ebfaff;

    color: var(--about-cyan-2);

    font-size: 19px;
}

.nbl-about-value-card h3 {
    margin: 0;

    font-size: 13px;

    font-weight: 900;

    color: var(--about-navy);
}

.nbl-about-value-card p {
    margin: 0;

    color: var(--about-text);

    font-size: 10px;

    font-weight: 600;

    line-height: 1.6;
}


/* =========================================================
   ASSAM / LOCAL ROOTS
   ========================================================= */

.nbl-about-assam {
    padding: 80px 0;
}

.nbl-about-assam-card {
    position: relative;

    min-height: 350px;

    border-radius: 31px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #effcff 55%,
            #dcf8ff 100%
        );

    border: 1px solid var(--about-line);

    box-shadow: var(--about-shadow-lg);

    display: grid;

    grid-template-columns: 46% 54%;

    align-items: center;
}


/* Assam visual */

.nbl-about-assam-art {
    position: relative;

    min-height: 350px;

    overflow: hidden;

    display: grid;

    place-items: center;
}


/* Assam abstract map */

.nbl-about-assam-map {
    position: relative;

    width: 230px;
    height: 260px;

    clip-path:
        polygon(
            44% 0,
            63% 7%,
            78% 19%,
            91% 26%,
            82% 39%,
            94% 51%,
            81% 61%,
            85% 75%,
            66% 84%,
            57% 100%,
            42% 89%,
            27% 91%,
            17% 76%,
            2% 68%,
            13% 54%,
            5% 42%,
            18% 34%,
            12% 21%,
            29% 17%
        );

    background:
        linear-gradient(
            145deg,
            #c5f5ff,
            #7de4f7
        );

    filter:
        drop-shadow(
            0 20px 25px rgba(8, 130, 170, 0.17)
        );

    opacity: 0.85;
}

.nbl-about-assam-map::after {
    content: "";

    position: absolute;

    inset: 20px;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.75);
}


/* Assam icon */

.nbl-about-assam-art i {
    position: absolute;

    color: var(--about-cyan-3);

    font-size: 45px;

    z-index: 3;
}


/* Assam copy */

.nbl-about-assam-copy {
    padding: 45px;
}

.nbl-about-assam-copy h2 {
    margin: 13px 0;

    font-family: Manrope, sans-serif;

    font-size: 37px;

    line-height: 1.08;

    letter-spacing: -1.4px;

    font-weight: 900;
}

.nbl-about-assam-copy h2 span {
    color: var(--about-cyan-2);
}

.nbl-about-assam-copy p {
    max-width: 520px;

    margin: 0 0 19px;

    color: var(--about-text);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.7;
}


/* Local badges */

.nbl-about-local-badges {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.nbl-about-local-badges span {
    padding: 8px 10px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid #cfeef5;

    color: #386078;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.nbl-about-final {
    padding: 75px 0 90px;
}

.nbl-about-final-card {
    position: relative;

    overflow: hidden;

    min-height: 260px;

    padding: 42px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(163, 241, 255, 0.28),
            transparent 35%
        ),
        linear-gradient(
            110deg,
            #0875bc,
            #07aeda 65%,
            #0a8dc5
        );

    color: #fff;

    box-shadow:
        0 25px 60px rgba(8, 125, 175, 0.22);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.nbl-about-final-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -170px;

    border-radius: 50%;

    border: 45px solid rgba(255, 255, 255, 0.08);
}

.nbl-about-final-card::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    left: 40%;
    bottom: -160px;

    border-radius: 50%;

    background: rgba(163, 241, 255, 0.12);

    filter: blur(8px);
}

.nbl-about-final-copy {
    position: relative;

    z-index: 2;
}

.nbl-about-final-copy .nbl-about-eyebrow {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.2);

    color: #e8fcff;
}

.nbl-about-final-copy h2 {
    margin: 13px 0 10px;

    font-family: Manrope, sans-serif;

    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -1.2px;

    font-weight: 900;
}

.nbl-about-final-copy p {
    max-width: 620px;

    margin: 0;

    color: #e9fbff;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.65;
}

.nbl-about-final-action {
    position: relative;

    z-index: 3;

    flex: 0 0 auto;
}


/* =========================================================
   REVEAL
   ========================================================= */

.nbl-about-reveal {
    opacity: 1;

    transform: none;

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.nbl-about-reveal.from-bottom {
    transform: translateY(20px);
}

.nbl-about-reveal.from-left {
    transform: translateX(-20px);
}

.nbl-about-reveal.from-right {
    transform: translateX(20px);
}

.nbl-about-reveal.is-visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes nblAboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


@keyframes nblAboutGlow {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.85;
    }

    50% {
        transform: scale(1.08);

        opacity: 1;
    }
}


@keyframes nblAboutOrbit {

    from {
        transform:
            rotateX(64deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateX(64deg)
            rotateZ(360deg);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nbl-about-hero-copy h1 {
        font-size: 45px;
    }

    .nbl-about-hero {
        min-height: 500px;
    }

    .nbl-about-hero-grid {
        min-height: 500px;
    }

    .nbl-about-visual {
        min-height: 440px;
    }

    .nbl-about-orb {
        width: 290px;
        height: 290px;
    }

    .nbl-about-orb-logo {
        width: 160px;
        height: 160px;
    }

    .nbl-about-orb-logo img {
        width: 125px;
        height: 125px;
    }

    .nbl-about-story-grid {
        gap: 25px;
    }

    .nbl-about-section-head h2,
    .nbl-about-story-copy h2 {
        font-size: 34px;
    }

    .nbl-about-assam-copy {
        padding: 35px;
    }

    .nbl-about-final-copy h2 {
        font-size: 30px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

    .nbl-about-hero {
        min-height: auto;

        background:
            radial-gradient(
                circle at 50% 58%,
                rgba(163, 241, 255, 0.62),
                rgba(229, 251, 255, 0.4) 25%,
                rgba(255, 255, 255, 0) 55%
            ),
            linear-gradient(
                180deg,
                #ffffff,
                #f2fcff
            );
    }

    .nbl-about-hero-grid {
        display: flex;

        flex-direction: column;

        min-height: auto;

        gap: 0;
    }

    .nbl-about-hero-copy {
        width: 100%;

        padding: 43px 0 10px;

        text-align: center;
    }

    .nbl-about-hero-copy h1 {
        max-width: 650px;

        margin: 15px auto;

        font-size: 40px;

        letter-spacing: -1.7px;
    }

    .nbl-about-hero-copy > p {
        margin-left: auto;
        margin-right: auto;

        font-size: 13px;
    }

    .nbl-about-hero-meta {
        justify-content: center;
    }

    .nbl-about-hero-buttons {
        justify-content: center;
    }

    .nbl-about-hero-buttons .nbl-btn {
        width: auto;
    }


    /* Hero visual */

    .nbl-about-visual {
        width: 100%;

        min-height: 430px;

        margin-top: -3px;
    }

    .nbl-about-orb {
        width: 285px;
        height: 285px;
    }

    .nbl-about-orb::before {
        width: 350px;
        height: 130px;
    }

    .nbl-about-orb::after {
        width: 390px;
        height: 190px;
    }

    .nbl-about-orb-logo {
        width: 155px;
        height: 155px;
    }

    .nbl-about-orb-logo img {
        width: 120px;
        height: 120px;
    }

    .nbl-about-float {
        min-width: 100px;

        padding: 9px;

        gap: 7px;
    }

    .nbl-about-float i {
        width: 30px;
        height: 30px;

        font-size: 13px;
    }

    .nbl-about-float strong {
        font-size: 9px;
    }

    .nbl-about-float small {
        font-size: 7px;
    }

    .nbl-about-float.one {
        left: 1%;
        top: 14%;
    }

    .nbl-about-float.two {
        right: 1%;
        top: 14%;
    }

    .nbl-about-float.three {
        left: 2%;
        bottom: 12%;
    }

    .nbl-about-float.four {
        right: 2%;
        bottom: 12%;
    }


    /* Sections */

    .nbl-about-section,
    .nbl-about-story,
    .nbl-about-beliefs,
    .nbl-about-ecosystem,
    .nbl-about-values,
    .nbl-about-assam {
        padding: 55px 0;
    }

    .nbl-about-section-head {
        margin-bottom: 30px;
    }

    .nbl-about-section-head h2 {
        font-size: 29px;

        letter-spacing: -1px;
    }

    .nbl-about-section-head p {
        font-size: 12px;
    }


    /* Story */

    .nbl-about-story-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .nbl-about-story-visual {
        min-height: 350px;
    }

    .nbl-about-store {
        width: 250px;
        height: 185px;
    }

    .nbl-about-store i {
        font-size: 58px;
    }

    .nbl-about-story-copy {
        padding-left: 0;
    }

    .nbl-about-story-copy h2 {
        font-size: 29px;
    }

    .nbl-about-story-copy > p {
        font-size: 12px;
    }

    .nbl-about-story-points {
        gap: 8px;
    }

    .nbl-about-story-point {
        padding: 12px;
    }


    /* Beliefs */

    .nbl-about-belief-grid {
        grid-template-columns: 1fr;
    }

    .nbl-about-belief-card {
        min-height: 0;

        padding: 22px;
    }

    .nbl-about-belief-card p {
        max-width: none;
    }


    /* Ecosystem */

    .nbl-about-ecosystem-card {
        min-height: 520px;

        border-radius: 25px;
    }

    .nbl-about-eco-center {
        width: 125px;
        height: 125px;
    }

    .nbl-about-eco-center img {
        width: 88px;
        height: 88px;
    }

    .nbl-about-eco-ring.r1 {
        width: 220px;
        height: 220px;
    }

    .nbl-about-eco-ring.r2 {
        width: 310px;
        height: 190px;
    }

    .nbl-about-eco-ring.r3 {
        width: 390px;
        height: 235px;
    }

    .nbl-about-eco-node {
        width: 105px;

        min-height: 84px;

        padding: 9px;
    }

    .nbl-about-eco-node i {
        width: 33px;
        height: 33px;

        margin-bottom: 5px;
    }

    .nbl-about-eco-node strong {
        font-size: 8px;
    }

    .nbl-about-eco-node span {
        font-size: 7px;
    }

    .nbl-about-eco-node.user {
        top: 10%;
        left: 4%;
    }

    .nbl-about-eco-node.seller {
        top: 10%;
        right: 4%;
    }

    .nbl-about-eco-node.rider {
        bottom: 11%;
        left: 4%;
    }

    .nbl-about-eco-node.manager {
        bottom: 11%;
        right: 4%;
    }

    .nbl-about-eco-node.employee {
        bottom: 2%;
    }


    /* Values */

    .nbl-about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .nbl-about-value-card {
        padding: 16px;
    }

    .nbl-about-value-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 8px;
    }


    /* Assam */

    .nbl-about-assam-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .nbl-about-assam-art {
        min-height: 270px;
    }

    .nbl-about-assam-copy {
        padding: 30px 24px 35px;
    }

    .nbl-about-assam-copy h2 {
        font-size: 29px;
    }

    .nbl-about-assam-copy p {
        font-size: 12px;
    }


    /* CTA */

    .nbl-about-final {
        padding: 55px 0 70px;
    }

    .nbl-about-final-card {
        min-height: auto;

        padding: 30px 24px;

        flex-direction: column;

        align-items: flex-start;

        border-radius: 25px;
    }

    .nbl-about-final-copy h2 {
        font-size: 27px;
    }

    .nbl-about-final-copy p {
        font-size: 11px;
    }

    .nbl-about-final-action {
        width: 100%;
    }

    .nbl-about-final-action .nbl-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .nbl-about-hero-copy {
        padding-top: 34px;
    }

    .nbl-about-hero-copy h1 {
        font-size: 33px;

        letter-spacing: -1.3px;
    }

    .nbl-about-hero-copy > p {
        font-size: 12px;

        line-height: 1.65;
    }

    .nbl-about-eyebrow {
        font-size: 9px;

        padding: 6px 10px;
    }

    .nbl-about-hero-meta span {
        font-size: 8px;

        padding: 7px 8px;
    }

    .nbl-about-hero-buttons {
        width: 100%;

        max-width: 340px;

        margin: auto;
    }

    .nbl-about-hero-buttons .nbl-btn {
        width: 100%;
    }


    /* Hero */

    .nbl-about-visual {
        min-height: 355px;
    }

    .nbl-about-orb {
        width: 220px;
        height: 220px;
    }

    .nbl-about-orb::before {
        width: 285px;
        height: 105px;
    }

    .nbl-about-orb::after {
        width: 320px;
        height: 155px;
    }

    .nbl-about-orb-logo {
        width: 125px;
        height: 125px;
    }

    .nbl-about-orb-logo img {
        width: 98px;
        height: 98px;
    }

    .nbl-about-float {
        min-width: 87px;

        padding: 7px;

        border-radius: 12px;
    }

    .nbl-about-float i {
        width: 26px;
        height: 26px;

        border-radius: 8px;

        font-size: 11px;
    }

    .nbl-about-float strong {
        font-size: 7px;
    }

    .nbl-about-float small {
        font-size: 6px;
    }

    .nbl-about-float.one {
        left: 0;
        top: 8%;
    }

    .nbl-about-float.two {
        right: 0;
        top: 8%;
    }

    .nbl-about-float.three {
        left: 0;
        bottom: 8%;
    }

    .nbl-about-float.four {
        right: 0;
        bottom: 8%;
    }


    /* Headings */

    .nbl-about-section-head h2 {
        font-size: 26px;
    }

    .nbl-about-section-head p {
        font-size: 11px;
    }


    /* Story */

    .nbl-about-story-visual {
        min-height: 290px;

        border-radius: 23px;
    }

    .nbl-about-store {
        width: 205px;
        height: 150px;

        border-radius: 21px;
    }

    .nbl-about-store i {
        font-size: 45px;
    }

    .nbl-about-store strong {
        font-size: 10px;
    }

    .nbl-about-store small {
        font-size: 7px;
    }

    .nbl-about-year {
        left: 13px;
        bottom: 13px;

        padding: 10px 12px;

        border-radius: 12px;
    }

    .nbl-about-year strong {
        font-size: 16px;
    }

    .nbl-about-year span {
        font-size: 7px;
    }

    .nbl-about-story-copy h2 {
        font-size: 26px;
    }

    .nbl-about-story-copy > p {
        font-size: 11px;
    }

    .nbl-about-story-points {
        grid-template-columns: 1fr;
    }


    /* Beliefs */

    .nbl-about-belief-card {
        padding: 18px;

        border-radius: 19px;
    }

    .nbl-about-belief-icon {
        width: 52px;
        height: 52px;

        border-radius: 16px;

        font-size: 22px;
    }

    .nbl-about-belief-card h3 {
        font-size: 15px;
    }

    .nbl-about-belief-card p {
        font-size: 10px;
    }


    /* Ecosystem */

    .nbl-about-ecosystem-card {
        min-height: 470px;
    }

    .nbl-about-eco-center {
        width: 105px;
        height: 105px;
    }

    .nbl-about-eco-center img {
        width: 74px;
        height: 74px;
    }

    .nbl-about-eco-ring.r1 {
        width: 180px;
        height: 180px;
    }

    .nbl-about-eco-ring.r2 {
        width: 250px;
        height: 155px;
    }

    .nbl-about-eco-ring.r3 {
        width: 320px;
        height: 190px;
    }

    .nbl-about-eco-node {
        width: 88px;

        min-height: 73px;

        border-radius: 14px;
    }

    .nbl-about-eco-node i {
        width: 28px;
        height: 28px;

        font-size: 12px;
    }

    .nbl-about-eco-node strong {
        font-size: 7px;
    }

    .nbl-about-eco-node span {
        font-size: 6px;
    }

    .nbl-about-eco-node.user {
        left: 2%;
        top: 7%;
    }

    .nbl-about-eco-node.seller {
        right: 2%;
        top: 7%;
    }

    .nbl-about-eco-node.rider {
        left: 2%;
        bottom: 11%;
    }

    .nbl-about-eco-node.manager {
        right: 2%;
        bottom: 11%;
    }


    /* Values */

    .nbl-about-values-grid {
        grid-template-columns: 1fr;
    }

    .nbl-about-value-card {
        padding: 15px;
    }

    .nbl-about-value-top {
        flex-direction: row;

        align-items: center;
    }


    /* Assam */

    .nbl-about-assam-art {
        min-height: 220px;
    }

    .nbl-about-assam-map {
        width: 170px;
        height: 190px;
    }

    .nbl-about-assam-copy {
        padding: 25px 18px 28px;
    }

    .nbl-about-assam-copy h2 {
        font-size: 25px;
    }

    .nbl-about-assam-copy p {
        font-size: 10px;
    }

    .nbl-about-local-badges span {
        font-size: 7px;
    }


    /* CTA */

    .nbl-about-final-card {
        padding: 25px 18px;
    }

    .nbl-about-final-copy h2 {
        font-size: 24px;
    }

    .nbl-about-final-copy p {
        font-size: 10px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nbl-about-page *,
    .nbl-about-page *::before,
    .nbl-about-page *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

    .nbl-about-reveal,
    .nbl-about-reveal.from-bottom,
    .nbl-about-reveal.from-left,
    .nbl-about-reveal.from-right {
        opacity: 1;

        transform: none;
    }
}