:root {
    --ink: #17202a;
    --muted: #637083;
    --paper: #f7f5ef;
    --surface: #ffffff;
    --line: #ddd8cc;
    --green: #12685d;
    --red: #b34232;
    --gold: #c9902e;
    --blue: #244a7c;
    --shadow: 0 22px 60px rgba(23, 32, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(247, 245, 239, 0.92);
    border-bottom: 1px solid rgba(23, 32, 42, 0.1);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: var(--green);
    border-radius: 8px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

nav a {
    text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
    color: var(--green);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 72px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("pontrendszer-hero.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 16, 24, 0.9) 0%, rgba(7, 16, 24, 0.74) 42%, rgba(7, 16, 24, 0.24) 100%),
        linear-gradient(0deg, rgba(7, 16, 24, 0.5), rgba(7, 16, 24, 0.1));
}

.hero-content {
    position: relative;
    width: min(760px, calc(100% - 36px));
    margin-left: clamp(18px, 7vw, 96px);
    padding: 74px 0 96px;
}

.kicker,
.section-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 900px;
    font-size: clamp(2.35rem, 6vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.65rem);
}

.hero-lead {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    color: #11231f;
    background: #f3c45d;
    border-color: #f3c45d;
}

.button.secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.stat {
    min-height: 154px;
    padding: 30px clamp(20px, 4vw, 48px);
    background: var(--surface);
}

.stat strong {
    display: block;
    color: var(--red);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.stat span {
    display: block;
    max-width: 290px;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 700;
}

.intro,
.content-section,
.checker,
.sources {
    padding: clamp(56px, 9vw, 112px) clamp(18px, 6vw, 84px);
}

.intro,
.content-section,
.checker,
.sources {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.intro {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.lead,
.checker p,
.sources p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.muted {
    background: #ede8dc;
}

.section-copy {
    position: sticky;
    top: 104px;
}

.lead {
    margin-top: 22px;
}

.point-list {
    display: grid;
    gap: 14px;
}

.point-list article {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 32, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(23, 32, 42, 0.05);
}

.point-list article span {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    background: var(--green);
    border-radius: 50%;
}

.point-list p {
    margin: 0;
}

.checker {
    color: #fff;
    background: var(--green);
}

.checker .section-label,
.checker p {
    color: rgba(255, 255, 255, 0.78);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.check-grid div {
    min-height: 190px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.check-grid strong,
.check-grid span {
    display: block;
}

.check-grid strong {
    margin-bottom: 12px;
    font-size: 1.24rem;
}

.check-grid span {
    color: rgba(255, 255, 255, 0.82);
}

.sources {
    background: #fff;
}

.sources ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sources li {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfaf6;
}

.sources a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.sources a:hover,
.sources a:focus-visible {
    text-decoration: underline;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
    padding: 28px clamp(18px, 6vw, 84px);
    color: rgba(255, 255, 255, 0.75);
    background: #111820;
}

footer strong {
    color: #fff;
}

@media (max-width: 900px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: 720px;
    }

    .stats-band,
    .intro,
    .content-section,
    .checker,
    .sources,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .section-copy {
        position: static;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-inline: 16px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .stat {
        min-height: auto;
    }
}
