@import url("https://fonts.googleapis.com/css2?family=Changa:wght@500;600;700&family=Lato:wght@300;400;700&display=swap");

:root {
    --ink: #1a1a1a;
    --panel: #222222;
    --muted: #b2b2b2;
    --line: #3a3a3a;
    --accent: #dd4377;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--ink);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 15%, rgba(221, 67, 119, 0.14), transparent 34rem),
        linear-gradient(135deg, #141414 0%, #222222 100%);
    font-family: "Lato", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.site-shell {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 104px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: auto;
    max-width: min(100%, 325px);
    max-height: 65px;
}

.content {
    display: grid;
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto;
    place-items: center;
    padding: clamp(56px, 9vw, 120px) 0;
}

.card {
    width: min(100%, 980px);
    padding: clamp(32px, 6vw, 64px);
    border: 1px solid var(--line);
    border-top: 3px solid var(--accent);
    background: rgba(34, 34, 34, 0.88);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-family: "Changa", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 18px;
    font-family: "Changa", sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.75rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

h2 {
    margin: 0 0 4px;
    font-family: "Changa", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.lede {
    margin: 0 0 36px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.faq {
    margin: 0;
}

.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
}

.faq-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.faq h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-family: "Changa", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    line-height: 1.35;
}

.faq p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.faq a {
    border-bottom: 1px solid rgba(221, 67, 119, 0.45);
    color: var(--accent);
    text-decoration: none;
    transition: border-color 160ms ease;
}

.faq a:hover {
    border-bottom-color: var(--accent);
}

.faq a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.lede p {
    margin: 0 0 1.15em;
}

.lede p:last-child {
    margin-bottom: 0;
}

.signup-form {
    display: grid;
    max-width: 640px;
    gap: 12px;
    margin-bottom: 36px;
}

.privacy-notice {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    color: #8f8f8f;
    font-size: 0.76rem;
    line-height: 1.55;
}

.privacy-notice strong {
    color: var(--muted);
}

.signature {
    color: var(--white);
    font-family: "Changa", sans-serif;
    font-weight: 600;
}

label {
    font-family: "Changa", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

input[type="email"] {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid #555555;
    border-radius: 0;
    outline: 0;
    color: var(--white);
    background: #181818;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(221, 67, 119, 0.2);
}

button,
.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0 28px;
    border: 2px solid var(--accent);
    border-radius: 0;
    color: var(--white);
    background: var(--accent);
    cursor: pointer;
    font-family: "Changa", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

button:hover,
.button:hover {
    color: var(--accent);
    background: transparent;
    transform: translateY(-1px);
}

button:focus-visible,
.button:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

.alert {
    margin: -14px 0 28px;
    padding: 12px 16px;
    border-left: 3px solid var(--accent);
    color: #ffd9e5;
    background: rgba(221, 67, 119, 0.12);
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    color: #767676;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .signup-form {
        grid-template-columns: 1fr auto;
    }

    .signup-form label {
        grid-column: 1 / -1;
    }

    .signup-form button {
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .site-header,
    .site-footer,
    .content {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        min-height: 82px;
    }

    .content {
        padding-block: 28px;
    }

    .card {
        padding: 28px 22px 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
