/* 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-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 DASHBOARD */
.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: 24px;
}
.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.dash-title-sm {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.live-badge {
    font-size: 10px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.live-badge::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #4ade80;
    border-radius: 50%;
}

/* sparkline chart area */
.chart-area {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 14px;
}
.chart-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}
.chart-num {
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 300;
    color: white;
    line-height: 1;
}
.chart-delta {
    font-size: 12px;
    color: #4ade80;
}
.chart-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: auto;
}
.sparkline {
    width: 100%;
    height: 56px;
}

/* segment rows */
.seg-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.seg-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.seg-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    width: 100px;
    flex-shrink: 0;
}
.seg-bar-wrap {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    height: 6px;
    overflow: hidden;
}
.seg-bar {
    height: 100%;
    border-radius: 3px;
    background: var(--accent);
}
.seg-pct {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* mini metric grid */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.mini-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 12px 14px;
}
.mini-num {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}
.mini-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.3;
}

/* WHAT IT ENABLES BAND */
.enables-band {
    background: var(--ink);
    padding: 80px 56px;
}
.enables-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
}
.en-left {
    max-width: 520px;
}
.en-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}
.en-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}
.en-title em {
    font-style: italic;
    color: var(--accent);
}
.en-right {
    max-width: 440px;
}
.en-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}
.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;
}
.section-eyebrow {
    margin-bottom: 16px;
}

.feat-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.feat-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    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.warm {
    background: var(--surface-warm);
    border-color: rgba(0, 0, 0, 0.06);
}
.feat-card.accent-tint {
    background: var(--accent-light);
    border-color: rgba(200, 64, 10, 0.12);
}
.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feat-card:not(.dark):hover::before {
    transform: scaleX(1);
}

.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: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.feat-card.dark .feat-num {
    color: rgba(200, 64, 10, 0.85);
}

.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.warm .feat-icon {
    background: rgba(200, 64, 10, 0.12);
}
.feat-card.accent-tint .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: 24px;
    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: 22px;
}
.feat-card.dark > p {
    color: rgba(255, 255, 255, 0.45);
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    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.4);
}
.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 {
    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.38);
}
.feat-card.warm .feat-result {
    background: white;
    border-color: var(--border);
}
.feat-card.accent-tint .feat-result {
    background: rgba(200, 64, 10, 0.07);
    border-color: rgba(200, 64, 10, 0.14);
}
.feat-result-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 4px;
}

.feat-metric-row {
    display: flex;
    gap: 28px;
    margin-top: 24px;
}
.feat-metric {
}
.feat-metric-num {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.feat-card.dark .feat-metric-num {
    color: var(--accent);
}
.feat-metric-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
}
.feat-card.dark .feat-metric-label {
    color: rgba(255, 255, 255, 0.35);
}

/* WIDE 2-col interior */
.feat-card.wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.feat-card.wide-inner.span2 {
    grid-column: span 2;
}

/* INSIGHT VISUAL inside card */
.insight-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
}
.iv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.iv-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}
.iv-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.iv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.iv-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    width: 80px;
    flex-shrink: 0;
}
.iv-bar-bg {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
.iv-bar-fill {
    height: 100%;
    border-radius: 3px;
}
.iv-pct {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    text-align: right;
}

/* COHORT TABLE */
.cohort-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.cohort-table th {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cohort-table td {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cohort-table td.num {
    font-family: var(--ff-display);
    font-weight: 300;
    color: white;
}
.cohort-table td.up {
    color: #4ade80;
}
.cohort-table td.down {
    color: #f87171;
}
.trend-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 4px;
}
.trend-dot.g {
    background: #4ade80;
}
.trend-dot.r {
    background: #f87171;
}
.trend-dot.y {
    background: #fbbf24;
}

/* QUOTE */
.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;
}
blockquote {
    font-family: var(--ff-display);
    font-size: 28px;
    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;
}
.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;
    }
    .enables-band {
        padding: 60px 24px;
    }
    .enables-inner {
        flex-direction: column;
        gap: 32px;
    }
    .features-section {
        padding: 60px 24px;
    }
    .feat-grid-2,
    .feat-grid-3 {
        grid-template-columns: 1fr;
    }
    .feat-grid-2 > *,
    .feat-grid-3 > * {
        min-width: 0;
    }
    .feat-card.wide-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feat-card.wide-inner > * {
        min-width: 0;
    }
    .feat-card.wide-inner.span2 {
        grid-column: span 1;
    }
    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .cohort-table th,
    .cohort-table td {
        white-space: nowrap;
        padding: 6px 8px;
    }
    .quote-strip {
        padding: 60px 24px;
    }
    .quote-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-section {
        padding: 20px 24px 60px;
    }
    .cta-box {
        padding: 48px 28px;
    }
    .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;
    }
}
