/* =========================================================
   FRAMER LOCKER
   Global foundation + Header
   ========================================================= */

   :root {
    --fl-bg: #ffffff;
    --fl-text: #0a0a0a;
    --fl-muted: #6b6b6b;
    --fl-border: rgba(0, 0, 0, 0.08);

    --fl-container: 1440px;
    --fl-header-height: 72px;

    --fl-radius-sm: 10px;
    --fl-radius-md: 16px;
    --fl-radius-pill: 999px;

    --fl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--fl-bg);
    color: var(--fl-text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

/* Remove WordPress admin spacing issues */

body.admin-bar .fl-header {
    top: 32px;
}

/* =========================================================
   HEADER
   ========================================================= */

.fl-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid transparent;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.fl-header-inner {
    width: 100%;
    max-width: var(--fl-container);
    height: var(--fl-header-height);

    margin: 0 auto;
    padding: 0 28px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

/* Brand */

.fl-brand {
    justify-self: start;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 17px;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.fl-brand-mark {
    position: relative;
    width: 26px;
    height: 22px;
    display: block;
}

.fl-brand-mark span {
    position: absolute;
    display: block;
    background: #0a0a0a;
    border-radius: 2px;
}

.fl-brand-mark span:nth-child(1) {
    width: 7px;
    height: 22px;
    left: 0;
    top: 0;
    transform: skewY(-24deg);
}

.fl-brand-mark span:nth-child(2) {
    width: 7px;
    height: 22px;
    left: 9px;
    top: 0;
    transform: skewY(24deg);
}

.fl-brand-mark span:nth-child(3) {
    width: 7px;
    height: 15px;
    right: 0;
    top: 3px;
    transform: skewY(-24deg);
}

/* Desktop navigation */

.fl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.fl-nav a {
    padding: 8px 11px;

    color: #353535;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.015em;

    border-radius: 8px;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.fl-nav a:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.045);
}

/* Header actions */

.fl-header-actions {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 10px;
}

.fl-login {
    padding: 9px 12px;

    font-size: 14px;
    font-weight: 500;

    border-radius: 9px;

    transition: background 0.2s ease;
}

.fl-login:hover {
    background: rgba(0, 0, 0, 0.05);
}

.fl-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 17px;

    color: #fff;
    background: #0a0a0a;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.015em;

    border-radius: 9px;

    transition:
        transform 0.25s var(--fl-ease),
        opacity 0.2s ease;
}

.fl-header-cta:hover {
    transform: translateY(-1px);
    opacity: 0.86;
}

/* Mobile hamburger */

.fl-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;
    border-radius: 10px;

    background: transparent;
    cursor: pointer;
}

.fl-menu-toggle span {
    display: block;
    width: 19px;
    height: 1.5px;

    margin: 5px auto;

    background: #111;
    border-radius: 10px;
}

/* Main offset because header is fixed */

.fl-main {
    padding-top: var(--fl-header-height);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 960px) {

    .fl-header-inner {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .fl-nav {
        display: none;
    }

    .fl-login {
        display: none;
    }

    .fl-menu-toggle {
        display: block;
    }

}

@media (max-width: 782px) {

    body.admin-bar .fl-header {
        top: 46px;
    }

}

@media (max-width: 640px) {

    :root {
        --fl-header-height: 64px;
    }

    .fl-header-inner {
        padding: 0 16px;
    }

    .fl-brand-name {
        font-size: 16px;
    }

    .fl-header-cta {
        min-height: 38px;
        padding: 0 14px;
    }

}

/* =========================================================
   FRAMER V3 HERO
========================================================= */

.fl-v3-hero {
    overflow: hidden;
    padding: 110px 24px 0;
    background: #fff;
}

.fl-v3-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.fl-v3-kicker {
    margin: 0 0 25px;
    color: #777;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.fl-v3-title {
    max-width: 1080px;
    margin: 0 auto;
    color: #080808;

    font-size: clamp(70px, 8vw, 132px);
    font-weight: 600;
    line-height: .91;
    letter-spacing: -.075em;
}

.fl-v3-title span {
    display: block;
    color: #a6a6a6;
}

.fl-v3-description {
    max-width: 620px;
    margin: 38px auto 0;

    color: #686868;
    font-size: 19px;
    line-height: 1.48;
    letter-spacing: -.025em;
}

.fl-v3-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.fl-v3-primary,
.fl-v3-secondary {
    min-height: 48px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform .25s var(--fl-ease),
        background .2s ease;
}

.fl-v3-primary {
    color: #fff;
    background: #080808;
}

.fl-v3-secondary {
    color: #111;
    background: #f1f1f1;
}

.fl-v3-primary:hover,
.fl-v3-secondary:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PRODUCT STAGE
========================================================= */

.fl-v3-stage {
    width: min(1440px, calc(100% - 40px));
    margin: 100px auto 0;

    padding: 12px;

    border-radius: 28px;

    background:
        linear-gradient(
            140deg,
            #efefef,
            #fafafa 50%,
            #ebebeb
        );
}

.fl-v3-app {
    overflow: hidden;

    height: min(760px, 64vw);
    min-height: 610px;

    border: 1px solid #ddd;
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 50px 130px rgba(0,0,0,.1);
}


/* Toolbar */

.fl-v3-toolbar {
    height: 54px;
    padding: 0 15px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    border-bottom: 1px solid #ececec;

    background: #fbfbfb;
}

.fl-v3-toolbar-left,
.fl-v3-toolbar-right,
.fl-v3-toolbar-center {
    display: flex;
    align-items: center;
}

.fl-v3-toolbar-left {
    gap: 8px;
}

.fl-v3-dot {
    width: 19px;
    height: 19px;

    border-radius: 5px;

    background: #111;
}

.fl-v3-site-name {
    font-size: 12px;
    font-weight: 600;
}

.fl-v3-branch {
    padding-left: 9px;
    color: #999;
    font-size: 11px;
}

.fl-v3-toolbar-center {
    gap: 6px;
}

.fl-v3-toolbar-center span {
    width: 30px;
    height: 27px;

    border-radius: 6px;

    background: #efefef;
}

.fl-v3-toolbar-right {
    justify-self: end;
    gap: 7px;
}

.fl-v3-toolbar-right button {
    height: 30px;
    padding: 0 11px;

    border: 0;
    border-radius: 6px;

    background: #eee;

    font-size: 11px;
}

.fl-v3-toolbar-right .publish {
    color: #fff;
    background: #111;
}


/* Workspace */

.fl-v3-workspace {
    height: calc(100% - 54px);

    display: grid;
    grid-template-columns: 190px 1fr 210px;
}


/* Left panel */

.fl-v3-left-panel {
    padding: 16px 12px;

    border-right: 1px solid #ececec;

    background: #fafafa;
}

.fl-v3-panel-tabs {
    display: flex;
    gap: 12px;

    margin-bottom: 22px;

    color: #999;

    font-size: 10px;
}

.fl-v3-panel-tabs strong {
    color: #222;
}

.fl-v3-page {
    height: 32px;

    padding: 0 9px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 6px;

    color: #777;
    font-size: 11px;
}

.fl-v3-page.active {
    color: #111;
    background: #ececec;
}

.page-icon {
    width: 9px;
    height: 12px;

    border: 1px solid #aaa;
    border-radius: 2px;
}

.fl-v3-add-page {
    margin: 17px 9px;

    color: #aaa;
    font-size: 18px;
}


/* Canvas */

.fl-v3-canvas {
    position: relative;

    padding: 60px 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #f9f9f9,
            #f2f2f2 75%
        );
}

.fl-v3-artboard {
    width: min(800px, 90%);
    min-height: 460px;

    overflow: hidden;

    border: 1px solid #ddd;
    border-radius: 7px;

    background: #fff;

    box-shadow:
        0 24px 65px rgba(0,0,0,.09);
}

.fl-v3-artboard-nav {
    height: 55px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fl-v3-mini-logo {
    width: 25px;
    height: 20px;

    border-radius: 4px;

    background: #111;
}

.fl-v3-mini-nav {
    display: flex;
    gap: 7px;
}

.fl-v3-mini-nav span {
    width: 34px;
    height: 6px;

    border-radius: 10px;

    background: #ddd;
}

.fl-v3-artboard-content {
    padding: 65px;
}

.fl-v3-small-label {
    color: #999;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.fl-v3-artboard-heading {
    margin-top: 16px;

    font-size: clamp(38px, 4vw, 65px);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.06em;
}

.fl-v3-copy-line {
    width: 65%;
    height: 8px;

    margin-top: 32px;

    border-radius: 10px;

    background: #ddd;
}

.fl-v3-copy-line.short {
    width: 42%;
    margin-top: 10px;
}

.fl-v3-artboard-buttons {
    display: flex;
    gap: 8px;

    margin-top: 28px;
}

.fl-v3-artboard-buttons span {
    width: 90px;
    height: 35px;

    border-radius: 6px;

    background: #111;
}

.fl-v3-artboard-buttons span:last-child {
    width: 75px;

    background: #eee;
}


/* Agent */

.fl-v3-agent {
    position: absolute;

    right: 38px;
    top: 70px;

    width: 220px;

    padding: 17px;

    border: 1px solid #ddd;
    border-radius: 12px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 24px 60px rgba(0,0,0,.12);
}

.fl-v3-agent-top {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
}

.fl-v3-agent-icon {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    color: #fff;
    background: #111;
}

.fl-v3-agent p {
    margin: 13px 0;

    color: #555;

    font-size: 11px;
    line-height: 1.45;
}

.fl-v3-agent-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #999;
    font-size: 10px;
}

.fl-v3-agent-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #111;

    animation: flPulse 1.3s infinite;
}

@keyframes flPulse {

    0%, 100% {
        opacity: .25;
    }

    50% {
        opacity: 1;
    }

}


/* Right panel */

.fl-v3-right-panel {
    padding: 17px 14px;

    border-left: 1px solid #ececec;

    background: #fafafa;
}

.fl-v3-property-title {
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 600;
}

.fl-v3-property-row {
    min-height: 37px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eee;

    color: #999;

    font-size: 10px;
}

.fl-v3-property-row strong {
    color: #444;
    font-weight: 500;
}

.fl-v3-property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;

    margin: 12px 0;
}

.fl-v3-property-grid div {
    padding: 8px;

    border-radius: 5px;

    background: #eee;
}

.fl-v3-property-grid small {
    display: block;

    color: #999;
    font-size: 8px;
}

.fl-v3-property-grid strong {
    font-size: 10px;
}


/* =========================================================
   SOCIAL PROOF
========================================================= */

.fl-v3-proof {
    max-width: 1100px;

    margin: 85px auto 0;

    padding-bottom: 130px;

    text-align: center;
}

.fl-v3-proof p {
    color: #999;
    font-size: 13px;
}

.fl-v3-logo-row {
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    color: #aaa;

    font-size: 21px;
    font-weight: 600;
    letter-spacing: -.03em;
}


/* =========================================================
   AGENTS INTRO
========================================================= */

.fl-agents-intro {
    padding: 160px 24px;

    background: #0a0a0a;

    color: #fff;
}

.fl-agents-intro-inner {
    max-width: 1160px;

    margin: 0 auto;
}

.fl-section-label {
    margin: 0 0 32px;

    color: #777;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .09em;
}

.fl-agents-intro h2 {
    max-width: 1030px;

    margin: 0;

    font-size: clamp(60px, 7vw, 115px);
    font-weight: 550;
    line-height: .93;
    letter-spacing: -.07em;
}

.fl-agents-intro h2 span {
    display: block;
    color: #555;
}

.fl-section-copy {
    max-width: 590px;

    margin-top: 42px;

    color: #aaa;

    font-size: 19px;
    line-height: 1.5;
}

.fl-text-link {
    margin-top: 28px;

    display: inline-flex;
    gap: 8px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .fl-v3-workspace {
        grid-template-columns: 150px 1fr;
    }

    .fl-v3-right-panel {
        display: none;
    }

}

@media (max-width: 760px) {

    .fl-v3-hero {
        padding-top: 80px;
    }

    .fl-v3-title {
        font-size: clamp(55px, 15vw, 84px);
    }

    .fl-v3-description {
        font-size: 17px;
    }

    .fl-v3-actions {
        flex-direction: column;
        align-items: center;
    }

    .fl-v3-primary,
    .fl-v3-secondary {
        width: min(100%, 300px);
    }

    .fl-v3-stage {
        width: calc(100% - 16px);

        margin-top: 65px;
        padding: 7px;
    }

    .fl-v3-app {
        height: 500px;
        min-height: 0;
    }

    .fl-v3-toolbar-center,
    .fl-v3-toolbar-right {
        display: none;
    }

    .fl-v3-toolbar {
        grid-template-columns: 1fr;
    }

    .fl-v3-workspace {
        grid-template-columns: 1fr;
    }

    .fl-v3-left-panel {
        display: none;
    }

    .fl-v3-canvas {
        padding: 24px;
    }

    .fl-v3-artboard {
        width: 100%;
        min-height: 380px;
    }

    .fl-v3-artboard-content {
        padding: 42px 28px;
    }

    .fl-v3-agent {
        display: none;
    }

    .fl-v3-logo-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fl-agents-intro {
        padding: 110px 20px;
    }

}