:root {
    --bg: #FAFAFA;
    --bg-alt: #F3F3F1;
    --surface: #FFFFFF;
    --fg: #09090B;
    --fg2: #71717A;
    --fg3: #A1A1AA;
    --accent: #16A34A;
    --accent-dark: #15803D;
    --accent-light: #E8F5EC;
    --border: #E4E4E7;
    --border-h: #D4D4D8;
    --sans: 'Outfit', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --r: 12px;
    --r-sm: 8px;
    --r-lg: 20px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.33, 1, 0.68, 1);
    --nav-h: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 17px;
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--fg);
    color: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s var(--ease-out)
}

nav.nav-hidden {
    transform: translateY(-100%)
}

.n-left {
    display: flex;
    align-items: center;
    gap: 0.6rem
}

.n-logo {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
    color: #FAFAFA;
    text-decoration: none
}

.n-logo span {
    font-weight: 400;
    color: #71717A
}

.nav-logo-svg {
    width: 195px;
    height: auto;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s var(--ease-out)
}

.nav-logo-svg:hover {
    transform: scale(1.03)
}

.n-mid {
    display: flex;
    gap: 0.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.2rem
}

.n-pill {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: #71717A;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s
}

.n-pill:hover {
    color: #A1A1AA
}

.n-pill.on {
    background: rgba(255, 255, 255, 0.1);
    color: #FAFAFA;
    box-shadow: none
}

.n-right {
    display: flex;
    align-items: center;
    gap: 1rem
}

.n-link {
    font-size: 0.85rem;
    color: #A1A1AA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s
}

.n-link:hover {
    color: #FAFAFA
}

.n-cta {
    background: var(--accent);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: all 0.25s
}

.n-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px)
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    border-radius: var(--r-sm)
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #FAFAFA;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out)
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    width: 100%;
    max-width: 340px;
    padding: 2rem 1.5rem;
    transform: translateY(20px);
    transition: transform 0.35s var(--ease-out)
}

.mobile-nav.open .mobile-nav-inner {
    transform: translateY(0)
}

.mobile-nav-pill {
    font-family: var(--sans);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #FAFAFA;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.55rem 1rem;
    border-radius: var(--r);
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: color 0.2s
}

.mobile-nav-pill:hover {
    color: #4ADE80
}

.mobile-nav-divider {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem auto
}

.mobile-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #71717A;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.35rem 0
}

.mobile-nav-link:hover {
    color: #FAFAFA
}

.mobile-nav-cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center !important;
    font-size: 0.9rem !important;
    padding: 0.85rem 1.5rem !important
}

body.nav-open {
    overflow: hidden
}

.pg {
    display: none
}

.pg.on {
    display: block
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 5rem;
    overflow: visible;
    background: var(--fg)
}

.net-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease
}

.net-bg.active {
    opacity: 1
}

.sec-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(22, 163, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5
}

.sec-code-float {
    position: absolute;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: rgba(74, 222, 128, 0.07);
    pointer-events: none;
    white-space: nowrap
}

@keyframes codeFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6
    }

    25% {
        opacity: 1
    }

    50% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.8
    }

    75% {
        opacity: 1
    }
}

.typing-cursor::after {
    content: '|';
    color: #4ADE80;
    font-weight: 300;
    animation: cursorBlink 1s step-end infinite;
    margin-left: 2px
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.terminal-prompt {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: #4ADE80;
    opacity: 0.4;
    display: inline-block
}

.terminal-prompt::before {
    content: '$ ';
    color: #71717A
}

.scan-line-wrap {
    position: relative;
    overflow: hidden
}

.scan-line-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.15), transparent);
    animation: scanLine 4s ease-in-out infinite;
    pointer-events: none
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        top: 100%;
        opacity: 0
    }
}

.cta-glow {
    animation: ctaGlow 3s ease-in-out infinite
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.15), 0 2px 8px rgba(22, 163, 74, 0.2)
    }

    50% {
        box-shadow: 0 0 40px rgba(22, 163, 74, 0.3), 0 4px 16px rgba(22, 163, 74, 0.35)
    }
}

.st-n.counted {
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px)
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(40px)
}

.success-box {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-icon i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #22c55e;
}

.success-title {
    color: #FAFAFA;
    margin-bottom: 10px;
}

.success-text {
    color: #A1A1AA;
}

.success-btn {
    margin-top: 20px;
    width: auto;
    padding: 10px 30px;
}

.anim-scale {
    opacity: 0;
    transform: scale(0.85)
}

.anim-stagger .anim-child {
    opacity: 0;
    transform: translateY(24px)
}

.hero-tag,
.hero h1,
.hero-sub,
.hero-acts,
.stats-row {
    opacity: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: #4ADE80;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 2rem
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    animation: blink 2.5s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #FAFAFA
}

.hero h1 .gr {
    color: var(--accent)
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #A1A1AA;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400
}

.hero-acts {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2)
}

.btn-p:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25)
}

.btn-g {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: #FAFAFA;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.92rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out)
}

.btn-g:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px)
}

.stats-row {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    z-index: 2
}

.st {
    background: rgba(9, 9, 11, 0.95);
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(4px)
}

.st-n {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.1rem;
    color: #FAFAFA
}

.st-n.g {
    color: #4ADE80
}

.st-d {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: #71717A;
    text-transform: uppercase;
    letter-spacing: 0.06em
}

.sec {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem
}

.sec-l {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4ADE80;
    margin-bottom: 0.6rem
}

.sec-t {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    color: #FAFAFA
}

.sec-d {
    font-size: 1.05rem;
    color: #A1A1AA;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem
}

.ai-wrap {
    background: #0a0f14;
    padding: 5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.ai-in {
    max-width: 1200px;
    margin: 0 auto
}

.ai-wrap .sec-l {
    color: #4ADE80
}

.ai-wrap .sec-t {
    color: #FAFAFA
}

.ai-wrap .sec-d {
    color: #A1A1AA
}

.ai-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.ai-c {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-lg);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out)
}

.ai-c::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    opacity: 0.6;
    transition: opacity 0.3s
}

.ai-c:nth-child(1)::before {
    background: linear-gradient(90deg, #16A34A, #4ADE80)
}

.ai-c:nth-child(2)::before {
    background: linear-gradient(90deg, #4ADE80, #86EFAC)
}

.ai-c:nth-child(3)::before {
    background: linear-gradient(90deg, #86EFAC, #BBF7D0)
}

.ai-c:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(22, 163, 74, 0.2);
    box-shadow: 0 0 30px rgba(22, 163, 74, 0.08), 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px)
}

.ai-c:hover::before {
    opacity: 1
}

.ai-c-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.12)
}

.ai-c-icon i{
    font-size: 26px;
    color: #4ADE80;
}

.ai-c h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FAFAFA;
    letter-spacing: -0.01em
}

.ai-c p {
    font-size: 0.92rem;
    color: #A1A1AA;
    line-height: 1.65;
    margin-bottom: 1rem
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem
}

.ai-pill {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 500;
    color: #4ADE80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    letter-spacing: 0.04em
}

.proc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative
}

.proc::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, #4ADE80, rgba(74, 222, 128, 0.1));
    transform-origin: left;
    transform: scaleX(var(--line-scale, 0))
}

.pn {
    text-align: center
}

.pn-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.08);
    border: 1.5px solid rgba(22, 163, 74, 0.2);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: #4ADE80;
    position: relative;
    z-index: 1;
    transition: all 0.35s var(--ease-out)
}

.pn:hover .pn-dot {
    border-color: var(--accent);
    background: rgba(22, 163, 74, 0.15);
    transform: scale(1.08)
}

.proc-terminal {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    line-height: 2;
    z-index: 0;
    pointer-events: none
}

.proc-term-line {
    color: rgba(74, 222, 128, 0.12);
    opacity: 0;
    transform: translateX(10px)
}

.pt-prompt {
    color: rgba(113, 113, 122, 0.15);
    margin-right: 0.4rem
}

.pt-ok {
    color: rgba(74, 222, 128, 0.2);
    margin-left: 0.3rem
}

.proc-pulse {
    position: absolute;
    top: 26px;
    left: 28px;
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6), 0 0 4px rgba(74, 222, 128, 0.8)
}

.pn h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #FAFAFA
}

.pn p {
    font-size: 0.9rem;
    color: #A1A1AA;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto
}

.lead-wrap {
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 3rem
}

.lead-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: start;
    grid-template-columns: 1fr 1fr
}

.lead-r p {
    font-size: 1rem;
    color: #A1A1AA;
    line-height: 1.8;
    margin-bottom: 0.75rem
}

.team-row {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr
}

.t-chip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    color: inherit;
}

.t-chip:hover {
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateX(6px);
    box-shadow: 0 2px 12px rgba(22, 163, 74, 0.08)
}

.t-chip-av {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4ADE80;
    flex-shrink: 0
}

.t-chip-n {
    font-weight: 600;
    font-size: 1rem;
    color: #FAFAFA;
    display: flex;
    align-items: center;
    gap: 6px;
}

.t-chip {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-chip-body {
    flex: 1;
}

.li-icon {
    display: inline-flex;
    align-items: center;
    color: white;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.li-icon:hover {
    opacity: 1;
}

.t-chip-r {
    font-size: 0.78rem;
    color: #71717A
}

.tg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem
}

.tc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r);
    padding: 2rem;
    transition: all 0.35s var(--ease-out)
}

.tc:hover {
    border-color: rgba(22, 163, 74, 0.2);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.06);
    transform: translateY(-3px)
}

.tc-q {
    font-size: 1rem;
    line-height: 1.7;
    color: #D4D4D8;
    margin-bottom: 1.5rem
}

.tc-a {
    display: flex;
    align-items: center;
    gap: 0.6rem
}

.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    flex-shrink: 0
}

.tc-n {
    font-size: 0.88rem;
    font-weight: 600;
    color: #FAFAFA
}

.tc-co {
    font-size: 0.75rem;
    color: #71717A
}

.carousel-section {
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border-radius: var(--r);
    padding: 1.5rem 0;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.client-item {
    white-space: nowrap;
    text-decoration: none;
}

.client-item span {
    font-weight: 600;
    font-size: 1.3rem;
    color: #FAFAFA;
    opacity: 0.15;
    letter-spacing: -0.02em;
    transition: opacity 0.3s;
}

.client-item:hover span {
    opacity: 0.4;
}

.blog-section {
    background: #0a0f14;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 5rem 3rem;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #16A34A, transparent)
}

.blog-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-view-all {
    font-size: 0.88rem;
    font-weight: 600;
    color: #4ADE80;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s
}

.blog-view-all:hover {
    opacity: 0.75
}

.blog-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--r);
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease-out);
    display: flex;
    flex-direction: column
}

.bc:hover {
    border-color: rgba(22, 163, 74, 0.3);
    border-left-color: #4ADE80;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08)
}

.bc-cat {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    margin-bottom: 0.6rem
}

.bc h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: #FAFAFA
}

.bc p {
    font-size: 0.9rem;
    color: #A1A1AA;
    line-height: 1.6;
    flex: 1
}

.bc-m {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--mono);
    font-size: 0.68rem;
    color: #71717A
}

.cta {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(22, 163, 74, 0.08), transparent 60%);
    pointer-events: none
}

.cta h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    position: relative;
    color: #FAFAFA
}

.cta p {
    font-size: 1.05rem;
    color: #A1A1AA;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    position: relative
}

.contact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    min-height: calc(100vh - var(--nav-h))
}

.cl h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #FAFAFA
}

.cl h1 .gr {
    color: #4ADE80
}

.cl > p {
    font-size: 1rem;
    color: #A1A1AA;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 420px
}

.client-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.client-title {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4ADE80;
    margin-bottom: 1rem;
}



.client-item {
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    transition: 0.2s;
}

.client-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem
}

.cd-i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem
}

.cd-l {
    font-family: var(--mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #71717A;
    margin-bottom: 0.1rem
}

.cd-v {
    font-size: 0.92rem;
    font-weight: 500;
    color: #FAFAFA
}

.cd-v a {
    color: #4ADE80;
    text-decoration: none;
    transition: opacity 0.2s
}

.cd-v a:hover {
    opacity: 0.7
}

.dipta-box {
    margin-top: 2.5rem;
    padding: 1.15rem 1.4rem;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: var(--r-sm)
}

.dipta-box p {
    font-size: 0.9rem;
    color: #A1A1AA;
    line-height: 1.6
}

.dipta-box a {
    color: #4ADE80;
    font-weight: 600;
    text-decoration: none
}

.cf {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 2.25rem
}

.cf h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: #FAFAFA
}

.cf > p {
    font-size: 0.88rem;
    color: #71717A;
    margin-bottom: 2rem
}

.fg {
    margin-bottom: 1.1rem
}

.fg label {
    display: block;
    font-size: 0.79rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #A1A1AA
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-sm);
    color: #FAFAFA;
    font-family: var(--sans);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: #4ADE80;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12)
}

.fg textarea {
    resize: vertical;
    min-height: 90px
}

.fg select option {
    background: #1a1a1d;
    color: #FAFAFA
}

.fg-r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem
}

.f-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2)
}

.f-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25)
}

.f-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none
}

.blog-hero {
    padding: 7rem 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto
}

.blog-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #FAFAFA;
    margin-bottom: 0.5rem
}

.blog-hero p {
    font-size: 1.05rem;
    color: #A1A1AA;
    max-width: 500px
}

.blog-featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem 2rem
}

.bf-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden
}

.bf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #16A34A, #4ADE80, transparent)
}

.bf-card:hover {
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.08);
    transform: translateY(-2px)
}

.bf-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 100px
}

.bf-content {
    flex: 1
}

.bf-cat {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    margin-bottom: 0.6rem;
    display: block
}

.bf-content h2 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FAFAFA;
    margin-bottom: 0.6rem;
    line-height: 1.25
}

.bf-content p {
    font-size: 0.95rem;
    color: #A1A1AA;
    line-height: 1.7;
    max-width: 600px
}

.bf-meta {
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: #52525B;
    display: flex;
    gap: 1rem
}

.bf-arrow {
    font-size: 1.5rem;
    color: #4ADE80;
    opacity: 0.5;
    transition: all 0.3s;
    flex-shrink: 0
}

.bf-card:hover .bf-arrow {
    opacity: 1;
    transform: translateX(4px)
}

.blog-cats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem 2rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap
}

.blog-cat-pill {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: #71717A;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    text-transform: capitalize;
}

.blog-cat-pill:hover {
    color: #A1A1AA;
    border-color: rgba(255, 255, 255, 0.15)
}

.blog-cat-pill.on {
    color: #4ADE80;
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.2)
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.bg-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--r);
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--ease-out)
}

.bg-card:hover {
    border-color: rgba(22, 163, 74, 0.3);
    border-left-color: #4ADE80;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08)
}

.bg-cat {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    margin-bottom: 0.6rem
}

.bg-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: #FAFAFA;
    margin-bottom: 0.5rem
}

.bg-card p {
    font-size: 0.9rem;
    color: #A1A1AA;
    line-height: 1.6;
    flex: 1
}

.bg-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between
}

.bg-date,
.bg-read {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: #52525B
}

.bg-card-cta {
    border-left-color: transparent;
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.bg-card-cta:hover {
    border-left-color: transparent
}

.bg-cta-inner {
    max-width: 220px
}

.bg-cta-inner h3 {
    font-size: 1rem
}

.post-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem
}

.post-back {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: #4ADE80;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: opacity 0.2s
}

.post-back:hover {
    opacity: 0.7
}

.post-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 2rem
}

.post-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #FAFAFA;
    line-height: 1.2;
    margin-bottom: 1rem
}

.post-meta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: #52525B;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap
}

.post-body {
    color: #D4D4D8;
    font-size: 1.05rem;
    line-height: 1.85
}

.post-body a {
    color: #4ADE80;
    text-decoration: none;
}

.post-body a:hover {
    opacity: 0.75;
}

.post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FAFAFA;
    margin: 2.5rem 0 0.8rem;
    letter-spacing: -0.02em
}

.post-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FAFAFA;
    margin: 2rem 0 0.6rem
}

.post-body p {
    margin-bottom: 1.25rem
}

.post-lead {
    font-size: 1.1rem;
    color: #A1A1AA;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #16A34A;
    background: rgba(22, 163, 74, 0.05);
    border-radius: 0 var(--r-sm) var(--r-sm) 0
}

.post-body blockquote p {
    margin-bottom: 0;
    color: #A1A1AA;
    font-style: italic
}

.post-body pre {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    overflow-x: auto
}

.post-body code {
    font-family: var(--mono);
    font-size: 0.88rem;
    color: #4ADE80
}

.post-body ul,
.post-body ol {
    margin: 1rem 0 1.5rem 1.5rem
}

.post-body li {
    margin-bottom: 0.5rem
}

.post-body li::marker {
    color: #16A34A
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.post-share-link {
    font-size: 0.85rem;
    color: #4ADE80;
    text-decoration: none;
    transition: opacity 0.2s
}

.post-share-link:hover {
    opacity: 0.7
}

.post-cta {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    padding: 2rem;
    text-align: center
}

.post-cta h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 0.4rem
}

.post-cta p {
    font-size: 0.95rem;
    color: #A1A1AA
}

footer {
    border-top: none;
    padding: 0 2.5rem 2rem;
    background: #09090B;
    position: relative
}

.ft-circuit {
    width: 100%;
    height: 20px;
    display: block;
    margin-bottom: 3rem
}

.ft-circuit-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000
}

.ft-circuit-node {
    transform-origin: center
}

.ft-g {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem
}

.ft-b {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.04em;
    margin-bottom: 0.6rem;
    color: #FAFAFA
}

.ft-b span {
    font-weight: 400;
    color: #71717A
}

.ft-tl {
    font-size: 0.88rem;
    color: #71717A;
    line-height: 1.7;
    max-width: 280px
}

.ft-c h5 {
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    margin-bottom: 0.85rem
}

.ft-c a {
    display: block;
    font-size: 0.88rem;
    color: #A1A1AA;
    text-decoration: none;
    margin-bottom: 0.45rem;
    transition: color 0.2s
}

.ft-c a:hover {
    color: #FAFAFA
}

.ft-bot {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #52525B;
    flex-wrap: wrap;
    gap: 0.5rem
}

@media (prefers-reduced-motion: reduce) {

    *,
    .hero-tag,
    .hero h1,
    .hero-sub,
    .hero-acts,
    .stats-row {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important
    }

    .carousel-track {
        animation: none
    }

    .anim-fade-up,
    .anim-fade-right,
    .anim-scale,
    .anim-stagger .anim-child {
        opacity: 1;
        transform: none
    }
}

@media (max-width: 1024px) {
    .sec {
        padding: 4.5rem 2rem
    }

    .ai-wrap {
        padding: 4.5rem 2rem
    }

    .lead-wrap {
        padding: 4.5rem 2rem
    }

    .blog-section {
        padding: 4.5rem 2rem
    }

    .blog-section-header {
        padding: 0
    }

    .blog-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-terminal {
        display: none
    }

    .ft-g {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem
    }
}

@media (max-width: 900px) {

    nav {
        padding: 0 1.25rem
    }

    .nav-logo-svg {
        width: 155px
    }

    .hamburger {
        display: flex
    }

    .n-mid {
        display: none
    }

    .n-right .n-link,
    .n-right .n-cta {
        display: none
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
        min-height: 100svh
    }

    .hero h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem);
        opacity: 1;
        transform: none
    }

    .hero-sub {
        font-size: 1rem
    }

    .hero-acts {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem
    }

    .hero-acts .btn-p,
    .hero-acts .btn-g {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem
    }

    .sec {
        padding: 4rem 1.25rem
    }

    .ai-wrap {
        padding: 4rem 1.25rem
    }

    .ai-bento {
        grid-template-columns: 1fr
    }

    .ai-c {
        padding: 1.75rem
    }

    .proc {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .proc::before {
        display: none
    }

    .lead-wrap {
        padding: 4rem 1.25rem
    }

    .lead-in {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .tg {
        grid-template-columns: 1fr
    }

    .blog-section {
        padding: 4rem 1.25rem
    }

    .blog-section-header {
        margin-bottom: 1.75rem
    }

    .blog-row {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 4rem 1.25rem
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 5rem 1.25rem 3rem;
        gap: 2.5rem;
        min-height: auto
    }

    .cl > p {
        max-width: 100%
    }

    .blog-hero {
        padding: 6rem 1.25rem 2.5rem
    }

    .blog-featured {
        padding: 0 1.25rem 1.75rem
    }

    .bf-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .bf-arrow {
        font-size: 1.5rem;
        padding-left: 0.5rem;
    }

    .blog-cats {
        padding: 0 1.25rem 1.5rem
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 1.25rem 4rem
    }

    footer {
        padding: 0 1.25rem 2rem
    }

    .ft-g {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .ft-g > div:first-child {
        grid-column: 1 / -1
    }

    .ft-tl {
        max-width: 100%
    }

    .post-wrap {
        padding: 5rem 1.25rem 3rem
    }
}

@media (max-width: 600px) {

    html {
        font-size: 16px
    }

    .proc {
        grid-template-columns: 1fr
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 1.25rem 3rem
    }

    .fg-r {
        grid-template-columns: 1fr
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .st {
        padding: 1.25rem 0.75rem
    }

    .sec {
        padding: 3.5rem 1rem
    }

    .ai-wrap {
        padding: 3.5rem 1rem
    }

    .lead-wrap {
        padding: 3.5rem 1rem
    }

    .blog-section {
        padding: 3.5rem 1rem
    }

    .cta {
        padding: 3.5rem 1rem
    }

    .blog-hero {
        padding: 5.5rem 1rem 2rem
    }

    .blog-featured {
        padding: 0 1rem 1.5rem
    }

    .blog-cats {
        padding: 0 1rem 1.25rem
    }

    .blog-grid {
        padding: 0 1rem 3rem
    }

    .cf {
        padding: 1.5rem
    }

    .contact-wrap {
        padding: 4.5rem 1rem 2.5rem
    }

    footer {
        padding: 0 1rem 2rem
    }

    .post-wrap {
        padding: 5rem 1rem 2.5rem
    }

    .post-body {
        font-size: 1rem;
        line-height: 1.8
    }

    .post-body h2 {
        font-size: 1.35rem
    }

    .post-body blockquote {
        padding: 1rem 1.1rem
    }

    .mobile-nav-pill {
        font-size: 1.4rem
    }
}

@media (max-width: 400px) {
    .nav-logo-svg {
        width: 140px
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.post-image {
    margin: 2rem 0;
}

.post-image .image-hero {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

.post-image .image-gallery {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.post-image .image-gallery img {
    flex: 1;
    height: 140px;
    object-fit: cover;
    border-radius: 0.5rem;
    min-width: 0;
}
