/* CustomerFetch Landingpage
   Bootstrap 5.3.x + custom UI
*/

:root {
    --cf-bg: #07090f;
    --cf-bg-soft: #0c0f18;
    --cf-card: rgba(17, 21, 32, .78);
    --cf-card-strong: #111520;
    --cf-border: rgba(255, 255, 255, .09);
    --cf-text: #f7f8fb;
    --cf-muted: #9aa3b6;
    --cf-primary: #7c5cff;
    --cf-primary-2: #4f8cff;
    --cf-cyan: #4de5da;
    --cf-green: #5bf0a5;
    --cf-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--cf-text);
    background:
        radial-gradient(circle at 20% 0%, rgba(124, 92, 255, .10), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(77, 229, 218, .06), transparent 25%),
        var(--cf-bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

::selection {
    color: #fff;
    background: rgba(124, 92, 255, .7);
}

.page-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: .3;
}

.page-glow-1 {
    width: 420px;
    height: 420px;
    top: -140px;
    left: -120px;
    background: var(--cf-primary);
}

.page-glow-2 {
    width: 440px;
    height: 440px;
    top: 38%;
    right: -250px;
    background: #1277ff;
    opacity: .16;
}

.navbar-glass {
    padding: 18px 0;
    background: rgba(7, 9, 15, .42);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: .3s ease;
}

.navbar-glass.scrolled {
    padding: 12px 0;
    background: rgba(7, 9, 15, .88);
    border-color: var(--cf-border);
}

.navbar-brand {
    letter-spacing: -.02em;
}

.navbar .nav-link {
    color: #b9c0cf;
    font-size: .95rem;
    transition: .2s ease;
}

.navbar .nav-link:hover {
    color: #fff;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    width: 24px;
    height: 24px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(124, 92, 255, .28), rgba(79, 140, 255, .08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.brand-mark span {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--cf-cyan), var(--cf-primary));
}

.brand-mark span:nth-child(1) { height: 8px; }
.brand-mark span:nth-child(2) { height: 14px; }
.brand-mark span:nth-child(3) { height: 11px; }

.brand-mark.small {
    width: 22px;
    height: 22px;
}

.btn {
    font-weight: 700;
    letter-spacing: -.01em;
}

.btn-primary {
    --bs-btn-bg: #7857ff;
    --bs-btn-border-color: #7857ff;
    --bs-btn-hover-bg: #8c70ff;
    --bs-btn-hover-border-color: #8c70ff;
    --bs-btn-active-bg: #6847ed;
    --bs-btn-active-border-color: #6847ed;
    box-shadow: 0 12px 40px rgba(124, 92, 255, .28), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-outline-light {
    --bs-btn-color: #eef1f6;
    --bs-btn-border-color: rgba(255, 255, 255, .18);
    --bs-btn-hover-bg: rgba(255,255,255,.08);
    --bs-btn-hover-border-color: rgba(255,255,255,.28);
    --bs-btn-hover-color: #fff;
    backdrop-filter: blur(10px);
}

.btn-arrow {
    display: inline-block;
    margin-left: .5rem;
    transition: transform .2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 86%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.1rem;
    color: #b7c0d3;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cf-green);
    box-shadow: 0 0 0 5px rgba(91, 240, 165, .08), 0 0 22px rgba(91, 240, 165, .5);
}

.hero-title {
    max-width: 780px;
    margin-bottom: 1.4rem;
    font-size: clamp(3.2rem, 6.3vw, 6.4rem);
    line-height: .93;
    letter-spacing: -.065em;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(100deg, #a692ff 5%, #6f96ff 50%, #54e2da 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy,
.section-heading p,
.section-copy {
    color: var(--cf-muted);
    line-height: 1.75;
}

.hero-copy {
    max-width: 650px;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
    margin-top: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    margin-top: 1.65rem;
    color: #adb5c5;
    font-size: .88rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.check-icon {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--cf-green);
    border: 1px solid rgba(91, 240, 165, .22);
    border-radius: 50%;
    background: rgba(91, 240, 165, .07);
    font-size: .72rem;
    font-weight: 900;
}

.app-stage {
    position: relative;
    width: min(100%, 720px);
    margin-inline: auto;
    perspective: 1200px;
}

.app-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: #0d111a;
    box-shadow:
        0 55px 120px rgba(0,0,0,.62),
        0 0 0 1px rgba(124,92,255,.04),
        inset 0 1px 0 rgba(255,255,255,.05);
    transform: rotateY(-5deg) rotateX(2deg);
}

.app-window::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%);
}

.app-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 12px 15px;
    color: #7f899a;
    border-bottom: 1px solid var(--cf-border);
    background: #0b0f17;
    font-size: .67rem;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2c3340;
}

.window-dots span:first-child { background: #ff6a68; }
.window-dots span:nth-child(2) { background: #ffc760; }
.window-dots span:nth-child(3) { background: #5ed99a; }

.app-title {
    white-space: nowrap;
}

.online-pill {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border: 1px solid rgba(91,240,165,.12);
    border-radius: 999px;
    color: #9bdcba;
    background: rgba(91,240,165,.05);
}

.online-pill span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cf-green);
}

.app-layout {
    display: grid;
    grid-template-columns: 58px 1fr;
    min-height: 430px;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 16px 9px;
    border-right: 1px solid var(--cf-border);
    background: #0a0d14;
}

.sidebar-logo,
.sidebar-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.sidebar-logo {
    margin-bottom: 6px;
    color: #fff;
    background: linear-gradient(145deg, var(--cf-primary), #4e83ff);
    font-size: .65rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(124,92,255,.2);
}

.sidebar-icon {
    color: #626d7e;
    font-size: .9rem;
}

.sidebar-icon.active {
    color: #dcd5ff;
    border: 1px solid rgba(124,92,255,.18);
    background: rgba(124,92,255,.1);
}

.app-content {
    padding: 23px;
    background:
        radial-gradient(circle at 90% 0%, rgba(124,92,255,.06), transparent 30%),
        #0d111a;
}

.app-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.app-heading h3 {
    margin: 4px 0 0;
    font-size: 1rem;
}

.mini-label {
    color: #687488;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.mock-btn {
    padding: 7px 11px;
    color: #dcd7ff;
    border: 1px solid rgba(124,92,255,.22);
    border-radius: 8px;
    background: rgba(124,92,255,.09);
    font-size: .62rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0 14px;
}

.metric-card,
.leads-card {
    border: 1px solid var(--cf-border);
    background: rgba(255,255,255,.018);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.metric-card {
    padding: 14px;
    border-radius: 12px;
}

.metric-card span,
.metric-card small {
    display: block;
    color: #717d90;
    font-size: .59rem;
}

.metric-card strong {
    display: block;
    margin: 6px 0 2px;
    font-size: 1.08rem;
}

.metric-card small.positive {
    color: #60d99c;
}

.leads-card {
    overflow: hidden;
    border-radius: 12px;
}

.leads-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 13px;
    color: #cbd2df;
    border-bottom: 1px solid var(--cf-border);
    font-size: .68rem;
    font-weight: 700;
}

.mini-pill {
    padding: 2px 7px;
    color: #81ddb0;
    border-radius: 999px;
    background: rgba(91,240,165,.08);
    font-size: .52rem;
}

.lead-row {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr;
    align-items: center;
    gap: 8px;
    padding: 11px 13px;
    color: #a9b3c4;
    border-bottom: 1px solid rgba(255,255,255,.045);
    font-size: .58rem;
}

.lead-row > span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d6dce5;
}

.lead-row-head {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #596477;
    background: rgba(255,255,255,.01);
}

.company-avatar {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    color: #b9adff;
    background: rgba(124,92,255,.1);
    font-size: .55rem;
    font-style: normal;
    font-weight: 800;
}

.status-badge {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 999px;
    font-style: normal;
}

.status-badge.new {
    color: #b5bdcb;
    background: rgba(255,255,255,.05);
}

.status-badge.sent {
    color: #97b7ff;
    background: rgba(79,140,255,.08);
}

.status-badge.reply {
    color: #7de4b2;
    background: rgba(91,240,165,.07);
}

.contact-ok {
    color: #7cd9aa;
}

.app-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(124,92,255,.16);
    border-radius: 50%;
}

.orbit-one {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-two {
    width: 680px;
    height: 680px;
    top: 50%;
    left: 50%;
    border-color: rgba(79,140,255,.08);
    transform: translate(-50%, -50%);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 135px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 13px;
    background: rgba(13,17,26,.82);
    box-shadow: 0 20px 45px rgba(0,0,0,.4);
    backdrop-filter: blur(12px);
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    color: #758095;
    font-size: .57rem;
}

.floating-card strong {
    color: #e6ebf3;
    font-size: .78rem;
}

.floating-card-a {
    top: 15%;
    right: -5%;
}

.floating-card-b {
    bottom: 10%;
    left: -4%;
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #c8bfff;
    border-radius: 9px;
    background: rgba(124,92,255,.12);
    font-size: .8rem;
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 30px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-hint span {
    width: 4px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(-5px); opacity: .35; }
    50% { transform: translateY(6px); opacity: 1; }
}

.section-border {
    border-top: 1px solid var(--cf-border);
    border-bottom: 1px solid var(--cf-border);
}

.proof-strip {
    background: rgba(255,255,255,.012);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 25px 18px;
    border-right: 1px solid var(--cf-border);
}

.proof-grid > div:first-child {
    border-left: 1px solid var(--cf-border);
}

.proof-grid strong {
    color: #6257a5;
    font-size: .68rem;
    letter-spacing: .14em;
}

.proof-grid span {
    color: #aab2c1;
    font-size: .85rem;
    font-weight: 600;
}

.section-padding {
    padding: 120px 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.workflow-section h2,
.cta-panel h2 {
    letter-spacing: -.05em;
}

.section-heading p {
    max-width: 650px;
    margin: 1.2rem auto 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    padding: 30px;
    border: 1px solid var(--cf-border);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.025), transparent 55%),
        var(--cf-card);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,92,255,.26);
    background:
        linear-gradient(145deg, rgba(124,92,255,.045), transparent 55%),
        var(--cf-card);
}

.feature-large {
    min-height: 520px;
}

.feature-wide {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr .9fr;
    gap: 45px;
    align-items: center;
    min-height: 340px;
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 36px;
}

.feature-number {
    color: #596274;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.feature-chip {
    padding: 6px 10px;
    color: #9c92da;
    border: 1px solid rgba(124,92,255,.12);
    border-radius: 999px;
    background: rgba(124,92,255,.05);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin-bottom: .9rem;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    letter-spacing: -.035em;
}

.feature-card p {
    max-width: 650px;
    color: var(--cf-muted);
    line-height: 1.75;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.feature-tags span {
    padding: 7px 10px;
    color: #9ca7b8;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
    font-size: .7rem;
}

.feature-icon {
    position: absolute;
    top: 95px;
    right: 38px;
}

.feature-icon-search {
    width: 74px;
    height: 74px;
    border: 1px solid rgba(124,92,255,.25);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,92,255,.17), rgba(124,92,255,.04));
    box-shadow: 0 0 50px rgba(124,92,255,.12);
}

.feature-icon-search::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 8px;
    right: -14px;
    bottom: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cf-primary), #6c92ff);
    transform: rotate(45deg);
}

.feature-icon-search span {
    position: absolute;
    inset: 17px;
    border: 2px solid #9a89ff;
    border-radius: 50%;
}

.simple-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    color: #b8afff;
    border: 1px solid rgba(124,92,255,.15);
    border-radius: 14px;
    background: rgba(124,92,255,.07);
    font-size: 1.1rem;
}

.mini-map {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 190px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.05);
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        #0b0f17;
    background-size: 28px 28px;
    mask-image: linear-gradient(to top, #000 68%, transparent);
}

.map-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(124,92,255,.34), transparent);
}

.line-a { width: 80%; top: 44%; left: 12%; transform: rotate(-14deg); }
.line-b { width: 65%; top: 58%; left: 20%; transform: rotate(18deg); }
.line-c { width: 72%; top: 50%; left: 5%; transform: rotate(4deg); }

.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #1b1732;
    border-radius: 50%;
    background: #8a72ff;
    box-shadow: 0 0 0 5px rgba(124,92,255,.10), 0 0 18px rgba(124,92,255,.3);
}

.pin-1 { top: 34%; left: 25%; }
.pin-2 { top: 60%; left: 47%; }
.pin-3 { top: 37%; right: 26%; }
.pin-4 { bottom: 22%; right: 15%; }

.email-stack {
    position: absolute;
    right: 24px;
    bottom: 25px;
    width: 135px;
    height: 94px;
}

.email-stack div {
    position: absolute;
    width: 115px;
    height: 66px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: #111722;
    box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.email-stack div:nth-child(1) { transform: rotate(-9deg); opacity: .45; }
.email-stack div:nth-child(2) { transform: translate(9px, 5px) rotate(2deg); opacity: .7; }
.email-stack div:nth-child(3) {
    transform: translate(18px, 11px) rotate(7deg);
    border-color: rgba(124,92,255,.18);
    background:
        linear-gradient(180deg, rgba(124,92,255,.08), transparent),
        #111722;
}

.status-list {
    display: grid;
    gap: 8px;
    margin-top: 25px;
}

.status-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #939dac;
    font-size: .72rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.dot-green { background: var(--cf-green); }
.dot-blue { background: #6b96ff; }
.dot-gray { background: #70798a; }

.progress-shell {
    margin-top: 28px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    background: rgba(255,255,255,.018);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: #8b96a8;
    font-size: .7rem;
}

.progress-label strong {
    color: #cfd5df;
}

.progress-track {
    overflow: hidden;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cf-primary), var(--cf-cyan));
}

.terminal-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: #090c12;
    box-shadow: 0 22px 60px rgba(0,0,0,.32);
}

.terminal-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.terminal-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3a414d;
}

.terminal-top small {
    margin-left: auto;
    color: #596274;
    font-size: .58rem;
}

.terminal-card code {
    display: block;
    padding: 7px 14px;
    color: #8f9aab;
    font-size: .68rem;
}

.terminal-card code b {
    margin-right: 10px;
    color: #4e596a;
    font-weight: 500;
}

.terminal-card .terminal-success {
    color: #69d9a5;
}

.workflow-section {
    background:
        linear-gradient(180deg, rgba(124,92,255,.025), transparent 25%),
        rgba(255,255,255,.008);
}

.workflow-list {
    border-top: 1px solid var(--cf-border);
}

.workflow-step {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    align-items: center;
    gap: 25px;
    padding: 32px 10px;
    border-bottom: 1px solid var(--cf-border);
    transition: background .25s ease, padding .25s ease;
}

.workflow-step:hover {
    padding-inline: 20px;
    background: rgba(124,92,255,.025);
}

.step-index {
    color: #5d6680;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.workflow-step h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    letter-spacing: -.02em;
}

.workflow-step p {
    margin: 0;
    color: var(--cf-muted);
}

.step-arrow {
    color: #6f7790;
    font-size: 1.2rem;
    text-align: right;
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
}

.pricing-toggle {
    display: inline-flex;
    padding: 5px;
    border: 1px solid var(--cf-border);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
}

.pricing-toggle button {
    padding: 9px 16px;
    color: #8993a6;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-size: .78rem;
    font-weight: 800;
    transition: .2s ease;
}

.pricing-toggle button.active {
    color: #fff;
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.pricing-toggle button span {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 5px;
    color: #6fe0aa;
    border-radius: 999px;
    background: rgba(91,240,165,.07);
    font-size: .6rem;
}

.pricing-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border: 1px solid var(--cf-border);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.025), transparent 55%),
        #0d111a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    opacity: .76;
    transform: scale(.985);
    transition: .25s ease;
}

.pricing-card.active,
.pricing-card:hover {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255,255,255,.14);
}

.pricing-card-featured {
    border-color: rgba(124,92,255,.35);
    background:
        radial-gradient(circle at 80% 0%, rgba(124,92,255,.12), transparent 30%),
        linear-gradient(145deg, rgba(124,92,255,.04), transparent 55%),
        #0e111c;
    box-shadow: 0 30px 90px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
}

.best-value {
    position: absolute;
    top: -11px;
    left: 28px;
    padding: 5px 10px;
    color: #eeeaff;
    border: 1px solid rgba(124,92,255,.35);
    border-radius: 999px;
    background: #17132c;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.pricing-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-kicker {
    color: #766bbb;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 5px 0 0;
    font-size: 1.55rem;
}

.plan-badge {
    padding: 6px 9px;
    color: #9aa5b8;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    font-size: .6rem;
    font-weight: 800;
}

.plan-badge-accent {
    color: #7ee3b2;
    border-color: rgba(91,240,165,.12);
    background: rgba(91,240,165,.05);
}

.price-row {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-top: 30px;
}

.price {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
}

.price-period {
    padding-bottom: 7px;
    color: #778397;
    font-size: .75rem;
}

.pricing-copy {
    min-height: 52px;
    margin: 16px 0 22px;
    color: #8f9bad;
}

.pricing-features {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--cf-border);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c0c7d3;
    font-size: .86rem;
}

.pricing-features li span {
    color: var(--cf-green);
    font-weight: 900;
}

.pricing-note {
    display: block;
    margin-top: 12px;
    color: #636e81;
    text-align: center;
}

.pricing-footnote {
    margin-top: 24px;
    color: #687387;
    font-size: .76rem;
}

.pricing-footnote span {
    color: #8994a6;
}

.pricing-footnote code {
    color: #9e94dc;
}

.faq-section {
    background: rgba(255,255,255,.008);
}

.faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--cf-border);
    --bs-accordion-color: var(--cf-muted);
    --bs-accordion-btn-color: #e8ebf1;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: #fff;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.faq-accordion .accordion-item {
    border-color: var(--cf-border);
}

.faq-accordion .accordion-button {
    padding: 22px 0;
    font-weight: 700;
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
    opacity: .65;
}

.faq-accordion .accordion-body {
    padding: 0 0 24px;
    color: var(--cf-muted);
    line-height: 1.75;
}

.cta-section {
    padding: 100px 0;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 85px 24px;
    border: 1px solid rgba(124,92,255,.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(124,92,255,.16), transparent 40%),
        linear-gradient(145deg, rgba(124,92,255,.05), rgba(79,140,255,.025)),
        #0c0f18;
    box-shadow: 0 35px 100px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle, #000 10%, transparent 70%);
}

.cta-panel > *:not(.cta-grid-bg) {
    position: relative;
    z-index: 1;
}

.cta-panel p {
    max-width: 650px;
    margin: 1.2rem auto 1.8rem;
    color: var(--cf-muted);
    line-height: 1.75;
}

.site-footer {
    padding: 40px 0 28px;
    border-top: 1px solid var(--cf-border);
}

.footer-main,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #7e899c;
    font-size: .78rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    color: #545e70;
    border-top: 1px solid rgba(255,255,255,.045);
    font-size: .72rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: reveal .75s ease forwards;
}

.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }
.reveal-delay-4 { animation-delay: .32s; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1199.98px) {
    .app-window {
        transform: none;
    }

    .floating-card-a {
        right: 1%;
    }

    .floating-card-b {
        left: 1%;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 12px;
        padding: 16px;
        border: 1px solid var(--cf-border);
        border-radius: 16px;
        background: rgba(10,13,20,.96);
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
    }

    .hero-title {
        max-width: 700px;
    }

    .app-stage {
        margin-top: 24px;
    }

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

    .proof-grid > div:first-child {
        border-left: 0;
    }

    .proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .proof-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--cf-border);
    }

    .feature-wide {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 90px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(3.05rem, 15vw, 5.2rem);
    }

    .app-stage {
        width: 720px;
        max-width: 100%;
    }

    .app-layout {
        grid-template-columns: 44px 1fr;
    }

    .app-sidebar {
        padding-inline: 6px;
    }

    .sidebar-logo,
    .sidebar-icon {
        width: 28px;
        height: 28px;
    }

    .app-content {
        padding: 16px;
    }

    .app-topbar {
        grid-template-columns: auto 1fr;
    }

    .app-title {
        text-align: right;
    }

    .online-pill {
        display: none;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .metric-card:nth-child(2),
    .metric-card:nth-child(3) {
        display: none;
    }

    .lead-row {
        grid-template-columns: 1.5fr .8fr;
    }

    .lead-row > span:last-child {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .orbit-one,
    .orbit-two {
        display: none;
    }

    .scroll-hint {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .feature-wide {
        grid-column: auto;
    }

    .feature-card,
    .feature-large {
        min-height: auto;
        padding: 24px;
    }

    .feature-large {
        padding-bottom: 210px;
    }

    .feature-icon {
        top: 85px;
        right: 22px;
        opacity: .7;
        transform: scale(.8);
    }

    .feature-top {
        margin-bottom: 26px;
    }

    .email-stack {
        opacity: .65;
    }

    .workflow-step {
        grid-template-columns: 45px 1fr;
        gap: 14px;
        padding: 25px 4px;
    }

    .step-arrow {
        display: none;
    }

    .pricing-card {
        padding: 26px 22px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 84px;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--cf-border);
    }

    .proof-grid > div:last-child {
        border-bottom: 0;
    }

    .feature-icon {
        display: none;
    }

    .pricing-card-head {
        flex-direction: column;
    }

    .price {
        font-size: 2.65rem;
    }

    .cta-panel {
        padding: 65px 20px;
    }
}


/* Real UI hero stage */
.hero-real-note {
    margin-top: 14px;
    color: #7f8aa0;
    font-size: .9rem;
}

.real-app-stage {
    position: relative;
    max-width: 760px;
    margin-inline: auto;
}

.real-app-frame,
.preview-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.03), transparent 55%),
        #0d111a;
    box-shadow:
        0 45px 120px rgba(0,0,0,.48),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.real-app-frame::after,
.preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.06), transparent 25%);
}

.real-app-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--cf-border);
    background: #0b0f17;
}

.real-app-title {
    color: #cbd3df;
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
}

.real-app-body {
    padding: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(124,92,255,.08), transparent 30%),
        #0d111a;
}

.real-app-image,
.preview-card-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
}

.real-highlight {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(10, 14, 22, .78);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0,0,0,.38);
}

.real-highlight small,
.real-highlight strong {
    display: block;
}

.real-highlight small {
    color: #748094;
    font-size: .58rem;
}

.real-highlight strong {
    color: #eef2f8;
    font-size: .8rem;
}

.highlight-number {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #d8d0ff;
    border-radius: 10px;
    background: rgba(124,92,255,.14);
    font-size: .7rem;
    font-weight: 800;
}

.highlight-a {
    top: 10%;
    left: -7%;
}

.highlight-b {
    right: -6%;
    bottom: 18%;
}

.highlight-c {
    left: 7%;
    bottom: -6%;
}

.tool-preview-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.tool-preview-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.tool-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c7d3;
    padding: 14px 16px;
    border: 1px solid var(--cf-border);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}

.tool-point span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--cf-green);
    border: 1px solid rgba(91, 240, 165, .2);
    border-radius: 50%;
    background: rgba(91, 240, 165, .07);
    font-size: .76rem;
    font-weight: 900;
}

.preview-card {
    padding: 14px;
}

@media (max-width: 1199.98px) {
    .highlight-a {
        left: 1%;
    }

    .highlight-b {
        right: 1%;
    }
}

@media (max-width: 767.98px) {
    .real-highlight {
        display: none;
    }

    .real-app-topbar {
        grid-template-columns: auto 1fr;
    }

    .real-app-title {
        text-align: right;
    }
}
