.wif-hero {
    padding: 110px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.wif-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,62,62,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.wif-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
}
.wif-hero h1 em {
    font-style: normal;
    color: var(--accent-red);
}
.wif-hero-sub {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}
.wif-hero-sub strong { color: #ccc; font-weight: 700; }

.skimline {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.skimline-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #444;
    padding: 10px 20px;
    border: 1px solid #1e1e1e;
    transition: all 0.25s ease;
    cursor: default;
    white-space: nowrap;
}
.skimline-item:first-child { border-radius: 8px 0 0 8px; }
.skimline-item:last-child  { border-radius: 0 8px 8px 0; }
.skimline-item:hover {
    color: var(--accent-red);
    border-color: rgba(255,62,62,0.35);
    background: rgba(255,62,62,0.04);
    z-index: 1;
}

.personas-section {
    padding: 0 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.personas-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 48px;
    text-align: center;
    opacity: 0.7;
}

.persona-row {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0 40px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid #161616;
    position: relative;
}
.persona-row:first-of-type { border-top: 1px solid #161616; }

.persona-row-divider {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,62,62,0.25), transparent);
    align-self: stretch;
}

.persona-identity {
    padding-right: 20px;
}
.persona-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red);
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}
.persona-headline {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.persona-detail { padding-left: 20px; }
.persona-detail p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #777;
    max-width: none;
    margin: 0 0 16px;
}
.persona-outcome {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(62,255,198,0.06);
    border: 1px solid rgba(62,255,198,0.15);
    padding: 7px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.persona-outcome::before {
    content: '→';
    color: var(--accent-cyan);
    opacity: 0.6;
}

.quote-strip {
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #141414;
    background: linear-gradient(180deg, rgba(255,62,62,0.03) 0%, transparent 100%);
    position: relative;
}
.quote-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}
.quote-strip blockquote {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.25;
    max-width: 780px;
    margin: 0 auto 14px;
}
.quote-strip blockquote em {
    font-style: normal;
    color: var(--accent-red);
}
.quote-strip cite {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #3a3a3a;
    font-style: normal;
}

@media (max-width: 860px) {
    .wif-hero { padding: 80px 24px 50px; }
    .personas-section { padding: 0 24px 60px; }
    .skimline { padding: 0 24px 40px; gap: 6px; }
    .skimline-item { border-radius: 6px !important; }
    .persona-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 36px 0;
    }
    .persona-row-divider { display: none; }
    .persona-identity { padding-right: 0; }
    .persona-detail { padding-left: 0; }
    .quote-strip { padding: 60px 24px; }
}