/* TOLINEX GmbH – Coming Soon styles */

:root {
    --bg: #0a1622;
    --bg-2: #0f2236;
    --fg: #f5f9ff;
    --muted: #8fa6bd;
    --accent: #1d76ae;
    --accent-2: #3aa9e0;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --maxw: 880px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: -2;
}

.bg-glow {
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(600px circle at 20% 20%, rgba(29, 118, 174, 0.28), transparent 60%),
        radial-gradient(700px circle at 80% 80%, rgba(58, 169, 224, 0.22), transparent 60%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 48px 24px 32px;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.brand {
    display: flex;
    justify-content: center;
}

.logo {
    height: auto;
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 4px 20px rgba(29, 118, 174, 0.35));
}

.hero {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: var(--accent);
    margin: 0;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.contact {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact address {
    font-style: normal;
    line-height: 1.7;
}

.contact strong {
    color: var(--fg);
}

.footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.footer p {
    margin: 0;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-2);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px 28px;
        gap: 48px;
    }

    .logo {
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 32px 16px 24px;
        gap: 40px;
    }

    .logo {
        max-width: 260px;
    }

    .lead {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
