/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #111;
    background: #f5f6f7;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}
/* Hero / centered layout */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 0;
}
.hero-inner {
    text-align: center;
}
.sirius-logo {
    max-width: 720px;
    width: 60vw;
    height: auto;
    display: block;
    margin: 0 auto 28px;
}
.contact-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: inline-block;
    text-align: left;
}
.contact-item {
    font-family: 'Courier New', Courier, monospace;
    font-size: 32px;
    color: #111;
    margin: 14px 0;
}
.contact-item a {
    color: inherit;
    text-decoration: none;
}
.contact-item .icon {
    display: inline-block;
    width: 32px;
    text-align: center;
    margin-right: 14px;
    font-size: 32px;
    vertical-align: middle;
}
.site-footer {
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
    color: #666;
}
/* Responsive */
@media (max-width: 800px) {
    .sirius-logo { width: 80vw; max-width: 480px; }
    .contact-item { font-size: 16px; }
}
@media (max-width: 420px) {
    .sirius-logo { width: 92vw; max-width: 360px; }
    .contact-item { font-size: 15px; }
}
