/* =====================================================
   OSOL MEDIA LAUNCH - nu.work Use Case
   Dedicated styles for the media launch case study
   ===================================================== */

/* ===== Nu.work Color Variables ===== */
:root {
    --nw-black: #0f0f0f;
    --nw-white: #f5f3f5;
    --nw-green: #43e9b3;
    --nw-yellow: #ffd43d;
    --nw-red: #ff655b;
    --nw-blue: #467bff;
}

/* ===== Hero Overrides ===== */
.usecase-hero--media {
    background: linear-gradient(180deg, var(--uc-bg-dark) 0%, #0a0f0d 100%);
    position: relative;
}

.usecase-hero--media::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(67, 233, 179, 0.08) 0%, transparent 60%);
}

.badge--nuwork {
    background: rgba(67, 233, 179, 0.15);
    color: var(--nw-green);
    border: 1px solid rgba(67, 233, 179, 0.3);
}

/* Nu.work Logo Showcase - Enhanced */
.nuwork-logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.nuwork-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nw-white);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(67, 233, 179, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transform: perspective(800px) rotateY(-5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.nuwork-logo-container:hover {
    transform: perspective(800px) rotateY(0deg);
    box-shadow:
        0 30px 80px rgba(67, 233, 179, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.nuwork-logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--nw-green), var(--nw-yellow), var(--nw-green));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
}

.nuwork-logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--nw-black);
    display: flex;
    align-items: baseline;
}

.nuwork-logo__nu {
    color: var(--nw-black);
}

.nuwork-logo__dot {
    color: var(--nw-green);
    font-size: 4rem;
    line-height: 0;
    margin: 0 -0.05em;
}

.nuwork-logo__work {
    color: var(--nw-black);
}

/* Logo Tagline */
.nuwork-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.nuwork-tagline__item {
    padding: 0.5rem 1rem;
    background: rgba(67, 233, 179, 0.1);
    border: 1px solid rgba(67, 233, 179, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
}

@media (max-width: 768px) {
    .nuwork-logo-container {
        padding: 1.5rem 2rem;
        transform: none;
    }

    .nuwork-logo-container:hover {
        transform: none;
    }

    .nuwork-logo {
        font-size: 2.5rem;
    }

    .nuwork-logo__dot {
        font-size: 3rem;
    }
}

/* ===== Scope List - Enhanced Steps ===== */
.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(67, 233, 179, 0.03);
    border: 1px solid rgba(67, 233, 179, 0.1);
    border-radius: 12px;
    color: var(--uc-text);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scope-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    color: var(--nw-green);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 12px 0 12px;
}

.scope-item:hover {
    border-color: rgba(67, 233, 179, 0.3);
    background: rgba(67, 233, 179, 0.06);
    transform: translateX(4px);
}

.scope-item:last-child {
    margin-bottom: 0;
}

.scope-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 10px;
    color: var(--nw-green);
}

.scope-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== Target Personas ===== */
.personas-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--uc-border);
}

.personas-header {
    text-align: center;
    margin-bottom: 2rem;
}

.personas-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.personas-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

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

.persona-card {
    background: rgba(255, 212, 61, 0.03);
    border: 1px solid rgba(255, 212, 61, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.persona-card:hover {
    border-color: rgba(255, 212, 61, 0.4);
    background: rgba(255, 212, 61, 0.06);
    transform: translateY(-2px);
}

.persona-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.persona-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.persona-card p {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    line-height: 1.5;
    margin: 0;
}

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

/* ===== Strategic Objectives ===== */
.objectives-grid {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--uc-border);
}

.objectives-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.objectives-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.objectives-header p {
    font-size: 0.95rem;
    color: var(--uc-text-muted);
}

.objectives-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: rgba(67, 233, 179, 0.03);
    border: 1px solid rgba(67, 233, 179, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.objective-card:hover {
    border-color: rgba(67, 233, 179, 0.3);
    background: rgba(67, 233, 179, 0.06);
    transform: translateY(-2px);
}

.objective-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.objective-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nw-green);
}

.objective-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.objective-card p {
    font-size: 0.875rem;
    color: var(--uc-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .objectives-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== Brand Section ===== */
.brand-section {
    padding: 6rem 2rem;
    background: var(--uc-bg-dark);
}

.brand-section__container {
    max-width: 1100px;
    margin: 0 auto;
}

.brand-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-header .section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.brand-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--uc-text);
}

.brand-header .section-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--nw-green);
}

.brand-subtitle {
    font-size: 1.1rem;
    color: var(--uc-text-muted);
}

/* ===== Inspirations Grid ===== */
.inspirations-grid {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
}

.inspiration-header {
    margin-bottom: 2rem;
}

.inspiration-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.inspiration-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.inspiration-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.inspiration-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--uc-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.inspiration-card:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.inspiration-card__name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--uc-text);
    margin-bottom: 0.75rem;
}

.inspiration-card__colors {
    display: flex;
    gap: 0.5rem;
}

.inspiration-card__colors span {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Palette Section ===== */
.palette-section {
    margin-bottom: 4rem;
}

.palette-header {
    margin-bottom: 2rem;
}

.palette-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.palette-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
    max-width: 600px;
}

.palette-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
}

.palette-group {
    flex: 1;
}

.palette-group__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uc-text-muted);
    margin-bottom: 1rem;
}

.palette-group--nuwork .palette-group__label {
    color: var(--nw-green);
}

.palette-colors {
    display: flex;
    gap: 0.75rem;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch span {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.palette-arrow {
    flex-shrink: 0;
}

.palette-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--nw-green);
}

/* ===== Typography Section ===== */
.typography-section {
    margin-bottom: 4rem;
}

.typography-header {
    margin-bottom: 2rem;
}

.typography-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.typography-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.typography-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.type-example {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
}

.type-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.type-sample {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.type-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--uc-text);
}

.type-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--uc-text-muted);
}

/* ===== Logo Section ===== */
.logo-section {
    margin-bottom: 4rem;
}

.logo-header {
    margin-bottom: 2rem;
}

.logo-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.logo-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.logo-variant {
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-variant--light {
    background: var(--nw-white);
}

.logo-variant--light .nuwork-logo-display {
    color: var(--nw-black);
}

.logo-variant--dark {
    background: var(--nw-black);
    border: 1px solid var(--uc-border);
}

.logo-variant--dark .nuwork-logo-display {
    color: var(--nw-white);
}

.logo-variant--alt {
    background: var(--nw-black);
    border: 1px solid var(--uc-border);
}

.logo-variant--alt .nuwork-logo-display {
    color: var(--nw-white);
}

.nuwork-logo-display {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.logo-variant__label {
    font-size: 0.75rem;
    color: var(--uc-text-muted);
}

.logo-variant--light .logo-variant__label {
    color: rgba(0, 0, 0, 0.5);
}

/* ===== Design Section ===== */
.design-section {
    padding: 6rem 2rem;
    background: #0d0d0f;
}

.design-section__container {
    max-width: 1100px;
    margin: 0 auto;
}

.design-header {
    text-align: center;
    margin-bottom: 4rem;
}

.design-header .section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.design-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--uc-text);
}

.design-header .section-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--nw-green);
}

.design-subtitle {
    font-size: 1.1rem;
    color: var(--uc-text-muted);
}

/* ===== Moodboard ===== */
.moodboard {
    margin-bottom: 4rem;
}

.moodboard-header {
    margin-bottom: 2rem;
}

.moodboard-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.moodboard-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

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

.moodboard-item--wide {
    grid-column: span 2;
}

.moodboard-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.moodboard-content {
    z-index: 1;
}

.moodboard-content--dark {
    color: var(--nw-black);
}

.moodboard-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.moodboard-content--dark .moodboard-tag {
    background: rgba(0, 0, 0, 0.2);
}

.moodboard-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Moodboard with Real Images */
.moodboard-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

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

.moodboard-item:hover .moodboard-image {
    transform: scale(1.05);
}

.moodboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 2;
}

.moodboard-overlay .moodboard-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(67, 233, 179, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nw-green);
    margin-bottom: 0.5rem;
}

.moodboard-overlay p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Website Showcase ===== */
.website-showcase {
    margin-bottom: 4rem;
}

.showcase-header {
    margin-bottom: 2rem;
}

.showcase-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.showcase-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.website-preview {
    margin-bottom: 2rem;
}

.browser-frame {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--uc-border);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #252525;
    border-bottom: 1px solid var(--uc-border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3a3a3a;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

.browser-url {
    flex: 1;
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    text-align: center;
}

.browser-content {
    padding: 0;
    max-height: 600px;
    overflow: hidden;
}

/* Site Mockup */
.site-mockup {
    background: var(--nw-white);
    color: var(--nw-black);
    padding: 0;
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.mockup-logo {
    font-size: 1.25rem;
    font-weight: 700;
}

.mockup-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #666;
}

.mockup-cta {
    padding: 0.5rem 1rem;
    background: var(--nw-green);
    color: var(--nw-black);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mockup-hero {
    display: flex;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    background: #fff;
}

.mockup-hero__content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mockup-hero__content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.mockup-btn {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: var(--nw-green);
    color: var(--nw-black);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mockup-hero__visual {
    display: flex;
    align-items: center;
}

.mockup-stat {
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-section {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.mockup-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.mockup-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nw-yellow);
}

.mockup-videos {
    display: flex;
    gap: 1rem;
}

.mockup-video {
    width: 80px;
    height: 140px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
}

.mockup-video span {
    font-size: 0.6rem;
    color: #fff;
    font-weight: 500;
}

.mockup-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.mockup-newsletter__content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mockup-newsletter__content p {
    font-size: 0.7rem;
    color: #666;
}

.mockup-newsletter__form {
    display: flex;
    gap: 0.5rem;
}

.mockup-newsletter__form input {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.75rem;
    width: 180px;
}

.mockup-newsletter__form button {
    padding: 0.5rem 1rem;
    background: var(--nw-green);
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nw-black);
}

.mockup-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-article {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.mockup-article__tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: var(--nw-black);
    color: #fff;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mockup-article span {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Website Features */
.website-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nw-green);
}

.feature-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
}

/* ===== Content Categories ===== */
.content-categories {
    margin-bottom: 4rem;
}

.categories-header {
    margin-bottom: 2rem;
}

.categories-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.categories-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    padding: 2rem 1.5rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: rgba(67, 233, 179, 0.3);
    transform: translateY(-4px);
}

.category-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.category-icon svg {
    width: 28px;
    height: 28px;
}

.category-pillar {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.category-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--uc-text-muted);
    margin: 0;
}

/* Category Card with Image */
.category-card--with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
}

.category-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card--with-image:hover .category-card__image img {
    transform: scale(1.05);
}

.category-card__content {
    padding: 1.5rem;
    text-align: center;
}

/* Workplace Gallery */
.workplace-gallery {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--uc-border);
}

.gallery-header {
    margin-bottom: 2rem;
}

.gallery-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.gallery-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-item--featured {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* Real Landing Page Screenshot */
.floating-browser--real .floating-browser__content--image {
    background: #1a1a1a;
    padding: 0;
    max-height: none;
}

.landing-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .inspiration-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .palette-comparison {
        flex-direction: column;
    }

    .palette-arrow {
        transform: rotate(90deg);
    }

    .typography-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .moodboard-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .category-card--with-image {
        grid-column: span 2;
    }

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

    .gallery-item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nuwork-logo {
        font-size: 2.5rem;
    }

    .inspiration-cards {
        grid-template-columns: 1fr;
    }

    .palette-colors {
        flex-wrap: wrap;
    }

    .color-swatch {
        width: 50px;
        height: 50px;
    }

    .moodboard-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .moodboard-item--large,
    .moodboard-item--wide {
        grid-column: span 1;
    }

    .moodboard-placeholder {
        min-height: 150px;
    }

    .mockup-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mockup-links {
        display: none;
    }

    .mockup-hero {
        flex-direction: column;
        gap: 1rem;
    }

    .mockup-articles {
        grid-template-columns: 1fr;
    }

    .website-features {
        grid-template-columns: 1fr;
    }

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

    .category-card--with-image {
        grid-column: span 1;
    }

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

    .gallery-item--featured {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .type-display {
        font-size: 1.5rem;
    }

    .mockup-newsletter {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .mockup-newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .mockup-newsletter__form input {
        width: 100%;
    }
}

/* =====================================================
   LAUNCH STRATEGY SECTION
   ===================================================== */

.strategy-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0f0d 0%, var(--uc-bg-dark) 100%);
}

.strategy-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strategy-header .section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.strategy-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--uc-text);
}

.strategy-header .section-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--nw-green);
}

.strategy-subtitle {
    font-size: 1.1rem;
    color: var(--uc-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Symbiotic Relationship Diagram ===== */
.symbiosis-diagram {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
}

.symbiosis-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.symbiosis-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.symbiosis-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.symbiosis-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.symbiosis-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.symbiosis-circle--osol {
    background: rgba(70, 123, 255, 0.1);
    border-color: rgba(70, 123, 255, 0.4);
    margin-right: -30px;
}

.symbiosis-circle--nuwork {
    background: rgba(67, 233, 179, 0.1);
    border-color: rgba(67, 233, 179, 0.4);
    margin-left: -30px;
}

.symbiosis-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
}

.symbiosis-arrows {
    position: absolute;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 180px;
    z-index: 1;
}

.symbiosis-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--nw-green);
}

.symbiosis-arrow svg {
    width: 120px;
    height: 30px;
}

.symbiosis-arrow span {
    font-size: 0.7rem;
    text-align: center;
    color: var(--uc-text-muted);
    max-width: 200px;
}

/* ===== Trimestrial Calendar ===== */
.trimestrial-calendar {
    margin-bottom: 4rem;
}

.calendar-header {
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.calendar-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calendar-month {
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calendar-month:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.calendar-month--highlight {
    border-color: rgba(67, 233, 179, 0.4);
    box-shadow: 0 0 30px rgba(67, 233, 179, 0.1);
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--uc-border);
}

.month-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
}

.month-focus {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    background: rgba(67, 233, 179, 0.15);
    color: var(--nw-green);
    border-radius: 100px;
}

.month-content {
    padding: 1.5rem;
}

.channel-block {
    margin-bottom: 1.25rem;
}

.channel-block:last-of-type {
    margin-bottom: 1.5rem;
}

.channel-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.channel-label--blog {
    background: rgba(255, 212, 61, 0.15);
    color: var(--nw-yellow);
}

.channel-label--youtube {
    background: rgba(255, 101, 91, 0.15);
    color: var(--nw-red);
}

.channel-label--instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15) 0%, rgba(253, 29, 29, 0.15) 100%);
    color: #e1306c;
}

.channel-label--linkedin {
    background: rgba(70, 123, 255, 0.15);
    color: var(--nw-blue);
}

.channel-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.channel-items li {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.channel-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--uc-text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.big-move {
    padding: 1rem;
    background: rgba(67, 233, 179, 0.08);
    border: 1px solid rgba(67, 233, 179, 0.2);
    border-radius: 8px;
    margin-top: 1rem;
}

.big-move__label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.5rem;
    background: var(--nw-green);
    color: var(--nw-black);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.big-move p {
    font-size: 0.85rem;
    color: var(--uc-text);
    margin: 0;
    line-height: 1.4;
}

.big-move__date {
    display: block;
    font-size: 0.7rem;
    color: var(--nw-green);
    margin-top: 0.5rem;
}

/* Recurring Activities */
.recurring-activities {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
}

.recurring-header {
    margin-bottom: 1.5rem;
}

.recurring-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
}

.recurring-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.recurring-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.recurring-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 8px;
}

.recurring-icon svg {
    width: 16px;
    height: 16px;
    color: var(--nw-green);
}

.recurring-content {
    flex: 1;
}

.recurring-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.25rem;
}

.recurring-desc {
    font-size: 0.7rem;
    color: var(--uc-text-muted);
    line-height: 1.4;
}

/* ===== Content Repurposing Flow ===== */
.repurposing-section {
    margin-bottom: 4rem;
}

.repurposing-header {
    margin-bottom: 2rem;
}

.repurposing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.repurposing-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.repurposing-flow {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.flow-stage {
    flex: 1;
    min-width: 180px;
}

.flow-stage__label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uc-text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.flow-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--uc-border);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-item:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.flow-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.flow-item__icon svg {
    width: 20px;
    height: 20px;
    color: var(--nw-green);
}

.flow-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--uc-text);
}

.flow-item small {
    font-size: 0.7rem;
    color: var(--uc-text-muted);
    margin-top: 0.25rem;
}

.flow-item--podcast .flow-item__icon { background: rgba(255, 212, 61, 0.15); }
.flow-item--podcast .flow-item__icon svg { color: var(--nw-yellow); }

.flow-item--interview .flow-item__icon { background: rgba(70, 123, 255, 0.15); }
.flow-item--interview .flow-item__icon svg { color: var(--nw-blue); }

.flow-item--blog .flow-item__icon { background: rgba(255, 212, 61, 0.15); }
.flow-item--blog .flow-item__icon svg { color: var(--nw-yellow); }

.flow-item--youtube .flow-item__icon { background: rgba(255, 101, 91, 0.15); }
.flow-item--youtube .flow-item__icon svg { color: var(--nw-red); }

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.flow-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--nw-green);
}

/* Repurposing Example */
.repurposing-example {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.example-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    background: rgba(67, 233, 179, 0.15);
    color: var(--nw-green);
    border-radius: 100px;
}

.example-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
}

.example-flow {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
}

.example-source {
    display: flex;
    justify-content: center;
}

.example-podcast-visual {
    width: 140px;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #e1306c 0%, #833ab4 100%);
    border-radius: 12px;
    text-align: center;
}

.podcast-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

.podcast-guest {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
}

.example-process {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.process-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 8px;
}

.process-icon svg {
    width: 18px;
    height: 18px;
    color: var(--nw-green);
}

.process-step span {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
}

.example-outputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.output-item {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--uc-border);
    border-radius: 8px;
    text-align: center;
}

.output-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--uc-text);
}

.output-item small {
    font-size: 0.7rem;
    color: var(--uc-text-muted);
}

.output-item--linkedin { border-color: rgba(70, 123, 255, 0.3); }
.output-item--instagram { border-color: rgba(225, 48, 108, 0.3); }
.output-item--shorts { border-color: rgba(255, 101, 91, 0.3); }

/* ===== Quarterly Projects ===== */
.quarterly-projects {
    margin-bottom: 2rem;
}

.quarterly-header {
    margin-bottom: 2rem;
}

.quarterly-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.quarterly-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

.quarterly-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.quarterly-card {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.quarterly-card:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.quarterly-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.quarterly-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nw-green);
}

.quarterly-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.75rem;
}

.quarterly-card > p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quarterly-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quarterly-details li {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.quarterly-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--nw-green);
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== Strategy Section Responsive ===== */
@media (max-width: 1024px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }

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

    .repurposing-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .flow-items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .example-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .symbiosis-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .symbiosis-circle--osol,
    .symbiosis-circle--nuwork {
        margin: 0;
    }

    .symbiosis-arrows {
        position: relative;
        width: 100%;
        gap: 1rem;
    }

    .symbiosis-arrow svg {
        transform: rotate(90deg);
    }
}

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

    .symbiosis-circle {
        width: 140px;
        height: 140px;
    }

    .symbiosis-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .example-podcast-visual {
        width: 120px;
    }

    .flow-item {
        min-width: 100px;
    }
}

/* =====================================================
   FLOATING LANDING PAGE SHOWCASE
   ===================================================== */

.landing-showcase {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(67, 233, 179, 0.05) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-radius: 24px;
    overflow: hidden;
}

.landing-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(67, 233, 179, 0.08) 0%, transparent 50%);
    animation: float-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
}

.landing-showcase__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.landing-showcase__info {
    max-width: 400px;
}

.landing-showcase__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(67, 233, 179, 0.15);
    border: 1px solid rgba(67, 233, 179, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.landing-showcase__label svg {
    width: 14px;
    height: 14px;
}

.landing-showcase__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
    margin-bottom: 0.75rem;
}

.landing-showcase__desc {
    font-size: 0.95rem;
    color: var(--uc-text-muted);
    line-height: 1.6;
}

.landing-showcase__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--uc-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--uc-text);
    transition: all 0.3s ease;
}

.landing-feature:hover {
    border-color: rgba(67, 233, 179, 0.3);
    background: rgba(67, 233, 179, 0.05);
}

.landing-feature__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 6px;
}

.landing-feature__icon svg {
    width: 14px;
    height: 14px;
    color: var(--nw-green);
}

/* Floating Browser Frame */
.landing-showcase__browser {
    position: relative;
    z-index: 2;
    transform: perspective(2000px) rotateX(2deg) rotateY(-3deg);
    transition: transform 0.5s ease;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(67, 233, 179, 0.1);
}

.landing-showcase:hover .landing-showcase__browser {
    transform: perspective(2000px) rotateX(0deg) rotateY(0deg);
}

.floating-browser {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(67, 233, 179, 0.2);
}

.floating-browser__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(to bottom, #2a2a2a, #1f1f1f);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-browser__dots {
    display: flex;
    gap: 8px;
}

.floating-browser__dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.floating-browser__dots span:nth-child(1) { background: #ff5f56; }
.floating-browser__dots span:nth-child(2) { background: #ffbd2e; }
.floating-browser__dots span:nth-child(3) { background: #27ca40; }

.floating-browser__url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--uc-text-muted);
}

.floating-browser__url svg {
    width: 14px;
    height: 14px;
    color: var(--nw-green);
}

.floating-browser__content {
    background: var(--nw-white);
    max-height: 500px;
    overflow: hidden;
}

/* Fake Landing Page */
.fake-landing {
    color: var(--nw-black);
}

.fake-landing__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.fake-landing__logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fake-landing__logo .dot {
    color: var(--nw-green);
}

.fake-landing__menu {
    display: flex;
    gap: 2rem;
}

.fake-landing__menu span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    position: relative;
}

.fake-landing__menu span:hover {
    color: var(--nw-black);
}

.fake-landing__menu span.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--nw-yellow);
}

.fake-landing__cta-btn {
    padding: 0.6rem 1.25rem;
    background: var(--nw-green);
    color: var(--nw-black);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fake-landing__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.fake-landing__hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--nw-black);
}

.fake-landing__hero-content h1 span {
    position: relative;
    display: inline;
}

.fake-landing__hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--nw-yellow);
    z-index: -1;
    opacity: 0.6;
}

.fake-landing__hero-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fake-landing__hero-cta {
    display: flex;
    gap: 1rem;
}

.fake-landing__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.fake-landing__btn--primary {
    background: var(--nw-green);
    color: var(--nw-black);
}

.fake-landing__btn--secondary {
    background: transparent;
    color: var(--nw-black);
    border: 1px solid #ddd;
}

.fake-landing__hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fake-landing__stat-box {
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    text-align: center;
    min-width: 180px;
}

.fake-landing__stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--nw-green);
    margin-bottom: 0.25rem;
}

.fake-landing__stat-label {
    font-size: 0.8rem;
    color: #888;
}

.fake-landing__section {
    padding: 1.5rem 2rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.fake-landing__section-title {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
}

.fake-landing__section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--nw-yellow);
}

.fake-landing__video-grid {
    display: flex;
    gap: 1rem;
}

.fake-landing__video {
    width: 100px;
    height: 160px;
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 0.5rem;
    position: relative;
    overflow: hidden;
}

.fake-landing__video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.fake-landing__video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(2px);
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.fake-landing__video span {
    font-size: 0.65rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fake-landing__newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.fake-landing__newsletter-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fake-landing__newsletter-content p {
    font-size: 0.8rem;
    color: #666;
}

.fake-landing__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.fake-landing__newsletter-form input {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.8rem;
    width: 200px;
    background: #fff;
}

.fake-landing__newsletter-form button {
    padding: 0.6rem 1.25rem;
    background: var(--nw-green);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nw-black);
    cursor: pointer;
}

/* Landing Showcase Responsive */
@media (max-width: 1024px) {
    .landing-showcase__header {
        flex-direction: column;
        gap: 2rem;
    }

    .landing-showcase__info {
        max-width: 100%;
    }

    .landing-showcase__features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .landing-showcase__browser {
        transform: none;
    }

    .landing-showcase:hover .landing-showcase__browser {
        transform: none;
    }

    .fake-landing__hero {
        grid-template-columns: 1fr;
    }

    .fake-landing__hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .landing-showcase {
        padding: 2rem 1.5rem;
    }

    .fake-landing__nav {
        padding: 1rem;
    }

    .fake-landing__menu {
        display: none;
    }

    .fake-landing__hero {
        padding: 2rem 1rem;
    }

    .fake-landing__hero-content h1 {
        font-size: 1.75rem;
    }

    .fake-landing__video-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fake-landing__video {
        width: 80px;
        height: 130px;
    }

    .fake-landing__newsletter {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .fake-landing__newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .fake-landing__newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .landing-showcase__features {
        flex-direction: column;
    }

    .fake-landing__hero-content h1 {
        font-size: 1.5rem;
    }

    .fake-landing__hero-cta {
        flex-direction: column;
    }

    .fake-landing__btn {
        text-align: center;
    }
}

/* =====================================================
   SYMBIOSIS INLINE - COMPACT VERSION
   ===================================================== */

.symbiosis-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.symbiosis-inline__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    min-width: 140px;
}

.symbiosis-inline__brand--osol {
    background: rgba(70, 123, 255, 0.1);
    border: 1px solid rgba(70, 123, 255, 0.3);
}

.symbiosis-inline__brand--nuwork {
    background: rgba(67, 233, 179, 0.1);
    border: 1px solid rgba(67, 233, 179, 0.3);
}

.symbiosis-inline__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
}

.symbiosis-inline__brand--nuwork .symbiosis-inline__logo .dot {
    color: var(--nw-green);
}

.symbiosis-inline__desc {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uc-text-muted);
}

.symbiosis-inline__flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    min-width: 180px;
}

.flow-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.flow-connection svg {
    width: 100px;
    height: 20px;
    color: var(--nw-green);
}

.flow-connection span {
    font-size: 0.65rem;
    color: var(--uc-text-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .symbiosis-inline {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .symbiosis-inline__flow {
        flex-direction: row;
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .flow-connection svg {
        transform: rotate(90deg);
        width: 60px;
    }
}

/* =====================================================
   CONTENT SPLITTING COMPACT - HORIZONTAL VERSION
   ===================================================== */

.content-splitting-compact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(67, 233, 179, 0.05);
    border: 1px solid rgba(67, 233, 179, 0.15);
    border-radius: 16px;
    margin-bottom: 3rem;
    overflow-x: auto;
}

.splitting-compact__source {
    flex-shrink: 0;
}

.compact-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.compact-source__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.2);
    border-radius: 8px;
}

.compact-source__icon svg {
    width: 16px;
    height: 16px;
    color: var(--nw-green);
}

.compact-source__label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--uc-text-muted);
}

.compact-source__info strong {
    font-size: 0.85rem;
    color: var(--uc-text);
}

.splitting-compact__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.splitting-compact__arrow svg {
    width: 28px;
    height: 28px;
    color: var(--nw-green);
}

.splitting-compact__arrow span {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--nw-green);
    white-space: nowrap;
}

.splitting-compact__outputs {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.compact-output {
    width: 50px;
    height: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.5rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--uc-border);
    border-radius: 6px;
}

.compact-output span {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.splitting-compact__platforms {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.mini-platform {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 700;
}

.mini-platform--youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.mini-platform--instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15));
    color: #e1306c;
}

.mini-platform--tiktok {
    background: rgba(255, 255, 255, 0.08);
    color: var(--uc-text);
}

.mini-platform--linkedin {
    background: rgba(0, 119, 181, 0.15);
    color: #0077b5;
}

@media (max-width: 768px) {
    .content-splitting-compact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .splitting-compact__outputs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .compact-output {
        width: 40px;
        height: 55px;
    }
}

/* =====================================================
   SUBSECTION HEADER
   ===================================================== */

.subsection-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--uc-border);
}

.subsection-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.subsection-header p {
    font-size: 0.9rem;
    color: var(--uc-text-muted);
}

/* =====================================================
   CATEGORIES GRID WITH ALL IMAGES
   ===================================================== */

.categories-grid--images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.categories-grid--images .category-card--with-image {
    grid-column: span 1;
}

.categories-grid--images .category-card__image {
    height: 160px;
}

@media (max-width: 768px) {
    .categories-grid--images {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   BIG QUARTER PROJECT
   ===================================================== */

.big-project-section {
    margin-bottom: 2rem;
}

.big-project-header {
    text-align: center;
    margin-bottom: 2rem;
}

.big-project-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(67, 233, 179, 0.15);
    border: 1px solid rgba(67, 233, 179, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.big-project-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.big-project-header p {
    font-size: 0.95rem;
    color: var(--uc-text-muted);
}

.big-project-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
}

.big-project-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(67, 233, 179, 0.08) 0%, rgba(15, 15, 15, 0.5) 100%);
    border-radius: 16px;
}

.project-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.15);
    border-radius: 20px;
}

.project-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--nw-green);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.project-tag {
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--uc-border);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--uc-text-muted);
}

.big-project-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.project-detail {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 10px;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--nw-green);
}

.project-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.25rem;
}

.project-detail p {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .big-project-card {
        grid-template-columns: 1fr;
    }

    .big-project-visual {
        padding: 1.5rem;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .big-project-header h3 {
        font-size: 1.25rem;
    }

    .big-project-card {
        padding: 1.5rem;
    }
}

/* =====================================================
   PREMIUM STRATEGY CARDS
   ===================================================== */

.strategy-section--premium {
    position: relative;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.strategy-card {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.9) 0%, rgba(15, 15, 17, 0.95) 100%);
    border: 1px solid rgba(67, 233, 179, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-card:hover {
    border-color: rgba(67, 233, 179, 0.35);
    transform: translateY(-4px);
}

.strategy-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(67, 233, 179, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.strategy-card:hover .strategy-card__glow {
    opacity: 1;
}

.strategy-card__header {
    margin-bottom: 1.25rem;
}

.strategy-card__label {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(67, 233, 179, 0.12);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
}

/* Symbiosis Visual */
.symbiosis-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.symbiosis-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    min-width: 90px;
}

.symbiosis-brand--osol {
    background: rgba(70, 123, 255, 0.1);
    border: 1px solid rgba(70, 123, 255, 0.25);
}

.symbiosis-brand--nuwork {
    background: rgba(67, 233, 179, 0.1);
    border: 1px solid rgba(67, 233, 179, 0.25);
}

.symbiosis-brand__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--uc-text);
}

.symbiosis-brand--nuwork .symbiosis-brand__name .dot {
    color: var(--nw-green);
}

.symbiosis-brand__role {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--uc-text-muted);
}

.symbiosis-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.symbiosis-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.symbiosis-arrow svg {
    width: 50px;
    height: 16px;
    color: var(--nw-green);
    opacity: 0.7;
}

.symbiosis-arrow span {
    font-size: 0.55rem;
    color: var(--uc-text-muted);
}

/* Splitting Visual */
.splitting-visual {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.splitting-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem;
    background: rgba(67, 233, 179, 0.08);
    border-radius: 8px;
}

.splitting-source__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.15);
    border-radius: 6px;
}

.splitting-source__icon svg {
    width: 14px;
    height: 14px;
    color: var(--nw-green);
}

.splitting-source span {
    font-size: 0.55rem;
    color: var(--uc-text-muted);
}

.splitting-flow svg {
    width: 30px;
    height: 16px;
    color: var(--nw-green);
    opacity: 0.7;
}

.splitting-outputs {
    display: flex;
    gap: 0.3rem;
}

.splitting-output {
    width: 24px;
    height: 40px;
    background: linear-gradient(180deg, rgba(30, 30, 32, 1) 0%, rgba(40, 40, 42, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.splitting-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.platform-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.platform-dot--yt { background: #ff0000; }
.platform-dot--ig { background: #e1306c; }
.platform-dot--tt { background: #fff; }
.platform-dot--li { background: #0077b5; }

@media (max-width: 768px) {
    .strategy-cards {
        grid-template-columns: 1fr;
    }

    .symbiosis-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .symbiosis-arrows {
        flex-direction: row;
    }

    .symbiosis-arrow svg {
        transform: rotate(90deg);
    }

    .splitting-visual {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =====================================================
   COMPACT PROJECT SECTION
   ===================================================== */

.big-project-compact {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(67, 233, 179, 0.05) 0%, rgba(15, 15, 17, 0.8) 100%);
    border: 1px solid rgba(67, 233, 179, 0.15);
    border-radius: 14px;
    margin-bottom: 2rem;
}

.project-compact__header {
    flex-shrink: 0;
}

.project-compact__badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: rgba(67, 233, 179, 0.15);
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
    margin-bottom: 0.5rem;
}

.project-compact__header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
    white-space: nowrap;
}

.project-compact__content {
    flex: 1;
}

.project-compact__content p {
    font-size: 0.85rem;
    color: var(--uc-text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.project-compact__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-compact__tags span {
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--uc-border);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--uc-text-muted);
}

@media (max-width: 768px) {
    .big-project-compact {
        flex-direction: column;
        gap: 1rem;
    }

    .project-compact__header h4 {
        white-space: normal;
    }
}

/* =====================================================
   STRATEGY CARDS V2 - WITH TEXT
   ===================================================== */

.strategy-cards-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.strategy-card-v2 {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.95) 0%, rgba(15, 15, 17, 1) 100%);
    border: 1px solid rgba(67, 233, 179, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.strategy-card-v2:hover {
    border-color: rgba(67, 233, 179, 0.3);
    transform: translateY(-2px);
}

.strategy-card-v2__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 12px;
}

.strategy-card-v2__icon svg {
    width: 24px;
    height: 24px;
    color: var(--nw-green);
}

.strategy-card-v2__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.5rem;
}

.strategy-card-v2__content p {
    font-size: 0.85rem;
    color: var(--uc-text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Brand Tags */
.strategy-card-v2__brands {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-tag {
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.brand-tag--osol {
    background: rgba(70, 123, 255, 0.1);
    border: 1px solid rgba(70, 123, 255, 0.3);
    color: var(--uc-text);
}

.brand-tag--nuwork {
    background: rgba(67, 233, 179, 0.1);
    border: 1px solid rgba(67, 233, 179, 0.3);
    color: var(--uc-text);
}

.brand-tag--nuwork .dot {
    color: var(--nw-green);
}

.brand-arrow {
    display: flex;
    align-items: center;
}

.brand-arrow svg {
    width: 24px;
    height: 12px;
    color: var(--nw-green);
    opacity: 0.6;
}

/* Platform Tags */
.strategy-card-v2__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.platform-tag {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

.platform-tag--yt {
    background: rgba(255, 0, 0, 0.12);
    color: #ff4444;
}

.platform-tag--ig {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.platform-tag--tt {
    background: rgba(255, 255, 255, 0.08);
    color: var(--uc-text);
}

.platform-tag--li {
    background: rgba(0, 119, 181, 0.12);
    color: #0a99e0;
}

@media (max-width: 900px) {
    .strategy-cards-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .strategy-card-v2 {
        flex-direction: column;
        gap: 1rem;
    }

    .strategy-card-v2__brands {
        flex-wrap: wrap;
    }
}

/* =====================================================
   LAUNCH ORGANISATION - TIMELINE
   ===================================================== */

.launch-org {
    margin-bottom: 1.5rem;
}

.launch-org__header {
    margin-bottom: 1.25rem;
}

.launch-org__header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 0.25rem;
}

.launch-org__header p {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
}

.launch-org__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.timeline-month {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--uc-border);
    border-radius: 12px;
}

.timeline-month--highlight {
    background: rgba(67, 233, 179, 0.04);
    border-color: rgba(67, 233, 179, 0.2);
}

.timeline-month__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--uc-border);
}

.timeline-month__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--uc-text);
}

.timeline-month__phase {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
    padding: 0.2rem 0.5rem;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 4px;
}

.timeline-month__items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--uc-text-muted);
    line-height: 1.4;
}

.timeline-item--event {
    color: var(--uc-text);
}

.timeline-item__date {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--nw-green);
    padding: 0.15rem 0.35rem;
    background: rgba(67, 233, 179, 0.1);
    border-radius: 3px;
}

.timeline-item__text {
    flex: 1;
}

@media (max-width: 768px) {
    .launch-org__timeline {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Q1 PROJECT - MINIMAL
   ===================================================== */

.q1-project {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(67, 233, 179, 0.06) 0%, transparent 100%);
    border: 1px solid rgba(67, 233, 179, 0.15);
    border-radius: 10px;
}

.q1-project__badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
}

.q1-project h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--uc-text);
    margin: 0;
}

.q1-project p {
    font-size: 0.8rem;
    color: var(--uc-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* =====================================================
   STRATEGY SECTION - FLOW DIAGRAMS
   ===================================================== */

.strategy-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0f0d 0%, var(--uc-bg-dark) 100%);
}

.strategy-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-header .section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.strategy-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--uc-text);
}

.strategy-header .section-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--nw-green);
}

.strategy-subtitle {
    font-size: 1.1rem;
    color: var(--uc-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Symbiosis Flow Diagram ===== */
.symbiosis-flow {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.flow-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--uc-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.symbiosis-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.symbiosis-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 150px;
}

.symbiosis-node--osol {
    background: rgba(70, 123, 255, 0.1);
    border: 1px solid rgba(70, 123, 255, 0.3);
}

.symbiosis-node--nuwork {
    background: rgba(67, 233, 179, 0.1);
    border: 1px solid rgba(67, 233, 179, 0.3);
}

.symbiosis-node__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uc-text);
}

.symbiosis-node--nuwork .symbiosis-node__logo .dot {
    color: var(--nw-green);
}

.symbiosis-node__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--uc-text-muted);
}

.symbiosis-node__desc {
    font-size: 0.75rem;
    color: var(--uc-text-muted);
    text-align: center;
}

.symbiosis-arrows-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.symbiosis-arrow-row {
    display: flex;
    align-items: center;
}

.symbiosis-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.symbiosis-arrow--right {
    flex-direction: column;
}

.symbiosis-arrow--left {
    flex-direction: column-reverse;
}

.symbiosis-arrow svg {
    width: 100px;
    height: 20px;
    color: var(--nw-green);
}

.arrow-label {
    font-size: 0.65rem;
    color: var(--uc-text-muted);
    text-align: center;
    max-width: 120px;
}

/* ===== Repurposing Flow Diagram ===== */
.repurposing-flow {
    padding: 2rem;
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 20px;
}

.repurposing-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.repurposing-source {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(67, 233, 179, 0.08);
    border-radius: 12px;
}

.source-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 233, 179, 0.15);
    border-radius: 10px;
}

.source-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nw-green);
}

.source-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.source-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--uc-text);
}

.source-examples {
    font-size: 0.7rem;
    color: var(--uc-text-muted);
}

.repurposing-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.repurposing-arrow svg {
    width: 60px;
    height: 24px;
    color: var(--nw-green);
}

.repurposing-arrow span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
}

.repurposing-outputs {
    display: flex;
    gap: 0.5rem;
}

.output-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--uc-border);
    border-radius: 10px;
    min-width: 70px;
    transition: all 0.3s ease;
}

.output-item:hover {
    border-color: rgba(67, 233, 179, 0.3);
    transform: translateY(-2px);
}

.output-icon {
    font-size: 1rem;
    font-weight: 700;
}

.output-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--uc-text);
}

.output-type {
    font-size: 0.6rem;
    color: var(--uc-text-muted);
}

.output-item--yt { border-color: rgba(255, 0, 0, 0.2); }
.output-item--yt .output-icon { color: #ff0000; }

.output-item--ig { border-color: rgba(225, 48, 108, 0.2); }
.output-item--ig .output-icon { color: #e1306c; }

.output-item--tt { border-color: rgba(255, 255, 255, 0.15); }
.output-item--tt .output-icon { color: var(--uc-text); }

.output-item--li { border-color: rgba(0, 119, 181, 0.2); }
.output-item--li .output-icon { color: #0077b5; }

.output-item--blog { border-color: rgba(255, 212, 61, 0.2); }
.output-item--blog .output-icon { color: var(--nw-yellow); }

/* ===== Launch Section ===== */
.launch-section {
    padding: 6rem 2rem;
    background: var(--uc-bg-dark);
}

.launch-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.launch-header {
    text-align: center;
    margin-bottom: 3rem;
}

.launch-header .section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--nw-green);
    margin-bottom: 1rem;
}

.launch-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--uc-text);
}

.launch-header .section-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--nw-green);
}

.launch-subtitle {
    font-size: 1.1rem;
    color: var(--uc-text-muted);
}

/* ===== Trimestrial Calendar ===== */
.calendar-trimester {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calendar-month-card {
    background: var(--uc-bg-card);
    border: 1px solid var(--uc-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calendar-month-card:hover {
    border-color: rgba(67, 233, 179, 0.3);
}

.calendar-month-card--highlight {
    border-color: rgba(67, 233, 179, 0.4);
    box-shadow: 0 0 30px rgba(67, 233, 179, 0.1);
}

.calendar-month-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--uc-border);
}

.month-badge {
    font-size: 1rem;
    font-weight: 700;
    color: var(--uc-text);
}

.month-phase {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    background: rgba(67, 233, 179, 0.12);
    color: var(--nw-green);
    border-radius: 100px;
}

.calendar-month-card__content {
    padding: 1.25rem;
}

.channel-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.channel-row:last-of-type {
    border-bottom: none;
}

.channel-icon {
    flex-shrink: 0;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 60px;
    text-align: center;
}

.channel-icon--blog {
    background: rgba(255, 212, 61, 0.12);
    color: var(--nw-yellow);
}

.channel-icon--youtube {
    background: rgba(255, 0, 0, 0.12);
    color: #ff4444;
}

.channel-icon--instagram {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.channel-icon--linkedin {
    background: rgba(0, 119, 181, 0.12);
    color: #0a99e0;
}

.channel-desc {
    font-size: 0.75rem;
    color: var(--uc-text-muted);
    line-height: 1.4;
}

.month-event {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(67, 233, 179, 0.06);
    border: 1px solid rgba(67, 233, 179, 0.15);
    border-radius: 8px;
}

.event-date {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
    margin-bottom: 0.25rem;
}

.event-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--uc-text);
    line-height: 1.4;
}

/* ===== Q1 Big Move Section ===== */
.q1-bigmove {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(67, 233, 179, 0.06) 0%, rgba(15, 15, 17, 0.9) 100%);
    border: 1px solid rgba(67, 233, 179, 0.2);
    border-radius: 20px;
}

.q1-bigmove__header {
    margin-bottom: 1.5rem;
}

.q1-bigmove__badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(67, 233, 179, 0.15);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nw-green);
    margin-bottom: 0.75rem;
}

.q1-bigmove__header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--uc-text);
}

.q1-bigmove__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.q1-bigmove__desc {
    font-size: 0.95rem;
    color: var(--uc-text-muted);
    line-height: 1.6;
    margin: 0;
}

.q1-bigmove__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bigmove-detail {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.detail-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nw-green);
    margin-bottom: 0.35rem;
}

.detail-value {
    font-size: 0.85rem;
    color: var(--uc-text);
    line-height: 1.4;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .symbiosis-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }

    .symbiosis-arrows-container {
        flex-direction: row;
        gap: 2rem;
        padding: 1rem 0;
    }

    .symbiosis-arrow svg {
        transform: rotate(90deg);
    }

    .repurposing-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }

    .repurposing-arrow svg {
        transform: rotate(90deg);
    }

    .repurposing-outputs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .calendar-trimester {
        grid-template-columns: 1fr;
    }

    .q1-bigmove__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .strategy-section,
    .launch-section {
        padding: 4rem 1.5rem;
    }

    .strategy-header .section-title,
    .launch-header .section-title {
        font-size: 2rem;
    }

    .symbiosis-node {
        padding: 1rem 1.25rem;
        min-width: 120px;
    }

    .symbiosis-node__logo {
        font-size: 1.25rem;
    }

    .output-item {
        padding: 0.5rem 0.75rem;
        min-width: 55px;
    }

    .output-name {
        font-size: 0.6rem;
    }

    .output-type {
        font-size: 0.5rem;
    }

    .q1-bigmove {
        padding: 1.5rem;
    }

    .q1-bigmove__header h3 {
        font-size: 1.1rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .strategy-section,
    .launch-section {
        padding: 2.5rem 1rem;
    }

    .strategy-header .section-title,
    .launch-header .section-title {
        font-size: 1.5rem;
    }

    .strategy-header .section-label,
    .launch-header .section-label {
        font-size: 0.65rem;
    }

    .symbiosis-diagram {
        gap: 1rem;
    }

    .symbiosis-node {
        padding: 0.75rem 1rem;
        min-width: 100px;
        border-radius: 10px;
    }

    .symbiosis-node__logo {
        font-size: 1rem;
    }

    .symbiosis-node__name {
        font-size: 0.7rem;
    }

    .symbiosis-node__tagline {
        font-size: 0.6rem;
    }

    .repurposing-source {
        padding: 1rem;
        border-radius: 12px;
    }

    .source-title {
        font-size: 1rem;
    }

    .output-item {
        padding: 0.4rem 0.6rem;
        min-width: 50px;
    }

    .output-icon {
        font-size: 1rem;
    }

    .output-name {
        font-size: 0.55rem;
    }

    .output-type {
        font-size: 0.45rem;
    }

    .calendar-trimester {
        padding: 1rem;
        border-radius: 12px;
    }

    .q1-bigmove {
        padding: 1rem;
        border-radius: 10px;
    }

    .q1-bigmove__header h3 {
        font-size: 1rem;
    }

    .detail-label {
        font-size: 0.6rem;
    }

    .detail-value {
        font-size: 0.75rem;
    }
}

/* Extra Small (max 360px) */
@media (max-width: 360px) {
    .strategy-header .section-title,
    .launch-header .section-title {
        font-size: 1.25rem;
    }

    .symbiosis-node {
        min-width: 90px;
        padding: 0.6rem 0.8rem;
    }

    .repurposing-outputs {
        gap: 0.4rem;
    }

    .output-item {
        min-width: 45px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .symbiosis-node:hover,
    .output-item:hover,
    .calendar-trimester:hover {
        transform: none;
    }

    /* Larger touch targets */
    .output-item {
        min-height: 44px;
    }
}
