:root {
    --pink: #ed1769;
    --pink-dark: #c90f56;
    --pink-light: #ff4d91;
    --white: #ffffff;
    --ink: #2a0a17;
    --shadow: rgba(54, 3, 24, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 280px;
    background: var(--pink);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

.top-strip {
    width: 100%;
    height: 18px;
    background: var(--pink);
}

.hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, 72vw, 840px);
    overflow: hidden;
    isolation: isolate;
}

.hero-picture,
.hero-image,
.hero-shade,
.hero-content {
    grid-area: 1 / 1;
}

.hero-picture {
    width: 100%;
    height: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(35, 0, 14, 0.70) 0%, rgba(35, 0, 14, 0.34) 48%, rgba(35, 0, 14, 0.08) 100%),
        linear-gradient(0deg, rgba(35, 0, 14, 0.30) 0%, transparent 48%);
}

.hero-content {
    z-index: 2;
    align-self: center;
    width: min(720px, 88%);
    margin-left: clamp(24px, 8vw, 132px);
    padding: 48px 0;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.38);
}

.hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(3rem, 7.6vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero p {
    max-width: 640px;
    margin: 28px 0 34px;
    font-size: clamp(1.15rem, 2.1vw, 1.75rem);
    line-height: 1.42;
    font-weight: 700;
}

.publish-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 16px 30px;
    border: 3px solid var(--white);
    border-radius: 999px;
    background: var(--white);
    color: var(--pink-dark);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.publish-button:hover,
.publish-button:focus-visible {
    transform: translateY(-3px);
    background: transparent;
    color: var(--white);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.30);
}

.publish-button:focus-visible,
.faq a:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.72);
    outline-offset: 4px;
}

.faq {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.16), transparent 32%),
        radial-gradient(circle at 90% 100%, rgba(110, 0, 42, 0.20), transparent 34%),
        var(--pink);
}

.faq::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 42px;
}

.faq-inner {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(70px, 9vw, 126px) 0 clamp(86px, 10vw, 140px);
}

.section-label {
    margin: 0 0 12px;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.78;
}

.faq h2 {
    margin: 0 0 48px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.faq-list {
    border-top: 2px solid rgba(255, 255, 255, 0.48);
}

.faq-item {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.4fr);
    gap: clamp(30px, 7vw, 100px);
    padding: clamp(34px, 5vw, 62px) 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.48);
}

.faq-item h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    line-height: 1.18;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    max-width: 720px;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    font-weight: 600;
}

.faq a {
    color: var(--white);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.faq a:hover {
    text-decoration-thickness: 4px;
}

@media (max-width: 700px) {
    .top-strip {
        height: 12px;
    }

    .hero {
        min-height: calc(100svh - 12px);
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(35, 0, 14, 0.80) 0%, rgba(35, 0, 14, 0.30) 62%, rgba(35, 0, 14, 0.08) 100%);
    }

    .hero-content {
        align-self: end;
        width: calc(100% - 44px);
        margin: 0 22px;
        padding: 70px 0 54px;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 17vw, 5.2rem);
    }

    .hero p {
        margin-top: 20px;
        font-size: 1.16rem;
    }

    .publish-button {
        width: 100%;
        max-width: 250px;
    }

    .faq-inner {
        width: min(100% - 36px, 1120px);
    }

    .faq-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .publish-button {
        transition: none;
    }
}
