:root {
    --background-color: #0a0a0a;
    --text-color: #fafafa;
    --highlight-color: #f5f84b;
    --deep-background-color: #000;
    --text-color: #fafafa;
    --light-text-color: #bbb;
    --very-light-text-color: #666;
    --border-color: #1f1f1f;
}

html,
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--background-color);
    color: var(--text-color);
    display: flex;
    align-content: center;
    justify-content: center;
    min-height: 100%;
}

.hero {
    box-sizing: border-box;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo — mirrors the app's logged-out home (.svLogo) */
.logo {
    background-image: url("assets/logo.png");
    background-repeat: no-repeat;
    background-size: 320px;
    width: 320px;
    height: 49px;
    margin: 36px auto;
}

.text {
    font-size: 42px;
    font-weight: bold;
    margin: 12px auto;
    letter-spacing: -0.7px;
}

.welcome {
    font-size: 17px;
    line-height: 26px;
    color: var(--text-color);
    margin: 8px auto 36px auto;
    padding: 0 18px;
}

.appstore {
    display: inline-block;
    margin: 0 auto 36px auto;
}
.appstore img {
    height: 54px;
    width: auto;
    display: block;
}

.footer {
    margin-top: 12px;
    font-size: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.footer a {
    color: var(--highlight-color);
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer .sep {
    color: var(--very-light-text-color);
    margin: 0 3px;
}

.copyright {
    margin-top: 12px;
    font-size: 14px;
    color: var(--very-light-text-color);
}
