@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ─── Variables ─── */
:root {
    --bg:           #060608;
    --surface:      #0e0e12;
    --surface2:     #141418;
    --border:       rgba(255, 255, 255, 0.08);
    --border2:      rgba(255, 255, 255, 0.14);
    --text:         #f0f0f0;
    --muted:        #555560;
    --muted2:       #888894;
    --accent:       #44ff5f;
    --accent2:      #28e049;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'DM Mono', monospace;
}

/* ─── Reset ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* ─── Selection ─── */
::selection {
    background: var(--accent);
    color: #000;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 2px; }

/* ─── Noise Overlay ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    opacity: 0.4;
}

/* ─── Custom Cursor ─── */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(68, 255, 95, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.2s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
    width: 20px;
    height: 20px;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(68, 255, 95, 0.7);
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0   rgba(68, 255, 95, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(68, 255, 95, 0);   }
}

/* ─── Fade-up utility ─── */
.fade-up            { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.fade-up.delay-1    { animation-delay: 0.10s; }
.fade-up.delay-2    { animation-delay: 0.25s; }
.fade-up.delay-3    { animation-delay: 0.40s; }
.fade-up.delay-4    { animation-delay: 0.55s; }
.fade-up.delay-5    { animation-delay: 0.70s; }

/* ─── Radial glow helper ─── */
.radial-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

/* ─── Glass nav ─── */
.glass-nav {
    background: rgba(6, 6, 8, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

/* ─── Float nav ─── */
.float-nav {
    background: rgba(14, 14, 18, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border2);
}

/* ─── Typography ─── */
.hero-display {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    color: var(--text);
}

.hero-display .accent-word  { color: var(--accent); }
.hero-display .outline-word {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--text);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 40px;
}

/* ─── Glow dot ─── */
.glow-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-glow 2s ease infinite;
    flex-shrink: 0;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: none;
    transition: all 0.25s;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--accent2);
    transform: scale(1.04);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 15px 28px;
    border-radius: 100px;
    border: 1px solid var(--border2);
    cursor: none;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-ghost:hover {
    background: var(--surface2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ─── Ticker ─── */
.ticker-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: ticker 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

/* ─── How It Works grid ─── */
.step-item {
    background: var(--bg);
    padding: 48px 36px;
    transition: background 0.3s;
}

.step-item:hover {
    background: var(--surface);
}

.step-num {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--surface2);
    line-height: 1;
    transition: color 0.3s;
}

.step-item:hover .step-num {
    color: var(--accent);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin: 16px 0 12px;
    color: var(--text);
}

.step-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted2);
}

/* ─── Feature cards ─── */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    border-color: var(--border2);
    transform: translateY(-6px);
}

.feature-icon {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted2);
}

/* ─── Task rows ─── */
.task-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.task-row:hover {
    border-color: rgba(68, 255, 95, 0.3);
    background: rgba(68, 255, 95, 0.04);
}

.task-row.highlight {
    border-color: rgba(68, 255, 95, 0.2);
    background: rgba(68, 255, 95, 0.04);
}

.task-row.highlight-green {
    border-color: rgba(68, 255, 95, 0.24);
    background: rgba(68, 255, 95, 0.045);
}

.task-row.highlight-teal {
    border-color: rgba(45, 212, 191, 0.28);
    background: rgba(45, 212, 191, 0.06);
}

.task-row.highlight-orange {
    border-color: rgba(251, 146, 60, 0.32);
    background: rgba(251, 146, 60, 0.07);
}

.task-row.highlight-red {
    border-color: rgba(248, 113, 113, 0.32);
    background: rgba(248, 113, 113, 0.07);
}

.task-row.highlight-blue {
    border-color: rgba(96, 165, 250, 0.32);
    background: rgba(96, 165, 250, 0.07);
}

.task-row.highlight-yellow {
    border-color: rgba(250, 204, 21, 0.34);
    background: rgba(250, 204, 21, 0.075);
}

.task-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.task-icon {
    color: var(--muted2);
    font-size: 16px;
}

.platform-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 5px;
}

.task-row.highlight .task-icon,
.task-row.highlight-green .task-icon { color: var(--accent); }
.task-row.highlight-teal .task-icon { color: #2dd4bf; }
.task-row.highlight-orange .task-icon { color: #fb923c; }
.task-row.highlight-red .task-icon { color: #f87171; }
.task-row.highlight-blue .task-icon { color: #60a5fa; }
.task-row.highlight-yellow .task-icon { color: #facc15; }

.task-row.highlight .task-label,
.task-row.highlight-green .task-label,
.task-row.highlight-teal .task-label,
.task-row.highlight-orange .task-label,
.task-row.highlight-red .task-label,
.task-row.highlight-blue .task-label,
.task-row.highlight-yellow .task-label { font-weight: 500; }

.pts-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(68, 255, 95, 0.10);
    border: 1px solid rgba(68, 255, 95, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
}

.task-row.highlight .pts-badge {
    background: rgba(68, 255, 95, 0.15);
}

.task-row.highlight-green .pts-badge {
    background: rgba(68, 255, 95, 0.15);
    border-color: rgba(68, 255, 95, 0.30);
    color: var(--accent);
}

.task-row.highlight-teal .pts-badge {
    background: rgba(45, 212, 191, 0.14);
    border-color: rgba(45, 212, 191, 0.32);
    color: #5eead4;
}

.task-row.highlight-orange .pts-badge {
    background: rgba(251, 146, 60, 0.14);
    border-color: rgba(251, 146, 60, 0.34);
    color: #fdba74;
}

.task-row.highlight-red .pts-badge {
    background: rgba(248, 113, 113, 0.14);
    border-color: rgba(248, 113, 113, 0.34);
    color: #fca5a5;
}

.task-row.highlight-blue .pts-badge {
    background: rgba(96, 165, 250, 0.14);
    border-color: rgba(96, 165, 250, 0.34);
    color: #93c5fd;
}

.task-row.highlight-yellow .pts-badge {
    background: rgba(250, 204, 21, 0.14);
    border-color: rgba(250, 204, 21, 0.36);
    color: #fde047;
}

/* ─── Info box ─── */
.info-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 20px;
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
}

.info-box-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted2);
}

/* ─── Pricing ─── */
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 44px;
    transition: all 0.4s;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(68, 255, 95, 0.06) 0%, var(--surface) 60%);
}

.pricing-card:not(.featured):hover {
    border-color: var(--border2);
    transform: translateY(-4px);
}

.pricing-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--text);
}

.pricing-sub {
    font-size: 13px;
    color: var(--muted2);
    margin-top: 6px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.inline-pricing-link {
    background: none;
    border: 0;
    color: var(--gold);
    cursor: pointer;
    display: inline;
    font: inherit;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: rgba(251,191,36,0.55);
    text-underline-offset: 3px;
}

.inline-pricing-link:hover {
    color: #fde68a;
    text-decoration-color: #fde68a;
}

.pricing-modal-backdrop {
    align-items: center;
    background: rgba(0,0,0,0.74);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 1000;
}

.pricing-modal-backdrop.is-open {
    display: flex;
}

.pricing-modal-card {
    background: var(--surface);
    border: 1px solid rgba(251,191,36,0.24);
    border-radius: 24px;
    box-shadow: 0 24px 90px rgba(0,0,0,0.55), 0 0 42px rgba(251,191,36,0.08);
    max-width: 440px;
    padding: 30px;
    position: relative;
    width: 100%;
}

.pricing-modal-close {
    align-items: center;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: 50%;
    color: var(--muted2);
    cursor: pointer;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    transition: all 0.2s;
    width: 34px;
}

.pricing-modal-close:hover {
    border-color: rgba(255,255,255,0.24);
    color: var(--text);
}

.pricing-modal-icon {
    align-items: center;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.24);
    border-radius: 50%;
    color: var(--gold);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    margin-bottom: 16px;
    width: 44px;
}

.pricing-modal-icon iconify-icon {
    font-size: 21px;
}

.pricing-modal-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-modal-sub {
    color: var(--muted2);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.pricing-modal-table {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-modal-table div {
    align-items: center;
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px 16px;
}

.pricing-modal-table div:last-child {
    border-bottom: 0;
}

.pricing-modal-table span {
    color: var(--muted2);
    font-size: 13px;
}

.pricing-modal-table strong {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 13px;
}

.receipt-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: 40px;
}

.receipt-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.receipt-row.total {
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 16px;
    font-size: 16px;
    font-weight: 700;
}

/* ─── FAQ ─── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-btn:hover { color: var(--accent); }

.faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    font-size: 15px;
    color: var(--muted2);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
}

/* ─── Nav links ─── */
.nav-link {
    color: var(--muted2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* ─── Social icon ─── */
.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted2);
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: var(--border2);
    color: var(--text);
    transform: translateY(-3px);
}

/* ─── Float nav link ─── */
.float-link {
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted2);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.float-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.float-cta {
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    background: var(--accent);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}

.float-cta:hover { background: var(--accent2); }

/* ─── Stat display ─── */
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ─── Footer ─── */
.footer-big {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 12rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--text);
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

/* ─── Scroll-reveal (JS-driven) ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    body        { cursor: auto; }
    .cursor,
    .cursor-ring { display: none; }

    .hero-display { font-size: clamp(4.5rem, 22vw, 10rem); }

    .tasks-grid  { grid-template-columns: 1fr !important; gap: 40px !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .pricing-grid  { grid-template-columns: 1fr !important; }
    .how-grid      { grid-template-columns: 1fr !important; }

    .float-label { display: none; }
}

/* ─── Hero grid responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        padding: 60px 32px !important;
        gap: 40px !important;
        align-items: flex-start !important;
        min-height: auto !important;
        padding-top: 40px !important;
    }

    .hero-grid > div:last-child {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-display {
        font-size: clamp(5rem, 18vw, 12rem) !important;
    }
}

/* ─── Float nav login buttons ─── */
.float-login-user {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    /* Purple */
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.float-login-user:hover {
    background: rgba(192, 132, 252, 0.18);
    border-color: rgba(192, 132, 252, 0.4);
    color: #d8b4fe;
}

.float-login-project {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    /* Gold */
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.float-login-project:hover {
    background: rgba(251, 191, 36, 0.18);
    border-color: rgba(251, 191, 36, 0.4);
    color: #fcd34d;
}

/* ─── Hero Cards ─── */
.hero-card {
    position: relative;
    border-radius: 20px;
    padding: 27px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.hero-card:hover { transform: translateY(-4px); }

.hero-card-user {
    background: linear-gradient(145deg, rgba(68,255,95,0.07) 0%, var(--surface) 50%);
    border: 1px solid rgba(68,255,95,0.18);
}

.hero-card-user:hover { border-color: rgba(68,255,95,0.35); }

.hero-card-project {
    background: linear-gradient(145deg, rgba(251,191,36,0.07) 0%, var(--surface) 50%);
    border: 1px solid rgba(251,191,36,0.18);
}

.hero-card-project:hover { border-color: rgba(251,191,36,0.35); }

/* Inner glow blob */
.hero-card-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    pointer-events: none;
    filter: blur(80px);
}

.hero-card-glow-green  { background: rgba(68,255,95,0.12); }
.hero-card-glow-gold   { background: rgba(251,191,36,0.10); }

/* Icon badge */
.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon-green {
    background: rgba(68,255,95,0.12);
    border: 1px solid rgba(68,255,95,0.3);
}

.hero-card-icon-gold {
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.3);
}

/* Bullet rows */
.hero-card-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text);
}

.hero-card-bullet-green { background: rgba(68,255,95,0.06);  border: 1px solid rgba(68,255,95,0.12); }
.hero-card-bullet-gold  { background: rgba(251,191,36,0.06); border: 1px solid rgba(251,191,36,0.12); }

/* CTA link */
.hero-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.hero-card-cta-green {
    background: rgba(68,255,95,0.12);
    color: var(--accent);
    border: 1px solid rgba(68,255,95,0.3);
}

.hero-card-cta-green:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.hero-card-cta-gold {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.3);
}

.hero-card-cta-gold:hover {
    background: #fbbf24;
    color: #000;
    border-color: #fbbf24;
}

/* Float nav — User Login now green */
.float-login-user {
    color: var(--accent) !important;
    background: rgba(68,255,95,0.08) !important;
    border: 1px solid rgba(68,255,95,0.2) !important;
}

.float-login-user:hover {
    background: rgba(68,255,95,0.16) !important;
    border-color: rgba(68,255,95,0.4) !important;
    color: var(--accent) !important;
}

/* Hero grid responsive */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        padding: 60px 32px 40px !important;
        gap: 40px !important;
        min-height: auto !important;
    }
}

/* ─── Float nav — vertical left panel ─── */
.float-label {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.float-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-login-user,
.float-login-project {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    div.float-nav { display: none !important; }
}
