/* ============================================
   WHY NOT COPILOTS PAGE
   Bold, provocative, high-contrast design
   ============================================ */

/* ===== Page base ===== */
.wnc-page {
    background: #020617;
}

/* ===== Container ===== */
.wnc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Accent text ===== */
.wnc-page .accent {
    color: #14b8a6;
}

/* ===== Label pill ===== */
.wnc-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 100px;
    color: #14b8a6;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}

/* ============================================
   HERO SECTION - Two Column Layout
   ============================================ */
.wnc-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.wnc-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.wnc-hero__glow {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.wnc-hero::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.wnc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wnc-hero__content {
    max-width: 540px;
}

.wnc-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #f8fafc;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.wnc-hero__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 16px;
    max-width: 480px;
}

.wnc-hero__warning {
    font-size: 1rem;
    line-height: 1.6;
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid #ef4444;
    border-radius: 0 8px 8px 0;
}

/* Hero bullets - warning style */
.wnc-hero__bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
}

.wnc-hero__bullet {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    color: #cbd5e1;
    font-weight: 500;
}

.wnc-hero__bullet--warning::before {
    content: '×';
    width: 20px;
    height: 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.wnc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   HERO VISUAL - Comparison Diagram
   ============================================ */
.wnc-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wnc-comparison-diagram {
    width: 100%;
    max-width: 520px;
    height: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.wnc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #020617;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wnc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.35);
}

.wnc-btn--outline {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.wnc-btn--outline:hover {
    border-color: #14b8a6;
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.08);
    box-shadow: none;
}

.wnc-btn--large {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.wnc-section {
    padding: 100px 0;
    position: relative;
}

.wnc-section--alt {
    background: #0f172a;
}

/* Subtle top separator */
.wnc-section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

/* High contrast section */
.wnc-section--contrast {
    background: linear-gradient(180deg, #0f172a 0%, #020617 50%, #0f172a 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.wnc-section__header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wnc-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
    line-height: 1.25;
}

.wnc-section__title--strong {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.wnc-section__subtitle {
    font-size: 1.0625rem;
    color: #94a3b8;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================
   CARDS - What copilots are good at
   ============================================ */
.wnc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.wnc-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wnc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0), transparent);
    transition: background 0.35s ease;
}

.wnc-card:hover {
    border-color: rgba(20, 184, 166, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(20, 184, 166, 0.08);
}

.wnc-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.6), transparent);
}

/* Neutral card style (for copilot benefits) */
.wnc-card--neutral {
    border-color: rgba(148, 163, 184, 0.15);
}

.wnc-card--neutral .wnc-card__icon {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.wnc-card--neutral:hover {
    border-color: rgba(148, 163, 184, 0.3);
}

.wnc-card--neutral:hover::before {
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.4), transparent);
}

.wnc-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    transition: all 0.3s ease;
}

.wnc-card:hover .wnc-card__icon {
    background: rgba(20, 184, 166, 0.2);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.wnc-card--neutral:hover .wnc-card__icon {
    background: rgba(148, 163, 184, 0.15);
    box-shadow: none;
}

.wnc-card__icon svg {
    width: 28px;
    height: 28px;
}

.wnc-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.wnc-card__desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* Note below cards */
.wnc-note {
    text-align: center;
    font-size: 1rem;
    color: #64748b;
    margin-top: 40px;
    font-style: italic;
}

/* ============================================
   WARNING GRID - Where copilots break down
   ============================================ */
.wnc-warnings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wnc-warning {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.wnc-warning:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.35);
    transform: translateY(-3px);
}

.wnc-warning__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.wnc-warning__icon svg {
    width: 20px;
    height: 20px;
}

.wnc-warning__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
}

.wnc-warning-note {
    text-align: center;
    font-size: 1.125rem;
    color: #ef4444;
    margin-top: 48px;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================
   CONTRAST SECTION - Copilots guess / Processes decide
   ============================================ */
.wnc-contrast {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wnc-contrast__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 48px;
    line-height: 1.2;
}

.wnc-contrast__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wnc-contrast__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.wnc-contrast__item:last-child {
    border-bottom: none;
}

.wnc-contrast__left {
    text-align: right;
    font-size: 1.0625rem;
    color: #64748b;
    font-weight: 500;
}

.wnc-contrast__right {
    text-align: left;
    font-size: 1.0625rem;
    color: #14b8a6;
    font-weight: 600;
}

/* ============================================
   COLUMNS - Why prompts don't scale
   ============================================ */
.wnc-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.wnc-column {
    text-align: center;
    padding: 32px 24px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.wnc-column:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.03);
}

.wnc-column__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

.wnc-column__icon svg {
    width: 24px;
    height: 24px;
}

.wnc-column__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
}

.wnc-column__desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.wnc-scale-note {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-top: 56px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.wnc-comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.wnc-comparison-table__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
}

.wnc-comparison-table__col {
    padding: 20px 24px;
    font-size: 1.125rem;
    font-weight: 700;
}

.wnc-comparison-table__col--left {
    color: #94a3b8;
    border-right: 1px solid rgba(148, 163, 184, 0.15);
}

.wnc-comparison-table__col--right {
    color: #14b8a6;
}

.wnc-comparison-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.wnc-comparison-table__row:last-child {
    border-bottom: none;
}

.wnc-comparison-table__cell {
    padding: 18px 24px;
    font-size: 0.9375rem;
}

.wnc-comparison-table__cell--left {
    color: #64748b;
    border-right: 1px solid rgba(148, 163, 184, 0.08);
    background: rgba(15, 23, 42, 0.3);
}

.wnc-comparison-table__cell--right {
    color: #e2e8f0;
    font-weight: 500;
}

/* ============================================
   FINAL CTA
   ============================================ */
.wnc-final {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
    border-top: 1px solid rgba(20, 184, 166, 0.15);
}

.wnc-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    opacity: 0.6;
}

.wnc-final__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.wnc-final__content {
    position: relative;
    z-index: 1;
}

.wnc-final__title {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 14px;
    line-height: 1.2;
}

.wnc-final__subtitle {
    font-size: 1.0625rem;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wnc-final__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .wnc-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .wnc-hero__content {
        max-width: 100%;
    }
    
    .wnc-hero__intro,
    .wnc-hero__warning {
        max-width: 100%;
    }
    
    .wnc-hero__warning {
        text-align: left;
    }
    
    .wnc-hero__bullets {
        align-items: center;
    }
    
    .wnc-hero__actions {
        justify-content: center;
    }
    
    .wnc-hero__visual {
        order: -1;
    }
    
    .wnc-comparison-diagram {
        max-width: 480px;
    }
    
    .wnc-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .wnc-warnings {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wnc-columns {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .wnc-contrast__item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .wnc-contrast__left,
    .wnc-contrast__right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wnc-hero {
        padding: 100px 0 60px;
    }
    
    .wnc-comparison-diagram {
        max-width: 400px;
    }
    
    .wnc-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .wnc-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .wnc-section {
        padding: 80px 0;
    }
    
    .wnc-section--contrast {
        padding: 80px 0;
    }
    
    .wnc-warnings {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .wnc-final {
        padding: 90px 0;
    }
    
    .wnc-final__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .wnc-comparison-table__col,
    .wnc-comparison-table__cell {
        padding: 14px 16px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .wnc-container {
        padding: 0 20px;
    }
    
    .wnc-hero__title {
        font-size: 1.75rem;
    }
    
    .wnc-hero__intro {
        font-size: 1rem;
    }
    
    .wnc-section__title {
        font-size: 1.5rem;
    }
    
    .wnc-comparison-diagram {
        max-width: 320px;
    }
    
    .wnc-contrast__title {
        font-size: 1.5rem;
    }
    
    .wnc-comparison-table__header {
        display: none;
    }
    
    .wnc-comparison-table__row {
        grid-template-columns: 1fr;
    }
    
    .wnc-comparison-table__cell--left {
        border-right: none;
        border-bottom: 1px dashed rgba(148, 163, 184, 0.15);
        padding-bottom: 10px;
    }
    
    .wnc-comparison-table__cell--right {
        padding-top: 10px;
        color: #14b8a6;
    }
}
