:root {
    --fp-background: #f7f8fa;
    --fp-surface: #ffffff;
    --fp-text: #20242c;
    --fp-muted: #687080;
    --fp-border: #dfe3ea;
    --fp-accent: #6750a4;
    --fp-accent-dark: #503b88;
    --fp-radius: 18px;
    --fp-shadow: 0 18px 50px rgba(27, 31, 38, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--fp-background);
    color: var(--fp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.fp-container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.fp-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--fp-text);
    color: #fff;
    border-radius: 8px;
    transform: translateY(-150%);
}

.fp-skip-link:focus {
    transform: translateY(0);
}

.fp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(223, 227, 234, 0.8);
    background: rgba(247, 248, 250, 0.92);
    backdrop-filter: blur(16px);
}

.fp-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.fp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 750;
    font-size: 1.15rem;
}

.fp-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: var(--fp-accent);
    color: #fff;
    font-size: 0.85rem;
}

.fp-navigation__list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fp-navigation a {
    color: var(--fp-muted);
    text-decoration: none;
    font-weight: 600;
}

.fp-navigation a:hover,
.fp-navigation a:focus-visible {
    color: var(--fp-text);
}

.fp-main {
    min-height: 65vh;
}

.fp-hero {
    padding: clamp(72px, 10vw, 150px) 0;
}

.fp-hero__inner {
    max-width: 900px;
}

.fp-hero__eyebrow,
.fp-section__eyebrow {
    margin: 0 0 14px;
    color: var(--fp-accent);
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.fp-hero__title {
    max-width: 860px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.fp-hero__text {
    max-width: 680px;
    margin: 30px 0 0;
    color: var(--fp-muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.fp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.fp-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.fp-button--primary {
    background: var(--fp-accent);
    color: #fff;
}

.fp-button--primary:hover {
    background: var(--fp-accent-dark);
}

.fp-button--secondary {
    border-color: var(--fp-border);
    background: var(--fp-surface);
}

.fp-section {
    padding: 72px 0 110px;
}

.fp-section__header {
    max-width: 680px;
    margin-bottom: 32px;
}

.fp-section__header h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.fp-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fp-placeholder-card,
.fp-entry,
.fp-empty {
    padding: 28px;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    background: var(--fp-surface);
    box-shadow: var(--fp-shadow);
}

.fp-placeholder-card h3 {
    margin-top: 0;
}

.fp-placeholder-card p {
    margin-bottom: 0;
    color: var(--fp-muted);
}

.fp-content {
    padding-block: 72px;
}

.fp-entry {
    margin-bottom: 24px;
}

.fp-entry__title {
    margin-top: 0;
}

.fp-entry__title a {
    text-decoration: none;
}

.fp-footer {
    padding: 48px 0;
    border-top: 1px solid var(--fp-border);
    background: var(--fp-surface);
}

.fp-footer__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.fp-footer p {
    color: var(--fp-muted);
}

@media (max-width: 800px) {
    .fp-navigation {
        display: none;
    }

    .fp-placeholder-grid {
        grid-template-columns: 1fr;
    }

    .fp-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
