@font-face {
    font-family: 'Moderat';
    src: url('fonts/Moderat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Simplon Mono';
    src: url('fonts/SimplonMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Header ── */

.header {
    z-index: 10;
    height: 104px;
    padding: 24px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    flex-shrink: 0;
}

/* ── Content card ── */

.content {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Background image ── */

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* ── Crosses grid ── */

.crosses {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62' viewBox='0 0 62 62'%3E%3Cg transform='translate(17.66 17.66)'%3E%3Cline x1='2.34' y1='4.34' x2='2.34' y2='0.34' stroke='%239D9D9D' stroke-width='0.68' stroke-miterlimit='10' stroke-linecap='square'/%3E%3Cline x1='0.34' y1='2.34' x2='4.34' y2='2.34' stroke='%239D9D9D' stroke-width='0.68' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-position: 30px 111px;
    pointer-events: none;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 74px 90px;
    max-width: 606px;
    width: 100%;
}

.title {
    font-family: 'Moderat', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -1.12px;
    text-transform: uppercase;
    color: #000000;
}

.description {
    font-family: 'Simplon Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.22;
    letter-spacing: -0.26px;
    text-transform: uppercase;
    color: #000000;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 199px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Simplon Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.08;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.button:hover {
    background-color: #AAA8A5;
    border: 1px solid #AAA8A5;
    color: #000000;
}