@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #05060a;
    --surface: #0c1019;
    --card: #111827;
    --muted: #94a3b8;
    --text: #f8fafc;
    --primary: #f43f5e;
    --primary-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    --accent: #0ea5e9;
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    --border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;
    --space-8: 6rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    scroll-padding-top: 140px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
    margin: 0 0 var(--space-4);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.prt-shell {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(0.9rem, 2vw, 1.35rem);
}

.prt-section {
    padding: clamp(2.6rem, 4.2vw, 3.8rem) 0;
}

.prt-body main {
    padding-top: 132px;
}

.prt-spacer {
    height: clamp(2rem, 4vw, 3.5rem);
}

.prt-page-hero {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.14), transparent 42%),
        radial-gradient(circle at 88% 82%, rgba(244, 63, 94, 0.12), transparent 40%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.8), rgba(5, 6, 10, 0.96));
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.75rem, 5vw, 4.5rem);
}

.prt-page-hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    line-height: 1.05;
    max-width: 18ch;
    margin-bottom: var(--space-4);
}

.prt-page-hero p {
    max-width: 72ch;
    font-size: clamp(1rem, 1.8vw, 1.175rem);
}

.prt-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: 0.88rem;
    color: #cbd5e1;
}

.prt-breadcrumb a {
    color: #e2e8f0;
}

.prt-breadcrumb a:hover {
    color: #fff;
}

.prt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-4);
    margin-bottom: clamp(1rem, 2.1vw, 1.45rem);
}

.prt-section-header>div {
    max-width: 74ch;
}

.prt-section-header .prt-lead {
    margin-top: var(--space-3);
    margin-bottom: 0;
}

.prt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.85rem;
}

.prt-heading-xl {
    font-size: clamp(1.82rem, 3.1vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.prt-lead {
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    color: var(--muted);
    max-width: 65ch;
    margin-bottom: 1.35rem;
}

.prt-home-section-header {
    display: block;
    text-align: center;
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.prt-home-section-header>div {
    max-width: 100%;
}

.prt-home-section-header .prt-eyebrow {
    justify-content: center;
}

.prt-home-section-header .prt-heading-xl {
    max-width: 100%;
}

.prt-home-section-header .prt-lead {
    margin: 0 auto;
    max-width: 58ch;
    line-height: 1.65;
    color: #b8c2d1;
}

.prt-inline-link {
    margin-top: 0.75rem;
    display: inline-block;
}

.prt-search-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.prt-cards-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.35rem);
}

.prt-case {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(1.15rem, 2.1vw, 1.55rem);
}

.prt-case h4 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.35;
    margin: 0.7rem 0 0.7rem;
}

.prt-case p {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.prt-case ul {
    margin: 0;
    padding-left: 1.05rem;
    display: grid;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.92rem;
}

.prt-case .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 63, 94, 0.3);
    background: rgba(244, 63, 94, 0.12);
    color: #fb7185;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.prt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
}

/* BUTTONS */
.prt-btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.82rem 1.45rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.4);
}

.prt-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.82rem 1.45rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.prt-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* HERO */
.prt-hero {
    min-height: clamp(600px, 82vh, 800px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 76px 0 68px;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.1), transparent 40%);
}

.prt-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(1.2rem, 3vw, 2.2rem);
    align-items: center;
}

.prt-hero h1 span {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prt-hero-visual {
    position: relative;
    z-index: 1;
}

.prt-hero-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--primary-gradient);
    filter: blur(60px);
    opacity: 0.2;
    z-index: -1;
}

.prt-hero-visual img {
    width: min(100%, 520px);
    margin-left: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* GRID & CARDS */
.prt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(0.9rem, 1.9vw, 1.2rem);
}

.prt-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(1.15rem, 2.1vw, 1.55rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.prt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.prt-card:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 63, 94, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.prt-card>* {
    position: relative;
    z-index: 1;
}

.prt-card .tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.prt-card h3 {
    font-size: clamp(1.06rem, 1.6vw, 1.28rem);
    line-height: 1.3;
    margin-bottom: var(--space-3);
}

.prt-card p {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.prt-card img {
    width: 100%;
    max-width: 420px;
    height: 200px;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 4px);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.prt-card ul,
.prt-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.prt-list {
    list-style: none;
    padding-left: 0;
}

.prt-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.prt-bullet {
    width: 7px;
    height: 7px;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: var(--primary);
    flex-shrink: 0;
}

.prt-card .link {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    font-size: 0.93rem;
}

.prt-highlight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.prt-highlight .item,
.prt-bento .tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(1.3rem, 2.5vw, 2rem);
}

.prt-highlight .item h3 {
    margin-bottom: var(--space-2);
}

.prt-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.prt-bento .tile strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    margin-bottom: var(--space-2);
    color: #fff;
}

.prt-bento .tile p,
.prt-highlight .item p {
    margin-bottom: 0;
}

/* METRICS */
.prt-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
}

.prt-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    text-align: center;
}

.prt-metric-card h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    margin-bottom: 0.2rem;
}

.prt-metric-card p {
    font-size: 0.78rem;
    margin-bottom: 0;
}

/* CTA BAND */
.prt-cta-band {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.7rem, 3.2vw, 2.5rem) clamp(1rem, 2vw, 1.7rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prt-cta-band .prt-lead {
    margin-left: auto;
    margin-right: auto;
}

.prt-cta-band .prt-hero-actions {
    justify-content: center;
}

.prt-section-muted {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.prt-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

.prt-case-card {
    padding: clamp(1rem, 2vw, 1.35rem);
}

.prt-case-card h3 {
    margin-top: 0.65rem;
}

.prt-case-card p {
    max-width: 54ch;
}

.prt-tag-info,
.prt-tag-success,
.prt-tag-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.tag.prt-tag-info {
    color: #38bdf8;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(14, 165, 233, 0.32);
}

.tag.prt-tag-success {
    color: #34d399;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.32);
}

.tag.prt-tag-accent {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.14);
    border: 1px solid rgba(192, 132, 252, 0.32);
}

.prt-eyebrow-light {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

/* WORK PROCESS */
.prt-process-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
}

.prt-process-row::before {
    content: '';
    position: absolute;
    top: 42px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.35;
    z-index: 0;
}

.prt-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.35rem;
    transition: transform 0.25s ease;
}

.prt-process-step:hover {
    transform: translateY(-4px);
}

.prt-process-circle {
    width: clamp(72px, 7vw, 84px);
    height: clamp(72px, 7vw, 84px);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--card);
    border: 2px solid var(--primary);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.25s ease;
}

.prt-process-step:hover .prt-process-circle {
    box-shadow: 0 0 0 5px rgba(244, 63, 94, 0.14), 0 12px 26px rgba(0, 0, 0, 0.45);
}

.prt-process-step:nth-child(even) .prt-process-circle {
    color: var(--accent);
    border-color: var(--accent);
}

.prt-process-step:nth-child(even):hover .prt-process-circle {
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.14), 0 12px 26px rgba(0, 0, 0, 0.45);
}

.prt-process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.prt-process-step p {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0;
    max-width: 18ch;
}

/* Tablet & mobile: vertical timeline instead of a wrapping grid */
@media (max-width: 1024px) {
    .prt-process-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: relative;
    }

    .prt-process-row::before {
        top: 30px;
        bottom: 30px;
        left: 29px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--primary), var(--accent));
    }

    .prt-process-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
        padding: 0;
    }

    .prt-process-step:hover {
        transform: translateX(4px);
    }

    .prt-process-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .prt-process-step p {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .prt-process-row {
        gap: 1.5rem;
    }

    .prt-process-row::before {
        top: 24px;
        bottom: 24px;
        left: 23px;
    }

    .prt-process-circle {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .prt-process-step h4 {
        font-size: 1.02rem;
    }

    .prt-process-step p {
        font-size: 0.84rem;
    }
}

/* SOLUTIONS THAT PERFORM */
.prt-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.9rem, 1.9vw, 1.2rem);
}

.prt-solution-card {
    display: flex;
    flex-direction: column;
}

.prt-solution-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.prt-solution-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: var(--primary);
}

.prt-solution-icon svg {
    width: 26px;
    height: 26px;
}

.prt-solution-card:nth-child(2) .prt-solution-icon {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.28);
    color: var(--accent);
}

.prt-solution-card:nth-child(3) .prt-solution-icon {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.28);
    color: #34d399;
}

.prt-solution-card:nth-child(4) .prt-solution-icon {
    background: rgba(192, 132, 252, 0.1);
    border-color: rgba(192, 132, 252, 0.28);
    color: #c084fc;
}

.prt-solution-index {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}

.prt-solution-card .tag {
    margin-bottom: 0.6rem;
}

.prt-solution-features {
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0.95rem 0 0;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 0.55rem;
}

.prt-solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.87rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.prt-solution-features svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #34d399;
}

.prt-solution-card .link {
    margin-top: auto;
    padding-top: 1rem;
}

@media (max-width: 1024px) {
    .prt-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .prt-solutions-grid {
        grid-template-columns: 1fr;
    }
}

.prt-cta-title {
    margin-bottom: 0.55rem;
}

.prt-cta-lead {
    margin: 0 auto 1rem;
    max-width: 58ch;
    font-size: 0.92rem;
}

.prt-cta-actions {
    justify-content: center;
    margin-top: 0.35rem;
}

.prt-cta-band::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: var(--primary-gradient);
    filter: blur(120px);
    opacity: 0.1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .prt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .prt-hero h1 {
        font-size: 3rem;
    }

    .prt-shell {
        padding: 0 1rem;
    }

    .prt-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .prt-home-section-header .prt-lead {
        max-width: 100%;
    }

    .prt-highlight,
    .prt-bento {
        grid-template-columns: 1fr;
    }

    .prt-cards-split {
        grid-template-columns: 1fr;
    }

    .prt-case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .prt-hero h1 {
        font-size: 2.15rem;
        line-height: 1.15;
    }

    .prt-lead {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .prt-hero {
        padding: 4.5rem 0 1.5rem;
        min-height: auto;
    }

    .prt-section {
        padding: 46px 0;
    }

    .prt-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .prt-metric-card {
        padding: 0.85rem 0.4rem;
        border-radius: 6px;
    }

    .prt-metric-card h3 {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }

    .prt-metric-card p {
        font-size: 0.65rem;
        line-height: 1.25;
        color: #9ca3af;
    }

    .prt-cta-band {
        padding: 1.5rem 1rem;
    }

    .prt-page-hero {
        padding-top: 3.2rem;
    }

    .prt-body main {
        padding-top: 76px;
    }

    .prt-hero-actions {
        width: 100%;
    }

    .prt-btn-primary,
    .prt-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .prt-card img {
        max-width: 100%;
        height: 180px;
    }

    .prt-search-form {
        margin-bottom: 1.35rem;
    }
}

/* Certifications Infinite Brand Ticker */
.prt-ticker-section {
    background: #030712;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.prt-ticker-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.prt-ticker-container {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.prt-ticker-track {
    display: flex;
    gap: 3.5rem;
    animation: prt-scroll 75s linear infinite;
    width: max-content;
}

.prt-ticker-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #cbd5e1;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0.7rem 1.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.prt-ticker-item:hover {
    border-color: rgba(244, 63, 94, 0.3);
    background: rgba(244, 63, 94, 0.02);
}

.prt-ticker-item img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.prt-ticker-item-logo {
    padding: 0.6rem 1rem;
}

.prt-ticker-item-logo img {
    height: 64px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 6px 10px;
}

@keyframes prt-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* PURE CSS COUNTERS VIA @PROPERTY */
@property --num-stations {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
}

@property --num-years {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
}

@property --num-support {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
}

@keyframes count-stations {
    from { --num-stations: 0; }
    to { --num-stations: 600; }
}

@keyframes count-years {
    from { --num-years: 0; }
    to { --num-years: 35; }
}

@keyframes count-support {
    from { --num-support: 0; }
    to { --num-support: 24; }
}

.prt-counter-stations {
    animation: count-stations 2.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    counter-reset: num var(--num-stations);
}

.prt-counter-stations::after {
    content: counter(num) "+";
}

.prt-counter-years {
    animation: count-years 2.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    counter-reset: num var(--num-years);
}

.prt-counter-years::after {
    content: counter(num) "+";
}

.prt-counter-support {
    animation: count-support 2.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    counter-reset: num var(--num-support);
}

.prt-counter-support::after {
    content: counter(num) "/7";
}