/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 120px 80px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 28px;
    overflow-wrap: break-word;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.hero-screen {
    width: 100%;
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.hero-screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-r {
    background: #ff5f57;
}
.dot-y {
    background: #febc2e;
}
.dot-g {
    background: #28c840;
}

.hero-screen-body {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.screen-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
}

.screen-card-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-family: var(--ff-body);
}

.screen-card-num {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.screen-card-delta {
    font-size: 12px;
    color: #4ade80;
}

.screen-bar-chart {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.bar {
    flex: 1;
    background: rgba(200, 64, 10, 0.3);
    border-radius: 2px 2px 0 0;
    border-top: 2px solid var(--accent);
    transition: height 0.3s ease;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--ink);
    padding: 32px 80px;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    padding: 32px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ── PROBLEM / SOLUTION ── */
.two-col {
    display: block;
}

.col-title {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.col-body {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.tag-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.tag {
    font-size: 13px;
    color: var(--ink-muted);
    border: 1px solid var(--border-strong);
    padding: 5px 12px;
    border-radius: 100px;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.problem-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    border-left: 3px solid var(--accent);
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

.problem-card h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.reality-box {
    background: var(--surface-warm);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 12px;
}

.reality-box .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reality-box p {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.6;
}

.check-list li::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1.5px solid var(--accent);
    margin-top: 3px;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3 3 7-7' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--accent-light);
    border: 1px solid var(--accent);
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--surface-warm);
    padding: 100px 0;
}

.products-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.product-num {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-num::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-strong);
    max-width: 32px;
}

.product-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.product-card p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.7;
    flex: 1;
    font-weight: 300;
}

.products-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── TEAM ── */
.team-section {
    background: var(--ink);
    padding: 100px 0;
    overflow: hidden;
}

.team-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.team-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.team-title {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 32px;
}

.team-title em {
    font-style: italic;
    color: var(--accent);
}

.team-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.team-quote {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
    margin-top: 40px;
}

.team-quote p {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.team-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.team-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}

.team-stat-card.accent-card {
    background: var(--accent);
    border-color: var(--accent);
}

.team-stat-num {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.team-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.5;
}

.accent-card .team-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ── CTA ── */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 80px 120px;
}

.cta-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--ff-display);
    font-size: 52px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-title em {
    font-style: italic;
    color: var(--accent);
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 100px 24px 60px;
        gap: 40px;
    }
    .hero h1 {
        font-size: clamp(34px, 8vw, 48px);
    }
    .hero-visual {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stats-strip {
        padding: 32px 24px;
    }
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        padding: 24px 20px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-num {
        font-size: 36px;
    }

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

    .products-section {
        padding: 60px 0;
    }
    .products-inner {
        padding: 0 24px;
    }
    .products-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .products-header h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-grid-2 {
        grid-template-columns: 1fr;
    }

    .team-section {
        padding: 60px 0;
    }
    .team-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 48px;
    }
    .team-title {
        font-size: 32px;
    }
    .team-quote p {
        font-size: 17px;
    }
    .team-stat-card {
        padding: 20px 16px;
    }
    .team-stat-num {
        font-size: 32px;
    }

    .cta-section {
        padding: 60px 24px 80px;
    }
    .cta-box {
        padding: 48px 28px;
    }
    .cta-title {
        font-size: 36px;
    }
}
