/* ── HERO ── */
.hero {
    background: var(--navy);
    padding: 88px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245, 176, 65, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 20%, rgba(17, 43, 82, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-image:
        linear-gradient(rgba(245, 176, 65, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 176, 65, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 176, 65, 0.14);
    border: 1px solid rgba(245, 176, 65, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

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

.btn-primary {
    background: var(--accent);
    color: var(--navy);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.22s;
    box-shadow: 0 4px 20px rgba(245, 176, 65, 0.35);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 176, 65, 0.45);
}

.btn-text-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.btn-text-link:hover {
    color: var(--white);
}

.btn-text-link .play-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
}

.btn-text-link:hover .play-circle {
    border-color: var(--accent);
    color: var(--accent);
}

/* dashboard screenshot */
.dashboard-screenshot {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.dashboard-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* dashboard illustration */
.hero-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.dashboard-mock {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 176, 65, 0.08);
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dot.r {
    background: #FF5F57;
}

.mock-dot.y {
    background: #FFBD2E;
}

.mock-dot.g {
    background: #28CA41;
}

.mock-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-left: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.mock-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-stat-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.mock-stat-val.accent {
    color: var(--accent);
}

.accent {
    color: var(--accent);
}

.mock-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-chart {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.chart-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: rgba(245, 176, 65, 0.25);
}

.bar.active {
    background: var(--accent);
}

.bar-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.mock-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.row-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.row-dot.green {
    background: #2ECC71;
}

.row-dot.gray {
    background: var(--gray);
}

.row-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
}

.row-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(245, 176, 65, 0.15);
    color: var(--accent);
}

.row-badge.green {
    background: rgba(46, 204, 113, 0.15);
    color: #2ECC71;
}

.hero-pill {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: var(--accent);
    color: var(--navy);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(245, 176, 65, 0.4);
    animation: float 3s ease-in-out infinite;
}

.hero-pill2 {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
