/* Import utilities */
@import "utilities-7wtTmHb.css";

/* =============================================
    RESET & CSS VARIABLES
============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #08080f;
    --bg2: #0d0d18;
    --surface: #12121e;
    --surface2: #1a1a2e;
    --surface3: #22223a;
    --border: rgba(255, 255, 255, 0.06);
    --border-s: rgba(255, 255, 255, 0.12);
    --text: #eeeef8;
    --text-muted: #7070a0;
    --text-dim: #40405a;
    --primary: #7c3aed;
    --primary-h: #6d28d9;
    --primary-lit: rgba(124, 58, 237, 0.18);
    --primary-glow: rgba(124, 58, 237, 0.35);
    --accent: #00d4a1;
    --accent-amber: #f59e0b;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 28px;
}

/* =============================================
    LIGHT MODE VARIABLES
============================================= */
[data-theme="light"] {
    --bg: #f5f5fa;
    --bg2: #eeeef6;
    --surface: #ffffff;
    --surface2: #f0f0f8;
    --surface3: #e4e4f0;
    --border: rgba(0, 0, 0, 0.07);
    --border-s: rgba(0, 0, 0, 0.14);
    --text: #0d0d1a;
    --text-muted: #5a5a80;
    --text-dim: #9090b8;
    --primary-lit: rgba(124, 58, 237, 0.08);
    --primary-glow: rgba(124, 58, 237, 0.22);
}

[data-theme="light"] nav {
    background: rgba(245, 245, 250, 0.92);
}

[data-theme="light"] body::before {
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
}

/* Sections with hardcoded dark backgrounds keep white text */
[data-theme="light"] .cta-banner .cta-banner-title {
    color: #eeeef8;
}

[data-theme="light"] .pricing-card.featured .pc-name,
[data-theme="light"] .pricing-card.featured .pc-desc,
[data-theme="light"] .pricing-card.featured .pc-price,
[data-theme="light"] .pricing-card.featured .pc-period,
[data-theme="light"] .pricing-card.featured .pc-feat {
    color: rgba(238, 238, 248, 0.9);
}

[data-theme="light"] .pricing-card.featured .pc-feat strong {
    color: #ffffff;
}

[data-theme="light"] .about-launch-badge {
    background: rgba(124, 58, 237, 0.1) !important;
    border-color: rgba(124, 58, 237, 0.4) !important;
    color: #6d28d9 !important;
}

/* FAQ */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item[open] {
    border-color: rgba(124, 58, 237, 0.35);
}
.faq-q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    cursor: pointer;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23a78bfa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    flex-shrink: 0;
    transition: transform .25s;
}
.faq-item[open] .faq-q::after {
    transform: rotate(180deg);
}
.faq-a {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* =============================================
    NAVIGATION
============================================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(8, 8, 15, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.nav-logo svg{
    max-height: 35px;
}

.nav-logo .logo-desktop #letters path{
    fill: var(--text);
}

.nav-logo .mobile{
    display: none;
}

@media (max-width: 768px) {
    .nav-logo .desktop{
        display: none;
    }
    .nav-logo .mobile{
        display: block;
    }
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    transition: color .18s, background .18s;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--surface2);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border-s);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: background .2s, color .2s, border-color .2s;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--surface3);
    color: var(--text);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .18s, box-shadow .2s;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.btn-primary svg path{
    fill: white;
}

.btn-primary:hover {
    background: var(--primary-h);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    border: 1px solid var(--border-s);
    border-radius: var(--r-md);
    padding: 9px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .18s, border-color .18s;
}

.btn-ghost svg {
    width: 20px;
    height: 20px;
}

.btn-ghost svg path{
    fill: var(--text);
}

.btn-ghost:hover {
    background: var(--surface2);
}

.btn-ghost--delete svg path {
    fill: #ef4444;
}

/* =============================================
    PAGES
============================================= */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* =============================================
    SECTION UTILITIES
============================================= */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, #c4b5fd 0%, #7c3aed 40%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
    HERO
============================================= */
.hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 48px 80px;
    overflow: hidden;
}

.hero-glow1 {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 700px;
    height: 700px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
}

.hero-glow2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 212, 161, 0.07) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-lit);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
    opacity: 1;
    }

    50% {
    opacity: .4;
    }
}

.hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 5.5vw, 70px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-hero {
    padding: 13px 26px;
    font-size: 15px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.hero-trust-sep {
    width: 1px;
    height: 16px;
    background: var(--border-s);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.trust-item svg {
    flex-shrink: 0;
}

/* =============================================
    BROWSER MOCKUP
============================================= */
.hero-visual {
    position: relative;
}

.browser-mockup {
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-s);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(124, 58, 237, 0.12);
    aspect-ratio: 16/10;
    position: relative;
    width: 100%;
}

.browser-bar {
    background: #1a1a2e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    flex-shrink: 0;
}

.bw-dots {
    display: flex;
    gap: 5px;
}

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

.bw-r {
    background: #ff5f57;
}

.bw-y {
    background: #febc2e;
}

.bw-g {
    background: #28c840;
}

.bw-url {
    flex: 1;
    background: #12121e;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'DM Sans', monospace;
    white-space: nowrap;
    overflow: hidden;
}

.browser-viewport {
    position: relative;
    background: #f5f5fa;
    height: calc(100% - 40px);
}

/* Simulated website inside browser */
.sim-site {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sim-topbar {
    background: #fff;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.sim-logo-pill {
    width: 64px;
    height: 16px;
    border-radius: 4px;
    background: #7c3aed;
    opacity: .65;
}

.sim-topbar-nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.sim-tnav {
    width: 36px;
    height: 7px;
    border-radius: 3px;
    background: #ddd;
}

.sim-tcta {
    width: 52px;
    height: 22px;
    border-radius: 5px;
    background: #7c3aed;
    opacity: .75;
}

.sim-hero-area {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    padding: 20px 16px 16px;
}

.sim-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-right: 10px;
}

.sim-h {
    height: 14px;
    border-radius: 4px;
    background: #1a1a2e;
    opacity: .65;
}

.sim-h2 {
    width: 75%;
}

.sim-p {
    height: 7px;
    border-radius: 3px;
    background: #ccc;
}

.sim-p2 {
    width: 80%;
}

.sim-p3 {
    width: 65%;
}

.sim-btns {
    display: flex;
    gap: 7px;
    margin-top: 8px;
}

.sim-b1 {
    width: 70px;
    height: 24px;
    border-radius: 5px;
    background: #7c3aed;
    opacity: .8;
}

.sim-b2 {
    width: 60px;
    height: 24px;
    border-radius: 5px;
    background: #e8e8f0;
}

.sim-img-block {
    height: 100px;
    border-radius: 9px;
    background: linear-gradient(135deg, #e0dbf8, #d0c8f0);
}

.sim-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 16px 16px;
}

.sim-card {
    background: #fff;
    border-radius: 7px;
    padding: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sim-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.sim-ct {
    width: 75%;
    height: 7px;
    border-radius: 3px;
    background: #444;
    opacity: .4;
}

.sim-cd {
    height: 6px;
    border-radius: 3px;
    background: #ccc;
}

.sim-cd2 {
    width: 70%;
    height: 6px;
    border-radius: 3px;
    background: #ccc;
}

/* Comment pins */
.c-pin {
    position: absolute;
    z-index: 20;
    cursor: default;
    opacity: 0;
    transform: scale(0) translateY(8px);
    transition: opacity .3s, transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-pin.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.c-pin-body {
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.c-pin-num {
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
}

.c-pin-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: ring-pulse 2s ease-out infinite;
}

.c-pin.visible .c-pin-ring {
    opacity: .5;
}

@keyframes ring-pulse {
    0% {
    transform: scale(.6);
    opacity: .7;
    }

    100% {
    transform: scale(1.8);
    opacity: 0;
    }
}

/* Animated cursor */
.ani-cursor {
    position: absolute;
    z-index: 30;
    pointer-events: none;
    transition: left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Comment card popup */
.c-card {
    position: absolute;
    z-index: 40;
    background: #fff;
    border-radius: 10px;
    padding: 11px 13px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 178px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px) scale(.96);
    transition: opacity .28s, transform .28s;
}

.c-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.c-card-top {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}

.c-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.c-author {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.c-time {
    font-size: 10px;
    color: #999;
}

.c-text {
    font-size: 11px;
    color: #555;
    line-height: 1.45;
    margin-bottom: 8px;
}

.c-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.c-pill {
    font-size: 9px;
    background: #f0f0f8;
    color: #6060a0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'DM Sans', monospace;
    font-weight: 500;
}

/* Sidebar panel on mockup */
.mock-sidebar {
    position: absolute;
    right: 0;
    top: 40px;
    bottom: 0;
    width: 140px;
    background: rgba(22, 22, 36, 0.96);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 50;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mock-sidebar.open {
    transform: translateX(0);
}

.ms-header {
    padding: 0 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ms-item {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transition: opacity .3s;
    cursor: pointer;
}

.ms-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ms-item.shown {
    opacity: 1;
}

.ms-pin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ms-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.ms-author {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1px;
}

/* Floating badge (outside mockup) */
.mock-float-badge {
    position: absolute;
    right: -16px;
    bottom: 40px;
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 60;
}

@keyframes float {

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

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

.mock-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--primary-lit);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-float-text .mft1 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mock-float-text .mft2 {
    font-size: 11px;
    color: var(--text-muted);
}

/* Second float badge */
.mock-float-badge2 {
    position: absolute;
    left: -20px;
    top: 80px;
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float2 5s ease-in-out infinite;
    z-index: 60;
}

@keyframes float2 {

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

    50% {
    transform: translateY(6px);
    }
}

.mock-float-badge2 .mft1 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mock-float-badge2 .mft2 {
    font-size: 11px;
    color: var(--text-muted);
}

/* =============================================
    LOGOS ROW
============================================= */
.logos-section {
    position: relative;
    z-index: 1;
    padding: 0 48px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.logos-label {
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-client {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dim);
    letter-spacing: -0.5px;
    opacity: .45;
    transition: opacity .2s;
}

.logo-client:hover {
    opacity: .75;
}

/* =============================================
    FEATURES
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.feat-card {
    background: var(--surface);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background .2s;
}

.feat-card:hover {
    background: var(--surface2);
}

.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feat-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =============================================
    FEATURE ICONS — ANIMATED SVG
============================================= */
.feat-svg {
    display: block;
}

/* 1. Pin — float bob */
@keyframes anim-pin {

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

    45% {
    transform: translateY(-5px);
    }
}

.feat-card:hover .fi-pin {
    animation: anim-pin .75s ease infinite;
}

/* 2. Users — scale pulse */
@keyframes anim-users {

    0%,
    100% {
    transform: scale(1);
    }

    50% {
    transform: scale(1.1);
    }
}

.feat-card:hover .fi-users {
    animation: anim-users .7s ease infinite;
}

/* 3. Chip / Globe / Crosshair / Clock — shared spin */
@keyframes anim-spin {
    from {
    transform: rotate(0deg);
    }

    to {
    transform: rotate(360deg);
    }
}

.feat-card:hover .fi-chip {
    animation: anim-spin 1.8s linear infinite;
}

/* 4. Bars — staggered scaleY from bottom */
.fi-bar {
    transform-box: fill-box;
    transform-origin: 50% 100%;
}

@keyframes anim-bar {

    0%,
    100% {
    transform: scaleY(1);
    }

    50% {
    transform: scaleY(0.4);
    }
}

.feat-card:hover .fi-bar-1 {
    animation: anim-bar .9s ease 0s infinite;
}

.feat-card:hover .fi-bar-2 {
    animation: anim-bar .9s ease .25s infinite;
}

.feat-card:hover .fi-bar-3 {
    animation: anim-bar .9s ease .12s infinite;
}

/* 5. Link — wiggle */
@keyframes anim-link {

    0%,
    100% {
    transform: rotate(0deg);
    }

    30% {
    transform: rotate(-13deg);
    }

    70% {
    transform: rotate(13deg);
    }
}

.feat-card:hover .fi-link {
    animation: anim-link .6s ease infinite;
}

/* 6. Shield — heartbeat */
@keyframes anim-shield {

    0%,
    100% {
    transform: scale(1);
    }

    30% {
    transform: scale(1.13);
    }

    60% {
    transform: scale(1.06);
    }
}

.feat-card:hover .fi-shield {
    animation: anim-shield .85s ease infinite;
}

/* =============================================
    METADATA SHOWCASE
============================================= */
.meta-section {
    padding: 80px 48px;
    position: relative;
    z-index: 1;
}

.meta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .meta-inner {
        grid-template-columns: 1fr;
    }
}

.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 450px) {
    .meta-grid {
        grid-template-columns: 1fr;
    }
}

.meta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: border-color .2s, background .2s;
}

.meta-card:hover {
    border-color: var(--border-s);
    background: var(--surface2);
}

.meta-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================
    META-CARD ICONS — ANIMATED SVG
============================================= */
.meta-card:hover .mi-globe {
    animation: anim-spin 2.5s linear infinite;
}

.meta-card:hover .mi-monitor {
    animation: anim-users .7s ease infinite;
}

/* 3. Expand arrows — grow */
@keyframes anim-expand {

    0%,
    100% {
    transform: scale(1);
    }

    50% {
    transform: scale(1.13);
    }
}

.meta-card:hover .mi-expand {
    animation: anim-expand .7s ease infinite;
}

.meta-card:hover .mi-crosshair {
    animation: anim-spin 1.5s linear infinite;
}

/* 5. Link — reuse feat wiggle */
.meta-card:hover .mi-link {
    animation: anim-link .6s ease infinite;
}

/* 6. Code brackets — bounce horizontal */
@keyframes anim-code {

    0%,
    100% {
    transform: translateX(0);
    }

    30% {
    transform: translateX(-3px);
    }

    70% {
    transform: translateX(3px);
    }
}

.meta-card:hover .mi-code {
    animation: anim-code .5s ease infinite;
}

/* 7. User — reuse feat pulse */
.meta-card:hover .mi-user {
    animation: anim-users .7s ease infinite;
}

/* 8. Clock hands — shared spin */
.mi-clock-hands {
    transform-box: fill-box;
    transform-origin: center;
}

.meta-card:hover .mi-clock-hands {
    animation: anim-spin 2s linear infinite;
}

.meta-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.meta-card-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.meta-text-content .section-title {
    max-width: 420px;
}

.meta-feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meta-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.meta-feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
    flex-shrink: 0;
}

.meta-feat-text {
    font-size: 15px;
    color: var(--text-muted);
}

.meta-feat-text strong {
    color: var(--text);
    font-weight: 600;
}

/* =============================================
    HOW IT WORKS
============================================= */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
    .how-step::after{
        display: none;
    }
}

.how-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.how-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-lit);
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #a78bfa;
}

.how-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.how-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.how-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
}

/* =============================================
    TESTIMONIAL
============================================= */
.testi-section {
    position: relative;
    z-index: 1;
    padding: 0 48px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: var(--r-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 48px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: .12;
    line-height: 1;
}

.testi-quote {
    font-size: 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.testi-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.testi-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.testi-role {
    font-size: 13px;
    color: var(--text-muted);
}

.testi-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

/* =============================================
    CTA BANNER
============================================= */
.cta-banner {
    position: relative;
    z-index: 1;
    margin: 0 48px 80px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, #1a0a3a 0%, #0a1a40 50%, #0a2a2a 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 72px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    gap: 40px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 65%);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 30%;
    width: 400px;
    height: 400px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 212, 161, 0.1) 0%, transparent 65%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.cta-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
}

.cta-banner-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.cta-banner-actions .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-banner {
        margin: 40px;
        padding: 40px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .cta-banner-content{
        text-align: center;
    }
}

.cta-free-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================
    FOOTER
============================================= */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand .nav-logo-text {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin-top: 8px;
}

.footer-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color .15s;
}

.footer-link:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* =============================================
    PRICING PAGE
============================================= */
.pricing-hero {
    padding: 120px 48px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-hero .hero-glow1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 100px;
    padding: 4px;
    margin: 28px auto 0;
}

.billing-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: all .2s;
}

.billing-btn.active {
    background: var(--primary);
    color: #fff;
}

.save-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 161, 0.15);
    border: 1px solid rgba(0, 212, 161, 0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 12px;
}

.pricing-cards {
    max-width: 1400px;
    margin: 52px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #1a0a3a, #100828);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-blue));
}

.pc-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 12px;
}

.pc-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.pc-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pc-price-area {
    margin-bottom: 28px;
}

.pc-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pc-price span {
    font-size: 20px;
    font-weight: 500;
    vertical-align: super;
}

.pc-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pc-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pc-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.pc-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.pc-feat-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.pc-feat-icon.ok {
    background: rgba(0, 212, 161, 0.15);
    color: var(--accent);
}

.pc-feat-icon.no {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-dim);
}

.pc-feat strong {
    color: var(--text);
}

.pc-cta {
    display: flex;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all .2s;
}

.pc-cta-primary {
    background: var(--primary);
    color: #fff;
}

.pc-cta-primary:hover {
    background: var(--primary-h);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.pc-cta-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-s);
}

.pc-cta-ghost:hover {
    background: var(--surface2);
}

.pricing-faq {
    max-width: 760px;
    margin: 80px auto 0;
    padding: 0 48px 100px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-q {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 12px;
}

/* =============================================
    SCROLL ANIMATIONS
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: .0s;
    opacity: 1;
    transform: none;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: .1s;
    opacity: 1;
    transform: none;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: .2s;
    opacity: 1;
    transform: none;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: .3s;
    opacity: 1;
    transform: none;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: .4s;
    opacity: 1;
    transform: none;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: .5s;
    opacity: 1;
    transform: none;
}

/* =============================================
    HOW-STEPS ANIMATIONS
============================================= */
/* Connector: each non-last step draws a line to the next badge.
    Positioned relative to the step itself — no magic percentages. */
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    /* center of 56px badge */
    left: 64px;
    /* 8px clearance past badge right edge */
    right: -32px;
    /* 8px short of next badge — gap is 40px */
    height: 1px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.55), rgba(59, 130, 246, 0.45));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-steps.visible .how-step:nth-child(1)::after {
    transform: scaleX(1);
    transition-delay: .35s;
}

.how-steps.visible .how-step:nth-child(2)::after {
    transform: scaleX(1);
    transition-delay: .60s;
}

/* Wider stagger for the 3 steps */
.how-steps.visible>*:nth-child(1) {
    transition-delay: .15s;
}

.how-steps.visible>*:nth-child(2) {
    transition-delay: .38s;
}

.how-steps.visible>*:nth-child(3) {
    transition-delay: .60s;
}

/* Number badge glow pulse (plays twice, staggered per step) */
@keyframes step-glow {

    0%,
    100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }

    50% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.2);
    }
}

.how-steps.visible>*:nth-child(1) .how-step-num {
    animation: step-glow 1.1s ease .55s 2;
}

.how-steps.visible>*:nth-child(2) .how-step-num {
    animation: step-glow 1.1s ease .80s 2;
}

.how-steps.visible>*:nth-child(3) .how-step-num {
    animation: step-glow 1.1s ease 1.05s 2;
}

/* =============================================
    RESPONSIVE NAVIGATION - BURGER MENU
============================================= */

/* Hide burger button by default */
.burger-btn {
    display: none;
}

/* Hide logo desktop by default on small screens */
.logo-mobile {
    display: none;
}

/* Show full logo by default */
.logo-desktop {
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Content */
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--surface);
    border-left: 1px solid var(--border-s);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .mobile-menu-content {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.mobile-menu-close:hover {
    background: var(--surface3);
    border-color: var(--border-s);
}

/* Mobile Menu Links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover {
    background: var(--surface2);
    color: var(--primary);
}

.mobile-menu-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.mobile-menu-link:hover svg {
    opacity: 1;
}

.mobile-menu-link-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.mobile-menu-link-primary:hover {
    background: var(--primary-h);
    transform: translateY(-1px);
}

.mobile-menu-link-danger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #ef4444;
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-menu-link-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.mobile-menu-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface2);
    border-radius: 12px;
    margin-bottom: 8px;
}

.mobile-menu-user svg {
    opacity: 0.5;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    /* Show burger button */
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 8px;
    }

    .burger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .burger-btn:hover span {
        background: var(--primary);
    }

    /* Hide desktop nav elements */
    .nav-links {
        display: none;
    }

    .btn-desktop {
        display: none !important;
    }

    .user-name-desktop {
        display: none !important;
    }

    /* Adjust navigation padding */
    nav {
        padding: 0 24px;
    }

    /* Show mobile logo, hide desktop logo */
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .hero-inner{
        grid-template-columns: 40% 50%;
    }
    .browser-mockup{
        aspect-ratio: auto;
    }
    .browser-viewport{
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    /* Further mobile optimizations */
    nav {
        padding: 0 16px;
    }

    .section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-wrap {
        padding-left: 24px;
        padding-right: 24px;
        overflow-x: hidden;
        overflow-y: visible;
        box-sizing: border-box;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .meta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================================================
   NOUVEAUX COMPOSANTS - REFACTORISATION CSS INLINE
   ===================================================== */

/* =============================================
   GROUPE 1 : LAYOUT & SECTIONS
   ============================================= */

/* === PAGE CONTAINERS === */
.page-container {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.page-content {
    width: 100%;
    max-width: 600px;
}

/* === SECTION BADGES === */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-lit);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.section-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* === PAGE HEADERS === */
.page-header {
    margin-bottom: 40px;
}

.page-header__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-header__breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.page-header__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.page-header__subtitle {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   GROUPE 2 : DASHBOARD COMPONENTS
   ============================================= */

/* === PROJECT CARDS === */
.project-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.project-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: var(--text);
}

.project-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-card__badge--owner {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
}

.project-card__badge--collab {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.project-card__domain {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--surface2);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-dim);
}

.project-card__stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.project-card__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.project-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.deleteProject{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === USAGE GAUGE === */
.usage-gauge {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 40px;
}

.usage-gauge--warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
}

.usage-gauge--danger {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
}

.usage-gauge__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.usage-gauge__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.usage-gauge__label {
    font-size: 13px;
    color: var(--text-dim);
}

.usage-gauge__percentage {
    text-align: right;
}

.usage-gauge__percentage-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #3b82f6;
}

.usage-gauge__percentage-value--warning {
    color: #f59e0b;
}

.usage-gauge__percentage-value--danger {
    color: #ef4444;
}

.usage-gauge__bar {
    background: var(--surface2);
    height: 12px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 20px;
}

.usage-gauge__bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.3s ease;
}

.usage-gauge__bar-fill--normal {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.usage-gauge__bar-fill--warning {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.usage-gauge__bar-fill--danger {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.usage-gauge__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usage-gauge__count {
    font-size: 14px;
    color: var(--text-muted);
}

.usage-gauge__count strong {
    color: var(--text);
    font-weight: 600;
}

/* === INVITATION SECTION === */
.invitation-section {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 40px;
}

.invitation-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.invitation-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.invitation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
}

.invitation-card:last-child {
    margin-bottom: 0;
}

.invitation-card__info {
    flex: 1;
}

.invitation-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.invitation-card__subtitle {
    font-size: 13px;
    color: var(--text-dim);
}

.invitation-card__actions {
    display: flex;
    gap: 8px;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--primary-lit);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.empty-state__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.empty-state__description {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   GROUPE 3 : FORMS & SETTINGS
   ============================================= */

/* === FORM CONTAINERS === */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group--last {
    margin-bottom: 32px;
}

.form-help {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* === MEMBER LIST === */
.member-list {
    margin-bottom: 24px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.2s;
}

.member-item:hover {
    background: var(--surface2);
}

.member-item--owner {
    padding: 16px;
    background: var(--surface2);
    border-radius: 12px;
    margin-bottom: 12px;
    border-bottom: none;
}

.member-item:last-child {
    border-bottom: none;
}

.member-item__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.member-item__avatar--alt {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.member-item__content {
    flex: 1;
    min-width: 0;
}

.member-item__name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.member-item__name strong {
    font-size: 14px;
}

.member-item__role {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.member-item__email {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-item__actions {
    margin: 0;
}

/* === STATUS/TYPE LISTS === */
.status-list {
    margin-bottom: 24px;
}

.status-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.status-list-item:hover {
    background: var(--surface2);
}

.status-list-item:last-child {
    border-bottom: none;
}

.status-list-item__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.status-list-item__color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-list-item__name {
    font-size: 14px;
    font-weight: 500;
}

.status-list-item__actions {
    display: flex;
    gap: 8px;
}

/* === SETTINGS GRID === */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.settings-section {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 32px;
}

.settings-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-section__description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* === DANGER ZONE === */
.danger-zone {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.03));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 32px;
}

.danger-zone__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ef4444;
}

.danger-zone__content {
    background: var(--surface);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.danger-zone__description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.danger-zone__input-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.danger-zone__input-label code {
    background: var(--surface2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 12px;
    color: var(--text);
}

/* =============================================
   GROUPE 4 : PROFILE & ACCOUNT
   ============================================= */

/* === PROFILE GRID === */
.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

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

/* === INFO CARDS === */
.info-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 28px;
}

.info-card--compact {
    padding: 20px;
}

.info-card--gradient {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(79, 70, 229, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.info-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-card__grid {
    display: grid;
    gap: 20px;
}

/* =============================================
   GROUPE 5 : KANBAN & PROJECT
   ============================================= */

/* === KANBAN WRAPPERS === */
.kanban-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

.project-header-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-header__left {
    flex: 1;
}

.project-header__right {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* === MODAL CONFIRM === */
.modal-confirm {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 32px;
    max-width: 450px;
    width: 90%;
    text-align: center;
}

.modal-confirm__icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ef4444;
}

.modal-confirm__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-confirm__description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-confirm__input {
    width: 100%;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    font-family: "DM Sans", sans-serif;
}

.modal-confirm__input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    background: var(--surface);
    outline: none;
}

.modal-confirm__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* =============================================
   GROUPE 6 : BUTTONS & INTERACTIONS
   ============================================= */

/* === BUTTON VARIANTS === */
.btn-danger {
    background: #ef4444;
    color: white;
    border: 1px solid #ef4444;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.btn-danger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger:disabled:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.btn-icon {
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--surface2);
    border-color: var(--border-s);
}

/* === TABLE STYLES === */
.table-wrapper {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--surface2);
}

.table th {
    padding: 0.75rem;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr {
    transition: background 0.2s;
}

.table tbody tr:hover {
    background: var(--surface2);
}

.table th.text-center,
.table td.text-center {
    text-align: center;
}

.table th.text-right,
.table td.text-right {
    text-align: right;
}

/* =============================================
   GROUPE 7 : HOMEPAGE SPECIFICS
   ============================================= */

/* === HOMEPAGE UTILITIES === */
.sim-spacer {
    height: 6px;
}

.mock-float-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 212, 161, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.hp-card {
    background: var(--surface);
    border: 1px solid var(--border-s);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.hp-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-lit);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hp-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hp-card__description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mock Float Badge Icon */
.mock-float-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-float-badge-icon--success {
    background: rgba(0, 212, 161, 0.15);
}

/* Simulated Site Elements */
.sim-spacer {
    height: 6px;
}

.sim-card-icon--purple {
    background: #e8e0ff;
}

.sim-card-icon--green {
    background: #d0f0e8;
}

.sim-card-icon--yellow {
    background: #fef3c7;
}

/* Feature Icon Color Modifiers */
.feat-icon--purple {
    background: rgba(124, 58, 237, 0.15);
}

.feat-icon--green {
    background: rgba(0, 212, 161, 0.12);
}

.feat-icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.feat-icon--orange {
    background: rgba(245, 158, 11, 0.12);
}

/* Meta Card Icon Color Modifiers */
.meta-card-icon--purple {
    background: rgba(124, 58, 237, 0.15);
}

.meta-card-icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.meta-card-icon--green {
    background: rgba(0, 212, 161, 0.12);
}

.meta-card-icon--pink {
    background: rgba(236, 72, 153, 0.12);
}

/* Section Modifiers */
.section--gradient-purple {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.section--no-padding-bottom {
    padding-bottom: 0;
}

.section-tag--centered {
    justify-content: center;
}

/* How It Works Tags */
.how-step-tag--blue {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
}

.how-step-tag--green {
    background: rgba(0, 212, 161, 0.12);
    color: #6ee7b7;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    padding: 32px 48px 0;
    font-size: 14px;
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

/* Button Size Modifiers */
.btn-sm {
    margin-top: 4px;
    width: fit-content;
    font-size: 13px;
    padding: 8px 16px;
    gap: 6px;
    text-decoration: none;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* Animation Elements Color Modifiers */
.c-pin-body--purple {
    background: #7c3aed;
}

.c-pin-body--green {
    background: #00d4a1;
}

.c-pin-body--orange {
    background: #f59e0b;
}

.c-pin-ring--purple {
    color: #7c3aed;
}

.c-pin-ring--green {
    color: #00d4a1;
}

.c-pin-ring--orange {
    color: #f59e0b;
}

.c-avatar--purple {
    background: #7c3aed;
}

.c-avatar--blue {
    background: #0ea5e9;
}

.c-avatar--orange {
    background: #f59e0b;
}

.c-avatar--pink {
    background: #ec4899;
}

.ms-pin-dot--purple {
    background: #7c3aed;
}

.ms-pin-dot--green {
    background: #00d4a1;
}

.ms-pin-dot--orange {
    background: #f59e0b;
}

/* SVG spacing in buttons */
.pc-cta svg {
    margin-right: 4px;
}

/* Project Show Page Components */
.project-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-header-left {
    flex: 1;
}

.project-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-lit);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.project-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.project-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.project-domain {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back {
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 24px;
    display: inline-flex;
}

.btn-settings {
    padding: 12px 20px;
    font-size: 14px;
}

.card-description {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.hidden {
    display: none;
}