:root {
    --fp-bg: #020617;
    --fp-bg-soft: #0b1222;
    --fp-card: #0f172a;
    --fp-card-soft: #111c31;
    --fp-text: #ffffff;
    --fp-muted: #94a3b8;
    --fp-muted-2: #64748b;
    --fp-border: rgba(255, 255, 255, 0.08);
    --fp-primary: #2dd4bf;
    --fp-secondary: #818cf8;
    --fp-blue: #38bdf8;
    --fp-radius: 24px;
    --fp-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 110px;
}

body.public-body {
    margin: 0;
    min-height: 100vh;
    background: var(--fp-bg);
    color: var(--fp-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: geometricPrecision;
}

.public-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.public-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid var(--fp-border);
    backdrop-filter: blur(18px);
}

.public-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.public-brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--fp-primary), var(--fp-blue));
    box-shadow: 0 0 28px rgba(45, 212, 191, 0.28);
}

.public-brand-temp {
    color: #020617;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.public-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.public-nav-links a,
.public-login-link,
.public-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.public-nav-links a:hover,
.public-login-link:hover,
.public-footer-links a:hover {
    color: var(--fp-primary);
}

.public-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.public-nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--fp-bg);
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.public-nav-cta:hover {
    transform: translateY(-1px);
    background: var(--fp-primary);
}

.fp-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    min-height: 980px;
    background:
        radial-gradient(circle at 50% 35%, rgba(45, 212, 191, 0.17), transparent 22%),
        radial-gradient(circle at 50% 70%, rgba(129, 140, 248, 0.16), transparent 34%),
        linear-gradient(180deg, #020617 0%, #07101f 100%);
}

.fp-hero-inner {
    text-align: center;
}

.fp-pill,
.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.10);
    border: 1px solid rgba(45, 212, 191, 0.24);
    color: var(--fp-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.fp-pill span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--fp-primary);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
    animation: fpPulse 1.8s infinite;
}

.fp-hero h1,
.fp-section h2,
.fp-final-card h2 {
    font-family: "Outfit", sans-serif;
}

.fp-hero h1 {
    width: min(960px, 100%);
    margin: 28px auto 22px;
    color: #ffffff;
    font-size: clamp(56px, 7vw, 98px);
    line-height: 1.02;
    letter-spacing: -0.075em;
    font-weight: 900;
    animation: fpFadeUp 0.8s ease both;
}

.fp-gradient-text {
    background: linear-gradient(90deg, var(--fp-primary), var(--fp-blue), var(--fp-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fp-hero-subtitle {
    width: min(740px, 100%);
    margin: 0 auto;
    color: var(--fp-muted);
    font-size: 20px;
    line-height: 1.7;
    animation: fpFadeUp 0.8s ease 0.08s both;
}

.fp-hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fpFadeUp 0.8s ease 0.16s both;
}

.fp-button {
    min-height: 56px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fp-button:hover {
    transform: translateY(-2px);
}

.fp-button-primary {
    color: #03131f;
    background: linear-gradient(135deg, var(--fp-primary), #22d3ee);
    box-shadow: 0 0 44px rgba(45, 212, 191, 0.24);
}

.fp-button-secondary {
    color: #ffffff;
    background: rgba(30, 41, 59, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.fp-button-light {
    background: #ffffff;
    color: var(--fp-bg);
}

.fp-hero-preview {
    width: min(960px, 100%);
    margin: 78px auto 0;
    padding: 16px;
    border-radius: 30px 30px 0 0;
    background:
        linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(129, 140, 248, 0.13)),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 -46px 130px rgba(45, 212, 191, 0.18),
        0 35px 110px rgba(0, 0, 0, 0.5);
    animation: fpFloatIn 1s ease 0.24s both;
}

.fp-window-bar {
    display: flex;
    gap: 8px;
    padding: 6px 8px 14px;
}

.fp-window-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.55);
}

.fp-dashboard-mock {
    min-height: 430px;
    display: grid;
    grid-template-columns: 190px 1fr;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    background: #050b18;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-mock-sidebar {
    padding: 22px;
    background: rgba(2, 6, 23, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.fp-mock-logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fp-primary), var(--fp-blue));
    color: var(--fp-bg);
    font-weight: 950;
    margin-bottom: 28px;
}

.fp-mock-sidebar div:not(.fp-mock-logo) {
    padding: 11px 12px;
    border-radius: 10px;
    color: #8ea0ba;
    font-size: 13px;
    font-weight: 800;
}

.fp-mock-sidebar .active {
    color: #ffffff !important;
    background: rgba(96, 165, 250, 0.16);
}

.fp-mock-main {
    padding: 24px;
    text-align: left;
}

.fp-mock-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fp-mock-header span,
.fp-mock-header small {
    color: var(--fp-muted);
    font-size: 12px;
    font-weight: 800;
}

.fp-mock-header strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 18px;
}

.fp-mock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.fp-mock-card,
.fp-mock-chart,
.fp-mock-action {
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-mock-card {
    padding: 16px;
    border-radius: 16px;
}

.fp-mock-card small {
    display: block;
    color: var(--fp-muted);
    font-weight: 800;
    margin-bottom: 8px;
}

.fp-mock-card strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.fp-mock-card span {
    display: block;
    margin-top: 8px;
    color: var(--fp-muted);
    font-size: 12px;
}

.fp-mock-card .good {
    color: var(--fp-primary);
}

.fp-mock-bottom {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 14px;
}

.fp-mock-chart,
.fp-mock-action {
    min-height: 190px;
    border-radius: 18px;
}

.fp-mock-chart {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(45, 212, 191, 0.08), transparent),
        rgba(15, 23, 42, 0.94);
}

.fp-chart-line {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 35%;
    height: 120px;
    border-bottom: 4px solid var(--fp-primary);
    border-right: 4px solid var(--fp-blue);
    transform: skewY(-12deg);
    filter: drop-shadow(0 0 18px rgba(45, 212, 191, 0.45));
}

.fp-mock-action {
    padding: 20px;
}

.fp-mock-action small {
    color: var(--fp-muted);
    font-weight: 800;
}

.fp-mock-action strong {
    display: block;
    margin: 8px 0;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.fp-mock-action p {
    color: var(--fp-muted);
    line-height: 1.55;
    margin: 0 0 18px;
}

.fp-progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    overflow: hidden;
}

.fp-progress span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fp-primary), var(--fp-blue));
}

.fp-section {
    padding: 110px 0;
    background: #020617;
}

.fp-split-section {
    background: #0b1222;
}

.fp-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.fp-section h2 {
    margin: 18px 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.fp-split-section p,
.fp-section-heading p {
    color: var(--fp-muted);
    font-size: 18px;
    line-height: 1.75;
}

.fp-number-list {
    display: grid;
    gap: 24px;
    margin-top: 34px;
}

.fp-number-list > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
}

.fp-number-list span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(148, 163, 184, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--fp-primary);
    font-weight: 950;
}

.fp-number-list strong {
    color: #ffffff;
    font-size: 18px;
}

.fp-number-list p {
    margin: 6px 0 0;
    font-size: 15px;
}

.fp-floating-cards {
    position: relative;
    min-height: 460px;
}

.fp-float-card {
    position: absolute;
    width: 270px;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(14, 165, 233, 0.14), rgba(45, 212, 191, 0.08)),
        rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--fp-shadow);
    animation: fpSoftFloat 5s ease-in-out infinite;
}

.fp-float-card.large {
    width: 330px;
    top: 30px;
    left: 40px;
}

.fp-float-card:nth-child(2) {
    right: 30px;
    top: 140px;
    animation-delay: 0.6s;
}

.fp-float-card:nth-child(3) {
    left: 170px;
    bottom: 20px;
    animation-delay: 1.2s;
}

.fp-float-card small {
    color: var(--fp-muted);
    font-weight: 800;
}

.fp-float-card strong {
    display: block;
    color: #ffffff;
    font-size: 48px;
    letter-spacing: -0.06em;
    margin: 10px 0;
}

.fp-float-card p {
    margin: 0;
    color: #a8b3c7;
}

.fp-section-heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.fp-showcase-grid,
.fp-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fp-showcase-card,
.fp-price-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.fp-screenshot-shell {
    height: 210px;
    overflow: hidden;
    border-radius: 18px;
    background:
        radial-gradient(circle at center, rgba(45, 212, 191, 0.14), transparent 45%),
        #0b1222;
    border: 1px solid rgba(255, 255, 255, 0.09);
    margin-bottom: 18px;
}

.fp-screenshot-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fp-showcase-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.fp-showcase-card p,
.fp-price-card p {
    color: var(--fp-muted);
    line-height: 1.65;
}

.fp-price-card {
    position: relative;
    padding: 34px;
}

.fp-price-card.featured {
    border-color: rgba(45, 212, 191, 0.55);
    background:
        linear-gradient(180deg, rgba(45, 212, 191, 0.10), rgba(15, 23, 42, 0.96)),
        rgba(15, 23, 42, 0.92);
}

.fp-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--fp-primary);
    color: var(--fp-bg);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fp-price-card small {
    color: var(--fp-muted);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.fp-price-card strong {
    display: block;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 46px;
    letter-spacing: -0.06em;
    margin: 12px 0 6px;
}

.fp-price-card strong span {
    color: var(--fp-muted);
    font-size: 15px;
    letter-spacing: 0;
}

.fp-price-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 13px;
}

.fp-price-card li {
    color: #dbeafe;
}

.fp-price-card li::before {
    content: "✓";
    color: var(--fp-primary);
    margin-right: 10px;
}

.fp-price-card a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
    font-weight: 900;
}

.fp-price-card.featured a {
    background: linear-gradient(135deg, var(--fp-primary), #22d3ee);
    color: var(--fp-bg);
}

.fp-faq-list {
    width: min(780px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.fp-faq-list details {
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.fp-faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    color: #ffffff;
    font-weight: 900;
    list-style: none;
}

.fp-faq-list summary::after {
    content: "+";
    float: right;
    color: var(--fp-primary);
    font-size: 22px;
}

.fp-faq-list details[open] summary::after {
    content: "–";
}

.fp-faq-list details p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--fp-muted);
    line-height: 1.7;
}

.fp-final-cta {
    padding: 120px 0;
    background: #020617;
}

.fp-final-card {
    width: min(860px, 100%);
    margin: 0 auto;
    text-align: center;
    padding: 58px 36px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.22), transparent 35%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--fp-shadow);
}

.fp-final-card h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -0.06em;
}

.fp-final-card p {
    color: var(--fp-muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.fp-final-card small {
    display: block;
    margin-top: 18px;
    color: var(--fp-muted-2);
}

.public-footer {
    padding: 44px 0;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.public-footer p {
    margin: 10px 0 0;
    color: var(--fp-muted);
}

.public-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

@keyframes fpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(45, 212, 191, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
    }
}

@keyframes fpFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fpFloatIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fpSoftFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 980px) {
    .public-nav {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .public-nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .fp-hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .fp-dashboard-mock,
    .fp-split-grid,
    .fp-showcase-grid,
    .fp-price-grid,
    .fp-mock-grid,
    .fp-mock-bottom {
        grid-template-columns: 1fr;
    }

    .fp-mock-sidebar {
        display: none;
    }

    .fp-floating-cards {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .fp-float-card,
    .fp-float-card.large,
    .fp-float-card:nth-child(2),
    .fp-float-card:nth-child(3) {
        position: static;
        width: 100%;
    }

    .fp-hero h1 {
        font-size: clamp(44px, 13vw, 68px);
    }

    .public-footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}
.fp-safe-preview-section {
    background:
        radial-gradient(circle at 72% 40%, rgba(45, 212, 191, 0.14), transparent 26%),
        #0b1222;
}

.fp-safe-preview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

.fp-safe-actions {
    margin-top: 34px;
}

.fp-calculator-preview-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.14), rgba(129, 140, 248, 0.10)),
        rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
    animation: fpSoftFloat 6s ease-in-out infinite;
}

.fp-calculator-preview-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.14), transparent 34%);
    pointer-events: none;
}

.fp-calc-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.fp-calc-header span {
    color: var(--fp-muted);
    font-weight: 900;
}

.fp-calc-header strong {
    display: block;
    margin: 12px 0;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.fp-calc-header p {
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.55;
}

.fp-calc-rows {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.fp-calc-rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-calc-rows span {
    color: var(--fp-muted);
    font-weight: 700;
}

.fp-calc-rows strong {
    color: #ffffff;
    font-size: 18px;
}

.fp-calc-result {
    position: relative;
    z-index: 1;
    height: 12px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
}

.fp-calc-result span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fp-primary), var(--fp-blue), var(--fp-secondary));
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.36);
}

@media (max-width: 980px) {
    .fp-safe-preview-grid {
        grid-template-columns: 1fr;
    }
}
.fp-hero-note {
    margin-top: 18px;
    color: var(--fp-muted);
    font-size: 14px;
    font-weight: 700;
}

.fp-safe-preview-section {
    background:
        radial-gradient(circle at 72% 40%, rgba(45, 212, 191, 0.14), transparent 28%),
        #0b1222;
}

.fp-safe-preview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

.fp-safe-actions {
    margin-top: 34px;
}

.fp-calculator-preview-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.14), rgba(129, 140, 248, 0.10)),
        rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.fp-calculator-preview-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.14), transparent 34%);
    pointer-events: none;
}

.fp-calc-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.fp-calc-header span {
    color: var(--fp-muted);
    font-weight: 900;
}

.fp-calc-header strong {
    display: block;
    margin: 12px 0;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.fp-calc-header p {
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.55;
}

.fp-calc-rows {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.fp-calc-rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-calc-rows span {
    color: var(--fp-muted);
    font-weight: 700;
}

.fp-calc-rows strong {
    color: #ffffff;
    font-size: 18px;
}

.fp-calc-result {
    position: relative;
    z-index: 1;
    height: 12px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
}

.fp-calc-result span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fp-primary), var(--fp-blue), var(--fp-secondary));
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.36);
}

.fp-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(45, 212, 191, 0.10);
    border: 1px solid rgba(45, 212, 191, 0.26);
    color: var(--fp-primary);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .fp-safe-preview-grid {
        grid-template-columns: 1fr;
    }
}
.fp-public-calculator-page {
    min-height: 78vh;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 72% 28%, rgba(45, 212, 191, 0.16), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(129, 140, 248, 0.12), transparent 26%),
        var(--fp-bg);
}

.fp-public-calculator-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.fp-public-calculator-copy h1 {
    max-width: 620px;
    margin: 20px 0 20px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.fp-public-calculator-copy > p {
    max-width: 560px;
    margin: 0 0 36px;
    color: var(--fp-muted);
    font-size: 18px;
    line-height: 1.7;
}

.fp-public-calculator-card {
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.10), rgba(129, 140, 248, 0.08)),
        rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.36);
}

.fp-public-calculator-form {
    display: grid;
    gap: 16px;
}

.fp-public-calculator-form label {
    display: grid;
    gap: 8px;
}

.fp-public-calculator-form label span {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 800;
}

.fp-public-calculator-form input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    outline: none;
}

.fp-public-calculator-form input:focus {
    border-color: rgba(45, 212, 191, 0.65);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.10);
}

.fp-public-result-card,
.fp-public-result-placeholder {
    margin-top: 24px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(2, 6, 23, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.fp-result-score span,
.fp-public-result-placeholder span {
    color: var(--fp-muted);
    font-weight: 900;
}

.fp-result-score strong,
.fp-public-result-placeholder strong {
    display: block;
    margin: 10px 0;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 64px;
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.fp-result-score p,
.fp-public-result-placeholder p,
.fp-result-message {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.fp-result-message {
    margin-top: 20px;
}

.fp-result-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .fp-public-calculator-grid {
        grid-template-columns: 1fr;
    }
}
.fp-pricing-page {
    min-height: 78vh;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.14), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(129, 140, 248, 0.10), transparent 26%),
        var(--fp-bg);
}

.fp-pricing-page .fp-section-heading h1 {
    max-width: 880px;
    margin: 18px auto 18px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(50px, 6vw, 88px);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.fp-price-page-grid {
    margin-top: 58px;
}

.fp-pricing-note {
    max-width: 760px;
    margin: 64px auto 0;
    padding: 28px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
}

.fp-pricing-note h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.fp-pricing-note p {
    margin: 0;
    color: var(--fp-muted);
    line-height: 1.7;
}

.fp-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.fp-legal-page {
    min-height: 78vh;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.12), transparent 28%),
        radial-gradient(circle at 18% 20%, rgba(129, 140, 248, 0.10), transparent 24%),
        var(--fp-bg);
}

.fp-legal-container {
    max-width: 920px;
}

.fp-legal-header {
    text-align: center;
    margin-bottom: 46px;
}

.fp-legal-header h1 {
    margin: 18px 0 10px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.08em;
}

.fp-legal-header p {
    margin: 0;
    color: var(--fp-muted);
    font-weight: 700;
}

.fp-legal-card {
    padding: 42px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.07), rgba(129, 140, 248, 0.06)),
        rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.fp-legal-card section + section {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-legal-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 25px;
    letter-spacing: -0.045em;
}

.fp-legal-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.8;
}

.fp-legal-card p + p {
    margin-top: 14px;
}

.fp-legal-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #cbd5e1;
    line-height: 1.8;
}

.fp-legal-card li + li {
    margin-top: 6px;
}

@media (max-width: 760px) {
    .fp-legal-card {
        padding: 28px;
    }

    .fp-pricing-page,
    .fp-legal-page {
        padding-top: 125px;
    }
}
.fp-business-section {
    background:
        radial-gradient(circle at 18% 25%, rgba(45, 212, 191, 0.10), transparent 28%),
        radial-gradient(circle at 78% 20%, rgba(129, 140, 248, 0.08), transparent 26%),
        rgba(8, 13, 28, 0.96);
}

.fp-business-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 54px;
    align-items: start;
}

.fp-business-grid .fp-section-heading {
    text-align: left;
    max-width: 560px;
}

.fp-business-grid .fp-section-heading h2 {
    margin-top: 16px;
}

.fp-business-cards {
    display: grid;
    gap: 18px;
}

.fp-business-cards article {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(129, 140, 248, 0.05)),
        rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fp-business-cards article:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.38);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.fp-business-cards span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.28);
    color: #2dd4bf;
    font-size: 13px;
    font-weight: 900;
}

.fp-business-cards h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    letter-spacing: -0.045em;
}

.fp-business-cards p {
    margin: 0;
    color: var(--fp-muted);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .fp-business-grid {
        grid-template-columns: 1fr;
    }
}