/* --- Hero Section --- */
.hero-section {
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding-top: 130px;
    margin-top: -130px;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 50%;
    z-index: -1;
    background: linear-gradient(0deg, rgba(244, 245, 249, 0.4) 0%, rgba(244, 245, 249, 0) 20%);
}

.hero_bg_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.45);
}

.hero-section__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;

    @media screen and (max-width: 998px) {
        flex-direction: column;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.hero-content .eyebrow {
    color: var(--text-highlight-color);
}

.hero-content .description {
    max-width: 800px;
    font-size: 2rem;
    color: #f8f9fa;
    text-align: center;
    text-wrap: pretty;
    margin: auto;
    margin-bottom: 3rem;
}

.hero-content .button-wrapper {
    display: flex;
    justify-content: center;
    gap: 2.4rem;

    @media screen and (max-width: 767px) {
        flex-direction: column;
    }
}

.hero-content .button-wrapper a {
    flex: 1;
    max-width: 45rem;
    font-size: 2rem;
    text-align: center;

    @media screen and (max-width: 767px) {
        max-width: 100%;
    }
}

.hero-content .button-wrapper .secondary-button {
    color: #ffffff;
    border-color: #ffffff;
}


/* --- HERO METRICS CONTAINER --- */
.hero-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.4rem;
        margin: 9rem auto 0 auto;
    }
}

.metric-card {
    position: relative;
    background-color: #051329;
    border: 1px solid rgba(53, 175, 199, 0.15);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.metric-card:hover {
    border-color: #35AFC7;
    transform: translateY(-4px);
}

.metric-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.metric-sub {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.4rem;
}

.metric-number {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.metric-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
    text-align: start;
    text-wrap: pretty;
}

.metric-card.card-speed {
    position: relative;
    background-color: #051329;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.metric-card.card-speed::before {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -30%;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #12328A 0%, #0ADBED 50%, #0E8CBF 100%);
    opacity: 0.15;
    transform: rotate(45deg);
    border: 1px solid rgba(0, 227, 253, 0.4);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        background 0.4s ease;
}

.metric-card.card-speed:hover {
    border-color: #00E3FD;
    transform: translateY(-4px);
}

.metric-card.card-speed:hover::before {
    opacity: 0.35;
    transform: rotate(60deg) scale(1.1);
}


.metric-card.card-speed .metric-content {
    position: relative;
    z-index: 2;
}

.metric-chart-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    z-index: 1;
    pointer-events: none;
}

.mini-chart {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metric-chart-wrapper .chart-line,
.metric-chart-wrapper .chart-area {
    transition: d 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.metric-card.card-revenue:hover .chart-line {
    d: path("M0,65 L30,32 L60,35 L90,12 L120,15 L150,2");
}

.metric-card.card-revenue:hover .chart-area {
    d: path("M0,45 L30,32 L60,35 L90,12 L120,15 L150,2 L150,50 L0,50 Z");
}

.metric-dot-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(#35AFC7 1px, transparent 1px);
    background-size: 10px 10px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.metric-card.card-scale:hover .metric-dot-grid {
    opacity: 0.3;
}


/* --- Platforms Section --- */
.platforms-section {
    background-color: #F4F5F9;
}

.platforms-section__inner .section-title {
    font-size: var(--h2);
    margin-bottom: 4.8rem;
    text-align: center;
    font-weight: 900;
    color: var(--heading-color);
}

.platforms-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    column-gap: 2.4rem;
    row-gap: 5rem;
    @media screen and (max-width: 600px) {
        grid-template-columns: 1fr;
    }
}

.platform-block {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    position: relative;
    padding: 2.4rem;
    border-radius: var(--global-radius);
    border: 2px solid #E2E8F0;
    background-color: #ffffff;
    transition: all 0.4s ease-in-out;
    @media screen and (max-width: 600px) {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

.platform-block:hover {
    box-shadow: 1px 1px 6px #00E3FD;
    transform: translateY(-6px);
}

.platform-image__wrapper {
    max-width: 80px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.platform-image__wrapper svg {
    max-height: 70px;
}

.platform-content__wrapper {
    flex: 1;
}

.platform-block {
    display: flex;
}

.speedometer-container {
    position: absolute;
    width: 150px;
    height: 150px;
    right: 0;
    top: 0;
    transform: translateY(-25%);
    padding: 8px;
}

#speed-needle {
    transform: rotate(-95deg);
    transform-origin: 78.5px 48px;
    animation: sweepNeedle 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-timeline: view();
}

#speed-arc {
    animation: colorShift 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-timeline: view();
}

@keyframes sweepNeedle {

    0% {
        transform: rotate(-95deg);
    }

    100% {
        transform: rotate(65deg);
    }
}

@keyframes colorShift {
    0% {
        fill: #001C3A;
    }

    100% {
        fill: #25cef0;
    }
}


.highlight-section {
    background-color: #f8f9fa;
}

.highlight-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .highlight-section__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight-section__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-section__content-wrapper .eyebrow {
    text-align: start;
}

.highlight-section__content-wrapper .section-title {
    font-size: var(--h2);
    color: var(--heading-color);
    text-transform: capitalize;
    font-weight: 900;
    text-wrap: pretty;
    line-height: 5.6rem;
}

.highlight-section__content-wrapper .section-description {
    color: var(--text-color);
}


.highlight-section__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(1px 1px 11px rgba(0, 0, 0, 0.3));
    animation: laptop 4s ease-in-out infinite;
}

@keyframes laptop {
    0% {
        transform: translateY(5px);
    }

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

    100% {
        transform: translateY(5px);
    }
}

.highlight-section__actions {
    display: flex;
    gap: 2.4rem;
    flex-wrap: wrap;
}


.revenue-graph-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(0, 227, 253, 0.2);
    transition: box-shadow 1s ease-in-out;
}

.revenue-graph-container .eyebrow {
    fill: var(--text-highlight-color-dark) !important;
}

.revenue-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Grid & Text Styling */
.graph-grid line {
    stroke: #e5e7eb;
    stroke-width: 1;
}

.graph-grid text,
.graph-labels text {
    fill: #6b7280;
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.graph-labels .highlight-label {
    fill: #2563eb;
    font-weight: 600;
}

/* Launch Marker Styling */
.launch-marker line {
    stroke: #9ca3af;
    stroke-width: 2;
}

.launch-marker rect {
    fill: #eff6ff;
    stroke: #2563eb;
    stroke-width: 1;
}

.launch-marker text {
    fill: #2563eb;
    font-size: 12px;
    font-weight: 600;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Data Points */
.graph-points circle {
    fill: #ffffff;
    stroke: #2563eb;
    stroke-width: 3;
    transition: r 0.2s ease, fill 0.2s ease;
}

.graph-points circle:hover {
    r: 8;
    fill: #2563eb;
    cursor: pointer;
}

.graph-points .launch-point {
    stroke: #f59e0b;
}

.graph-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

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

.graph-area {
    opacity: 0;
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

.revenue-graph-container.is-visible {
    box-shadow: 0px 0px 12px 2px #00e4fd93;
}

.is-visible .graph-line {
    animation: drawLine 2s ease-out forwards;
}

.is-visible .graph-area {
    animation: fadeInArea 1.5s ease-out 1s forwards;
}

/* --- Projects Section --- */


.portfolio-section {
    padding: 6rem 0;
    background-color: #001C3A;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.portfolio-section::after {
    content: "";
    position: absolute;
    inset: 0;
}

.portfolio-section #geometric-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.portfolio-section .eyebrow {
    text-align: center;
    color: #ffffff;
}

.portfolio-section .section-title {
    font-size: var(--h2);
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
}

.portfolio-container {
    position: relative;
    margin: 0 auto;
    padding: 2rem 0;
    /* Removed side padding for mobile bleed */
    max-width: 1600px;
    z-index: 4;
}

/* Mobile Horizontal Snap Container */
.project-list {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.project-list::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
}

/* Mobile Card Styling */
.project-row {
    flex: 0 0 85vw;
    /* Leaves a peek of the next card */
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.project-row__mobile-image {
    width: 100%;
    height: 350px;
    background: #001C3A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-row__mobile-image img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.project-row__mobile-image.is-in-view img {
    animation: mobileAutoScroll 12s ease-in-out infinite alternate;
}

@keyframes mobileAutoScroll {

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

    85%,
    100% {
        transform: translateY(var(--scroll-dist, 0px));
    }
}

.project-row__content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-row__main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.project-number {
    font-size: 2.4rem;
    color: #e2e8f0;
    font-weight: 600;
}

.project-name {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.project-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-wrap: nowrap;
}

/* Hide desktop preview on mobile entirely */
.project-hover-preview {
    display: none;
}


/* --- DESKTOP OVERRIDE (Hover List) --- */
@media (min-width: 768px) {
    .portfolio-container {
        padding: 4rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }

    .project-list {
        display: block;
        margin-top: 3.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0;
        overflow-x: visible;
    }

    .project-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        background-color: transparent;
        border-left: none;
        border-right: none;
        border-top: none;
        transition: padding 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    }

    .project-row__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .project-number {
        font-size: 3rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .project-name {
        font-size: 2rem;
        transition: color 0.2s ease;
    }

    /* Hide the inline mobile images */
    .project-row__mobile-image {
        display: none;
    }

    .project-row:hover {
        padding-left: 2rem;
        padding-right: 2rem;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .project-row:hover .project-name {
        color: #00E3FD;
    }

    .project-row:hover .project-number {
        color: var(--text-highlight-color-dark);
    }

    .project-row:hover .tag {
        border-color: rgba(0, 227, 253, 0.3);
        background-color: rgba(0, 227, 253, 0.1);
        color: #00E3FD;
    }

    .project-hover-preview {
        display: block;
        position: fixed;
        width: 340px;
        height: 220px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.2);
        pointer-events: none;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
        transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 1000;
    }

    .project-hover-preview.is-active {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .project-hover-preview img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        transform: translateY(0);
        transition: transform 0s ease;
    }

    .project-hover-preview.is-scrolling img {
        transform: translateY(calc(-100% + 220px));
        transition: transform 5s linear;
    }
}


/* --- Target Audience Section --- */

.audience-section {
    background-color: #ffffff;
}

.audience-section .section-title {
    font-size: var(--h2);
    text-align: center;
    color: var(--heading-color);
    font-weight: 900;
}

.audience-central-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.audience-logo-anchor {
    order: -1;
    display: flex;
    justify-content: center;
    padding: 2rem;
    max-width: 30rem;
    margin: auto;
}

@media (min-width: 1024px) {
    .audience-central-grid {
        display: grid;
        grid-template-columns: 3fr 2fr 3fr;
        grid-template-rows: auto auto;
        gap: 3rem 2.5rem;
        align-items: center;
    }

    /* Assigning grid homes to each box */
    .card-upgraders {
        grid-column: 1;
        grid-row: 1;
    }

    .card-migrators {
        grid-column: 3;
        grid-row: 1;
    }

    .audience-logo-anchor {
        grid-column: 2;
        grid-row: 1 / span 2;
        order: unset;
        padding: 0;
    }

    .card-startups {
        grid-column: 1;
        grid-row: 2;
    }

    .card-agencies {
        grid-column: 3;
        grid-row: 2;
    }
}

.audience-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.05);
    border-color: var(--text-highlight-color);
}

.logo-wrapper {
    background: #ffffff;
    position: relative;
    border-radius: 50%;
    padding: 2.5rem;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
}

.logo-wrapper svg {
    transform: translate(15px, 30px);
    max-width: 100%;
    height: auto;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #e9ecef;
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.audience-central-grid:hover .logo-wrapper::before {
    border-color: #35AFC7;
    animation: spinRing 15s linear infinite;
}

.center-brand-logo {
    max-width: 130px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.audience-card__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.audience-icon {
    width: 24px;
    height: 24px;
    color: var(--text-highlight-color);
    flex-shrink: 0;
}

.audience-card__title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.audience-card__body p {
    font-family: var(--text-font);
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 0;
}

/* --- Our Process Section --- */

.process-section .section-title {
    font-size: var(--h2);
    text-align: center;
    color: var(--heading-color);
    font-weight: 900;
}

.process-section .section-description {
    text-align: center;
}

.process-section .section-header {
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    @media screen and (max-width: 998px) {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
}

.process-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.process-content-active {
    min-height: 240px;
}

.process-step-indicator {
    display: inline-block;
    color: var(--text-highlight-color-dark);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.process-content-active h3 {
    font-size: 3.2rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.process-content-active p {
    font-size: 1.6rem;
    color: var(--text-muted, #4b5563);
    line-height: 1.6;
}

.fade-text {
    animation: fadeOutIn 0.4s ease forwards;
}

@keyframes fadeOutIn {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0; transform: translateY(5px); }
    51% { opacity: 0; transform: translateY(-5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.process-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process-ring-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.process-ring-bg {
    position: absolute;
    inset: 45px; 
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 1;
}

.process-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.process-node {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}


/* Mathematical Coordinates for a Perfect Pentagon/Circle */
.node-1 { top: 20.6%; left: 76.4%; } /* Top Right */
.node-2 { top: 66.9%; left: 88.8%; } /* Bottom Right */
.node-3 { top: 95.0%; left: 50.0%; } /* Bottom Center */
.node-4 { top: 66.9%; left:  11.2%; } /* Bottom Left */
.node-5 { top: 20.6%; left: 23.6%; } /* Top Left */


.node-icon-box {
    position: relative;
    width: 72px;
    height: 72px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.node-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background: var(--heading-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.node-icon-box svg {
    color: var(--heading-color);
    transition: color 0.3s, filter 0.3s;
}

.node-label h4 {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading-color);
    transition: color 0.3s;
    margin-bottom: 0.2rem;
}

.node-label p {
    font-size: 1.1rem;
    color: var(--text-muted, #4b5563);
    line-height: 1.4;
    margin: 0;
}

.process-node.is-active .node-icon-box {
    border-color: var(--text-highlight-color);
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(0, 227, 253, 0.5);
}

.process-node.is-active .node-icon-box svg {
    color: var(--text-highlight-color);
    filter: drop-shadow(0px 0px 4px rgba(0, 227, 253, 0.4));
}

.process-node.is-active .node-badge {
    background: var(--text-highlight-color-dark);
}

.process-node.is-active .node-label h4 {
    color: var(--text-highlight-color-dark);
}

@media (max-width: 998px) {
    .process-ring-wrapper {
        margin-top: -60px;
        margin-bottom: -60px;
        max-width: 550px;
    }
    .process-center-text {
        display: none;
    }

    .process-info-panel {
        text-align: center;
        margin: 20vw 0rem 0rem;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .process-ring-wrapper {
        transform: scale(0.6);
        margin-top: -90px;
        margin-bottom: -90px;
    }
}