/* ── HERO ── */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 148px 56px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 22px;
}
.breadcrumb span {
    color: var(--accent);
}
.breadcrumb::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(50px, 5.5vw, 74px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 430px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        background var(--t),
        transform var(--t);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.btn-ghost {
    font-size: 14px;
    color: var(--ink-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--t);
}
.btn-ghost:hover {
    color: var(--ink);
}

/* hero stat strip */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}
.hero-stat {
    flex: 1;
}
.hero-stat + .hero-stat {
    padding-left: 28px;
    border-left: 1px solid var(--border);
    margin-left: 28px;
}
.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* hero visual */
.hero-visual {
    position: relative;
}
.hero-screen {
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.08);
}
.screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.screen-content {
    padding: 28px;
}

/* simulated newsroom dashboard */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dash-title {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.dash-badge {
    font-size: 11px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dash-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}
.dash-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    margin-bottom: 8px;
}
.dash-row-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-row-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}
.dash-row-text {
    flex: 1;
}
.dash-row-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 2px;
}
.dash-row-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}
.dash-row-chip {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
}
.chip-done {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}
.chip-ai {
    background: rgba(200, 64, 10, 0.15);
    color: #f97316;
    border: 1px solid rgba(200, 64, 10, 0.3);
}
.chip-live {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}
.chip-test {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}
.dash-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 14px 16px;
    text-align: center;
}
.dash-metric-num {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}
.dash-metric-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* ── FEATURES INTRO ── */
.features-intro {
    background: var(--ink);
    padding: 80px 56px;
}
.features-intro-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
}
.fi-left {
    max-width: 520px;
}
.fi-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}
.fi-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0;
}
.fi-title em {
    font-style: italic;
    color: var(--accent);
}
.fi-right {
    max-width: 440px;
}
.fi-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

/* capability pills */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
}
.pill svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
}

/* ── FEATURE CARDS ── */
.features-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 56px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.feature-block.flip {
}

.feat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    transition:
        box-shadow var(--t),
        transform var(--t);
    position: relative;
    overflow: hidden;
}
.feat-card:hover {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}
.feat-card.dark {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.06);
}
.feat-card.wide {
    grid-column: span 2;
}
.feat-card.accent-bg {
    background: var(--accent-light);
    border-color: rgba(200, 64, 10, 0.15);
}

.feat-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feat-num::after {
    content: "";
    flex: 0;
    width: 28px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.feat-card.dark .feat-num {
    color: rgba(200, 64, 10, 0.8);
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.feat-card.dark .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-card.accent-bg .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-card h3 {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.feat-card.dark h3 {
    color: white;
}

.feat-card > p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
}
.feat-card.dark > p {
    color: rgba(255, 255, 255, 0.45);
}
.feat-card.accent-bg > p {
    color: var(--ink-muted);
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
    font-weight: 300;
}
.feat-card.dark .feat-list li {
    color: rgba(255, 255, 255, 0.45);
}
.feat-list li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.feat-card.dark .feat-list li::before {
    background-color: rgba(200, 64, 10, 0.15);
    border-color: rgba(200, 64, 10, 0.4);
}

.feat-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}
.feat-card.dark .feat-result {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
}
.feat-card.accent-bg .feat-result {
    background: rgba(200, 64, 10, 0.07);
    border-color: rgba(200, 64, 10, 0.15);
}
.feat-result-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 4px;
    white-space: nowrap;
}

/* wide card layout */
.feat-card.wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.feat-card.wide .feat-left {
}
.feat-card.wide .feat-right {
}

/* inline metric */
.feat-metrics {
    display: flex;
    gap: 24px;
    margin: 24px 0 0;
}
.feat-metric {
    text-align: left;
}
.feat-metric-num {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.feat-card.dark .feat-metric-num {
    color: var(--accent);
}
.feat-metric-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.4;
}
.feat-card.dark .feat-metric-label {
    color: rgba(255, 255, 255, 0.35);
}

/* ── QUOTE STRIP ── */
.quote-strip {
    background: var(--surface-warm);
    padding: 80px 56px;
}
.quote-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.quote-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.quote-left h3 {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
blockquote {
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding-left: 32px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.quote-attr {
    font-size: 14px;
    color: var(--ink-muted);
    padding-left: 32px;
}
.quote-attr strong {
    color: var(--ink);
    font-weight: 500;
}

/* ── CTA ── */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 56px 100px;
}
.cta-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
}
.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}
.cta-title {
    font-family: var(--ff-display);
    font-size: 50px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.cta-title em {
    font-style: italic;
    color: var(--accent);
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 440px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.d1 {
    animation-delay: 0.08s;
    opacity: 0;
}
.d2 {
    animation-delay: 0.18s;
    opacity: 0;
}
.d3 {
    animation-delay: 0.28s;
    opacity: 0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }
    .features-intro {
        padding: 60px 24px;
    }
    .features-intro-inner {
        flex-direction: column;
        gap: 32px;
    }
    .features-section {
        padding: 60px 24px;
    }
    .feature-block {
        grid-template-columns: 1fr;
    }
    .feat-card.wide {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
    .quote-strip {
        padding: 60px 24px;
    }
    .quote-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-section {
        padding: 20px 24px 32px;
    }
    .cta-box {
        padding: 40px 24px;
    }
    .cta-title {
        font-size: 36px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero-stat + .hero-stat {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
}
