:root {
    --blue-dark: #1f4fa3;
    --blue-main: #2f6fd6;
    --blue-light: #6fa9ff;
    --background: #0c1220;
    --text-main: #e8eefc;
    --text-muted: #aab6d9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-main);
}

.hero {
    padding: 4rem 2rem 3rem;
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    text-align: center;
}

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

.subtitle {
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: var(--blue-light);
}

.hero-graphic svg {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: block;
}

.hero-graphic rect {
    fill: none;
    stroke: var(--blue-main);
    stroke-width: 2;
}

.hero-graphic line {
    stroke: var(--blue-light);
    stroke-width: 1.5;
    opacity: 0.7;
}

main {
    max-width: 1000px;
    margin: auto;
    padding: 0 2rem 4rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.domains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(
        145deg,
        rgba(47, 111, 214, 0.15),
        rgba(47, 111, 214, 0.05)
    );
    border: 1px solid rgba(111, 169, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
}

.card h2 {
    color: var(--blue-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

footer {
    border-top: 1px solid rgba(111, 169, 255, 0.2);
    padding: 2rem;
}

.footer-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.6;
}

.placeholder-note {
    color: var(--blue-light);
    font-size: 0.85rem;
    align-self: center;
}
