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

:root {
    --grad: linear-gradient(135deg, #f97316, #ec4899);
    --orange: #f97316;
    --pink: #ec4899;
    --dark: #0d0d0f;
    --dark2: #141418;
    --dark3: #1c1c22;
    --dark4: #242430;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.13);
    --text: #fff;
    --muted: rgba(255, 255, 255, 0.55);
    --dim: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(13, 13, 15, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 34px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.viewer-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.76rem;
    color: var(--muted);
}

.ldot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10d97a;
    flex-shrink: 0;
    animation: lp 1.8s infinite;
}

@keyframes lp {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.8);
    }
}

.nav-phone {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-phone:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--grad);
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-cta:hover {
    opacity: 0.88;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(
            ellipse 900px 600px at 60% 20%,
            rgba(249, 115, 22, 0.09) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 700px 500px at 30% 70%,
            rgba(236, 72, 153, 0.07) 0%,
            transparent 60%
        ),
        var(--dark);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 55px 55px;
}

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

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 490px;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--grad);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition:
        transform 0.15s,
        opacity 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 13px 22px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* GOOGLE BADGE */
.gbadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 10px 16px;
}

.g-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #4285f4;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

.gstars {
    color: #fbbc04;
    font-size: 0.88rem;
    letter-spacing: 1px;
}

.gtext {
    font-size: 0.8rem;
    color: var(--muted);
}

.gtext strong {
    color: #fff;
}

/* STATS */
.stats-strip {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── FORM CARD ── */
.form-card {
    background: var(--dark2);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(249, 115, 22, 0.09),
        0 0 120px rgba(236, 72, 153, 0.06);
}

.fc-top {
    background: var(--grad);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-top h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.fc-top p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
}

.urgency {
    background: rgba(249, 115, 22, 0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 1.25rem;
    font-size: 0.76rem;
    color: #f9a05a;
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 0.86rem;
    color: #fff;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.field input::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
    background: var(--dark4);
}

.field select option {
    background: var(--dark2);
    color: #fff;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.submit-btn {
    background: var(--grad);
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    transition:
        opacity 0.2s,
        transform 0.15s;
    letter-spacing: 0.01em;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:active {
    transform: scale(0.98);
}

.form-micro {
    text-align: center;
    font-size: 0.7rem;
    color: var(--dim);
    margin-top: 2px;
}

.live-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 217, 122, 0.07);
    border: 1px solid rgba(16, 217, 122, 0.15);
    border-radius: 7px;
    padding: 7px 10px;
    font-size: 0.75rem;
    color: rgba(16, 217, 122, 0.9);
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    overflow: hidden;
    margin-top: 2.5rem;
}

.ticker-track {
    display: flex;
    animation: tick 36s linear infinite;
    white-space: nowrap;
}

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

.tick-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--muted);
    flex-shrink: 0;
    padding: 0 2.5rem;
}

.tick-check {
    color: #10d97a;
    font-weight: 700;
}

@keyframes tick {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── LENDERS (LOGO GRID) ── */
.lenders-section {
    padding: 3.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.lender-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    align-items: center;
}

/* SVG bank logos rendered inline */
.bank-logo {
    height: 32px;
    width: auto;
    opacity: 0.65;
    transition: opacity 0.2s;
    filter: brightness(0) invert(1);
}

.bank-logo:hover {
    opacity: 1;
}

.bank-pill {
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.bank-pill:hover {
    border-color: rgba(249, 115, 22, 0.4);
    color: #fff;
}

/* ── VS TABLE ── */
.vs-section {
    padding: 5rem 2rem;
    background: var(--dark);
}

.vs-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.vs-heading {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.vs-sub {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 2rem;
}

.vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border2);
}

.vs-table th {
    padding: 0.9rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vs-th-feature {
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    text-align: left;
    width: 44%;
}

.vs-th-bank {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.vs-th-simpli {
    background: var(--grad);
    color: #fff;
}

.vs-table td {
    padding: 0.8rem 1.1rem;
    font-size: 0.84rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.vs-table td:first-child {
    text-align: left;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
}

.vs-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.td-bad {
    color: #ff7070;
}

.td-good {
    color: #10d97a;
    font-weight: 700;
}

/* ── HOW IT WORKS ── */
.how-section {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
}

.how-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: 0 0 28px rgba(249, 115, 22, 0.25);
}

.step h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.score-big {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.score-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.score-count {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 2px;
}

/* SLIDING REVIEWS CAROUSEL */
.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    animation: slideReviews 22s linear infinite;
}

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

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: var(--dark2);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 1.4rem;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    transition:
        border-color 0.2s,
        transform 0.2s;
    animation: fadeInCard 0.5s ease both;
}

.review-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-3px);
}

.review-card.featured {
    border-color: rgba(249, 115, 22, 0.3);
    background: var(--dark3);
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.rev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.rev-meta {
    font-size: 0.73rem;
    color: var(--muted);
}

.rev-stars {
    color: #fbbc04;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 0.65rem;
}

.rev-text {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.rev-source {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.8rem;
    font-size: 0.7rem;
    color: var(--dim);
}

.g-mini {
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #4285f4;
}

.new-tag {
    display: inline-block;
    background: rgba(16, 217, 122, 0.1);
    border: 1px solid rgba(16, 217, 122, 0.25);
    color: #10d97a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: 5px;
}

/* TRUST */
.trust-bar {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
}

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--dark3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.81rem;
    color: var(--muted);
}

.trust-icon {
    font-size: 1.05rem;
}

/* FOOTER CTA */
.footer-cta {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 700px 400px at 50% 50%,
        rgba(249, 115, 22, 0.08),
        transparent 70%
    );
    pointer-events: none;
}

.footer-cta h2 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    position: relative;
}

.footer-cta p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.74rem;
    color: var(--dim);
}

footer a {
    color: var(--dim);
    text-decoration: none;
}

footer a:hover {
    color: var(--muted);
}

/* THANK YOU */
.value-stack {
    background: var(--dark2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
}

.pain-section-wrap {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pain-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.pain-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.pain-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pain-body {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 0.9rem;
}

.pain-body strong {
    color: #fff;
}

.vs-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.7rem;
}

.vs-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.83rem;
    padding: 4px 0;
    color: var(--muted);
}

.vs-item strong {
    color: #fff;
    font-weight: 600;
}

.vs-check {
    color: #10d97a;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.otp-boxes {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.otp-input {
    width: 44px;
    height: 52px;
    border-radius: 10px;
    border: 2px solid var(--border2);
    background: var(--dark3);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    text-align: center;
    font-family: inherit;
    outline: none;
    transition:
        border-color 0.2s,
        transform 0.1s;
    caret-color: var(--orange);
}

.otp-input:focus {
    border-color: var(--orange);
    transform: scale(1.06);
}

.otp-input.filled {
    border-color: var(--green);
    background: rgba(16, 217, 122, 0.07);
}

.ty {
    display: none;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.ty h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.ty p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ENTRANCE ANIMATIONS */
@keyframes fsIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

.hero-eyebrow {
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    animation: fadeUp 0.7s 0.3s ease both;
}

.gbadge {
    animation: fadeUp 0.7s 0.4s ease both;
}

.stats-strip {
    animation: fadeUp 0.7s 0.5s ease both;
}

.form-card {
    animation: fadeUp 0.8s 0.2s ease both;
}

/* ── PREFIX INPUTS ── */
.prefix-input {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: var(--dark3);
}

.prefix-input:focus-within {
    border-color: var(--orange);
    background: var(--dark4);
}

.prefix-input .prefix,
.prefix-input .suffix {
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.prefix-input .prefix {
    border-right: 1px solid var(--border2);
}

.prefix-input .suffix {
    border-left: 1px solid var(--border2);
}

.prefix-input input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 10px 10px;
    font-family: inherit;
    font-size: 0.86rem;
    color: #fff;
    outline: none;
    min-width: 0;
}

.prefix-input input::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

/* ── KEYWORD HIGHLIGHTS ── */
.kw {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        rgba(249, 115, 22, 0.18),
        rgba(236, 72, 153, 0.12)
    );
    padding: 1px 5px;
    border-radius: 4px;
    display: inline;
}

.kw-link {
    color: var(--orange);
    font-weight: 800;
    background: rgba(249, 115, 22, 0.12);
    padding: 1px 5px;
    border-radius: 4px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    display: inline;
}

.kw-link:hover {
    background: rgba(249, 115, 22, 0.22);
    color: var(--pink);
}

/* ── LMCT NEWS BANNER ── */
.news-banner {
    display: flex;
    align-items: center;
    background: #0a0a0c;
    border-bottom: 1px solid rgba(249, 115, 22, 0.25);
    height: 36px;
    overflow: hidden;
    position: relative;
    z-index: 300;
}

.news-tag {
    flex-shrink: 0;
    background: var(--grad);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.news-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.news-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: newsTick 38s linear infinite;
}

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

.news-item {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0 0.5rem;
    flex-shrink: 0;
}

.news-item strong {
    color: #fff;
    font-weight: 700;
}

@keyframes newsTick {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.news-cta {
    flex-shrink: 0;
    background: var(--grad);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s;
}

.news-cta:hover {
    opacity: 0.85;
}
