:root {
    --blue-950: #03152f;
    --blue-900: #06245a;
    --blue-800: #07367f;
    --blue-700: #0757b9;
    --blue-600: #0876dc;
    --blue-500: #1295ee;

    --yellow: #ffd21c;
    --yellow-light: #ffe76a;

    --white: #ffffff;
    --off-white: #f7faff;
    --text: #15233a;
    --muted: #65738a;
    --line: rgba(8, 76, 160, 0.12);

    --shadow: 0 25px 70px rgba(3, 34, 76, 0.12);

    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --container: 1240px;
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--blue-950);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.loader-logo span {
    color: var(--yellow);
}

.loader-line {
    width: 90px;
    height: 3px;
    margin-top: 18px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--yellow),
        transparent
    );
    animation: loaderPulse 1.2s infinite;
}

@keyframes loaderPulse {
    0% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.site-header.scrolled {
    background: rgba(3, 21, 47, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.header-inner {
    width: min(var(--container), calc(100% - 48px));
    height: 92px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 2;
    width: 88px;
}

.brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    position: relative;
    padding: 12px 18px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;

    border-radius: 100px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;

    height: 2px;
    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);

    cursor: pointer;

    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;

    background: white;

    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}



.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../assets/seebanner.png")
        center center / cover no-repeat;

    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(20, 144, 239, 0.25),
            transparent 35%
        ),
        linear-gradient(
            90deg,
            rgba(3, 21, 47, 0.96) 0%,
            rgba(3, 21, 47, 0.78) 43%,
            rgba(3, 21, 47, 0.25) 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;

    height: 150px;

    background: linear-gradient(
        to top,
        var(--white),
        transparent
    );
}

.hero-content {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;

    position: relative;
    z-index: 2;

    padding-top: 90px;

    animation: heroReveal 1s 0.4s both;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    color: var(--yellow);
}

.eyebrow {
    display: inline-block;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;

    color: var(--blue-600);
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;

    margin-top: 18px;

    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--yellow);
}

.hero-content > p {
    max-width: 610px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 38px;
}

.btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border-radius: 100px;

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    color: var(--blue-950);
    background: var(--yellow);

    box-shadow: 0 14px 35px rgba(255, 210, 28, 0.2);
}

.btn-primary:hover {
    background: var(--yellow-light);
    box-shadow: 0 20px 45px rgba(255, 210, 28, 0.3);
}

.btn-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
    position: absolute;
    z-index: 3;

    right: 45px;
    bottom: 50px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 65px;

    background: linear-gradient(
        to bottom,
        var(--yellow),
        transparent
    );

    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.content-section {
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}

.section-grid {
    width: min(var(--container), 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 100px;
}

.section-grid.reverse {
    grid-template-columns: 0.85fr 1fr;
}

.section-copy {
    position: relative;
    z-index: 2;
}

.section-copy h2 {
    max-width: 720px;

    margin-top: 17px;

    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.section-copy h2 span {
    color: var(--blue-600);
}

.heading-line {
    width: 70px;
    height: 4px;

    margin: 27px 0;

    background: var(--yellow);
    border-radius: 100px;

    position: relative;
    overflow: hidden;
}

.heading-line::after {
    content: "";
    position: absolute;
    inset: 0;

    background: white;

    transform: translateX(-100%);
    animation: headingSweep 3s infinite;
}

@keyframes headingSweep {
    0%,
    35% {
        transform: translateX(-100%);
    }

    55% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.section-copy p {
    max-width: 700px;

    margin-top: 17px;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.9;
}

.section-copy p.lead {
    color: var(--text);

    font-size: 1.2rem;
    line-height: 1.75;
    font-weight: 500;
}

.section-copy strong {
    color: var(--blue-700);
}

.section-visual {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.visual-card {
    width: min(100%, 460px);
    aspect-ratio: 1 / 1;

    border-radius: 42px;

    position: relative;
    overflow: hidden;

    box-shadow: var(--shadow);
}

.blue-card {
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(41, 169, 255, 0.8),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--blue-950),
            var(--blue-700)
        );

    transform: rotate(2deg);

    animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(-1deg) translateY(-13px);
    }
}

.blue-card::before {
    content: "";
    position: absolute;
    inset: 20px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
}

.visual-icon {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 170px;
    height: 170px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(15px);

    box-shadow:
        0 0 0 20px rgba(255, 255, 255, 0.03),
        0 0 0 50px rgba(255, 255, 255, 0.02);
}

.visual-icon span {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.visual-caption {
    position: absolute;
    bottom: 35px;
    left: 38px;

    display: flex;
    flex-direction: column;
}

.visual-caption small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
}

.visual-caption strong {
    margin-top: 5px;

    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.floating-orb {
    position: absolute;

    width: 20px;
    height: 20px;

    border-radius: 50%;
    background: var(--yellow);

    box-shadow: 0 0 35px rgba(255, 210, 28, 0.8);
}

.orb-one {
    top: 22%;
    right: 18%;

    animation: orbFloat 4s infinite ease-in-out;
}

.orb-two {
    left: 17%;
    bottom: 28%;

    width: 11px;
    height: 11px;

    animation: orbFloat 5s 1s infinite ease-in-out;
}

@keyframes orbFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.vrl-image-wrap {
    position: absolute;
    z-index: 2;

    width: 68%;
    height: 68%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(-3deg);

    border-radius: 28px;

    overflow: hidden;

    border: 6px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(20, 149, 238, 0.2);

    animation: vrlFloat 6s ease-in-out infinite;
}

.vrl-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.visual-card:hover .vrl-image {
    transform: scale(1.06);
}

@keyframes vrlFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-3deg);
    }

    50% {
        transform: translate(-50%, calc(-50% - 10px)) rotate(1deg);
    }
}

.visual-grid {
    position: absolute;
    inset: -40%;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );

    background-size: 38px 38px;

    transform: rotate(15deg);

    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
    from {
        transform: rotate(15deg) translate(0, 0);
    }

    to {
        transform: rotate(15deg) translate(38px, 38px);
    }
}


.floating-orb {
    z-index: 5;
}

.orb-three {
    width: 8px;
    height: 8px;

    top: 15%;
    left: 30%;

    background: #4fc3ff;

    animation:
        orbFloat 4.5s 0.5s infinite ease-in-out,
        orbGlow 2s infinite alternate;
}

.orb-four {
    width: 14px;
    height: 14px;

    right: 28%;
    bottom: 17%;

    background: var(--yellow);

    animation:
        orbFloat 5.5s 1.5s infinite ease-in-out,
        orbGlow 2.5s infinite alternate;
}

@keyframes orbGlow {
    from {
        box-shadow: 0 0 5px currentColor;
    }

    to {
        box-shadow: 0 0 28px currentColor;
    }
}

.floating-square {
    position: absolute;
    z-index: 4;

    width: 13px;
    height: 13px;

    border: 2px solid rgba(255, 255, 255, 0.45);

    transform: rotate(45deg);
}

.square-one {
    top: 31%;
    right: 10%;

    animation: squareFloat 4s ease-in-out infinite;
}

.square-two {
    left: 11%;
    bottom: 18%;

    width: 8px;
    height: 8px;

    border-color: var(--yellow);

    animation: squareFloat 5s 1s ease-in-out infinite reverse;
}

@keyframes squareFloat {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-15px) rotate(135deg);
    }
}


.visual-tag {
    position: absolute;
    z-index: 7;

    padding: 8px 11px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.13em;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;

    background: rgba(3, 21, 47, 0.65);

    backdrop-filter: blur(10px);
}

.visual-tag span {
    color: var(--yellow);
}

.tag-one {
    top: 19%;
    left: 8%;

    animation: tagFloat 4s ease-in-out infinite;
}

.tag-two {
    right: 7%;
    bottom: 29%;

    animation: tagFloat 5s 1s ease-in-out infinite reverse;
}

@keyframes tagFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


.visual-icon {
    z-index: 6;

    width: 105px;
    height: 105px;

    background: rgba(3, 21, 47, 0.45);

    backdrop-filter: blur(10px);
}

.visual-icon span {
    font-size: 2rem;
}


.bookshop-logo-wrap {
    position: absolute;
    z-index: 5;

    width: 150px;
    height: auto;

    top: 17%;
    right: 14%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;
    background: transparent;

    box-shadow:
        0 25px 60px rgba(3, 35, 78, 0.22),
        0 0 45px rgba(255, 210, 28, 0.12);

    animation: bookshopLogoFloat 5s ease-in-out infinite;
}

.bookshop-logo {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    filter: none;
}

@keyframes bookshopLogoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.supply-image {
    position: absolute;
    z-index: 3;

    overflow: hidden;

    border: 6px solid white;
    border-radius: 18px;

    background: white;

    box-shadow:
        0 25px 50px rgba(3, 35, 78, 0.18);
}

.supply-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.supply-image:hover img {
    transform: scale(1.08);
}

.supply-one {
    width: 235px;
    height: auto;

    left: -1%;
    top: 10%;

    transform: rotate(-10deg);

    animation: supplyOne 6s ease-in-out infinite;
}

.supply-two {
    width: 235px;
    height: auto

    right: -2%;
    bottom: 9%;

    transform: rotate(9deg);

    animation: supplyTwo 6s 0.7s ease-in-out infinite;
}


@keyframes supplyOne {
    0%,
    100% {
        transform: rotate(-10deg) translateY(0);
    }

    50% {
        transform: rotate(-6deg) translateY(-12px);
    }
}

@keyframes supplyTwo {
    0%,
    100% {
        transform: rotate(9deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-12px);
    }
}

.social-links a {
    padding: 0;
}

.social-links svg {
    width: 17px;
    height: 17px;

    fill: currentColor;

    display: block;
}

.social-links svg rect,
.social-links svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-links svg .youtube-play {
    fill: var(--blue-950);
    stroke: none;
}

.social-links a:hover svg .youtube-play {
    fill: var(--blue-950);
}


.stat-row {
    display: flex;
    gap: 38px;

    margin-top: 40px;
    padding-top: 28px;

    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat strong {
    color: var(--blue-700);

    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat span {
    color: var(--muted);

    font-size: 0.75rem;
    line-height: 1.4;
}


.dark-section {
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(9, 110, 225, 0.2),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #021128,
            #062c68
        );

    color: white;
}

.dark-section .section-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.dark-section .section-copy p.lead {
    color: rgba(255, 255, 255, 0.92);
}

.gold-eyebrow {
    color: var(--yellow);
}

.gold-line {
    background: var(--yellow);
}

.dark-section .section-copy h2 span {
    color: var(--yellow);
}

.logo-stage {
    width: min(100%, 470px);
    aspect-ratio: 1;

    border-radius: 50%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.015) 55%,
            transparent 56%
        );

    animation: stageFloat 7s ease-in-out infinite;
}

@keyframes stageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.stage-ring {
    position: absolute;
    border-radius: 50%;

    border: 1px solid rgba(255, 210, 28, 0.3);
}

.ring-one {
    inset: 4%;
    animation: rotateRing 25s linear infinite;
}

.ring-two {
    inset: 14%;
    border-color: rgba(40, 159, 255, 0.25);

    animation: rotateRing 18s linear infinite reverse;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.program-logo {
    position: relative;
    z-index: 2;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, 0.25));
}

.sgvs-logo {
    width: 58%;
    max-height: 58%;
}

.stage-badge {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 12%;

    padding: 12px 17px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stage-badge span {
    color: var(--yellow);
    font-family: var(--font-heading);
    font-weight: 800;
}

.stage-badge small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.52rem;
    letter-spacing: 0.12em;
}

.quote-box {
    margin-top: 35px;
    padding: 22px 25px;

    position: relative;

    border-left: 3px solid var(--yellow);

    background: rgba(255, 255, 255, 0.045);
    border-radius: 0 16px 16px 0;
}

.quote-box .quote-mark {
    position: absolute;
    top: -14px;
    left: 18px;

    color: var(--yellow);

    font-family: Georgia, serif;
    font-size: 3.5rem;
    opacity: 0.7;
}

.quote-box p {
    margin: 0;

    color: white !important;

    font-family: var(--font-heading);
    font-size: 1.2rem !important;
    font-weight: 700;
}


.bookshop-stage {
    width: min(100%, 500px);
    aspect-ratio: 1;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 210, 28, 0.18),
            transparent 52%
        );
}


.buyback-badge {
    position: absolute;
    z-index: 7;

    top: 12%;
    right: 2%;

    width: 92px;
    height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);
    color: var(--blue-950);

    box-shadow: 0 20px 50px rgba(255, 190, 0, 0.3);

    transform: rotate(10deg);
}

.buyback-badge span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.buyback-badge strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-top: 32px;

    color: var(--blue-700);

    font-weight: 800;
}

.text-link span {
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translate(4px, -4px);
}

.ecosystem-section {
    position: relative;
    padding: 150px 24px;

    overflow: hidden;

    background: var(--blue-950);
    color: white;
}

.ecosystem-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(8, 116, 220, 0.35),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 210, 28, 0.12),
            transparent 25%
        );
}

.ecosystem-background::before,
.ecosystem-background::after {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ecosystem-background::before {
    left: -300px;
    top: -300px;
}

.ecosystem-background::after {
    right: -300px;
    bottom: -300px;
}

.ecosystem-content {
    width: min(950px, 100%);
    margin: auto;

    position: relative;
    z-index: 2;

    text-align: center;
}

.ecosystem-content h2 {
    margin-top: 18px;

    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.ecosystem-content h2 span {
    display: block;
    color: var(--yellow);
}

.ecosystem-content > p {
    max-width: 760px;
    margin: 27px auto 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1rem;
    line-height: 1.9;
}

.ecosystem-content .closing-statement {
    color: white;
    font-size: 1.3rem;
    line-height: 1.7;
}

.ecosystem-content .closing-statement strong {
    color: white;
}

.ecosystem-pillars {
    margin-top: 65px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pillar {
    padding: 27px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.04);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 210, 28, 0.35);
}

.pillar > span {
    color: var(--yellow);

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.pillar strong {
    margin-top: 12px;

    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.pillar small {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.7rem;
}

.cta-section {
    padding: 120px 24px;

    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #ffffff
        );
}

.cta-inner {
    width: min(850px, 100%);
    margin: auto;

    text-align: center;
}

.cta-inner h2 {
    margin-top: 15px;

    color: var(--blue-950);

    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.cta-inner h2 span {
    display: block;
    color: var(--blue-600);
}

.cta-inner p {
    max-width: 620px;
    margin: 25px auto 0;

    color: var(--muted);

    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-inner .btn {
    margin-top: 32px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: #020e20;
}

.footer-top {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;

    padding: 75px 0;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    width: 76px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 100%;
}

.footer-column h3 {
    color: white;

    font-family: var(--font-heading);
    font-size: 1rem;
}

.footer-column h4 {
    margin-bottom: 22px;

    color: white;

    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-column > p,
.footer-column > a {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.85rem;
    line-height: 1.7;

    transition: color 0.25s ease;
}

.footer-column > a:hover {
    color: var(--yellow);
}

.footer-column .copyright {
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.32);
    font-size: 0.7rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--blue-950);
    background: var(--yellow);

    border-radius: 50%;

    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 9px;

    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: white;

    font-family: var(--font-heading);
    font-size: 0.85rem;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: var(--blue-950);
    background: var(--yellow);
    transform: translateY(-3px);
}

.development-credit {
    display: inline-flex !important;
    align-items: center;

    gap: 9px;

    margin-top: 27px !important;

    color: rgba(255, 255, 255, 0.55) !important;

    font-size: 0.72rem !important;
    line-height: 1.4;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.development-credit img {
    width: 34px;
    height: 34px;

    object-fit: contain;

    flex: 0 0 auto;

    opacity: 0.85;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.development-credit span {
    white-space: nowrap;
}

.development-credit:hover {
    color: white !important;
    transform: translateY(-2px);
}

.development-credit:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.more-title {
    margin-top: 30px !important;

    color: rgba(255, 255, 255, 0.35) !important;

    font-size: 0.68rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ships-logo {
    margin-top: 13px !important;

    display: flex;
    align-items: center;
    gap: 13px;
}

.ships-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.ships-logo span {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;

    padding: 23px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.3);

    font-size: 0.7rem;
}

.footer-bottom span {
    color: var(--yellow);
    font-weight: 800;
}



.reveal {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {

    .main-nav a {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .section-grid,
    .section-grid.reverse {
        gap: 55px;
    }

    .footer-top {
        gap: 40px;
    }
}


@media (max-width: 800px) {

    .header-inner {
        height: 78px;
    }

    .brand {
        width: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 0;

        padding: 120px 30px 40px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;

        background:
            linear-gradient(
                135deg,
                rgba(3, 21, 47, 0.99),
                rgba(4, 46, 105, 0.98)
            );

        opacity: 0;
        visibility: hidden;

        transform: translateY(-20px);

        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 17px 20px;

        font-size: 1.1rem;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-scroll {
        display: none;
    }

    .content-section {
        padding: 90px 24px;
    }

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .section-grid.reverse .section-visual {
        order: -1;
    }

    .section-visual {
        min-height: auto;
    }

    .visual-card,
    .logo-stage,
    .bookshop-stage {
        width: min(100%, 430px);
    }

    .stat-row {
        gap: 25px;
    }

    .ecosystem-section {
        padding: 100px 24px;
    }

    .ecosystem-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}


@media (max-width: 550px) {

    .header-inner,
    .hero-content,
    .footer-top,
    .footer-bottom {
        width: min(100% - 32px, var(--container));
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
    }

    .hero {
        min-height: 780px;
    }

    .content-section {
        padding: 75px 16px;
    }

    .section-copy h2 {
        font-size: 2.55rem;
    }

    .section-copy p.lead {
        font-size: 1.05rem;
    }

    .stat-row {
        gap: 18px;
        justify-content: space-between;
    }

    .stat strong {
        font-size: 1.25rem;
    }

    .stat span {
        font-size: 0.65rem;
    }

    .ecosystem-pillars {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 85px 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 550px) {

    .vrl-image-wrap {
        width: 66%;
        height: 66%;
    }

    .bookshop-logo-wrap {
        width: 160px;
        height: 160px;
    }

    .supply-one,
.supply-two {
    width: 170px;
    height: 125px;
}

.supply-one {
    left: -5px;
}

.supply-two {
    right: -5px;
}

.visual-tag {
        display: none;
    }
}


.phone-link,
.whatsapp-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--blue-950);
    background: var(--yellow);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-icon svg {
    width: 17px;
    height: 17px;

    display: block;

    fill: currentColor;
}

.phone-link:hover .contact-icon,
.whatsapp-link:hover .contact-icon {
    transform: translateY(-2px) scale(1.05);
}

.whatsapp-link {
    margin-top: 12px !important;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
}

.whatsapp-link:hover .whatsapp-icon {
    background: #20bd5b;
}


.reggaepixel-logo {
    display: flex;

    width: 100%;

    margin: 0 12px auto;

    justify-content: center;
    align-items: center;

    opacity: 0.75;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.reggaepixel-logo img {
    width: 72px;
    height: auto;

    max-height: 32px;

    object-fit: contain;
}

.reggaepixel-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}