/* brand-style.css */
:root {
    --bg: #f8f8f8;
    --text: #1a1a1a;
    --accent: #ff4d00; /* A bold "International Orange" for a modern branding feel */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    overflow: hidden;
    height: 100vh;
}

/* Progress bar at the very top */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--accent);
    width: 0%;
    transition: width 0.5s ease;
}

.main-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 120px);
}

nav {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.status-tag {
    font-size: 0.8rem;
    border: 1px solid var(--text);
    padding: 2px 10px;
    border-radius: 20px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    margin: 40px 0;
    letter-spacing: -2px;
}

.italic {
    font-style: italic;
    font-family: serif; /* Mixing sans and serif is a classic branding trope */
}

#timer {
    display: flex;
    gap: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
}

.time-block label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
}

footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
}