/* =========================================================
   WISHU LOANS LLC — Editorial / Geometric Theme
   Space Grotesk × Manrope, Indigo accent
   ========================================================= */

:root {
    --bg: #070a0f;
    --bg-alt: #0d1117;
    --bg-elev: #151a22;
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #eef0f4;
    --text-mid: #b4b9c4;
    --text-muted: #7a8293;
    --accent: #a5b4fc;
    --accent-dim: #8a9bf5;
    --accent-soft: rgba(165, 180, 252, 0.12);
    --accent-glow: rgba(165, 180, 252, 0.22);

    --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-mono: 'Space Grotesk', ui-monospace, 'SF Mono', Menlo, monospace;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv01";
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 80%);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: #c7d2fe; }

.container { max-width: 1240px; padding: 0 28px; margin: 0 auto; }

.hl {
    color: var(--accent);
    font-style: normal;
    position: relative;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(7, 10, 15, 0.72);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 10, 15, 0.92);
    border-bottom-color: var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.2px;
}
.logo:hover { color: var(--text); }

.logo-bracket {
    color: var(--accent);
    font-weight: 400;
    font-family: var(--font-mono);
}
.logo-mark {
    color: var(--text);
    padding: 0 3px 0 5px;
    font-weight: 600;
}
.logo-sub {
    color: var(--text-mid);
    font-weight: 400;
    padding-right: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: color 0.2s ease;
    font-family: var(--font-body);
}
.nav-menu a:hover { color: var(--text); }

.btn-nav {
    border: 1px solid var(--border-strong);
    color: var(--text) !important;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    font-family: var(--font-display) !important;
}
.btn-nav:hover {
    background: var(--accent);
    color: var(--bg) !important;
    border-color: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    padding: 180px 0 110px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 55%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 55%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-mid);
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02);
}

.meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -2.5px;
    margin: 0 0 56px;
    color: var(--text);
    max-width: 1100px;
}

.hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero-lead {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-mid);
    max-width: 520px;
    margin: 0;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-display);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg) !important;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: #c7d2fe;
    border-color: #c7d2fe;
    color: var(--bg) !important;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text) !important;
    border-color: var(--border-strong);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
}

.hero-footnote {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.fn-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.fn-value {
    color: var(--text);
    font-weight: 500;
}

.fn-divider {
    width: 1px;
    height: 14px;
    background: var(--border-strong);
    margin: 0 6px;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 130px 0;
    position: relative;
}
.section-alt { background: var(--bg-alt); }

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-num {
    color: var(--accent);
    padding: 5px 10px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    font-variant-numeric: tabular-nums;
}

.label-text {
    color: var(--text-mid);
    position: relative;
    padding-left: 18px;
}
.label-text::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 10px;
    height: 1px;
    background: var(--text-muted);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -1.8px;
    margin: 0 0 0;
    color: var(--text);
}

.section-lead {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;
    max-width: 380px;
    margin-left: auto;
}

.about-body {
    max-width: 780px;
    margin: 72px 0 90px;
    padding-left: 40px;
    border-left: 1px solid var(--border-strong);
}
.about-body p {
    color: var(--text-mid);
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0;
}

/* =========================================================
   VALUE LINES
   ========================================================= */

.values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.value-line {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.value-num {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
}

.value-line h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text);
    letter-spacing: -0.4px;
}

.value-line p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================================
   SERVICES — EDITORIAL LIST
   ========================================================= */

.services-list {
    margin-top: 64px;
    border-top: 1px solid var(--border-strong);
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: padding 0.3s ease;
    cursor: default;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row:hover {
    padding-left: 16px;
}

.service-row:hover::before {
    width: 100%;
}

.service-row:hover .service-arrow {
    color: var(--accent);
    transform: translate(4px, -4px);
}

.service-row:hover .service-index {
    color: var(--accent);
}

.service-index {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
    padding-top: 8px;
    transition: color 0.3s ease;
}

.service-body {
    max-width: 680px;
}

.service-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
}

.service-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.service-arrow {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-muted);
    padding-top: 4px;
    justify-self: end;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-strong);
}

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

.faq-question {
    width: 100%;
    padding: 26px 0;
    background: none;
    border: none;
    color: var(--text);
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-display);
    transition: padding 0.3s ease;
}

.faq-question:hover {
    padding-left: 12px;
}

.faq-num {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.faq-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    position: relative;
    justify-self: end;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--accent);
    transition: opacity 0.3s ease, background 0.2s ease;
}

.faq-icon::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-num,
.faq-item.active .faq-text {
    color: var(--accent);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
}

.faq-item.active .faq-question {
    padding-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 32px 30px 64px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px;
    font-size: 0.98rem;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-strong);
}

.contact-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.contact-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 3px;
}

.contact-value {
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.55;
    font-weight: 400;
    font-family: var(--font-body);
}

.contact-link {
    color: var(--text) !important;
    transition: color 0.2s ease;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
    display: inline-block;
    width: fit-content;
}
.contact-link:hover {
    color: var(--accent) !important;
    border-bottom-color: var(--accent);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 34px 0;
    background: var(--bg);
}

.copyright {
    margin: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    font-family: var(--font-display);
    font-weight: 400;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .values-row { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-body { grid-template-columns: 1fr; gap: 32px; }
    .hero-cta { justify-content: flex-start; }
    .section-lead { margin-left: 0; max-width: 100%; }
    .section { padding: 100px 0; }
    .about-body { padding-left: 24px; margin: 56px 0 70px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        padding: 12px 28px 24px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }
    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu li {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 18px;
    }
    .nav-menu a {
        display: block;
        font-size: 1rem;
    }
    .btn-nav { display: inline-block; }

    .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .hero {
        padding: 150px 0 90px;
        min-height: auto;
    }

    .hero-title { letter-spacing: -1.5px; }

    .hero-footnote {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .fn-divider { display: none; }
    .fn-label { margin-top: 8px; }

    .section { padding: 80px 0; }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary, .btn-secondary { width: 100%; }

    .values-row { grid-template-columns: 1fr; gap: 28px; }

    .service-row {
        grid-template-columns: 50px 1fr 30px;
        gap: 16px;
        padding: 32px 0;
    }
    .service-row:hover { padding-left: 8px; }

    .faq-question {
        grid-template-columns: 36px 1fr 24px;
        gap: 12px;
        padding: 22px 0;
    }
    .faq-answer p {
        padding: 0 0 26px 48px;
    }

    .contact-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .navbar { padding: 16px 20px; }
    .logo-sub { display: none; }
    .section-label { flex-wrap: wrap; gap: 10px; }
}
