/* Pomorskie Nasiona — strona w budowie */

:root {
    --navy: #073b72;
    --blue: #0869a6;
    --green: #5f972b;
    --green-dark: #2f6f24;
    --gold: #d7a324;
    --white: #ffffff;
    --background: #f7faf5;
    --text: #123a5b;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 18%, rgba(95, 151, 43, 0.12), transparent 28rem),
        radial-gradient(circle at 84% 20%, rgba(215, 163, 36, 0.10), transparent 24rem),
        linear-gradient(145deg, #ffffff 0%, var(--background) 58%, #edf5e8 100%);
}

.page {
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 48px 24px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    left: -8%;
    width: 116%;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    bottom: -22%;
    height: 34%;
    background: linear-gradient(90deg, var(--green-dark), #83b72e 56%, var(--green));
    transform: rotate(-1.8deg);
}

.hero::after {
    bottom: -27%;
    height: 33%;
    background: linear-gradient(90deg, #052f5d, var(--navy) 52%, var(--blue));
    border-top: 10px solid rgba(255, 255, 255, 0.96);
    transform: rotate(1.3deg);
}

.hero__content {
    width: min(100%, 760px);
    padding: 36px 34px 40px;
    text-align: center;
    border: 1px solid rgba(7, 59, 114, 0.08);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 24px 70px rgba(7, 59, 114, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero__logo {
    display: block;
    width: min(100%, 520px);
    height: auto;
    margin: 0 auto -16px;
    object-fit: contain;
}

.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, 260px);
    margin: 6px auto 22px;
}

.hero__divider span {
    width: 92px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__divider span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__divider i {
    display: block;
    width: 10px;
    height: 16px;
    border-radius: 100% 0 100% 0;
    background: var(--gold);
    transform: rotate(32deg);
}

.hero__title {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.hero__subtitle {
    margin: 10px 0 0;
    color: var(--green-dark);
    font-size: clamp(1.35rem, 3.4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero__decoration {
    position: absolute;
    z-index: -1;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(95, 151, 43, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.hero__decoration::before,
.hero__decoration::after {
    content: "";
    position: absolute;
    inset: 24px;
    border: inherit;
    border-radius: inherit;
}

.hero__decoration::after {
    inset: 52px;
}

.hero__decoration--left {
    top: -120px;
    left: -110px;
}

.hero__decoration--right {
    right: -120px;
    bottom: 40px;
    border-color: rgba(7, 59, 114, 0.10);
}

@media (max-width: 640px) {
    .hero {
        padding: 22px 14px 110px;
    }

    .hero__content {
        padding: 24px 18px 32px;
        border-radius: 24px;
    }

    .hero__logo {
        width: min(100%, 390px);
        margin-bottom: -8px;
    }

    .hero::before {
        bottom: -12%;
        height: 22%;
    }

    .hero::after {
        bottom: -17%;
        height: 22%;
    }
}

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