
:root {
    
    --bg-core: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #d9def0;
    --text-secondary-rgb: 217, 222, 240;

    
    --neon-green: #8EE34D;
    --neon-pink: #FD6EF8;
    --neon-orange: #FFAA53;
    --neon-blue: #86D5F4;

    
    --accent-primary: var(--neon-green);
    --accent-secondary: var(--neon-pink);
    --accent-tertiary: var(--neon-orange);
    --accent-quaternary: var(--neon-blue);
    --accent-soft: var(--neon-blue);

    --accent-primary-rgb: 142, 227, 77;
    --accent-secondary-rgb: 253, 110, 248;
    --accent-soft-rgb: 134, 213, 244;

    
    --font-display: 'Inter Tight', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-main: var(--font-body);
    

    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semi: 600;
    --weight-bold: 700;
    --weight-black: 900;

    --spacing-tight: -0.02em;

    
    --container-width: 1280px;
    --gap-std: 24px;
    --radius-sm: 4px;
    --header-height: 80px;
    --section-padding: 40px;
    --nav-hover-gray: #b6b9c4;
}

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

*,
*::before,
*::after {
    box-shadow: none !important;
}

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

p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: var(--weight-black);
    letter-spacing: var(--spacing-tight);
    line-height: 1.1;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--text-primary);
    color: var(--bg-core);
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 14px;
}

.btn::after, .cap-label::after, #hsForm_981bdd58-4f67-4f7c-a6eb-728608fe8fae .hs-submit::after, .insight-simple-card .card-link-text::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 10px;
    height: 10px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l6-6M5 3h4v4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l6-6M5 3h4v4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: var(--neon-green);
    color: #000000;
    box-shadow: 0 0 0 rgba(142, 227, 77, 0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--neon-green);
    color: #000000;
    box-shadow: 0 0 20px rgba(142, 227, 77, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(142, 227, 77, 0.05);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 70px;
    overflow: hidden;
    background: var(--bg-core);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    opacity: 1;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(75vh - var(--header-height));
    width: 100%;
    padding-top: 48px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent-soft-rgb), 0.12);
    border: 1px solid rgba(var(--accent-soft-rgb), 0.5);
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--weight-semi);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--accent-primary-rgb), 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--accent-primary-rgb), 0);
    }
}

.hero-title {
    font-size: clamp(32px, 5.4vw, 64px);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    margin-bottom: 12px;
    margin-top: 60px;
    letter-spacing: -0.04em;
    padding-top: 32px;
}

.hero-tagline {
    display: grid;
    gap: 6px;
    margin: 10px 0 18px;
    text-align: center;
    color: rgba(var(--text-secondary-rgb), 0.9);
    font-size: 32px;
    line-height: 1.4;
}

.hero-tagline-accent {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (min-width: 1025px) {

    
    .hero-title {
        padding-top: clamp(32px, 4vh, 56px);
    }
}

.hero-title-secondary {
    font-size: clamp(38px, 6.4vw, 80px);
    font-weight: var(--weight-bold);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.edu-hero .hero-title {
    padding-top: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--neon-orange);
    text-shadow: none;
    font-weight: var(--weight-black);
    text-transform: uppercase;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
    position: relative;
}

.text-outline::after {
    content: 'Soul.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-secondary);
    opacity: 0;
    animation: flicker 4s infinite;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 0;
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
        filter: blur(2px);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
    margin-bottom: 64px;
    padding-top: 75px;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    opacity: 0.7;
    pointer-events: none;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 1px solid var(--text-primary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

.lifecycle {
    padding: var(--section-padding) 0;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-primary-rgb), 0.08), transparent 30%), radial-gradient(circle at 80% 30%, rgba(var(--accent-soft-rgb), 0.08), transparent 32%), var(--bg-core);
}

.section-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
}

.section-subtitle {
    max-width: 520px;
    color: var(--text-secondary);
    font-size: 16px;
}

.growth-engine .section-subtitle {
    max-width: none;
    flex-basis: 100%;
}

.engine-meta {
    max-width: 720px;
    margin-bottom: 24px;
}

.eyebrow {
    display: inline-block;
    background: #FFAA53;
    color: #000 !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.engine-heading {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 12px;
}

.engine-copy {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 20px;
}

.meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(var(--accent-soft-rgb), 0.1);
    border: 1px solid rgba(var(--accent-soft-rgb), 0.4);
    font-size: 12px;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.engine-tile {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    isolation: isolate;
}

.engine-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-primary-rgb), 0.12), transparent 35%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.engine-tile:hover,
.engine-tile:focus-within {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-primary-rgb), 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.engine-tile:hover::after,
.engine-tile:focus-within::after {
    opacity: 1;
}

.tile-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(var(--accent-primary-rgb), 0.35);
}

.tile-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.2), transparent 60%);
    z-index: 0;
}

.icon-dot {
    width: 14px;
    height: 14px;
    background: var(--text-primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.tile-icon-acquire {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-soft));
}

.tile-icon-convert {
    background: linear-gradient(135deg, var(--accent-soft), var(--accent-secondary));
}

.tile-icon-retain {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
}

.tile-step {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.engine-tile h3 {
    font-size: 24px;
    margin: 0;
}

.tile-body {
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.tile-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.signal {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: var(--text-primary);
}

.tile-list {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.tile-list li {
    font-size: 14px;
    color: rgba(var(--text-secondary-rgb), 0.9);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.tile-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    position: absolute;
    left: 0;
    top: 7px;
    box-shadow: 0 0 0 6px rgba(var(--accent-primary-rgb), 0.12);
}

.case-switcher {
    padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 42px);
    background: #ffffff;
}

.case-switcher-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.case-switcher-header .section-title {
    margin: 0;
}

.case-switcher-header .section-subtitle {
    max-width: none;
    width: 100%;
}

.case-switcher-cards {
    display: flex;
    gap: 16px;
    align-items: stretch;
    min-height: 420px;
}

.case-panel {
    position: relative;
    flex: 1 1 0;
    min-height: 360px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, transform 0.5s ease;
    isolation: isolate;
}

.case-panel.is-active {
    flex: 2.4 1 0;
    min-height: 520px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.case-panel:hover {
    transform: translateY(-4px);
}

.case-panel:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 6px;
}

.case-panel-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: saturate(1) brightness(1.15);
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.6s ease;
}

.case-panel:not(.is-active) .case-panel-bg {
    opacity: 0.32;
    filter: grayscale(90%) brightness(1.15);
    transform: scale(1.02);
}

.case-panel.is-active .case-panel-bg {
    transform: scale(1.06);
}

.case-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.case-panel-brand {
    position: absolute;
    inset: 15px;
    z-index: 2;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: var(--weight-bold);
    transition: opacity 0.35s ease;
}

.case-panel-logo-img {
    max-height: 52px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.9;
    margin: 0 auto;
}

.case-panel[data-case="solar"] .case-panel-logo-img,
.case-panel[data-case="stratatech"] .case-panel-logo-img {
    max-height: 84px;
}

.case-panel-brand::after {
    content: '';
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    background: var(--accent-secondary);
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L7.5 9.5M2.5 9.5L2.5 4.5L7.5 4.5' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0.85;
    transform: rotate(180deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-panel.is-active .case-panel-brand {
    opacity: 0;
    pointer-events: none;
}

.case-panel-logo {
    font-size: clamp(18px, 2.8vw, 28px);
    font-weight: var(--weight-bold);
}

.case-panel-tag {
    font-size: 16px;
    color: rgba(var(--text-secondary-rgb), 0.8);
}

.case-panel-body {
    position: absolute;
    left: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    bottom: clamp(16px, 3vw, 32px);
    background: #f5f7fb;
    color: #0a0a0a;
    padding: clamp(16px, 2vw, 22px);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
    z-index: 3;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.case-panel.is-active .case-panel-body {
    opacity: 1;
    transform: translateY(0);
}

.case-panel-kicker {
    color: #0a0a0a;
    font-weight: var(--weight-semi);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
}

.case-panel-title {
    margin: 0 0 10px;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.2;
}

.case-panel-link {
    color: #0a0a0a;
    text-decoration: none;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s ease, color 0.2s ease;
}

.case-panel-link:hover,
.case-panel-link:focus-visible {
    box-shadow: inset 0 -2px 0 rgba(var(--accent-primary-rgb), 0.5);
    color: #000000;
    outline: none;
}

.case-panel-copy {
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: 16px;
}

.case-panel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    color: #111111;
}

.case-panel-stat {
    font-weight: var(--weight-semi);
}

.case-panel-cta {
    color: inherit;
    font-weight: var(--weight-semi);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-transform: uppercase;
}

.case-panel-cta:hover {
    text-decoration: none;
}

.case-panel-cta::after {
    content: '';
    width: 10px;
    height: 10px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l6-6M5 3h4v4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.case-panel.is-active .case-panel-cta::after {
    transform: rotate(45deg);
}

.featured-story {
    padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 42px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: flex-start;
    gap: clamp(24px, 4vw, 48px);
}

.featured-copy {
    display: grid;
    gap: 14px;
}

.featured-logo {
    display: inline-flex;
    align-items: center;
}

.featured-logo img {
    max-height: 64px;
    width: auto;
}

.featured-headline {
    font-size: clamp(32px, 5vw, 44px);
    margin: 0;
}

.featured-body {
    color: rgba(var(--text-secondary-rgb), 0.95);
    max-width: 560px;
    line-height: 1.7;
}

.featured-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: var(--weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
}

.featured-link::after {
    content: '';
    width: 12px;
    height: 12px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l6-6M5 3h4v4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.featured-link:hover,
.featured-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: none;
    overflow: hidden;
    margin-top: 20px;
    color: #000000;
}

.featured-stat {
    display: grid;
    gap: 6px;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.featured-stats .stat-label {
    color: #333333;
}

.featured-stats .stat-value {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    color: #000000 !important;
}

.featured-stats.featured-stats-wide .featured-stat .stat-value {
    color: #000000 !important;
}

.featured-stats.featured-stats-wide .featured-stat .stat-label {
    color: #222222 !important;
    font-weight: var(--weight-semi);
}

.stat-value {
    font-weight: var(--weight-bold);
    font-size: clamp(22px, 4vw, 32px);
    color: var(--text-primary);
    line-height: 1.2;
    word-break: break-word;
}

.stat-label {
    color: rgba(var(--text-secondary-rgb), 0.82);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
}

.featured-stat:not(:first-child)::before {
    content: none;
}

.featured-media {
    width: 100%;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .featured-headline {
        font-size: clamp(28px, 7vw, 38px);
    }

    .featured-stats {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

.ideal-clients {
    padding: clamp(20px, 3vw, 32px) 0;
    background: transparent;
}

.pillar-wrap {
    padding-top: clamp(12px, 2vw, 24px);
}

.pillar-shell {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.ideal-grid {
    display: grid;
    gap: 18px;
    padding: clamp(16px, 3vw, 24px);
    border-bottom: none;
    border-radius: 0;
    background: transparent;
}

.ideal-header {
    display: grid;
    gap: 8px;
}

.ideal-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: var(--weight-bold);
}

.ideal-body {
    color: rgba(var(--text-secondary-rgb), 0.9);
    line-height: 1.6;
    max-width: none;
}

.ideal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ideal-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(var(--text-secondary-rgb), 0.95);
    line-height: 1.5;
}

.ideal-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: none;
}

@media (max-width: 900px) {
    .ideal-grid {
        padding: 16px;
    }

    .ideal-list {
        grid-template-columns: 1fr;
    }
}

.capabilities {
    padding: clamp(12px, 2vw, 24px) 0 clamp(24px, 3vw, 36px);
    background: transparent;
}

.capabilities-shell {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(16px, 3vw, 24px);
    box-shadow: none;
    max-width: none;
    margin: 0;
}

.capabilities-header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.capabilities-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: var(--weight-bold);
}

.capabilities-body {
    color: rgba(var(--text-secondary-rgb), 0.9);
    max-width: none;
    line-height: 1.6;
}

.expect-inline {
    padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 7vw, 96px);
    background: #ffffff;
    overflow: visible;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(16px, 4vw, 32px);
    align-items: center;
}

.expect-copy {
    display: grid;
    gap: 10px;
}

.expect-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: var(--weight-bold);
}

.expect-body {
    color: rgba(var(--text-secondary-rgb), 0.9);
    margin: 0;
}

.expect-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    justify-items: start;
}

.expect-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    justify-items: start;
    text-align: left;
    color: rgba(var(--text-secondary-rgb), 0.95);
}

.expect-list li::before {
    content: none;
}

.expect-list li strong {
    color: var(--text-primary);
    font-weight: var(--weight-bold);
    grid-column: 2;
}

.expect-list li span {
    grid-column: 2;
}

.how-we-do {
    padding: clamp(16px, 3vw, 28px) 0;
}

.expect-cta {
    text-align: center;
    margin-top: 6px;
}

.expect-figure {
    margin: 0;
}

.expect-photo-frame {
    position: relative;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.expect-photo-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.capability {
    display: grid;
    gap: 6px;
    padding: 12px 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.capability:hover,
.capability:focus-visible {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.cap-number {
    color: var(--accent-secondary);
    letter-spacing: 0.14em;
    font-size: 12px;
    text-transform: uppercase;
}

.cap-link {
    font-weight: var(--weight-semi);
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-stats {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
    }

    .featured-stats .stat-value {
        font-size: clamp(16px, 4vw, 18px);
    }

    .featured-stats .stat-label {
        font-size: 9px;
    }
}

.edu-promise {
    padding: clamp(32px, 6vw, 72px) 0;
    background: var(--bg-core);
}

.edu-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.edu-pillar {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 6px;
}

.pillar-tag {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(var(--text-secondary-rgb), 0.8);
    font-size: 12px;
    margin: 0;
}

.edu-pillar h3 {
    margin: 0;
    font-size: 20px;
}

.edu-pillar p {
    margin: 0;
    color: rgba(var(--text-secondary-rgb), 0.9);
}

.edu-body {
    padding: clamp(32px, 6vw, 72px) 0;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

.edu-copy {
    display: grid;
    gap: 12px;
}

.edu-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.edu-cases {
    padding: clamp(32px, 6vw, 72px) 0;
}

.edu-case {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.edu-perspectives {
    padding: clamp(32px, 6vw, 72px) 0;
}

@media (max-width: 1024px) {
    .case-switcher-cards {
        flex-direction: column;
        min-height: auto;
    }

    .case-panel,
    .case-panel.is-active {
        flex: 1 1 auto;
        min-height: 380px;
    }

    .case-panel-body {
        position: relative;
        inset: auto;
        margin: 16px;
    }
}

.work {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    overflow: visible;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 55s linear infinite;
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 0;
    min-width: clamp(140px, 18vw, 240px);
    flex: 0 0 auto;
    padding: 6px 12px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.logo-item img {
    height: auto;
    width: auto;
    max-height: 64px;
    object-fit: contain;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .logo-item {
        height: clamp(34px, 12vw, 64px);
        min-width: clamp(84px, 32vw, 143px);
    }
}

.case-studies {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.case-big {
    position: relative;
    min-height: 520px;
    background: #222;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.case-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-big:hover img {
    transform: scale(1.05);
}

.case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.15) 78%, transparent 95%);
}

.case-stat {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: var(--weight-bold);
    color: #000000;
    line-height: 1;
    margin-bottom: 8px;
}

.case-small {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.case-card {
    flex: 1;
    background: var(--bg-secondary);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.case-small>* {
    min-height: 240px;
}

.tech-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.5));
    border-color: rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
    gap: 10px;
}

.case-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(142, 227, 77, 0.15);
    transform: translateY(-2px);
}

.quote-mark {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
}

.quote-text {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    color: rgba(var(--text-secondary-rgb), 0.65);
    font-size: 14px;
}

.case-tag {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 8px;
    display: inline-block;
    font-weight: var(--weight-semi);
}

.case-points {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    color: rgba(var(--text-secondary-rgb), 0.9);
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.case-points li::before {
    content: "•";
    color: var(--accent-primary);
    margin-right: 6px;
}

.testimonial-card {
    padding: 0;
    min-height: 360px;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05), transparent 45%), #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card.pull-quote {
    min-height: 420px;
}

.testimonial-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(253, 110, 248, 0.15);
}

.pull-quote-inner {
    max-width: 680px;
    text-align: center;
    display: grid;
    gap: 14px;
    padding: clamp(24px, 3vw, 36px);
    margin: 0 auto;
    align-content: center;
    justify-items: center;
}

.pull-quote-mark {
    font-size: clamp(72px, 12vw, 110px);
    line-height: 1;
    color: var(--neon-orange);
    text-shadow: 0 0 32px rgba(255, 170, 83, 0.35);
}

.pull-quote-text {
    font-family: var(--font-display);
    font-weight: var(--weight-medium);
    font-size: clamp(22px, 3.2vw, 36px);
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

.pull-quote-em {
    color: var(--neon-orange);
    font-weight: var(--weight-bold);
}

.pull-quote-attrib {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    letter-spacing: 0.22em;
    font-size: 12px;
    color: rgba(var(--text-secondary-rgb), 0.8);
}

.tech-card-title {
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.tech-card p {
    color: rgba(var(--text-secondary-rgb), 0.9);
    margin-bottom: 12px;
}

.case-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: var(--weight-semi);
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.case-link::after {
    content: '↗';
    font-size: 12px;
}

.case-cta-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.case-cta-copy {
    color: var(--text-secondary);
    font-size: 16px;
}

.tech-talent {
    padding: var(--section-padding) 0;
}

.tt-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.tt-title {
    font-size: clamp(34px, 4.4vw, 52px);
    margin-bottom: 6px;
}

.tt-subtitle {
    font-size: clamp(22px, 3vw, 30px);
    color: rgba(var(--text-secondary-rgb), 0.85);
    margin-bottom: 16px;
}

.tt-desc {
    font-size: 18px;
    color: rgba(var(--text-secondary-rgb), 0.9);
    margin-bottom: 12px;
    max-width: 620px;
    line-height: 1.7;
}

.tt-content .btn {
    margin-top: 10px;
}

.tt-figure {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tt-photo-frame {
    position: relative;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.tt-photo-frame::before {
    content: '';
    position: absolute;
    inset: 12px 16px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-primary-rgb), 0.14), transparent 45%);
    opacity: 0.8;
    z-index: 0;
}

.tt-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    filter: grayscale(100%) contrast(1.05);
}

.tt-caption {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding-left: 4px;
}

.insights {
    padding: var(--section-padding) 0;
}

.insights-cta {
    padding: var(--section-padding) 0 var(--section-padding);
    background: var(--bg-core);
}

.insights-cta-inner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    opacity: 0;
    min-height: 624px;
    
    transition: opacity 0.3s ease;
}

.bento-grid.loaded {
    opacity: 1;
}

.bento-item {
    background: #07090f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(134, 213, 244, 0.8);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
}

.bento-small {
    grid-column: span 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}

.bento-tag {
    display: inline-block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-weight: var(--weight-bold);
}

.bento-tag.tag-news {
    color: var(--neon-green);
}

.bento-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #ffffff;
}

.bento-large h3 {
    font-size: 32px;
    max-width: 80%;
}

.btn-link {
    color: var(--neon-green);
    font-size: 14px;
    font-weight: var(--weight-semi);
    margin-top: 16px;
    display: inline-block;
}

.bento-meta {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: scale 0.4s ease;
    z-index: 1;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.bento-bg {
    border-radius: 14px;
}

.bento-podcast {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #000000;
}

.bento-podcast::after {
    content: none;
}

.bento-podcast .bento-content {
    gap: 12px;
}

.bento-podcast .bento-tag {
    color: var(--accent-secondary);
}

.bento-podcast h3 {
    color: #000000;
}

.bento-podcast .bento-meta {
    color: #444444;
}

.inline-player iframe {
    width: 100%;
    min-height: 120px;
}

.podcast-cta.inline {
    display: flex;
    justify-content: flex-end;
}

.bento-item:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.8) 100%);
}

.bento-item:hover .bento-bg {
    scale: 1.05;
    opacity: 0.5;
}

.bento-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: auto;
        min-height: 300px;
    }
}

.insights-footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 24px 0 0;
}

.insights-footnote {
    color: var(--text-secondary);
    font-size: 14px;
}

.insights-cta-bar {
    margin: 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.insights .btn-outline:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.growth-hub {
    padding: var(--section-padding) 0;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.growth-grid.growth-single {
    grid-template-columns: 1fr;
}

.podcast-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: center;
}

.podcast-copy h3 {
    margin: 0 0 8px;
}

.podcast-media {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.podcast-cta {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.growth-card {
    background: #f7f8fb;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    padding: 24px;
    position: relative;
    overflow: hidden;
    color: #000;
}

.growth-card .card-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(var(--accent-soft-rgb), 0.12);
    border: 1px solid rgba(var(--accent-soft-rgb), 0.3);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.growth-card h3 {
    font-size: 24px;
    margin: 0;
}

.newsletter-card {
    background: #ffffff;
    min-height: auto;
}

.insights-header-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.insights-footnote-inline {
    color: var(--text-secondary);
    margin: 6px 0 0;
}

.newsletter-card::before {
    content: none;
}

.newsletter-card::after {
    content: none;
}

.card-copy {
    color: var(--text-secondary);
    line-height: 1.5;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

input#email-981bdd58-4f67-4f7c-a6eb-728608fe8fae::placeholder {
    color: #555555;
}

.newsletter-form input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #000000;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 2px rgba(var(--accent-secondary-rgb), 0.18);
}

.form-hint {
    font-size: 12px;
    color: var(--text-secondary);
}

.form-status {
    min-height: 18px;
    font-size: 13px;
    color: var(--accent-secondary);
}

.form-success .form-status {
    color: var(--accent-soft);
}

.podcast-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.podcast-player {
    position: relative;
    z-index: 1;
    margin: 12px 0;
}

.podcast-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 720px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .growth-card h3 {
        font-size: 20px;
    }
}

.post-article {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.post-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    padding-top: var(--header-height);
    padding-bottom: 60px;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: var(--weight-semi);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease, transform 0.2s ease;
    margin-bottom: 16px;
}

.back-link:hover {
    color: var(--accent-primary);
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.2s ease;
}

.back-link:hover svg {
    transform: translateX(-2px);
}

.post-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.post-category {
    color: var(--accent-primary);
    font-weight: var(--weight-bold);
}

.post-date,
.post-reading-time {
    opacity: 0.8;
}

.post-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.post-excerpt {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 800px;
}

.post-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: var(--weight-bold);
    line-height: 1.3;
}

.post-body h1 {
    font-size: clamp(32px, 4vw, 42px);
}

.post-body h2 {
    font-size: clamp(28px, 3.5vw, 36px);
}

.post-body h3 {
    font-size: clamp(24px, 3vw, 30px);
}

.post-body h4 {
    font-size: clamp(20px, 2.5vw, 24px);
}

.post-body p {
    margin-bottom: 24px;
}

.post-body a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.post-body a:hover {
    color: var(--accent-soft);
}

.post-body strong {
    color: var(--text-primary);
    font-weight: var(--weight-bold);
}

.post-body em {
    font-style: italic;
    color: var(--text-primary);
}

.post-body code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--accent-soft);
}

.post-body pre {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 20px;
    overflow-x: auto;
    margin: 32px 0;
}

.post-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-secondary);
}

.post-body ul,
.post-body ol {
    margin: 24px 0;
    padding-left: 28px;
}

.post-body ul li,
.post-body ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.post-body ul {
    list-style: none;
}

.post-body ul li {
    position: relative;
    padding-left: 8px;
}

.post-body ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.post-body ol {
    list-style: decimal;
    list-style-position: outside;
}

.post-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1.6;
}

.post-image {
    margin: 48px 0;
    width: 100%;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.post-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.post-share {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-share h3 {
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.3);
}

.post-cta {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.post-cta h3 {
    font-size: 28px;
    margin: 0;
    color: var(--text-primary);
}

.post-cta p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
    max-width: 500px;
}

.post-loading {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: var(--header-height);
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.post-loading p {
    color: var(--text-secondary);
    font-size: 16px;
}

.post-error {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
    text-align: center;
    padding-top: var(--header-height);
}

.post-error h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-primary);
}

.post-error p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 500px;
}

@media (max-width: 768px) {
    .post-hero {
        min-height: 50vh;
        padding-bottom: 40px;
    }

    .post-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .post-body {
        font-size: 16px;
    }

    .post-body h1 {
        margin-top: 36px;
    }

    .post-footer {
        gap: 36px;
    }

    .post-cta {
        padding: 32px 24px;
    }
}

.insights-page-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--bg-core);
    position: relative;
    overflow: hidden;
}

.insights-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(var(--accent-primary-rgb), 0.08), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(var(--accent-soft-rgb), 0.06), transparent 35%);
    pointer-events: none;
}

.insights-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.insights-hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    margin: 12px 0 20px;
    letter-spacing: -0.02em;
}

.insights-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    line-height: 1.6;
}

.insights-filters {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.filter-pill {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: var(--weight-semi);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.filter-pill.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
    box-shadow: 0 4px 12px rgba(var(--accent-primary-rgb), 0.3);
}

.insights-page-content {
    padding: 60px 0 80px;
    background: var(--bg-core);
}

.insights-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.insight-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.insight-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.insight-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.08);
}

.insight-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.insight-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.insight-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.insight-card-category {
    color: var(--accent-primary);
    font-weight: var(--weight-bold);
}

.insight-card-date {
    color: var(--text-secondary);
    opacity: 0.7;
}

.insight-card-title {
    font-size: 22px;
    font-weight: var(--weight-bold);
    line-height: 1.3;
    margin: 0;
    color: var(--text-primary);
}

.insight-card-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-card-reading-time {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.insight-card-arrow {
    font-size: 20px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-card-arrow {
    transform: translateX(4px);
}

.insights-page-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    min-height: 200px;
}

.insights-page-loading p {
    color: var(--text-secondary);
    font-size: 16px;
}

.insights-page-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 20px;
    text-align: center;
}

.end-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.insights-page-end p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.insights-page-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 60px 20px;
    text-align: center;
}

.insights-page-error p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.insights-page-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 20px;
    text-align: center;
}

.insights-page-empty h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin: 0;
}

.insights-page-empty p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
    max-width: 400px;
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--accent-primary);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--accent-primary-rgb), 0.4);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .insights-page-hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .insights-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .insights-filters {
        gap: 8px;
    }

    .filter-pill {
        padding: 10px 18px;
        font-size: 12px;
    }

    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 0px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        padding-top: 48px;
        align-items: center;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-portrait {
        order: 2;
        min-height: 360px;
        justify-content: center;
        margin-top: 12px;
    }

    .hero-portrait-img {
        object-position: center 20%;
        opacity: 0.72;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
    }

    .engine-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .engine-steps {
        --timeline-x: 32px;
        gap: 56px;
        padding: 24px 0;
        max-width: 100%;
    }

    .engine-step {
        padding: 28px 22px;
        gap: 20px;
    }

    .step-icon-wrapper {
        width: 70px;
    }

    .case-studies {
        grid-template-columns: 1fr;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .footer-culture {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-auto-rows: 200px;
    }

    .footer-badges {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .culture-card-wide,
    .culture-card-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.fade-up-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.engine-card:nth-child(2) {
    transition-delay: 0.1s;
}

.engine-card:nth-child(3) {
    transition-delay: 0.2s;
}

.values-list {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 620px;
}

.values-list li {
    font-size: 18px;
    color: rgba(var(--text-secondary-rgb), 0.85);
    position: relative;
}

.values-list:not(.numbered) li {
    padding-left: 24px;
}

.values-list:not(.numbered) li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.values-list strong {
    color: var(--text-primary);
}

.values-list.numbered {
    counter-reset: values;
    gap: 40px;
    margin-top: 48px;
}

.values-list.numbered li {
    counter-increment: values;
    padding-left: 0;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 24px;
    align-items: baseline;
    padding: 0;
}

.values-list.numbered li::before {
    content: counter(values, decimal-leading-zero);
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    letter-spacing: 0.05em;
    color: var(--neon-green);
    font-size: 14px;
    opacity: 1;
    margin-top: 6px;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(var(--text-secondary-rgb), 0.92);
}

.value-text strong {
    font-size: 18px;
    color: var(--text-primary);
}

.value-text p {
    margin: 0;
    line-height: 1.6;
}

.value-text strong {
    display: block;
    font-size: 20px;
    color: var(--text-primary);
    font-weight: var(--weight-bold);
    line-height: 1.2;
}

.value-text p {
    margin: 0;
    font-size: 16px;
    color: rgba(var(--text-secondary-rgb), 0.8);
    line-height: 1.6;
}

.footer-cta-wrapper {
    margin-bottom: 60px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.modal-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    transition: border-color 0.2s;
}

.growth-engine {
    padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 7vw, 96px);
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.text-highlight-orange {
    color: var(--neon-orange);
    text-shadow: none;
}

.engine-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    margin-top: 80px;
    align-items: start;
}

.engine-steps.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap-std);
    padding: 0;
    width: 100%;
}

.engine-steps.grid-layout::before {
    display: none;
}

@media (max-width: 768px) {
    .engine-steps.grid-layout {
        grid-template-columns: 1fr;
    }
}

.engine-step {
    position: relative;
    background: #f7f5ff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    overflow: hidden;
    transition: none;
    min-height: 140px;
    z-index: 1;
    isolation: isolate;
    box-shadow: none;
}

.engine-step::after {
    content: none;
}

.step-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(100%) contrast(1.1);
    transition: none;
    z-index: 0;
    pointer-events: none;
    transform: none;
}

.step-icon-wrapper,
.step-content {
    position: relative;
    z-index: 2;
}

.step-icon-wrapper {
    flex-direction: column;
    width: auto;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 18px;
    margin-bottom: 0;
    gap: 10px;
    flex-shrink: 0;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid rgba(253, 110, 248, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    transition: none;
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.6;
    color: #555;
    font-family: var(--font-mono, monospace);
}

.data-object-track,
.data-object-sticky,
.data-object-wrapper,
.data-path-line {
    display: none;
}

.micro-proof-tooltip {
    display: none;
}

.proof-icon {
    font-size: 18px;
}

.proof-text {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: var(--weight-medium);
}

.step-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.step-title {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-weight: var(--weight-bold);
    letter-spacing: -0.01em;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
    text-shadow: none;
}

@media (max-width: 900px) {
    .engine-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .engine-steps {
        --timeline-x: 40px;
    }

    .engine-step {
        grid-template-columns: 80px 1fr;
    }

    .step-icon-wrapper {
        padding: 20px 0;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-content {
        padding: 24px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 14px;
    }
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-img,
    .pulse,
    .mouse::before,
    .marquee-track,
    .viz-circle:nth-child(2),
    .quote-pulse {
        animation: none !important;
    }

    .fade-up-init {
        opacity: 1 !important;
        transform: none !important;
    }
}

.ai-advantage-section {
    padding: var(--section-padding) 0;
    background: var(--bg-core);
    position: relative;
    overflow: hidden;
}

.ai-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
    margin-top: 60px;
}

.bento-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card.glow-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.bento-card:hover.glow-effect::after {
    opacity: 1;
    background: linear-gradient(135deg, var(--neon-orange), transparent 60%);
}

.card-large {
    grid-column: span 6;
    grid-row: span 2;
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
}

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

.card-wide {
    grid-column: span 12;
    grid-row: span 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon-svg {
    color: var(--neon-orange);
    filter: none;
}

.bento-card h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
}

.card-body {
    margin-bottom: auto;
}

.intro-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: var(--weight-medium);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--neon-orange);
    border-radius: 50%;
}

.benefit-list strong {
    color: #fff;
    font-weight: var(--weight-bold);
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.simple-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 10px;
}

.simple-tag::before {
    content: '#';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    opacity: 0.7;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-orange);
    font-weight: var(--weight-bold);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.card-cta svg {
    transition: transform 0.3s ease;
}

.card-cta:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.card-cta:hover svg {
    transform: translateX(4px);
}

.mesh-bg {
    background-image:
        radial-gradient(circle at 100% 100%, rgba(255, 170, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(253, 110, 248, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.card-number {
    font-family: var(--font-mono);
    color: var(--neon-orange);
    font-size: 14px;
    opacity: 0.8;
}

.stat-display {
    margin-top: auto;
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: var(--weight-black);
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-stats .stat-value,
.featured-stats.featured-stats-wide .stat-value {
    color: #000000 !important;
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

.featured-stats .stat-label,
.featured-stats.featured-stats-wide .stat-label {
    color: #222222 !important;
    font-weight: var(--weight-semi);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visual-wave {
    display: flex;
    gap: 4px;
    height: 40px;
    align-items: flex-end;
    margin-top: auto;
}

.visual-wave span {
    width: 6px;
    background: var(--neon-pink);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite;
}

.visual-wave span:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.visual-wave span:nth-child(2) {
    height: 80%;
    animation-delay: 0.1s;
}

.visual-wave span:nth-child(3) {
    height: 60%;
    animation-delay: 0.2s;
}

.visual-wave span:nth-child(4) {
    height: 100%;
    animation-delay: 0.3s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--neon-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-orange);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--neon-green, #00ff9d);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 255, 157, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .ai-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .card-large {
        grid-column: span 2;
    }

    .card-medium {
        grid-column: span 1;
    }

    .card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ai-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-large,
    .card-medium,
    .card-wide {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-card {
        padding: 24px;
        min-height: auto;
    }
}

:root {
    
    --bg-core: #E6E6FA;
    
    --bg-secondary: #F0F0FF;
    
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-secondary-rgb: 51, 51, 51;

    
    --accent-primary: #000000;
    
    --accent-secondary: #FD6EF8;
    
    --accent-tertiary: #FFAA53;
    

    
    --nav-bg: rgba(230, 230, 250, 0.9);
    --nav-text: #000000;
}

body {
    background: #d9def0;
    color: var(--text-primary);
}

 .main-nav {
    background: transparent;
}
.logo {
    filter: invert(1);
}
.main-nav.scrolled .logo {
    filter: none;
}

.hero {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-bottom: clamp(220px, 30vw, 360px);
    overflow: visible;
    position: relative;
    z-index: 10;
}

.hero-bg {
    display: none;
    
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

.hero-layout {
    position: static !important;
    align-items: flex-start;
    padding-top: 88px;
}

.hero-header-block {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
}

.hero-text-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: left;
}

.hero-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.hero-col-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.hero-intro {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.1;
    color: #000;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.hero-image-wrapper {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    z-index: 60;
    pointer-events: none;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title-large {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(30px, 8vw, 110px);
    line-height: 0.85;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0;
    
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
    
    margin-top: 0;
}

.hero-title-large .highlight-orange {
    color: #000000;
    background: #ffaa53;
    display: inline-block;
    padding: 0.08em 0.24em 0.02em;
    margin-left: 6px;
    border-radius: 2px;
}

.hero-period {
    color: #000000;
    display: inline;
}

.hero-kicker {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    margin: 0 0 20px;
}

.hero-kicker span {
    display: inline-block;
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 24px);
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
    animation: kicker-scroll 22s linear infinite;
    padding: 0 12px;
}

@keyframes kicker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-mini-cta {
    position: absolute;
    bottom: clamp(20px, 2vw, 4px);
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 12px;
    background: var(--accent-secondary);
    color: #000;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-mini-cta::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 10px;
    height: 10px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9l6-6M5 3h4v4' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-mini-cta:hover,
.hero-mini-cta:focus-visible {
    background: #d1d1d1;
    transform: translate(-50%, -3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    outline: none;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}

.btn-outline:hover {
    border-color: #000000;
    background-color: #FD6EF8;
}

.hero-right-btn {
    background: var(--accent-secondary) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.1);
    min-width: 160px;
}

.hero-right-btn:hover,
.hero-right-btn:focus-visible {
    background: #FFAA53 !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    
    .main-nav {
        background: #000000;
    }
    .main-nav .logo {
        filter: invert(0);
    }

    .nav-toggle-bar {
        background: #ffffff;
    }

    
    .main-nav .logo .logo-default {
        display: none;
    }

    .main-nav .logo .logo-scrolled {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(var(--lvl-header-height) + 0px);
        right: 0;
        left: 0;
        flex-direction: column;
        background: #000;
        border: none;
        border-radius: 0;
        padding: 0px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
        z-index: 5;
        height: 100vh;
    }

    .main-nav.nav-open .nav-links {
        display: flex;
    }

    
    .nav-link,
    .main-nav .nav-link,
    .main-nav:not(.scrolled) .nav-link {
        color: #ffffff !important;
    }

    .nav-cta,
    .main-nav .nav-cta,
    .main-nav:not(.scrolled) .nav-cta {
        color: #ffffff !important;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
        color: #ffffff !important;
        text-decoration: underline;
        text-decoration-color: var(--lvl-header-highlight);
        text-underline-offset: 6px;
    }

    .main-nav.scrolled .nav-links {
        background: #000000;
        border: none;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
    }

    .main-nav.scrolled .nav-link {
        color: #ffffff !important;
    }

    .main-nav.scrolled .nav-link:hover,
    .main-nav.scrolled .nav-link:focus-visible {
        color: #ffffff !important;
        text-decoration: underline;
    }
}

@media (max-width: 768px) {
    header.hero {
        padding-top: 0px;
        padding-bottom: 0px !important;
    }

    .hero-layout {
        padding-top: 60px !important;
        flex-direction: column;
    }

    .hero-text-row {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-col-left {
        align-items: center;
    }

    .hero-col-right {
        text-align: center;
    }

    .hero-image-wrapper {
        bottom: 0px;
        width: 100%;
        position: relative;
        transform: none;
        left: 0;
    }

    .hero-title-large {
        font-size: clamp(40px, 15vw, 80px);
    }
}

.section-title {
    color: #000000 !important;
}

.section-subtitle {
    color: #000000 !important;
}

.case-panel {
    background: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, transform 0.5s ease !important;
    isolation: isolate;
}

.case-panel.is-active {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
}

.case-panel:hover {
    transform: translateY(-4px) !important;
}

.case-panel:focus-visible {
    outline: 2px solid #8ee34d !important;
    outline-offset: 6px !important;
}

.case-panel-bg {
    opacity: 0.6 !important;
    filter: saturate(1) brightness(1.15) !important;
}

.case-panel:not(.is-active) .case-panel-bg {
    opacity: 0.32 !important;
    filter: grayscale(90%) brightness(1.15) !important;
    transform: scale(1.02) !important;
}

.case-panel.is-active .case-panel-bg {
    transform: scale(1.06) !important;
}

.case-panel-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 70%, rgba(0, 0, 0, 0.85) 100%) !important;
}

.case-panel-brand {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: opacity 0.35s ease !important;
}

.case-panel-tag {
    color: rgba(255, 255, 255, 0.8) !important;
}

.case-panel.is-active .case-panel-brand {
    opacity: 0 !important;
    pointer-events: none !important;
}

.case-panel-body {
    background: #f5f7fb !important;
    color: #0a0a0a !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32) !important;
    opacity: 0 !important;
    transform: translateY(24px) !important;
    transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.case-panel.is-active .case-panel-body {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.case-panel-kicker {
    color: #0a0a0a !important;
}

.case-panel-link {
    color: #0a0a0a !important;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12) !important;
}

.case-panel-link:hover,
.case-panel-link:focus-visible {
    box-shadow: inset 0 -2px 0 rgba(142, 227, 77, 0.5) !important;
    color: #000000 !important;
}

.case-panel-copy {
    color: #1a1a1a !important;
}

.case-panel-meta {
    color: #111111 !important;
}

.growth-engine .section-title,
.growth-engine .section-subtitle,
.growth-engine .eyebrow,
.case-switcher .eyebrow,
.featured-story .featured-headline,
.featured-story .featured-body,
.featured-story .featured-link {
    color: #000000;
}

.featured-stats {
    border-radius: 9999px !important;
}

.case-switcher .eyebrow {
    color: var(--accent-secondary);
}

.featured-story .featured-headline {
    color: #000000 !important;
}

.featured-story .featured-body {
    color: #000000 !important;
}

.footer-modern {
    background: #000000;
    
    color: #ffffff;
}

.footer-modern,
.footer-modern * {
    color: #ffffff !important;
}

.footer-eyebrow {
    padding: 6px 12px;
    width: fit-content !important;
    display: inline-block !important;
    align-self: flex-start;
    background: #FFAA53;
    color: #000 !important;
    font-weight: var(--weight-bold) !important;
    border-radius: 4px;
}

.footer-eyebrow-bar {
    display: none !important;
}

.case-switcher {
    width: 100%;
    max-width: none;
    background: #fff;
    padding: var(--section-padding) 0;
}

.footer-lead-title,
.footer-lead-plain {
    color: #ffffff !important;
}

.footer-lead-accent {
    color: var(--accent-secondary) !important;
    opacity: 1 !important;
}

.pillar-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(160deg, #0b0d14 0%, #0f111b 55%, #0a0c12 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: clamp(32px, 5vw, 60px);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), 0 10px 28px rgba(0, 0, 0, 0.3), 0 0 28px rgba(var(--accent-secondary-rgb), 0.14);
    color: #ffffff;
    margin-top: 48px;
    margin-bottom: 52px;
    backdrop-filter: saturate(120%);
}

.pillar-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    background: radial-gradient(circle at 20% 18%, rgba(var(--accent-secondary-rgb), 0.18), transparent 40%),
        radial-gradient(circle at 80% 22%, rgba(134, 213, 244, 0.12), transparent 42%);
    filter: blur(26px);
    z-index: 0;
    opacity: 0.8;
}

.pillar-card>* {
    position: relative;
    z-index: 1;
}

.pillar-wrap {
    background: var(--bg-core);
    padding: clamp(32px, 5vw, 56px) 0;
    margin: 0;
}

.work {
    position: relative;
    z-index: 15;
    background: #e6e6fb !important;
    padding: clamp(22px, 4vw, 32px) 0 0 0 !important;
    overflow: hidden;
}

.logo-marquee-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vw, 14px);
    padding-top: clamp(12px, 3vw, 20px);
    padding-bottom: clamp(8px, 2vw, 16px);
}

.logo-marquee-title {
    font-family: var(--font-display);
    font-weight: var(--weight-bold);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.2;
    color: #000000;
    text-align: center;
    letter-spacing: -0.02em;
}

.logo-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 3vw, 22px);
    width: 100%;
}

.logo-rail {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: transparent;
    border: none;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 130px;
    width: max-content;
    padding: clamp(14px, 2vw, 18px) 0;
    animation: marquee-left 100s linear infinite;
    will-change: transform;
}

.logo-track-right {
    animation-name: marquee-right;
    animation-duration: 100s;
}

.logo-seq {
    display: flex;
    align-items: center;
    gap: 130px;
    width: max-content;
}

.logo-marquee-block .logo-item {
    min-width: auto;
    padding: 0;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.9);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-marquee-block .logo-item img {
    height: clamp(28px, 4vw, 40px);
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.logo-marquee-block .logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.featured-link {
    color: #000;
}

.pillar-card .ideal-title,
.pillar-card .capabilities-title {
    color: #ffffff;
}

.pillar-card .ideal-body,
.pillar-card .capabilities-body {
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card .eyebrow {
    color: var(--accent-secondary);
    
}

.pillar-card .ideal-list li {
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card .capability {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card .capability:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pillar-card .cap-number {
    color: var(--accent-secondary) !important;
}

.pillar-card .cap-link {
    color: #ffffff;
}

@media (max-width: 768px) {
    .pillar-card {
        padding: 24px;
        border-radius: 24px;
    }
}

.dark-card-section {
    padding: 60px 0;
    width: 100%;
}

.dark-card {
    background-color: #000000;
    border-radius: 32px;
    padding: clamp(32px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    color: #ffffff;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card-left {
    max-width: 600px;
}

.dark-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 0;
    color: #ffffff;
}

.dark-card-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    
    max-width: 90%;
}

.dark-card-right {
    display: flex;
    flex-direction: column;
}

.dark-card-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 32px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px 24px;
    margin-bottom: 40px;
}

.cap-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cap-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--accent-secondary) !important;
    
}

.cap-icon svg,
.cap-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.cap-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.3;
}

.cap-label:hover {
    color: var(--accent-secondary);
}

.dark-card-footer {
    display: flex;
    justify-content: flex-start;
    
    margin-top: auto;
}

.btn-pill-pink {
    background-color: var(--accent-secondary);
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 9999px;
    
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(253, 110, 248, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 110, 248, 0.5);
    color: #000000;
    background-color: #FFAA53;
}

@media (max-width: 900px) {
    .dark-card {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dark-card-left {
        max-width: 100%;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dark-card-footer {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .dark-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .dark-card-title {
        font-size: 32px;
    }

    .capabilities-grid {
        gap: 24px;
    }
}

.growth-engine .section-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    gap: 16px !important;
    
}

.engine-container {
    margin-top: 16px !important;
    
}

.engine-step {
    background: #ffffff !important;
    
    border: 1px solid #e0e0e0 !important;
    
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    
    color: #000000 !important;
    overflow: hidden !important;
    isolation: isolate;
    transition: none !important;
    
}

.engine-step:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    
    border-color: #e0e0e0 !important;
    
}

.engine-step .step-title {
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    letter-spacing: -0.02em !important;
}

.engine-step .step-desc {
    color: #1a1a1a !important;
    
    font-weight: 400 !important;
    text-shadow: none !important;
    
    opacity: 1 !important;
}

.engine-step .step-number {
    color: #000000 !important;
    font-weight: 600 !important;
    opacity: 0.5 !important;
    margin-top: 8px;
    
}

.step-icon-wrapper {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    
    background: transparent !important;
}

.step-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: #f8f0fc !important;
    
    border: 2px solid #e0c0f0 !important;
    
    color: #6a0dad !important;
    
    box-shadow: none !important;
}

.engine-step:hover .step-icon {
    transform: none !important;
    
    border-color: #e0c0f0 !important;
    background: #f8f0fc !important;
}

.step-bg-img {
    filter: invert(1) grayscale(100%) opacity(0.12) !important;
    
    opacity: 0.12 !important;
    
    mix-blend-mode: multiply !important;
    
}

.engine-step:hover .step-bg-img {
    opacity: 0.12 !important;
    
    transform: none !important;
    
}

:root {
    --section-padding: clamp(20px, 3vw, 32px) !important;
}

.growth-engine,
.expect-inline,
.case-switcher,
.featured-story,
.pillar-wrap,
.ai-advantage-section {
    padding-top: var(--section-padding) !important;
    padding-bottom: var(--section-padding) !important;
}

.split-layout-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: var(--section-padding) !important;
    padding-bottom: var(--section-padding) !important;
}

.split-container {
    margin-top: 0 !important;
    
    margin-bottom: 0 !important;
}

.hero {
    padding-bottom: 0 !important;
    
}

.featured-story {
    padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 42px) !important;
}

.expect-better-section,
.system-section,
.case-switcher {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: #ffffff !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.case-switcher {
    padding-bottom: clamp(60px, 8vw, 100px) !important;
}

.engine-step::after {
    display: none !important;
}

.hub-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    grid-auto-rows: minmax(300px, auto);
}

@media (min-width: 1024px) {
    .hub-bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 240px 240px 240px;
        
        gap: 24px;
    }
}

.hub-item {
    position: relative;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hub-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .hub-tall {
        grid-column: 1;
        grid-row: 1 / span 2;
        
    }

    .hub-wide {
        grid-column: 2 / span 2;
        grid-row: auto;
    }

    
}

.hub-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.hub-content.bottom-aligned {
    margin-top: auto;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.hub-item.hub-light .hub-content {
    padding: 32px;
    background: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hub-tag,
.hub-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 12px;
}

.hub-tag {
    color: #8ee34d;
}

.hub-item.hub-light .hub-label {
    color: #666;
}

.hub-item h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #fff;
    font-weight: 600;
}

.hub-item.hub-light h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 8px;
}

.hub-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.hub-copy {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 24px;
    max-width: 480px;
}

.hub-copy-sm {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 20px;
}

.hub-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.hub-item:hover .hub-bg {
    transform: scale(1.05);
}

.hub-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hub-item.hub-light {
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hub-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.podcast-embed-wrapper {
    width: 100%;
    margin-top: auto;
    margin-bottom: 16px;
}

.hub-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
}

.btn-sm-outline {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-sm-outline:hover {
    background: #000;
    color: #fff;
}

.hub-newsletter-form {
    width: 100%;
    margin-top: auto;
}

.hub-input-group {
    display: flex;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.hub-input-group input {
    border: none;
    background: transparent;
    flex-grow: 1;
    font-size: 14px;
    color: #000;
    outline: none;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    padding: 0;
    display: flex;
}

.btn-full-black {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.logo-bg {
    object-fit: contain;
    width: 60%;
    left: 20%;
    opacity: 0.8;
}

.btn-link {
    position: relative;
    z-index: 5;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.bento-content {
    pointer-events: none;
    
}

.bento-content>* {
    pointer-events: auto;
}

.expect-better-section {
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
    max-width: none;
    background: #fff;
    overflow: hidden;

}

.expect-grid-new {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 900px) {
    .expect-grid-new {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
}

.expect-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expect-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    
    border-radius: 50%;
    
}

.expect-img {
    width: 100%;
    height: 100%;
    
    
    position: relative;
    z-index: 2;
}

.expect-decoration {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 70%;
    height: 70%;
    border: 1px solid #000000;
    
    border-radius: 120px 0 0 0;
    z-index: 1;
}

.expect-content-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expect-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    color: #000000;
    letter-spacing: -0.02em;
}

.expect-intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.expect-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expect-point {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.point-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.point-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.btn-expect-talk {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid #fd6ef8;
    
    border-radius: 999px;
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.btn-expect-talk:hover {
    background: #fd6ef8;
    color: #000000;
    box-shadow: 0 4px 12px rgba(240, 98, 146, 0.3);
}

.system-section {
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
    max-width: none;
    background: #fff;
    overflow: visible !important;

    
}

.expect-inline {
    padding-bottom: calc(var(--section-padding) * 0.5) !important;
}

.system-section {
    padding-top: calc(var(--section-padding) * 0.5) !important;
}

.system-header {
    text-align: left;
    max-width: 100%;
    margin-bottom: 60px;
}

.system-tag {
    display: inline-block;
    background: #FFAA53;
    color: #000;
    
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.featured-story .eyebrow {
    padding: 6px 12px;
    width: fit-content !important;
    
    display: inline-block !important;
    
    align-self: flex-start;
    background: #FFAA53;
    color: #000 !important;
}

.system-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: #000;
}

.system-headline-full {
    width: 100%;
    text-align: left;
    max-width: none;
}

.system-subhead {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
    color: rgba(var(--text-secondary-rgb), 0.9);
    margin-top: 12px;
    margin-bottom: 0;
    width: 100%;
}

.system-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: visible !important;
    
}

@media (min-width: 768px) {
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.system-card {
    background: #d9def0;
    
    
    
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width: 480px) {
    .system-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: -13px;
    
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
}

.card-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
}

.card-footer {
    display: grid;
    grid-template-columns: auto 1fr;
    
    align-items: start;
    gap: 12px;
    
    margin-top: auto;
}

.sparkle-icon {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    
    object-fit: contain;
}

.card-ai-text {
    font-family: var(--font-body);
    font-size: 15px;
    
    font-style: italic;
    color: #222;
    
    line-height: 1.4;
}

.content-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 900px) {
    .content-hub-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hub-card {
    grid-column: span 1;
    
    background: #000;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
    .hub-card {
        grid-column: span 2;
        
    }
}

.hub-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

.hub-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hub-card-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 90%;
}

.hub-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.hub-input {
    flex: 1;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #000;
    outline: none;
    font-family: inherit;
}

.hub-input::placeholder {
    color: #6B7280;
}

.hub-submit {
    background: #FD6EF8;
    
    color: #000;
    border: none;
    border-radius: 9999px;
    
    padding: 12px 32px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hub-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    background-color: #FFAA53;
}

.hub-submit::after {
    content: "↗";
    font-size: 15px;
    font-weight: 400;
}

.hub-player-wrapper {
    margin-top: auto;
    width: 100%;
    background: #18181B;
    border-radius: 12px;
    overflow: hidden;
}

.insights-simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .insights-simple-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.insight-simple-card:first-child {
    grid-column: span 1;
}

@media (min-width: 900px) {
    .insight-simple-card:first-child {
        grid-column: span 2;
    }
}

.insight-simple-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    height: 100%;
    
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-simple-card .card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    
}

.insight-simple-card:hover .card-bg-img {
    transform: scale(1.05);
}

.insight-simple-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 80%);
    z-index: -1;
}

.insight-simple-card .card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.insight-simple-card .card-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #ffffff;
    
    margin-bottom: 12px;
    display: block;
}

.insight-simple-card .card-title {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    display: block;
    max-width: 95%;
}

.insight-simple-card .card-meta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    
    margin-bottom: 20px;
}

.insight-simple-card .card-link-text {
    display: inline-block;
    
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #FD6EF8;
    
    border-bottom: 2px solid #FD6EF8;
    
    padding-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
    
}

.insights-cta-bar .btn {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insights-cta-bar .btn:hover {
    transform: translateY(-4px);
    
    background-color: #FD6EF8 !important;
    
    color: #000 !important;
}

.main-nav .nav-cta:hover,
.nav-cta:hover {
    color: #000000 !important;
}
