@font-face {
    font-family: "Manrope";
    src: url("../fonts/fideflow-manrope-var.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

@font-face {
    font-family: "Geologica";
    src: url("../fonts/fideflow-geologica-var.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "remixicon";
    src: url("../assets/fonts/remixicon.woff2?t=1681573354175") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

[class^="ri-"],
[class*=" ri-"] {
    font-family: "remixicon" !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ri-building-4-line::before { content: "\eb0d"; }
.ri-file-shield-2-line::before { content: "\ed09"; }
.ri-advertisement-line::before { content: "\ea17"; }
.ri-arrow-right-up-line::before { content: "\ea70"; }
.ri-sun-line::before { content: "\f1bf"; }
.ri-moon-clear-line::before { content: "\ef6f"; }
.ri-menu-4-line::before { content: "\ef36"; }
.ri-close-line::before { content: "\eb99"; }
.ri-login-box-line::before { content: "\eed4"; }
.ri-line-chart-line::before { content: "\eeab"; }
.ri-file-list-3-line::before { content: "\ecef"; }
.ri-store-2-line::before { content: "\f1a5"; }
.ri-bank-card-line::before { content: "\ea92"; }
.ri-megaphone-line::before { content: "\f385"; }
.ri-shield-check-line::before { content: "\f100"; }
.ri-flashlight-line::before { content: "\ed3d"; }
.ri-arrow-left-line::before { content: "\ea60"; }

:root,
[data-bs-theme="dark"] {
    --hub-bg: #080719;
    --hub-bg-raised: #0e0c26;
    --hub-surface: rgba(18, 15, 47, 0.82);
    --hub-surface-solid: #12102d;
    --hub-surface-soft: rgba(124, 80, 255, 0.075);
    --hub-text: #f4f2fb;
    --hub-text-muted: #aaa6bf;
    --hub-text-soft: #aaa6bf;
    --hub-line: rgba(224, 218, 255, 0.13);
    --hub-line-strong: rgba(224, 218, 255, 0.24);
    --hub-primary: #7c50ff;
    --hub-primary-strong: #6a3df0;
    --hub-primary-ink: #f9f7ff;
    --hub-mint: #55f2ab;
    --hub-mint-ink: #06271b;
    --hub-header: rgba(8, 7, 25, 0.82);
    --hub-shadow: rgba(3, 2, 16, 0.62);
    --hub-selection: rgba(85, 242, 171, 0.42);
    --hub-selection-text: #07170f;
    --hub-media-border: rgba(183, 168, 255, 0.2);
    color-scheme: dark;
}

[data-bs-theme="light"] {
    --hub-bg: #f3f4f8;
    --hub-bg-raised: #e9eaf1;
    --hub-surface: rgba(252, 252, 254, 0.84);
    --hub-surface-solid: #fafafd;
    --hub-surface-soft: rgba(106, 61, 240, 0.06);
    --hub-text: #16132a;
    --hub-text-muted: #5f5a71;
    --hub-text-soft: #5f5a71;
    --hub-line: rgba(11, 7, 81, 0.12);
    --hub-line-strong: rgba(11, 7, 81, 0.22);
    --hub-primary: #6a3df0;
    --hub-primary-strong: #5730d3;
    --hub-primary-ink: #f9f7ff;
    --hub-mint: #17c887;
    --hub-mint-ink: #05251a;
    --hub-header: rgba(243, 244, 248, 0.86);
    --hub-shadow: rgba(32, 26, 71, 0.16);
    --hub-selection: rgba(124, 80, 255, 0.25);
    --hub-selection-text: #0b0751;
    --hub-media-border: rgba(11, 7, 81, 0.18);
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--hub-primary) var(--hub-bg);
    scrollbar-width: thin;
}

body.ff-hub {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--hub-bg);
    color: var(--hub-text);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.ff-hub::-webkit-scrollbar {
    width: 10px;
}

body.ff-hub::-webkit-scrollbar-track {
    background: var(--hub-bg);
}

body.ff-hub::-webkit-scrollbar-thumb {
    border: 3px solid var(--hub-bg);
    border-radius: 12px;
    background: var(--hub-primary);
}

.ff-hub ::selection {
    background: var(--hub-selection);
    color: var(--hub-selection-text);
}

.ff-hub a {
    color: inherit;
    text-decoration: none;
}

.ff-hub button,
.ff-hub a {
    -webkit-tap-highlight-color: transparent;
}

.ff-hub button {
    color: inherit;
    font: inherit;
}

.ff-hub h1,
.ff-hub h2,
.ff-hub h3,
.ff-footer__brand {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 650;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.ff-hub p {
    margin: 0;
    text-wrap: pretty;
}

.ff-shell {
    width: min(100% - 48px, 1360px);
    margin-inline: auto;
}

.ff-skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--hub-primary);
    color: var(--hub-primary-ink);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms ease-out;
}

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

.ff-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--hub-primary), var(--hub-mint));
    transform: scaleX(0);
    transform-origin: left;
}

@supports (animation-timeline: scroll()) {
    .ff-progress {
        animation: ff-progress linear both;
        animation-timeline: scroll();
    }

    @keyframes ff-progress {
        to { transform: scaleX(1); }
    }
}

.ff-ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ff-ambient::before {
    position: absolute;
    top: -38vw;
    left: -15vw;
    width: 130vw;
    height: 72vw;
    border: 1px solid var(--hub-line);
    border-radius: 50%;
    content: "";
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
    transform: rotate(-4deg);
}

.ff-ambient__halo {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(110px);
}

.ff-ambient__halo--one {
    top: -28rem;
    right: -18rem;
    width: 58rem;
    height: 58rem;
    background: rgba(124, 80, 255, 0.21);
}

.ff-ambient__halo--two {
    top: 64rem;
    left: -24rem;
    width: 48rem;
    height: 48rem;
    background: rgba(85, 242, 171, 0.09);
}

.ff-ambient__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
    opacity: 0.035;
}

.ff-header {
    position: sticky;
    top: 0;
    z-index: 70;
    border-bottom: 1px solid transparent;
    background: var(--hub-header);
    backdrop-filter: blur(20px) saturate(140%);
    transition: border-color 220ms ease-out, box-shadow 220ms ease-out;
}

.ff-header.is-scrolled {
    border-color: var(--hub-line);
    box-shadow: 0 18px 50px -34px var(--hub-shadow);
}

.ff-nav {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 32px;
}

.ff-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.ff-brand picture,
.ff-brand img {
    display: block;
}

.ff-brand img {
    width: 176px;
    height: auto;
}

.ff-brand__light {
    display: none !important;
}

[data-bs-theme="light"] .ff-brand__dark {
    display: none;
}

[data-bs-theme="light"] .ff-brand__light {
    display: block !important;
}

.ff-nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    color: var(--hub-text-muted);
    font-size: 0.9rem;
    font-weight: 650;
}

.ff-nav__links a {
    position: relative;
    padding: 10px 0;
    transition: color 180ms ease-out;
}

.ff-nav__links a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--hub-primary);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-nav__links a:hover,
.ff-nav__links a:focus-visible {
    color: var(--hub-text);
}

.ff-nav__links a:hover::after,
.ff-nav__links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ff-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ff-icon-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--hub-line);
    border-radius: 14px;
    background: var(--hub-surface);
    cursor: pointer;
    transition: background-color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.ff-icon-button i {
    font-size: 1.15rem;
}

.ff-icon-button:hover {
    border-color: var(--hub-line-strong);
    background: var(--hub-surface-solid);
    transform: translateY(-2px);
}

.ff-icon-button:active,
.ff-button:active,
.ff-product__link:active {
    transform: translateY(1px) scale(0.985);
}

.ff-hub :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--hub-mint) 64%, transparent);
    outline-offset: 4px;
}

.ff-menu-button {
    display: none;
}

.ff-hero {
    display: grid;
    min-height: calc(100dvh - 76px);
    align-items: center;
    padding: 42px 0 68px;
}

.ff-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(31rem, 1.12fr);
    align-items: center;
    gap: clamp(36px, 5vw, 86px);
}

.ff-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.ff-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 6.6vw, 6rem);
    line-height: 0.94;
}

.ff-hero__lead {
    max-width: 58ch;
    margin: 28px 0 34px !important;
    color: var(--hub-text-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.65;
}

.ff-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: "Geologica", sans-serif;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out, transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-button i {
    font-size: 1.06rem;
    transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-button:hover i {
    transform: translate(2px, -2px);
}

.ff-button--primary {
    background: var(--hub-primary);
    color: var(--hub-primary-ink) !important;
    box-shadow: 0 18px 44px -22px color-mix(in srgb, var(--hub-primary) 72%, transparent);
}

.ff-button--primary:hover {
    background: var(--hub-primary-strong);
    box-shadow: 0 24px 54px -22px color-mix(in srgb, var(--hub-primary) 86%, transparent);
    transform: translateY(-2px);
}

.ff-button--secondary {
    border-color: var(--hub-line-strong);
    background: var(--hub-surface);
    color: var(--hub-text) !important;
}

.ff-button--secondary:hover {
    border-color: var(--hub-primary);
    background: var(--hub-surface-solid);
    transform: translateY(-2px);
}

.ff-hero__media {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0;
    justify-self: end;
    isolation: isolate;
}

.ff-hero__media::before {
    position: absolute;
    inset: 9% 7% 16%;
    z-index: -1;
    border-radius: 46%;
    background: color-mix(in srgb, var(--hub-primary) 22%, transparent);
    content: "";
    filter: blur(70px);
}

.ff-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--hub-media-border);
    border-radius: 28px;
    background: #060810;
    box-shadow: 0 50px 110px -48px rgba(4, 3, 24, 0.92);
}

.ff-hero__media picture {
    display: block;
}

.ff-hero__media figcaption {
    max-width: 48ch;
    margin: 14px auto 0;
    color: var(--hub-text-soft);
    font-size: 0.76rem;
    text-align: center;
}

.ff-hero__orbit {
    position: absolute;
    z-index: 2;
    display: block;
    border: 1px solid var(--hub-line-strong);
    border-radius: 50%;
    pointer-events: none;
}

.ff-hero__orbit::after {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hub-mint);
    box-shadow: 0 0 18px color-mix(in srgb, var(--hub-mint) 56%, transparent);
    content: "";
}

.ff-hero__orbit--outer {
    inset: -4% 3% 12%;
    transform: rotate(-10deg);
}

.ff-hero__orbit--inner {
    inset: 8% 14% 23%;
    transform: rotate(18deg);
}

.ff-products {
    padding: 160px 0 150px;
}

.ff-section-intro {
    max-width: 780px;
    margin-bottom: 64px;
}

.ff-section-intro h2,
.ff-capabilities > .ff-shell > h2,
.ff-preview-scope h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.98;
}

.ff-section-intro p {
    max-width: 58ch;
    margin-top: 20px;
    color: var(--hub-text-muted);
    font-size: 1.08rem;
}

.ff-triad {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    perspective: 1200px;
}

.ff-product {
    --card-x: 50%;
    --card-y: 50%;
    --card-rotate-x: 0deg;
    --card-rotate-y: 0deg;
    position: relative;
    display: grid;
    min-height: 430px;
    padding: clamp(26px, 4vw, 44px);
    overflow: hidden;
    border: 1px solid var(--hub-line);
    border-radius: 28px;
    background:
        radial-gradient(circle at var(--card-x) var(--card-y), color-mix(in srgb, var(--hub-primary) 13%, transparent), transparent 34%),
        var(--hub-surface);
    box-shadow: 0 34px 76px -56px var(--hub-shadow), inset 0 1px 0 color-mix(in srgb, var(--hub-text) 7%, transparent);
    transform: rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
    transform-style: preserve-3d;
    transition: border-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-product::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
        circle at 8% 0,
        transparent 0 20%,
        var(--hub-line) 20.15%,
        transparent 20.3% 32%,
        var(--hub-line) 32.15%,
        transparent 32.3%
    );
    content: "";
    opacity: 0.16;
    mask-image: linear-gradient(145deg, #000, transparent 70%);
}

.ff-product:hover {
    border-color: var(--hub-line-strong);
    box-shadow: 0 44px 88px -54px var(--hub-shadow), inset 0 1px 0 color-mix(in srgb, var(--hub-text) 11%, transparent);
}

.ff-product--erp {
    width: min(76%, 960px);
    min-height: 470px;
    grid-column: 1 / -1;
    justify-self: center;
}

.ff-product--erp::before {
    position: absolute;
    top: -42%;
    left: 50%;
    width: 76%;
    aspect-ratio: 1;
    border: 1px solid color-mix(in srgb, var(--hub-primary) 28%, transparent);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.ff-product--fiscal {
    transform-origin: right top;
}

.ff-product--ads {
    transform-origin: left top;
}

.ff-product__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.ff-product-mark {
    position: relative;
    display: grid;
    width: 82px;
    height: 82px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--hub-line-strong);
    border-radius: 22px;
    background: color-mix(in srgb, var(--hub-primary) 14%, var(--hub-surface-solid));
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--hub-text) 12%, transparent), 0 20px 48px -30px var(--hub-primary);
    isolation: isolate;
}

.ff-product-mark::before,
.ff-product-mark::after,
.ff-product-mark span {
    position: absolute;
    border: 1px solid color-mix(in srgb, var(--hub-primary) 44%, transparent);
    border-radius: 50%;
    content: "";
}

.ff-product-mark::before {
    inset: -9px;
    border-style: dashed;
}

.ff-product-mark::after {
    inset: 8px;
}

.ff-product-mark span {
    top: -12px;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 0;
    background: var(--hub-mint);
    box-shadow: 0 0 18px color-mix(in srgb, var(--hub-mint) 62%, transparent);
}

.ff-product-mark i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.ff-product-mark--fiscal {
    background: color-mix(in srgb, var(--hub-mint) 11%, var(--hub-surface-solid));
}

.ff-product-mark--fiscal::before,
.ff-product-mark--fiscal::after {
    border-color: color-mix(in srgb, var(--hub-mint) 36%, transparent);
}

.ff-product-mark--ads {
    background: color-mix(in srgb, var(--hub-primary) 18%, var(--hub-surface-solid));
}

.ff-status,
.ff-availability {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid var(--hub-line-strong);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ff-status {
    border-color: color-mix(in srgb, var(--hub-primary) 46%, var(--hub-line));
    background: color-mix(in srgb, var(--hub-primary) 13%, transparent);
    color: color-mix(in srgb, var(--hub-primary) 40%, var(--hub-text));
}

.ff-availability {
    color: var(--hub-text-muted);
}

.ff-product__body {
    display: grid;
    align-content: end;
    gap: 24px;
    padding: 52px 0 34px;
}

.ff-product__name {
    margin-bottom: 8px !important;
    color: var(--hub-text-muted);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.ff-product h3 {
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: 0.98;
}

.ff-product--fiscal h3,
.ff-product--ads h3 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.ff-product__body > p {
    max-width: 62ch;
    color: var(--hub-text-muted);
}

.ff-product__link {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    align-self: end;
    padding: 13px 0 0;
    border-top: 1px solid var(--hub-line);
    font-family: "Geologica", sans-serif;
    font-weight: 650;
    transition: color 180ms ease-out, transform 180ms ease-out;
}

.ff-product__link i {
    font-size: 1.2rem;
    transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ff-product__link:hover {
    color: var(--hub-mint);
}

.ff-product__link:hover i {
    transform: translate(3px, -3px);
}

.ff-flow {
    padding: 150px 0 170px;
    border-top: 1px solid var(--hub-line);
}

.ff-flow__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
    gap: clamp(60px, 10vw, 150px);
    align-items: start;
}

.ff-flow__statement {
    position: sticky;
    top: 142px;
}

.ff-flow__statement h2 {
    max-width: 13ch;
    font-size: clamp(3rem, 5.6vw, 5.6rem);
    line-height: 0.98;
}

.ff-flow__statement p {
    max-width: 45ch;
    margin-top: 26px;
    color: var(--hub-text-muted);
    font-size: 1.04rem;
}

.ff-flow__steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ff-flow__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    min-height: 190px;
    padding: 8px 0 56px;
}

.ff-flow__steps li:not(:last-child) {
    border-bottom: 1px solid var(--hub-line);
    margin-bottom: 48px;
}

.ff-flow__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--hub-line-strong);
    border-radius: 17px;
    background: var(--hub-surface);
}

.ff-flow__icon i {
    font-size: 1.45rem;
}

.ff-flow__steps strong,
.ff-flow__steps span {
    display: block;
}

.ff-flow__steps strong {
    margin-bottom: 8px;
    font-family: "Geologica", sans-serif;
    font-size: 1.8rem;
    letter-spacing: -0.035em;
}

.ff-flow__steps div > span {
    max-width: 42ch;
    color: var(--hub-text-muted);
}

.ff-capabilities {
    padding: 120px 0 170px;
}

.ff-capabilities > .ff-shell > h2 {
    max-width: 13ch;
    margin-bottom: 70px;
}

.ff-capabilities__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 20px;
}

.ff-capability {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--hub-line);
    border-radius: 28px;
    background: var(--hub-surface);
}

.ff-capability--wide {
    min-height: 430px;
    grid-row: span 2;
    padding: clamp(34px, 6vw, 70px);
    background:
        radial-gradient(circle at 90% 12%, color-mix(in srgb, var(--hub-primary) 20%, transparent), transparent 38%),
        var(--hub-surface);
}

.ff-capability--accent {
    background: color-mix(in srgb, var(--hub-primary) 11%, var(--hub-surface-solid));
}

.ff-capability > i {
    display: block;
    margin-bottom: clamp(80px, 11vw, 150px);
    color: var(--hub-mint);
    font-size: 2.2rem;
}

.ff-capability:not(.ff-capability--wide) > i {
    margin-bottom: 70px;
}

.ff-capability h3 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.6vw, 2.6rem);
    line-height: 1.04;
}

.ff-capability p {
    max-width: 48ch;
    color: var(--hub-text-muted);
}

.ff-close {
    padding: 60px 0 120px;
}

.ff-close__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 54px;
    align-items: end;
    padding: clamp(36px, 7vw, 86px);
    border: 1px solid color-mix(in srgb, var(--hub-primary) 36%, var(--hub-line));
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--hub-primary) 24%, transparent), transparent 38%),
        var(--hub-surface-solid);
    box-shadow: 0 48px 100px -68px var(--hub-shadow), inset 0 1px 0 color-mix(in srgb, var(--hub-text) 8%, transparent);
}

.ff-close h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.98;
}

.ff-close p {
    max-width: 48ch;
    margin-top: 22px;
    color: var(--hub-text-muted);
}

.ff-close__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.ff-footer {
    border-top: 1px solid var(--hub-line);
    padding: 46px 0;
}

.ff-footer__layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: center;
}

.ff-footer__brand {
    font-size: 1.3rem;
}

.ff-footer p {
    color: var(--hub-text-muted);
    font-size: 0.84rem;
}

.ff-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--hub-text-muted);
    font-size: 0.78rem;
}

.ff-footer a {
    transition: color 180ms ease-out;
}

.ff-footer a:hover {
    color: var(--hub-text);
}

.is-motion-ready .reveal {
    opacity: 0;
    translate: 0 30px;
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), translate 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-motion-ready .reveal.is-visible {
    opacity: 1;
    translate: 0 0;
}

.is-motion-ready .ff-hero__copy > * {
    opacity: 0;
    transform: translateY(22px);
    animation: ff-hero-enter 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-motion-ready .ff-hero__copy > :nth-child(2) { animation-delay: 80ms; }
.is-motion-ready .ff-hero__copy > :nth-child(3) { animation-delay: 150ms; }
.is-motion-ready .ff-hero__copy > :nth-child(4) { animation-delay: 220ms; }

.is-motion-ready .ff-hero__media {
    opacity: 0;
    clip-path: inset(12% 12% 12% 12% round 28px);
    animation: ff-media-enter 1100ms 120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ff-hero-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ff-media-enter {
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0 round 28px);
    }
}

@keyframes ff-orbit {
    to { transform: rotate(350deg); }
}

@keyframes ff-orbit-inverse {
    to { transform: rotate(-342deg); }
}

@media (prefers-reduced-motion: no-preference) {
    .ff-hero__orbit--outer,
    .ff-product-mark::before,
    .ff-preview__ring--one {
        animation: ff-orbit 22s linear infinite;
    }

    .ff-hero__orbit--inner,
    .ff-product-mark::after,
    .ff-preview__ring--two {
        animation: ff-orbit-inverse 17s linear infinite;
    }
}

.ff-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hub-text-muted);
    font-size: 0.86rem;
    font-weight: 650;
    transition: color 180ms ease-out;
}

.ff-back-link:hover {
    color: var(--hub-text);
}

.ff-preview-main {
    min-height: calc(100dvh - 76px);
}

.ff-preview {
    display: grid;
    min-height: calc(100dvh - 76px);
    align-items: center;
    padding: 42px 0 76px;
}

.ff-preview__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
    gap: clamp(54px, 10vw, 160px);
    align-items: center;
}

.ff-preview__symbol {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.ff-product-mark--hero {
    width: 190px;
    height: 190px;
    border-radius: 42px;
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--hub-text) 16%, transparent), 0 50px 90px -36px var(--hub-primary);
}

.ff-product-mark--hero i {
    font-size: 4.8rem;
}

.ff-product-mark--hero::before {
    inset: -18px;
}

.ff-product-mark--hero::after {
    inset: 22px;
}

.ff-preview__ring {
    position: absolute;
    display: block;
    border: 1px solid var(--hub-line-strong);
    border-radius: 50%;
}

.ff-preview__ring--one {
    width: 390px;
    height: 390px;
    transform: rotate(-10deg);
}

.ff-preview__ring--two {
    width: 510px;
    height: 320px;
    transform: rotate(8deg);
}

.ff-preview__ring::after {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hub-mint);
    content: "";
}

.ff-preview__copy .ff-status {
    margin-bottom: 28px;
}

.ff-preview__copy h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 6.8vw, 6rem);
    line-height: 0.95;
}

.ff-preview__copy > p {
    max-width: 58ch;
    margin: 28px 0 34px;
    color: var(--hub-text-muted);
    font-size: 1.08rem;
}

.ff-preview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ff-preview-scope {
    padding: 130px 0 160px;
    border-top: 1px solid var(--hub-line);
}

.ff-preview-scope h2 {
    max-width: 13ch;
    margin-bottom: 70px;
}

.ff-preview-scope__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--hub-line);
    border-radius: 28px;
    background: var(--hub-line);
}

.ff-preview-scope__items > div {
    display: grid;
    min-height: 220px;
    align-content: space-between;
    padding: 28px;
    background: var(--hub-surface-solid);
}

.ff-preview-scope__items i {
    color: var(--hub-mint);
    font-size: 1.8rem;
}

.ff-preview-scope__items span {
    font-family: "Geologica", sans-serif;
    font-size: 1.15rem;
    font-weight: 650;
}

body.ff-hub #ff-cookie-banner {
    right: 22px;
    bottom: max(22px, env(safe-area-inset-bottom));
    left: auto;
    width: min(410px, calc(100vw - 44px));
    max-width: 410px;
    margin: 0;
    border-color: var(--hub-line-strong);
    border-radius: 18px;
    background: var(--hub-surface-solid);
    color: var(--hub-text);
    box-shadow: 0 28px 70px -34px var(--hub-shadow);
}

body.ff-hub #ff-cookie-banner .ff-cookie-text p {
    color: var(--hub-text-muted);
}

body.ff-hub #ff-cookie-banner .ff-cookie-text a {
    color: var(--hub-mint);
}

body.ff-hub #ff-cookie-banner .ff-cookie-btn--primary {
    background: var(--hub-primary);
    color: var(--hub-primary-ink);
}

body.ff-hub #ff-cookie-banner .ff-cookie-btn--ghost {
    border: 1px solid var(--hub-line);
    background: var(--hub-surface);
    color: var(--hub-text);
}

@media (max-width: 1100px) {
    .ff-hero__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
        gap: 32px;
    }

    .ff-flow__layout {
        gap: 72px;
    }

    .ff-close__panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ff-close__actions {
        justify-content: flex-start;
    }

    .ff-preview__grid {
        gap: 44px;
    }

    .ff-preview__ring--two {
        width: 440px;
    }
}

@media (max-width: 900px) {
    .ff-shell {
        width: min(100% - 36px, 1360px);
    }

    .ff-hero {
        min-height: auto;
        padding: 58px 0 84px;
    }

    .ff-hero__grid {
        grid-template-columns: 1fr;
    }

    .ff-hero__copy {
        max-width: 760px;
    }

    .ff-hero h1 {
        max-width: 10ch;
    }

    .ff-hero__media {
        max-width: 720px;
        margin-top: 20px;
        justify-self: center;
    }

    .ff-product--erp {
        width: 100%;
    }

    .ff-flow__layout {
        grid-template-columns: 1fr;
    }

    .ff-flow__statement {
        position: static;
    }

    .ff-flow__statement h2 {
        max-width: 15ch;
    }

    .ff-capabilities__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ff-capability--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .ff-footer__layout {
        grid-template-columns: 1fr 1fr;
    }

    .ff-footer p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .ff-footer nav {
        justify-content: flex-end;
    }

    .ff-preview__grid {
        grid-template-columns: 1fr;
    }

    .ff-preview__symbol {
        min-height: 430px;
        order: 2;
    }

    .ff-preview__copy {
        max-width: 760px;
    }

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

@media (max-width: 720px) {
    .ff-shell {
        width: min(100% - 28px, 1360px);
    }

    .ff-nav {
        min-height: 68px;
    }

    .ff-brand img {
        width: 146px;
    }

    .ff-menu-button {
        display: inline-grid;
    }

    .ff-nav__links {
        position: absolute;
        top: calc(100% + 8px);
        right: 14px;
        left: 14px;
        display: grid;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--hub-line-strong);
        border-radius: 18px;
        background: var(--hub-surface-solid);
        box-shadow: 0 28px 68px -36px var(--hub-shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transition: opacity 180ms ease-out, transform 180ms ease-out;
    }

    .ff-nav__links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .ff-nav__links a {
        padding: 12px;
        border-radius: 10px;
    }

    .ff-nav__links a:hover {
        background: var(--hub-surface-soft);
    }

    .ff-nav__links a::after {
        display: none;
    }

    .ff-hero {
        padding: 48px 0 72px;
    }

    .ff-hero h1,
    .ff-preview__copy h1 {
        font-size: clamp(3rem, 15vw, 4.7rem);
    }

    .ff-hero__lead {
        margin: 22px 0 28px !important;
    }

    .ff-products,
    .ff-flow,
    .ff-capabilities,
    .ff-preview-scope {
        padding: 100px 0 110px;
    }

    .ff-section-intro {
        margin-bottom: 42px;
    }

    .ff-triad {
        grid-template-columns: 1fr;
    }

    .ff-product,
    .ff-product--erp {
        min-height: 390px;
        grid-column: auto;
        padding: 26px;
        transform: none !important;
    }

    .ff-product h3,
    .ff-product--fiscal h3,
    .ff-product--ads h3 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .ff-product-mark {
        width: 72px;
        height: 72px;
    }

    .ff-product__body {
        padding: 42px 0 26px;
    }

    .ff-flow__steps li {
        min-height: auto;
    }

    .ff-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .ff-capability--wide {
        grid-column: auto;
    }

    .ff-capability,
    .ff-capability--wide {
        min-height: 300px;
        padding: 28px;
    }

    .ff-capability > i,
    .ff-capability:not(.ff-capability--wide) > i {
        margin-bottom: 72px;
    }

    .ff-close {
        padding: 36px 0 84px;
    }

    .ff-close__panel {
        gap: 34px;
        padding: 30px 24px;
    }

    .ff-close__actions,
    .ff-close__actions .ff-button {
        width: 100%;
    }

    .ff-preview {
        min-height: auto;
        padding: 58px 0 72px;
    }

    .ff-preview__symbol {
        min-height: 340px;
        overflow: hidden;
    }

    .ff-product-mark--hero {
        width: 150px;
        height: 150px;
    }

    .ff-preview__ring--one {
        width: 290px;
        height: 290px;
    }

    .ff-preview__ring--two {
        width: 370px;
        height: 230px;
    }

    .ff-back-link {
        display: none;
    }

    body.ff-hub #ff-cookie-banner {
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        left: 12px;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 520px) {
    .ff-footer__layout {
        grid-template-columns: 1fr;
    }

    .ff-footer p {
        grid-column: auto;
        grid-row: auto;
    }

    .ff-footer nav {
        justify-content: flex-start;
    }

    .ff-preview-scope__items {
        grid-template-columns: 1fr;
    }

    .ff-preview-scope__items > div {
        min-height: 160px;
    }

    .ff-preview__actions,
    .ff-preview__actions .ff-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .ff-progress {
        display: none;
    }

    .reveal,
    .ff-hero__copy > *,
    .ff-hero__media {
        opacity: 1 !important;
        clip-path: none !important;
        translate: none !important;
        transform: none !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .ff-header,
    .ff-product,
    .ff-capability,
    .ff-icon-button {
        backdrop-filter: none;
        background: var(--hub-surface-solid);
    }
}
