* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0 2rem;
    background: #151719;
    color: #e9e7e5;
    font-family: Inter, system-ui, sans-serif;
}

header {
    display: flex;
    position: relative;
    align-items: center;
    max-width: 1100px;
    height: 4rem;
    margin: 0 auto;
}

header::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    background: #ad3543;
    content: "";
}

.logo {
    position: relative;
    z-index: 2;
    transform: translateY(1.2rem);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    position: relative;
    z-index: 2;
}

.logo::after {
    position: absolute;
    z-index: 0;
    right: -3px;
    bottom: -1px;
    left: -3px;
    height: 4px;
    background: #ad3543;
    content: "";
}

nav {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
    transform: translateY(1rem);
}

nav a {
    color: #aaa7a5;
    font-size: 0.8rem;
    text-decoration: none;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 9rem 0;
    text-align: center;
}

.topics {
    color: #aaa7a5;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h1 {
    margin: 2rem 0 1.5rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

.state-word {
    position: relative;
    z-index: 0;
    color: inherit;
    font: inherit;
}

.state-word::after {
    position: absolute;
    z-index: -1;
    right: -0.08em;
    bottom: 0.08em;
    left: -0.08em;
    height: 0.28em;
    background: #ad3543;
    clip-path: polygon(1% 20%, 100% 0, 98% 88%, 0 100%);
    content: "";
    transform: rotate(-1deg);
}

.description {
    max-width: 620px;
    margin: 0 auto;
    color: #aaa7a5;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    hyphens: auto;
}

.button {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    background: #ad3543;
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
}

@media (max-width: 600px) {
    body {
        padding: 0 1.25rem;
    }

    main {
        padding: 6rem 0;
    }

    nav {
        gap: 1rem;
    }
}
