:root {
    color-scheme: light;
    --bs-primary: #176b87;
    --bs-primary-rgb: 23, 107, 135;
    --background: #f6f7f9;
    --text: #17202a;
    --border: #d9dee7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-main {
    flex: 1;
}

.navbar-brand {
    color: var(--bs-primary);
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #10546b;
}

.header-logo {
    display: block;
    width: auto;
    max-width: 7rem;
    max-height: 2rem;
    object-fit: contain;
}

.brand-mark {
    display: block;
    width: min(14rem, 70vw);
    height: auto;
}

.hero-section {
    background: #ffffff;
}

.app-screenshot {
    display: block;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 1rem 3rem rgba(23, 32, 42, 0.14);
}

.overview-section {
    background: var(--background);
}

.card {
    border-radius: 8px;
}

.workflow-step {
    height: 100%;
    padding: 1.25rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.step-number {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
    place-items: center;
    color: #ffffff;
    background: var(--bs-primary);
    border-radius: 50%;
    font-weight: 700;
}

.demo-video {
    display: block;
    width: 100%;
    max-height: calc(100vh - 14rem);
    background: #000000;
    border: 1px solid var(--border);
    border-radius: 8px;
}
