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

body {
    min-height: 100vh;
    background-color: #f5f7f4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    cursor: default;
    font-family: 'OCR A', 'Courier New', monospace;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 20;
    padding: 0.75rem 1rem;
    background: #2f3f2f;
    color: #fff;
    border-radius: 0.25rem;
    text-decoration: none;
    font-family: 'OCR A', 'Courier New', monospace;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid #3a5a38;
    outline-offset: 2px;
}

.page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.company-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3a5a38;
    letter-spacing: 0.02em;
}

@font-face {
    font-family: 'OCR A';
    src: url('../assets/OCRA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.company-name,
.org-number {
    font-family: inherit;
}

.org-number {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #2f3f2f;
    padding: 0.35rem 0.55rem;
    border-radius: 0.25rem;
    /* background: rgba(255, 255, 255, 0.45); */
}

.company-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3a5a38;
    letter-spacing: 0.02em;
}

#dots {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(92, 119, 90, 0.18) 1.2px, transparent 1.4px);
    background-size: 22px 22px;
    pointer-events: none;
}

#dots-hover {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(92, 119, 90, 0.28) 2px, transparent 2.2px);
    background-size: 22px 22px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

#logo {
    position: relative;
    z-index: 1;
    width: min(340px, 72vw);
    height: auto;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    -webkit-user-drag: none;
}

#logo.stamp {
    transform: scale(0.93);
    transition: transform 0.08s ease-in;
}

.particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    transform-origin: center;
}