/* MAXICOM - minimal homepage */
:root {
    --chili-red: #C41E3A;
    --cayenne: #8D0226;
    --paprika: #E25822;

    --bg: #0c0a0a;
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.55;
    background:
        radial-gradient(1200px 650px at 10% 10%, rgba(226, 88, 34, 0.34), transparent 60%),
        radial-gradient(900px 700px at 85% 25%, rgba(196, 30, 58, 0.34), transparent 60%),
        radial-gradient(1000px 650px at 30% 90%, rgba(255, 107, 53, 0.22), transparent 60%),
        linear-gradient(180deg, #090707 0%, #0c0a0a 60%, #0a0707 100%);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: clamp(24px, 6vh, 52px) 0;
}

.container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    padding: 0;
}

.hero-inner {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}
.brand-mark-img {
    width: 30px;
    height: 30px;
    display: block;
}
.brand-text { display: grid; gap: 2px; }
.brand-name { font-weight: 800; letter-spacing: -0.02em; }
.brand-sub { font-size: 0.9rem; color: var(--muted); }

h1 {
    margin: 6px 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.lead {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.address {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--chili-red), var(--paprika));
    border-color: rgba(255, 255, 255, 0.18);
}
.btn-primary:hover { background: linear-gradient(135deg, #d62a48, #f0642a); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.20);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.18); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); }

@media (max-width: 640px) {
    .container { width: calc(100% - 28px); }
    .hero-inner { padding: 20px; }
    .actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
}

@media (max-height: 520px) and (orientation: landscape) {
    .page { padding: 16px 0; align-items: start; }
    .hero-inner { padding: 18px; }
    h1 { margin-top: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .btn { transition: none; }
    .btn:hover { transform: none; }
}
