:root {
    --ff-blush: #f5cfdc;
    --ff-lavender: #e9e0ff;
    --ff-rose: #ca93a7;
    --ff-cream: #fff8f3;
    --ff-purple-deep: #4f3f67;
    --ff-purple-soft: #8f7bb8;
    --ff-muted: #6f6185;
    --ff-card: rgba(255, 255, 255, 0.82);
    --ff-card-strong: rgba(255, 255, 255, 0.92);
    --ff-border: rgba(143, 123, 184, 0.2);
    --ff-shadow-soft: 0 10px 26px rgba(118, 94, 163, 0.12);
    --ff-shadow-float: 0 20px 42px rgba(118, 94, 163, 0.16);
    --ff-radius: 22px;
    --ff-gradient-primary: linear-gradient(135deg, #f5cfdc 0%, #e9e0ff 55%, #f7e8ef 100%);
    --ff-gradient-action: linear-gradient(135deg, #cc9caf 0%, #9a86c8 100%);
    --ff-gradient-soft: linear-gradient(180deg, #fffdfc 0%, #fef6fb 100%);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--ff-purple-deep);
    background:
        radial-gradient(circle at 8% 12%, rgba(236, 226, 255, 0.8) 0%, transparent 34%),
        radial-gradient(circle at 92% 3%, rgba(246, 219, 227, 0.86) 0%, transparent 30%),
        linear-gradient(180deg, #fffcfa 0%, #fff8f3 52%, #fffefd 100%);
    line-height: 1.55;
    padding-top: 76px;
}

a {
    color: var(--ff-purple-soft);
    text-decoration: none;
}

a:hover {
    color: #725ca6;
}

.ff-container {
    width: min(100% - 2rem, 1080px);
}

.ff-nav {
    background: rgba(255, 248, 253, 0.76);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ff-border);
    box-shadow: 0 5px 18px rgba(117, 95, 160, 0.08);
}

.ff-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Nunito", "Manrope", sans-serif;
    font-weight: 800;
    color: var(--ff-purple-deep);
}

.ff-brand-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--ff-gradient-action);
    box-shadow: 0 0 0 5px rgba(236, 226, 255, 0.55);
}

.navbar .nav-link {
    color: var(--ff-muted);
    font-weight: 600;
    padding: 0.7rem 0.8rem;
}

.navbar .nav-link.is-active,
.navbar .nav-link:hover {
    color: var(--ff-purple-deep);
}

.navbar-toggler {
    border-color: rgba(140, 115, 201, 0.4);
}

.ff-btn {
    border: 0;
    border-radius: 999px;
    background: var(--ff-gradient-action);
    color: #fff;
    font-weight: 700;
    padding: 0.82rem 1.25rem;
    box-shadow: 0 14px 30px rgba(134, 108, 181, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.ff-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.ff-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ff-purple-soft);
    border: 1px solid rgba(140, 115, 201, 0.35);
    box-shadow: none;
}

.ff-btn-secondary:hover {
    color: var(--ff-purple-soft);
}

.ff-btn-small {
    padding: 0.56rem 0.95rem;
    font-size: 0.92rem;
}

.ff-page {
    padding: 2.2rem 0 3.8rem;
}

.ff-hero {
    padding-top: 0.8rem;
}

.ff-panel {
    background: var(--ff-card-strong);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: calc(var(--ff-radius) + 2px);
    box-shadow: var(--ff-shadow-float);
    padding: 1.4rem;
}

.ff-eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--ff-border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ff-purple-soft);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.42rem 0.72rem;
}

h1,
h2,
h3,
h4 {
    font-family: "Nunito", "Manrope", sans-serif;
    color: var(--ff-purple-deep);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(1.9rem, 7vw, 2.9rem);
    margin: 0.85rem 0;
}

h2 {
    font-size: clamp(1.45rem, 5vw, 2rem);
    margin-bottom: 0.8rem;
}

.ff-subheadline,
.ff-lead {
    color: var(--ff-muted);
    font-size: 1.03rem;
}

.ff-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.ff-hero-art {
    min-height: 250px;
    background:
        radial-gradient(circle at 24% 22%, rgba(236, 226, 255, 0.9) 0%, transparent 42%),
        radial-gradient(circle at 80% 20%, rgba(246, 219, 227, 0.95) 0%, transparent 44%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(252, 242, 248, 0.82));
    border: 1px solid var(--ff-border);
    border-radius: 24px;
    padding: 1.25rem;
    display: grid;
    place-items: center;
    text-align: center;
}

.ff-floating {
    position: relative;
}

.ff-floating::after {
    content: "";
    position: absolute;
    inset: auto 15% -14px;
    height: 18px;
    border-radius: 100px;
    background: rgba(156, 130, 204, 0.16);
    filter: blur(10px);
    z-index: -1;
}

.ff-hero-art strong {
    display: block;
    font-size: 1.05rem;
    margin-top: 0.6rem;
}

.ff-section {
    margin-top: 2.1rem;
}

.ff-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.35rem;
}

.ff-grid {
    display: grid;
    gap: 0.95rem;
}

.ff-card {
    background: var(--ff-card);
    border-radius: var(--ff-radius);
    border: 1px solid var(--ff-border);
    box-shadow: var(--ff-shadow-soft);
    padding: 1.1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ff-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ff-shadow-float);
}

.ff-card h3,
.ff-card h4 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
}

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

.ff-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.45rem;
}

.ff-soft-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ff-purple-deep);
    background: var(--ff-gradient-primary);
    border: 1px solid rgba(202, 147, 167, 0.4);
    box-shadow: 0 8px 18px rgba(134, 108, 181, 0.16);
}

.ff-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    font-size: 0.8rem;
    color: var(--ff-purple-soft);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--ff-border);
}

.ff-surface-gradient {
    background: var(--ff-gradient-soft);
}

.ff-stack {
    display: grid;
    gap: 1rem;
}

.ff-legal {
    max-width: 840px;
    margin: 0 auto;
}

.ff-legal .ff-card {
    margin-bottom: 1rem;
}

.ff-faq-item {
    background: #fff;
    border-radius: var(--ff-radius);
    border: 1px solid var(--ff-border);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.ff-faq-item h3 {
    font-size: 1.03rem;
    margin-bottom: 0.45rem;
}

.ff-faq-shell {
    max-width: 900px;
}

.ff-faq-chips {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.ff-faq-wrap {
    margin-top: 1.25rem;
}

.ff-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.ff-accordion .accordion-item {
    border: 1px solid var(--ff-border);
    background: var(--ff-card-strong);
    border-radius: var(--ff-radius);
    box-shadow: var(--ff-shadow-soft);
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.ff-accordion .accordion-button {
    background: transparent;
    color: var(--ff-purple-deep);
    font-family: "Nunito", "Manrope", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    box-shadow: none;
    padding: 1rem 1.1rem;
}

.ff-accordion .accordion-button:not(.collapsed) {
    background: rgba(245, 207, 220, 0.24);
    color: var(--ff-purple-deep);
}

.ff-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.22rem rgba(154, 134, 200, 0.2);
}

.ff-accordion .accordion-button::after {
    background-size: 1rem;
}

.ff-accordion .accordion-body {
    color: var(--ff-muted);
    padding: 0.25rem 1.1rem 1.15rem;
}

.ff-footer {
    border-top: 1px solid var(--ff-border);
    background: rgba(255, 246, 251, 0.9);
    padding: 1.1rem 0 1.35rem;
}

.ff-footer small,
.ff-footer a {
    color: var(--ff-muted);
    font-size: 0.92rem;
}

.ff-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .ff-footer-nav {
        justify-content: flex-end;
    }
}

@media (min-width: 700px) {
    .ff-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ff-grid.ff-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ff-grid.ff-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .ff-page {
        padding-top: 2.7rem;
    }

    .ff-grid.ff-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ff-anchor {
    scroll-margin-top: 102px;
}
