@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

section {
    padding: 5vw 0;
}

h2 {
    font-size: 2vw;
}

/* Banner Section */
#banner-sec {
    background-color: #161E35;
    padding: 10vw 0 0 0;
    height: 32.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: start;
    overflow: hidden;
}

#banner-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(42, 198, 209, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 198, 209, 0.06) 1px, transparent 1px);
    background-size: 4vw 4vw;
    pointer-events: none;
}

#banner-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
}

/* Two-column hero grid */
#banner-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4vw;
    align-items: center;
    width: 100%;
}

/* Left column */
#banner-hero-left {
    position: relative;
    z-index: 2;
    padding-left: 3vw;
}

/* Gradient streams */
#banner-streams {
    position: absolute;
    top: 0;
    left: -20%;
    width: 120%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.banner-stream {
    position: absolute;
    border-radius: 50%;
    filter: blur(8vw);
    opacity: 0.5;
}

.banner-stream-blue {
    width: 24vw;
    height: 24vw;
    background: #0844BC;
    top: 5%;
    left: 0;
}

.banner-stream-cyan {
    width: 22vw;
    height: 22vw;
    background: #2AC6D1;
    top: 35%;
    left: -5%;
}

.banner-stream-violet {
    width: 25vw;
    height: 25vw;
    background: #5523B7;
    bottom: 5%;
    left: 5%;
}

/* Content — left aligned */
#banner-content-cnt {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: white;
}

#banner-tag {
    display: inline-block;
    border: 0.1vw solid #2ac6d1;
    color: #2ac6d1;
    padding: 0.4vw 1.5vw;
    font-size: 0.9vw;
    letter-spacing: 0.2vw;
    text-transform: uppercase;
    margin: 0 0 2vw 0;
    border-radius: 2vw;
}

#banner-content-cnt > h1 {
    margin: 0;
    font-size: 3.5vw;
    line-height: 4.5vw;
}

#banner-content-cnt > p {
    font-size: 1.1vw;
    margin-top: 1.1vw;
    opacity: 0.85;
}

/* Banner Topics */
#banner-topics {
    display: flex;
    flex-direction: row;
    gap: 0.75vw;
    margin-top: 2vw;
}

.banner-topic {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    background-color: rgba(255, 255, 255, 0.04);
    border: 0.08vw solid rgba(255, 255, 255, 0.08);
    padding: 0.8vw 1.2vw;
    border-radius: 1vw;
    font-size: 0.95vw;
    color: white;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-topic:hover {
    background-color: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
}


.banner-topic-num {
    width: 1.8vw;
    height: 1.8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85vw;
    font-weight: 700;
    flex-shrink: 0;
}

#banner-foundation {
    margin-top: 2vw;
    font-size: 1.05vw;
    opacity: 1;
    padding-top: 0.75vw;
    border-top: 0.08vw solid rgba(255, 255, 255, 0.1);
}

/* Right column */
#banner-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22.5vw;
}

/* Dot grid accents */
.banner-dots {
    position: absolute;
    background-image: radial-gradient(rgba(42, 198, 209, 0.5) 2px, transparent 2px);
    background-size: 1.3vw 1.3vw;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.banner-dots-1 {
    width: 12vw;
    height: 12vw;
    top: -10%;
    right: -5%;
}

.banner-dots-2 {
    width: 8vw;
    height: 8vw;
    bottom: 10%;
    right: 0;
    background-image: radial-gradient(rgba(85, 35, 183, 0.5) 2px, transparent 2px);
}

/* Convergence visual */
#banner-convergence-visual {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 150%;
    height: 100%;
}

#banner-convergence-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Animated SVG line drawing */
.conv-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2.5s ease-out forwards;
}

.conv-line-blue   { animation-delay: 0.2s; }
.conv-line-cyan   { animation-delay: 0.5s; }
.conv-line-violet { animation-delay: 0.8s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Convergence point container */
#banner-convergence-point {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28vw;
    height: 28vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Glow */
#banner-convergence-glow {
    position: absolute;
    width: 26vw;
    height: 26vw;
    background: radial-gradient(circle, rgba(42, 198, 209, 0.3) 0%, rgba(85, 35, 183, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.2); opacity: 1; }
}

/* Starburst */
#banner-convergence-starburst {
    position: relative;
    width: 14vw;
    height: 14vw;
    animation: starRotate 60s linear infinite;
}

#banner-convergence-starburst svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 1.5vw rgba(42, 198, 209, 0.5));
}

@keyframes starRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Core Problem Section */
#core-problem-video-sec {
    padding-bottom: 0;
}

#core-problem-sec {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

#core-problem-cnt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4vw;
}

#core-problem-cnt > div:first-child {
    width: 60%;
}

#core-problem-cnt h1 {
    margin-top: 0;
}


#core-problem-video {
    position: relative;
    padding: 56.25% 0 0 0;
    border-radius: 1vw;
    overflow: hidden;
}

#core-problem-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1vw;
}

#metaphor-box {
    width: 50%;
}

#metaphor-box img {
    width: 100%;
    display: block;
}

/* The Cycle Section */
#cycle-sec {
    background: #ffffff;
}

#cycle-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#cycle-cnt > p {
    width: 60%;
    margin-bottom: 3vw;
}

#cycle-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    width: 100%;
    position: relative;
    align-items: stretch;
}

.cycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vw 1.5vw;
    background-color: #F8FAFC;
    border-radius: 0.5vw;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cycle-step:hover {
    transform: translateY(-0.3vw);
    box-shadow: 0 0.5vw 1.5vw rgba(26, 39, 68, 0.12);
}

.cycle-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2.3vw;
    top: 50%;
    transform: translateY(-50%);
    color: #2ac6d1;
    font-size: 1.8vw;
    font-weight: 300;
    z-index: 1;
}

.cycle-step-number {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 700;
    margin-bottom: 1vw;
}

.cycle-step h3 {
    margin: 0.5vw 0;
    font-size: 1.4vw;
}

.cycle-step p {
    font-size: 1.1vw;
}

#cycle-note {
    margin-top: 3vw;
    font-size: 1.2vw;
    color: #5523b7;
}

/* KYC Connects Section */
#kyc-connects-sec {
    background: linear-gradient(180deg, #DBEAFE 0%, #FFFFFF 100%);
}

#kyc-connects-cnt {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

#kyc-themes-diagram {
    width: 80%;
    margin-top: 2vw;
    display: block;
}

/* Theme Labels */
.theme-label {
    display: inline-block;
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08vw;
    margin: 0 0 0.8vw 0;
    padding: 0.3vw 1vw;
    border-radius: 5vw;
}

.theme-label.magenta {
    background-color: rgba(201, 35, 156, 0.1);
    color: #c9239c;
}

.theme-label.blue {
    background-color: rgba(8, 68, 188, 0.1);
    color: #0844bc;
}

.theme-label.violet {
    background-color: rgba(85, 35, 183, 0.18);
    color: #5523b7;
}

#kyc-ai-sec .theme-label.violet {
    background-color: rgba(85, 35, 183, 0.3);
    color: #ffffff;
}

.theme-label.cyan {
    background-color: rgba(42, 198, 209, 0.1);
    color: #2ac6d1;
}

.theme-subtitle {
    font-weight: 300;
    font-size: 1.6vw;
    margin-left: 0.5vw;
}

/* KYC → AI Section */
#kyc-ai-sec {
    background-color: #1A2744;
    color: white;
}

#kyc-ai-cnt {
    display: flex;
    gap: 4vw;
    align-items: stretch;
}

#kyc-ai-cnt > div:first-child {
    width: 60%;
}

#ai-needs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vw;
    margin-top: 1.5vw;
}

.ai-need-item {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
    padding: 1.5vw;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.5vw;
    position: relative;
}


.ai-need-icon {
    font-size: 2vw;
    line-height: 1;
    flex-shrink: 0;
    color: #2ac6d1;
}

.ai-need-item p {
    margin: 0;
    font-size: 1.1vw;
}

#ai-insight-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    position: relative;
    border: 0.15vw solid rgba(85, 35, 183, 0.5);
    border-radius: 0.5vw;
    padding: 2.5vw;
    background-color: #2d2665;
}

#ai-insight-box p {
    margin: 0.7vw 0;
}

#ai-insight-box em {
    display: block;
    padding: 1vw;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5vw;
    margin: 1vw 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* KYC → Affordability Section */
#kyc-afford-cnt {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
    align-items: center;
}

#kyc-afford-cnt > div:first-child {
    width: 60%;
}

#afford-options {
    display: flex;
    flex-direction: row;
    gap: 1vw;
    margin: 1.5vw 0;
}

#afford-options > div {
    background-color: #F8FAFC;
    padding: 1vw 1.25vw;
    border-radius: 1vw;
    position: relative;
}

#afford-options > div span {
    font-size: 1.1vw;
    font-weight: 700;
    color: #0844bc;
}

#afford-options > div p {
    margin: 0.5vw 0 0 0;
    font-size: 0.95vw;
}

#afford-shift-cnt {
    width: 40%;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 2.5vw;
    border-radius: 0.5vw;
    border: 0.15vw solid #0844bc;
    position: relative;
}

#afford-shift-cnt h2 {
    margin-top: 0;
    color: #0844bc;
}

.stat-highlight {
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
    background-color: #0844bc;
    padding: 0.1em 0.5em;
    border-radius: 0.3em;
}

#stat-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    margin-top: 2vw;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1vw 1.5vw;
    background-color: #ffffff;
    border-radius: 0.8vw;
    box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5vw;
    font-weight: 700;
    color: #0844bc;
    line-height: 1;
    margin-bottom: 0.4vw;
}

.stat-label {
    font-size: 0.5vw;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
    color: #64748b;
    font-weight: 600;
}

.stat-divider {
    font-size: 1.5vw;
    font-weight: 300;
    color: #64748b;
    margin: 0 0.2vw;
}

.stat-result {
    background-color: #0844bc;
    border-radius: 0.8vw;
    text-align: center;
    padding: 1vw 1.5vw;
    box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
}

.stat-result .stat-number {
    font-size: 2.5vw;
    color: #ffffff;
}

.stat-result .stat-label {
    color: rgba(255,255,255,0.85);
}

/* What You Need to Know Section */
#need-to-know-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#need-to-know-cnt > h2 {
    text-align: center;
    margin-bottom: 2vw;
    margin-top: 0;
    font-size: 2vw;
}

#know-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    width: 100%;
    margin-bottom: 4vw;
}

.know-item {
    display: flex;
    gap: 1vw;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5vw;
    border-radius: 0.5vw;
    align-items: flex-start;
}

.know-icon {
    font-size: 2vw;
    line-height: 1;
    flex-shrink: 0;
    color: white;
    opacity: 0.8;
}

.know-item > div {
    flex: 1;
}

.know-item p {
    margin: 0;
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

#enables-cnt {
    width: 100%;
}

#enables-callout {
    background-color: #ffffff;
    padding: 3vw;
    border-radius: 0.5vw;
    position: relative;
}

#enables-callout h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.5vw;
    font-size: 1.8vw;
    color: #0844bc;
}

#enables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.enable-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1vw;
}

.enable-number {
    width: 2vw;
    height: 2vw;
    background-color: #0844bc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9vw;
    font-weight: 700;
    flex-shrink: 0;
}

.enable-item p {
    margin: 0;
    color: #1A2744;
}

/* Know item h4 */
.know-item h4 {
    font-size: 1.1vw;
    font-weight: 600;
    margin: 0 0 0.4vw 0;
    color: white;
}

/* KYC → C&I Experiences Section */
#kyc-ci-sec {
    background-color: #F8FAFC;
}

#kyc-ci-cnt {
    display: flex;
    flex-direction: column;
}

#kyc-ci-cnt > div:first-child {
    width: 80%;
}

#ci-comparison {
    display: flex;
    gap: 2vw;
    margin: 3vw 0;
}

#without-kyc, #with-kyc {
    flex: 1;
    padding: 2.5vw;
    border-radius: 0.5vw;
}

#without-kyc {
    background-color: #ffffff;
    border: 0.15vw solid #E2E8F0;
}

#without-kyc h2,
#with-kyc h2 {
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.material-symbols-outlined {
    font-size: 1.5vw;
}

#without-kyc h2 {
    color: #1A2744;
    margin-top: 0;
}

.ci-heading-icon {
    width: 2.2vw;
    height: 2.2vw;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    vertical-align: middle;
}

.ci-icon-without {
    background-color: #FEE2E2;
    color: #DC2626;
}

.ci-icon-with {
    background-color: #2ac6d1;
    color: #ffffff;
}

#with-kyc {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    border: 0.15vw solid rgba(42, 198, 209, 0.4);
}

#with-kyc h2 {
    color: #0D7377;
    margin-top: 0;
}

#without-kyc ul, #with-kyc ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1vw;
}

#without-kyc ul li, #with-kyc ul li {
    position: relative;
    padding-left: 1.2vw;
    margin-bottom: 0.5vw;
    font-size: 1.1vw;
}

#without-kyc ul li::before, #with-kyc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.4vw;
    height: 0.4vw;
    border-radius: 50%;
}

#without-kyc ul li::before {
    background-color: #CBD5E1;
}

#with-kyc ul li::before {
    background-color: #2ac6d1;
}

#ci-takeaway {
    padding: 1.5vw 2vw;
    font-size: 1.1vw;
    font-weight: 500;
    text-align: center;
    background-color: rgba(42, 198, 209, 0.08);
    border-radius: 0.8vw;
}

/* CTA Section */
#cta-cnt {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

#cta-cnt h2 {
    padding: 0.75vw 1vw;
    position: relative;
}

#cta-cnt p {
    width: 70%;
    font-size: 1.5vw;
}

#cta-cnt > button {
    margin-top: 3vw;
}

.title-cube {
    position: absolute;
    border: solid black 0.2vw;
    background-color: white;
    width: 1vw;
    height: 1vw;
    left: -0.75vw;
    top: -0.75vw;
}

.square {
    width: 1vw;
    height: 1vw;
    border: solid 0.15vw;
    position: absolute;
}

.square-tr {
    top: -0.8vw;
    right: -0.8vw;
}

.square-tl {
    top: -0.8vw;
    left: -0.8vw;
}

.square-br {
    bottom: -0.8vw;
    right: -0.8vw;
}

.square-bl {
    bottom: -0.8vw;
    left: -0.8vw;
}

/* Mobile Responsive */
@media (max-width:767px) {
    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 20px;
    }

    /* Banner */
    #banner-sec {
        padding: 25vw 0 40px 0;
        height: auto;
    }

    #banner-grid-overlay {
        background-size: 30px 30px;
    }

    #banner-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #banner-hero-right {
        display: none;
    }

    #banner-content-cnt {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    #banner-content-cnt > h1 {
        font-size: 26px;
        line-height: 32px;
    }

    #banner-content-cnt > p {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
    }

    #banner-topics {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        width: 100%;
    }

    .banner-topic {
        gap: 10px;
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
        border: 1.5px solid rgba(255, 255, 255, 0.08);
    }

.banner-topic-num {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    #banner-foundation {
        margin-top: 20px;
        font-size: 15px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Core Problem */
    #core-problem-cnt {
        flex-direction: column;
        gap: 30px;
    }

    #core-problem-cnt > div:first-child {
        width: 100%;
        text-align: center;
    }

    #metaphor-box {
        width: 100%;
    }

    /* Cycle */
    #cycle-cnt > p {
        width: 100%;
    }

    #cycle-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: stretch;
    }

    .cycle-step {
        width: 100%;
        padding: 18px 12px;
        height: 100%;
        box-sizing: border-box;
    }

    .cycle-step:not(:last-child)::after {
        display: none;
    }

    .cycle-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cycle-step h3 {
        font-size: 14px;
        margin: 6px 0;
    }

    .cycle-step p {
        font-size: 13px;
    }

    #cycle-note {
        font-size: 15px;
        margin-top: 20px;
    }

    /* KYC Connects */
    #kyc-connects-cnt {
        width: 90%;
    }

    #kyc-connects-cnt > p {
        width: 100%;
    }

    #kyc-themes-diagram {
        width: 100%;
        margin-top: 20px;
    }

    /* Theme Labels */
    .theme-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin: 0 0 8px 0;
        padding: 4px 12px;
        border-radius: 50px;
    }

    .theme-subtitle {
        font-size: 14px;
        margin-left: 5px;
        display: block;
        margin-top: 5px;
    }

    /* KYC → AI */
    #kyc-ai-cnt {
        flex-direction: column;
        gap: 30px;
    }

    #kyc-ai-cnt > div:first-child {
        width: 100%;
    }

    #ai-needs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .ai-need-item {
        gap: 15px;
        padding: 15px;
    }

    .ai-need-icon {
        font-size: 24px;
    }

    .ai-need-item p {
        font-size: 16px;
    }

    #ai-insight-box {
        width: 100%;
        padding: 20px;
        border: 2px solid rgba(85, 35, 183, 0.3);
        box-sizing: border-box;
    }

    /* KYC → Affordability */
    #kyc-afford-cnt {
        flex-direction: column;
        gap: 30px;
    }

    #kyc-afford-cnt > div:first-child {
        width: 100%;
    }

    #afford-options {
        flex-direction: column;
        gap: 15px;
    }

    #afford-options > div {
        padding: 12px 16px;
        border-radius: 12px;
    }

    #afford-options > div span {
        font-size: 16px;
        font-weight: 700;
        color: #0844bc;
    }

    #afford-options > div p {
        font-size: 16px;
    }

    #afford-shift-cnt {
        width: 100%;
        padding: 20px;
        border: 2px solid rgba(8, 68, 188, 0.2);
        box-sizing: border-box;
    }

    #stat-callout {
        gap: 10px;
        margin-top: 20px;
    }

    .stat-box {
        padding: 14px 18px;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .stat-divider {
        font-size: 20px;
        margin: 0;
    }

    .stat-result {
        padding: 14px 18px;
        border-radius: 10px;
    }

    .stat-result .stat-number {
        font-size: 28px;
    }

    /* What You Need to Know */
    #need-to-know-cnt > h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    #know-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .know-item {
        padding: 15px;
        gap: 12px;
    }

    .know-icon {
        font-size: 32px;
    }

    .know-item h4 {
        font-size: 15px;
    }

    .know-item p {
        font-size: 13px;
    }

    #enables-callout {
        padding: 25px;
    }

    #enables-callout h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    #enables-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .enable-item {
        gap: 12px;
    }

    .enable-number {
        width: 32px;
        height: 32px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .enable-item p {
        font-size: 16px;
    }

    /* KYC → C&I */
    #kyc-ci-cnt > div:first-child {
        width: 100%;
    }

    #ci-comparison {
        flex-direction: column;
        gap: 20px;
    }

    #without-kyc, #with-kyc {
        padding: 20px;
    }

    .ci-heading-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    #without-kyc h2,
    #with-kyc h2 {
        gap: 5px;
        font-size: 18px;
    }

    #without-kyc p,
    #with-kyc p {
        font-size: 14px;
    }

    #without-kyc ul li,
    #with-kyc ul li {
        font-size: 14px;
        padding-left: 14px;
    }

    #without-kyc ul li::before,
    #with-kyc ul li::before {
        width: 6px;
        height: 6px;
    }

    #ci-takeaway {
        font-size: 14px;
        border-radius: 10px;
    }

    .material-symbols-outlined {
        font-size: 18px;
    }

    #ci-takeaway {
        padding: 15px 20px;
        font-size: 16px;
    }

    /* CTA */
    #cta-cnt p {
        font-size: 16px;
        width: 100%;
    }

    #cta-cnt h2 {
        margin-bottom: 16px;
    }

    .title-cube {
        width: 12px;
        height: 12px;
        left: -10px;
        top: -10px;
        border: solid black 2px;
    }

    .square {
        width: 15px;
        height: 15px;
        border: solid 2.5px;
    }

    .square-tr {
        top: -9.5px;
        right: -9.5px;
    }

    .square-tl {
        top: -9.5px;
        left: -9.5px;
    }

    .square-br {
        bottom: -9.5px;
        right: -9.5px;
    }

    .square-bl {
        bottom: -9.5px;
        left: -9.5px;
    }
}
