/* Figma V2 alignment layer. Page-specific styles remain CSS-isolated. */
@font-face {
    font-family: "Geist";
    src: url("../fonts/geist-latin-variable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-latin-variable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-variable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --canvas: #f5f7f5;
    --paper: #ffffff;
    --ink: #1e2723;
    --ink-soft: #42544c;
    --muted: #5f6c66;
    --line: #d6dfda;
    --line-strong: #cbd8d1;
    --green: #4a6e5d;
    --green-dark: #385647;
    --green-soft: #e4ece8;
    --blue-soft: #eaf3fb;
    --blue-ink: #245681;
    --radius: 12px;
    --shadow: 0 2px 4px rgba(30, 39, 35, .04);
}

html,
body {
    background: var(--canvas);
}

body {
    font-family: "Geist", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: "Outfit", "Geist", system-ui, sans-serif;
}

h1 {
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 750;
    letter-spacing: -.025em;
    line-height: 1.1;
}

h2 {
    font-weight: 700;
    letter-spacing: -.015em;
}

.panel {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.primary-button,
.quiet-button,
.icon-button,
.upload-button {
    border-radius: 8px;
    box-shadow: none;
    font-weight: 650;
}

.primary-button {
    background: var(--green);
}

.status.upcoming {
    color: var(--blue-ink);
    background: var(--blue-soft);
}

.status.done {
    color: #246552;
    background: #dff5ec;
}

.mobile-workflow-header {
    display: none;
}

.app-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
    object-fit: contain;
}

@media (max-width: 760px) {
    body {
        font-family: "Inter", "Geist", system-ui, sans-serif;
    }

    h1,
    h2,
    h3,
    .navbar-brand {
        font-family: "Outfit", "Inter", system-ui, sans-serif;
    }

    .mobile-workflow-header {
        min-height: 56px;
        margin: -16px -15px 20px;
        padding: 0 16px;
        border-bottom: 1px solid var(--line);
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--ink);
        background: #fff;
        font-family: "Outfit", "Inter", sans-serif;
        font-size: 1.12rem;
        font-weight: 700;
    }

    .mobile-workflow-header img {
        width: 20px;
        height: 20px;
    }
}
