/* ═══════════════════════════════════════════════════════
   Mo — Unified Site Navigation & Footer
   site-nav.css
═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   NAV — BASE RESET & LAYOUT
   .site-nav-v2 co-applied with existing .nav keeps sticky/blur
═══════════════════════════════════════════════════════ */
.nav.site-nav-v2 {
    height: auto;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.nav-inner-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ── Logo ── */
.nav.site-nav-v2 .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    text-decoration: none;
}
.nav.site-nav-v2 .nav-logo img {
    height: 17px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}
.nav.site-nav-v2 .nav-logo-name {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #E5E7EB;
    letter-spacing: -0.02em;
    line-height: 1;
}
.nav.site-nav-v2 .nav-logo-by {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    color: rgba(229,231,235,0.38);
    letter-spacing: 0.04em;
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 1px;
}

/* ── Desktop menu ── */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-menu-item {
    position: relative;
}
.nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(229,231,235,0.60);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.9rem;
    height: 60px;
    transition: color 0.15s;
    white-space: nowrap;
}
.nav-menu-btn:hover { color: #E5E7EB; }
.nav-menu-link {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(229,231,235,0.60);
    padding: 0 0.9rem;
    height: 60px;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
}
.nav-menu-link:hover { color: #E5E7EB; }

/* Chevron icon */
.nav-chevron {
    width: 9px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.2s;
    opacity: 0.55;
}
.nav-menu-item:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.nav-sub {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 270px;
    background: #0f141c;
    border: 1px solid rgba(77,78,81,0.65);
    border-radius: 12px;
    padding: 0.45rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}
.nav-menu-item:hover .nav-sub,
.nav-menu-item:focus-within .nav-sub {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-sub-link {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    gap: 0.1rem;
    transition: background 0.12s;
}
.nav-sub-link:hover { background: rgba(255,255,255,0.045); }
.nav-sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #E5E7EB;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.nav-sub-desc {
    font-size: 0.72rem;
    color: rgba(229,231,235,0.40);
    line-height: 1.4;
}

/* ── Actions (right side) ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.nav-action-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(229,231,235,0.52);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    transition: color 0.15s;
    white-space: nowrap;
}
.nav-action-secondary:hover { color: #E5E7EB; }
.nav-action-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #070A10;
    background: #86efac;
    border: none;
    border-radius: 7px;
    padding: 0.44rem 1rem;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: -0.01em;
}
.nav-action-primary:hover {
    background: #a7f3c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(134,239,172,0.28);
}

/* ── Hamburger (mobile) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid rgba(77,78,81,0.6);
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(229,231,235,0.65);
    border-radius: 2px;
}
.nav-toggle-cb { display: none; }

/* ── Mobile drawer ── */
.nav-mobile-drawer {
    display: none;
    padding: 0.85rem clamp(1.5rem, 5vw, 3rem) 1.5rem;
    border-top: 1px solid rgba(77,78,81,0.45);
    background: rgba(7,10,16,0.98);
    max-height: 80vh;
    overflow-y: auto;
}
.nav-toggle-cb:checked ~ .nav-mobile-drawer { display: block; }
.nav-mobile-section { margin-bottom: 1.2rem; }
.nav-mobile-section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(229,231,235,0.32);
    margin-bottom: 0.45rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(77,78,81,0.35);
    display: block;
}
.nav-mobile-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(229,231,235,0.60);
    padding: 0.4rem 0;
    text-decoration: none;
    transition: color 0.15s;
    border-bottom: 1px solid rgba(77,78,81,0.18);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: #E5E7EB; }
.nav-mobile-actions {
    padding-top: 1rem;
    border-top: 1px solid rgba(77,78,81,0.35);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-menu,
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }
}
@media (min-width: 901px) {
    .nav-mobile-drawer { display: none !important; }
}


/* ═══════════════════════════════════════════════════════
   FOOTER — MULTI-COLUMN CORPORATE LAYOUT
═══════════════════════════════════════════════════════ */
.site-footer {
    background: #070A10;
    border-top: 1px solid rgba(77,78,81,0.45);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}
.site-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}
.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.site-footer-logo {
    height: 1.5rem;
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.site-footer-logo:hover { opacity: 1; }
.site-footer-tagline {
    font-size: 0.8rem;
    color: rgba(229,231,235,0.38);
    line-height: 1.65;
    max-width: 175px;
}
.site-footer-integrations {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.15rem;
}
.site-footer-integrations img {
    height: 13px;
    width: auto;
    opacity: 0.28;
    filter: invert(1) grayscale(1);
}
.site-footer-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem 1rem;
}
.site-footer-col-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(229,231,235,0.38);
    margin-bottom: 0.8rem;
    display: block;
}
.site-footer-link {
    display: block;
    font-size: 0.81rem;
    color: rgba(229,231,235,0.50);
    text-decoration: none;
    padding: 0.2rem 0;
    line-height: 1.5;
    transition: color 0.15s;
}
.site-footer-link:hover { color: #E5E7EB; }

/* Bottom bar */
.site-footer-bottom {
    border-top: 1px solid rgba(77,78,81,0.30);
}
.site-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.1rem clamp(1.5rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.site-footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    color: rgba(229,231,235,0.28);
    letter-spacing: 0.01em;
}
.site-footer-legal {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.site-footer-legal a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    color: rgba(229,231,235,0.32);
    text-decoration: none;
    transition: color 0.15s;
}
.site-footer-legal a:hover { color: rgba(229,231,235,0.65); }

/* Footer responsive */
@media (max-width: 1024px) {
    .site-footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .site-footer-main { grid-template-columns: 1fr; }
    .site-footer-cols { grid-template-columns: repeat(2, 1fr); }
    .site-footer-brand { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
    .site-footer-tagline { max-width: 100%; }
}
@media (max-width: 460px) {
    .site-footer-cols { grid-template-columns: 1fr; }
    .site-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
/* â”€â”€ Trust Proof / Product Hunt badge â”€â”€ */
.trust-proof{display:flex;align-items:center;gap:0.65rem;justify-content:center;margin-top:1.5rem;flex-wrap:wrap}
.trust-proof-label{font-family:'JetBrains Mono',monospace;font-size:0.62rem;letter-spacing:0.04em;color:rgba(229,231,235,0.38);line-height:1.45;white-space:nowrap}
.ph-badge{display:inline-block}
.ph-badge img{width:140px;height:auto;display:block}