/* ── DASHBOARD SECTION — dsh- prefix ── */

#dashboard {
    border-top: 0.5px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: var(--light1);
}

/* ── HERO — command center overview ── */
.dsh-hero {
    background: var(--light1);
    padding: 48px 48px 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dsh-hero-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dsh-hero-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.dsh-hero-intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dsh-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.dsh-hero-headline {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.95;
    margin: 0;
}

.dsh-hero-headline em {
    font-style: italic;
    color: var(--green);
}

.dsh-hero-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
    max-width: 280px;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 4px;
}

/* ── BROWSER CHROME SCREENSHOT FRAME ── */
.dsh-screenshot-main {
    width: 100%;
    background: #1a1a1a;
    border: 0.5px solid #2a2a2a;
    border-radius: 12px 12px 0 0;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dsh-screenshot-bar {
    height: 32px;
    background: #242424;
    border-bottom: 0.5px solid #333333;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
    flex-shrink: 0;
}

.dsh-chrome-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444444;
    flex-shrink: 0;
}

.dsh-chrome-dot.active {
    background: var(--green);
    opacity: 0.6;
}

.dsh-screenshot-bar-url {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.06em;
    margin-left: 8px;
}

.dsh-screenshot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 0;
}

/* Screenshot image wrapper — preserve width, allow controlled height/cropping */
.dsh-screenshot-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}
.dsh-screenshot-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dsh-screenshot-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #222222;
    border: 0.5px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green);
}

.dsh-screenshot-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

.dsh-screenshot-spec {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.7;
}

/* ── FEATURE GRID — 3 columns ── */
.dsh-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
    background: #111111;
}

.dsh-feature {
    padding: 32px 36px;
    border-right: 0.5px solid #222222;
    border-bottom: 0.5px solid #222222;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #111111;
}

.dsh-feature:nth-child(3n) {
    border-right: none;
}

.dsh-feature:nth-last-child(-n+3) {
    border-bottom: none;
}

.dsh-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 0.5px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--green);
}

.dsh-feature-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.dsh-feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
}

.dsh-feature-screenshot {
    margin-top: 4px;
    background: #1a1a1a;
    border: 0.5px solid #2a2a2a;
    border-radius: 8px;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 12px;
}

.dsh-feature-screenshot i {
    font-size: 20px;
    color: var(--green);
    opacity: 0.4;
}

.dsh-feature-screenshot-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    text-align: center;
}

.dsh-feature-screenshot-sub {
    font-size: 9px;
    color: rgba(255,255,255,0.1);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.6;
}

/* ── SPLIT ROWS ── */
.dsh-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

.dsh-split-left {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    border-right: 0.5px solid var(--border);
}

.dsh-split-left-alt {
    border-right: none;
    border-left: 0.5px solid var(--border);
}

.dsh-split-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dsh-split-h3 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.95;
    margin: 0;
}

.dsh-split-p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 300px;
    margin: 0;
}

.dsh-split-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.dsh-split-bullets li {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
}

.dsh-split-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
}

.dsh-split-right {
    padding: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dsh-split-right.dark {
    background: #111111;
    border-right: 0.5px solid var(--border);
    padding: 40px;
}

/* Light screenshot frame */
.dsh-frame-light {
    width: 100%;
    background: var(--light1);
    border: 0.5px solid var(--light2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dsh-frame-bar {
    height: 28px;
    background: var(--light2);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 5px;
    flex-shrink: 0;
}

.dsh-frame-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c0c0c0;
}

.dsh-frame-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 0;
}

/* Small framed screenshots used in feature split columns */
.dsh-frame-img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}
.dsh-frame-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dsh-frame-icon {
    font-size: 28px;
}

.dsh-frame-icon-light {
    color: var(--text-muted);
    opacity: 0.5;
}

.dsh-frame-icon-dark {
    color: var(--green);
    opacity: 0.4;
}

.dsh-frame-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}

.dsh-frame-spec {
    font-size: 9px;
    color: var(--light2);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.6;
}

/* Dark screenshot frame */
.dsh-frame-dark {
    width: 100%;
    background: #1a1a1a;
    border: 0.5px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dsh-frame-dark .dsh-frame-bar {
    background: #242424;
    border-bottom: 0.5px solid #333333;
}

.dsh-frame-dark .dsh-frame-dot {
    background: #444444;
}

.dsh-frame-dark .dsh-frame-dot.active {
    background: var(--green);
    opacity: 0.5;
}

.dsh-frame-dark .dsh-frame-label {
    color: rgba(255, 255, 255, 0.2);
}

.dsh-frame-dark .dsh-frame-spec {
    color: rgba(255, 255, 255, 0.1);
}

.dsh-frame-dark .dsh-frame-body i {
    color: var(--green);
    opacity: 0.4;
}

/* ── CLOSING BANNER ── */
.dsh-closing {
    background: var(--white);
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dsh-closing-quote {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.0;
    margin: 0;
}

.dsh-closing-quote em {
    font-style: italic;
    color: var(--green);
}

.dsh-closing-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 48px;
    border-left: 0.5px solid var(--border);
}

.dsh-closing-p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.dsh-closing-btn {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 11px 22px;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: opacity 0.2s;
}

.dsh-closing-btn:hover {
    opacity: 0.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .dsh-hero { padding: 40px 24px 0; }
    .dsh-hero-headline { font-size: 28px; }
    .dsh-hero-top { flex-direction: column; align-items: flex-start; }
    .dsh-features { grid-template-columns: 1fr; }
    .dsh-feature { border-right: none; }
    .dsh-feature:nth-last-child(-n+3) { border-bottom: 0.5px solid var(--border); }
    .dsh-feature:last-child { border-bottom: none; }
    .dsh-split { grid-template-columns: 1fr; }
    .dsh-split-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 32px 24px; }
    .dsh-split-right { padding: 24px; }
    .dsh-split-right.dark { border-right: none; }
    .dsh-closing { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
    .dsh-closing-right { padding-left: 0; border-left: none; border-top: 0.5px solid var(--border); padding-top: 32px; }
    .dsh-closing-quote { font-size: 28px; }

    /* Make screenshot images fluid on small screens */
    .dsh-screenshot-inner { max-width: 100%; height: auto; }
    .dsh-screenshot-inner img { position: static; width: 100%; height: auto; object-fit: cover; }
    .dsh-frame-img { max-width: 100%; height: auto; }
    .dsh-frame-img img { position: static; width: 100%; height: auto; object-fit: cover; }
}