/* ---- Punch clock mockup ---- */
.feature-page .feature-mock.feature-mock-clock {
    padding: var(--h-space-7) 28px var(--h-space-6);
    text-align: center;
    background: var(--h-navy);
    color: var(--h-white);
}

.feature-page .feature-mock-clock-time {
    font-family: var(--h-font-display);
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.feature-page .feature-mock-clock-sep {
    color: #7dd3fc;
    animation: clockBlink 1s steps(2, end) infinite;
}

.feature-page .feature-mock-clock-s {
    font-size: 38px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: var(--h-space-1);
}

@keyframes clockBlink {
    50% {
        opacity: 0.35;
    }
}

.feature-page .feature-mock-clock-date {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.feature-page .feature-mock-clock-today {
    margin: 18px auto var(--h-space-5);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.feature-page .feature-mock-clock-today-l {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.feature-page .feature-mock-clock-today-v {
    font-family: var(--h-font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--h-white);
    font-variant-numeric: tabular-nums;
}

.feature-page .feature-mock-clock-actions {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--h-space-2);
    margin-bottom: 18px;
}

.feature-page .feature-mock-clock-btn {
    border: none;
    border-radius: 10px;
    padding: var(--h-space-3);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.feature-page .feature-mock-clock-btn-ok {
    background: #1a75cf;
    color: var(--h-white);
}

.feature-page .feature-mock-clock-btn-ko {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.feature-page .feature-mock-clock-log {
    text-align: left;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--h-space-2);
}

.feature-page .feature-mock-clock-log-item {
    display: grid;
    grid-template-columns: 12px 50px 1fr;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
}

.feature-page .feature-mock-clock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.feature-page .feature-mock-clock-dot-in {
    background: #10b981;
}

.feature-page .feature-mock-clock-dot-out {
    background: #f59e0b;
}

.feature-page .feature-mock-clock-log-time {
    font-family: var(--h-font-display);
    font-weight: 700;
    color: var(--h-white);
    font-variant-numeric: tabular-nums;
}

