/* Copyright BRANDOY */
@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600&subset=latin,latin-ext);

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    background-color: #000;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ─── Layout ────────────────────────────────────────────────── */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content {
    width: 100%;
    padding: 40px 20px;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    opacity: 0.95;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 32px rgba(255, 255, 255, 0.18));
}

.hero-tagline {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-link {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: lowercase;
    transition: color 0.2s ease;
}

.hero-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── Footer ────────────────────────────────────────────────── */
.page-footer-wrapper {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.page-footer {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
}

.page-footer a {
    color: rgba(255, 255, 255, 0.25);
}

.page-footer a:hover {
    color: rgba(255, 255, 255, 0.55);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (min-width: 480px) {
    .hero-logo {
        max-width: 340px;
    }

    .hero-tagline {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        max-width: 420px;
    }
}
