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

:root {
    --bg:      #0a0a0a;
    --green:   #33ff00;
    --amber:   #ffb000;
    --muted:   #1f521f;
    --dim:     #2a6a2a;
    --red:     #ff3333;
    --text:    #33ff00;
    --glow:    0 0 6px rgba(51, 255, 0, 0.55);
    --glow-sm: 0 0 4px rgba(51, 255, 0, 0.35);
    --amber-glow: 0 0 5px rgba(255, 176, 0, 0.5);
}

/* ===== BASE ===== */
body {
    background: var(--bg);
    color: var(--green);
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 13px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ===== CRT SCANLINES ===== */
#crt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.055) 2px,
        rgba(0, 0, 0, 0.055) 4px
    );
}

/* ===== ANIMATIONS ===== */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes typing {
    from { width: 0; }
    to   { width: 100%; }
}

@keyframes scan-dots {
    0%  { content: '.  '; }
    33% { content: '.. '; }
    66% { content: '...'; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes glitch {
    0%,  90%, 100% { transform: translate(0); filter: none; }
    91% { transform: translate(-2px, 0); filter: hue-rotate(90deg); }
    93% { transform: translate(2px, 0);  filter: hue-rotate(-90deg); }
    95% { transform: translate(-1px, 0); filter: none; }
}

/* ===== TOP BAR ===== */
#top-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--green);
    padding: 8px 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 12px rgba(51, 255, 0, 0.15);
}

/* ===== LOGO ===== */
#logo a, #logo a:visited { color: inherit; text-decoration: none; }
#logo {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    text-shadow: var(--glow);
}

#logo-blink {
    color: var(--green);
    animation: blink 1s steps(1) infinite;
    font-size: 16px;
    text-shadow: var(--glow);
}

#logo-text {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 0.7s steps(18, end) forwards 0.2s;
    text-shadow: var(--glow);
    letter-spacing: 1px;
}

/* ===== SEARCH FORM ===== */
#search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 6px 8px;
    border-bottom: 1px solid var(--muted);
    background: var(--bg);
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ===== PROMPT + INPUT WRAPPER ===== */
.input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--muted);
    background: var(--bg);
    flex: 1;
    min-width: 160px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 8px rgba(51, 255, 0, 0.2);
}

.prompt {
    padding: 7px 8px 7px 10px;
    color: var(--amber);
    font-weight: 700;
    text-shadow: var(--amber-glow);
    user-select: none;
    flex-shrink: 0;
}

.input-wrap input {
    background: transparent;
    border: none;
    color: var(--green);
    padding: 7px 10px 7px 4px;
    font-family: inherit;
    font-size: 13px;
    width: 100%;
    outline: none;
    caret-color: var(--green);
    text-shadow: var(--glow-sm);
}

.input-wrap input::placeholder { color: var(--muted); }

/* ===== RADIUS ===== */
#radius-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 130px;
}

#radius-group label {
    font-size: 11px;
    color: var(--muted);
    user-select: none;
    letter-spacing: 0.5px;
}

#radius-label {
    color: var(--amber);
    font-weight: 700;
    text-shadow: var(--amber-glow);
}

#radius-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    height: 4px;
    background: var(--bg);
    border: 1px solid var(--muted);
    outline: none;
}

#radius-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--green);
    box-shadow: 0 0 6px rgba(51, 255, 0, 0.6);
    cursor: pointer;
    border: none;
    border-radius: 0;
}

#radius-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--green);
    box-shadow: 0 0 6px rgba(51, 255, 0, 0.6);
    cursor: pointer;
    border: none;
    border-radius: 0;
}

#radius-slider::-moz-range-track {
    background: var(--bg);
    border: 1px solid var(--muted);
    height: 4px;
}

/* ===== BUTTONS ===== */
.btn-term {
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--muted);
    padding: 7px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.15s;
    white-space: nowrap;
    outline: none;
    border-radius: 0;
}

.btn-term:hover {
    border-color: var(--green);
    color: var(--bg);
    background: var(--green);
    text-shadow: none;
    box-shadow: 0 0 10px rgba(51, 255, 0, 0.4);
    animation: glitch 4s infinite;
}

.btn-term:active {
    transform: translateY(1px);
    box-shadow: none;
}

.btn-term:focus-visible {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green);
}

.btn-term.btn-primary {
    border-color: var(--green);
    color: var(--green);
    text-shadow: var(--glow-sm);
}

.btn-term.btn-primary:hover {
    background: var(--green);
    color: var(--bg);
    box-shadow: 0 0 16px rgba(51, 255, 0, 0.5);
}

.btn-term:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    animation: none;
}

/* ===== MULTI-SCAN BUTTON ===== */
#multi-btn.bulk-active {
    border-color: var(--amber);
    color: var(--amber);
    text-shadow: var(--amber-glow);
    box-shadow: 0 0 10px rgba(255, 176, 0, 0.3);
    animation: none;
}
#multi-btn.bulk-active:hover {
    background: var(--amber);
    color: var(--bg);
    text-shadow: none;
    box-shadow: 0 0 16px rgba(255, 176, 0, 0.5);
}

/* ===== MAP HINT (removed) ===== */
#map-hint {
    display: none;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* ===== MAIN CONTENT ===== */
#content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ===== MAP SECTION ===== */
#map-section {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--green);
    box-shadow: inset 0 0 30px rgba(51, 255, 0, 0.03);
}

#map-titlebar {
    background: var(--bg);
    border-bottom: 1px solid var(--muted);
    padding: 4px 12px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    flex-shrink: 0;
    text-shadow: var(--glow-sm);
}

#map {
    flex: 1;
    width: 100%;
}

/* Apply green tint only to map tiles, not circle/pin overlays */
#map .leaflet-tile-pane {
    filter: saturate(0.3) brightness(0.85) sepia(0.2) hue-rotate(60deg);
}

#spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.85);
    z-index: 1000;
}

#spinner-inner {
    border: 1px solid var(--green);
    padding: 20px 40px;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: var(--glow);
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.2);
}

#scan-cursor {
    animation: blink 0.8s steps(1) infinite;
    text-shadow: var(--glow);
}

#scan-text::after {
    content: '.  ';
    animation: scan-dots 1s steps(3) infinite;
}

/* ===== LEADS SECTION ===== */
#leads-section {
    flex: 0 0 35%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#leads-header {
    background: var(--bg);
    border-bottom: 1px solid var(--muted);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#lead-count {
    flex: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-shadow: var(--glow);
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 8px;
}

#lead-count .found-text {
    color: #ff2200 !important;
    text-shadow: 0 0 8px rgba(255, 34, 0, 0.7) !important;
}

#lead-count .count-meta {
    color: var(--muted);
    font-weight: 400;
    font-size: 11px;
}

#header-btns {
    flex: 1;
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

/* Override btn-term for small header buttons */
#clear-btn {
    border-color: var(--muted);
    color: var(--muted);
    padding: 4px 8px;
    font-size: 11px;
}

#clear-btn:hover {
    border-color: var(--red);
    color: var(--bg);
    background: var(--red);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.4);
    animation: none;
}

#export-btn {
    padding: 4px 10px;
    font-size: 11px;
}

/* ===== FILTER ===== */
#filter-wrap { flex-shrink: 0; }

.filter-input-wrap {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--muted);
    min-width: unset;
}

.filter-input-wrap:focus-within {
    border-bottom-color: var(--green);
    box-shadow: none;
}

/* ===== TABLE ===== */
#table-container {
    overflow-y: auto;
    flex: 1;
}

#table-container::-webkit-scrollbar { width: 6px; }
#table-container::-webkit-scrollbar-track { background: var(--bg); }
#table-container::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 0;
}
#table-container::-webkit-scrollbar-thumb:hover { background: var(--green); }

#leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    font-family: inherit;
}

#leads-table thead th {
    background: var(--bg);
    color: var(--muted);
    padding: 8px 10px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid var(--muted);
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.15s;
}

#leads-table thead th:hover { color: var(--green); text-shadow: var(--glow-sm); }

#leads-table thead th.sort-asc .sort-icon::after  { content: " [^]"; color: var(--amber); }
#leads-table thead th.sort-desc .sort-icon::after { content: " [v]"; color: var(--amber); }

#leads-table tbody tr {
    border-bottom: 1px solid rgba(31, 82, 31, 0.5);
    transition: background 0.1s;
    animation: fadeIn 0.2s ease both;
}

#leads-table tbody tr:nth-child(odd)  { background: rgba(51, 255, 0, 0.015); }
#leads-table tbody tr:nth-child(even) { background: transparent; }

#leads-table tbody tr:hover:not(#empty-row) {
    background: rgba(51, 255, 0, 0.07);
}

#leads-table tbody td {
    padding: 8px 10px;
    vertical-align: middle;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--green);
}

#leads-table tbody td.name-cell { font-weight: 700; max-width: 160px; }
#leads-table tbody td.muted     { color: var(--dim); }

#empty-row td {
    text-align: left;
    padding: 20px 10px;
    color: var(--muted);
    font-size: 12px;
}

.name-link {
    color: var(--green);
    text-decoration: none;
    text-shadow: var(--glow-sm);
    transition: color 0.15s;
}

.name-link:hover {
    color: var(--amber);
    text-shadow: var(--amber-glow);
}

.rating-badge {
    color: var(--amber);
    font-size: 11px;
    font-weight: 700;
    text-shadow: var(--amber-glow);
}

/* ===== UTILITIES ===== */
.hidden { display: none !important; }

/* ===== LEAFLET OVERRIDES ===== */
.leaflet-popup-content-wrapper {
    background: var(--bg);
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.25);
    font-family: 'JetBrains Mono', monospace;
}

.leaflet-popup-tip { background: var(--green); }

.leaflet-popup-content {
    margin: 14px 16px;
    font-size: 12px;
    line-height: 1.7;
}

.leaflet-popup-close-button {
    color: var(--muted) !important;
    font-family: monospace;
}

.leaflet-popup-close-button:hover { color: var(--green) !important; }

.leaflet-control-zoom {
    border: 1px solid var(--muted) !important;
    border-radius: 0 !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: var(--bg) !important;
    color: var(--muted) !important;
    border: none !important;
    border-bottom: 1px solid var(--muted) !important;
    font-family: monospace !important;
    transition: all 0.15s;
}

.leaflet-control-zoom a:hover {
    background: var(--green) !important;
    color: var(--bg) !important;
}

.leaflet-control-attribution {
    background: rgba(10,10,10,0.85) !important;
    color: var(--muted) !important;
    font-family: monospace !important;
    font-size: 10px !important;
    border-radius: 0 !important;
    border-top: 1px solid var(--muted) !important;
    border-left: 1px solid var(--muted) !important;
}

.leaflet-control-attribution a { color: var(--green) !important; }

/* ===== POPUP CONTENT ===== */
.popup-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--amber);
    margin-bottom: 6px;
    text-shadow: var(--amber-glow);
    letter-spacing: 0.5px;
}

.popup-row {
    color: var(--dim);
    font-size: 11px;
    margin: 2px 0;
    letter-spacing: 0.3px;
}

.popup-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--green);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--muted);
    border-radius: 0;
    padding: 4px 12px;
    letter-spacing: 0.5px;
    transition: all 0.15s;
    text-shadow: var(--glow-sm);
}

.popup-link:hover {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
    text-shadow: none;
    box-shadow: 0 0 10px rgba(51, 255, 0, 0.4);
}

/* ===== FOOTER ===== */
#site-footer {
    background: var(--bg);
    border-top: 1px solid var(--muted);
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.footer-copy {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.footer-legal {
    color: rgba(51,255,0,0.4);
    text-decoration: none;
    font-size: 11px;
}
.footer-legal:hover { color: var(--green); }

.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-link {
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: color 0.15s, text-shadow 0.15s;
}

.social-link:hover {
    color: var(--green);
    text-shadow: var(--glow-sm);
}

/* ===== MAIN NAV ===== */
#main-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--muted);
    padding: 5px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.nav-link:hover {
    color: var(--green);
    text-shadow: var(--glow-sm);
    border-color: var(--muted);
}

.nav-link.active {
    color: var(--green);
    text-shadow: var(--glow-sm);
    border-color: var(--green);
}

/* ===== CONTENT PAGES ===== */
body.page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

body.page #top-bar {
    border-bottom: 1px solid var(--green);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 32px 60px;
}

.page-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    text-shadow: var(--glow);
    letter-spacing: 1px;
    margin: 0 0 32px 0;
    border-bottom: 1px solid var(--muted);
    padding-bottom: 16px;
}

.page-section {
    margin-bottom: 36px;
}

.page-section h2 {
    font-size: 12px;
    font-weight: 700;
    color: var(--amber);
    text-shadow: var(--amber-glow);
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.page-section p,
.page-section li {
    font-size: 13px;
    color: #7a9e7a;
    line-height: 1.8;
    margin: 0 0 8px 0;
}

.page-section ol,
.page-section ul {
    padding-left: 20px;
    margin: 0 0 8px 0;
}

.page-section li { margin-bottom: 6px; }

.page-section a {
    color: var(--green);
    text-decoration: none;
    text-shadow: var(--glow-sm);
}

.page-section a:hover { text-decoration: underline; }

.terminal-box {
    border: 1px solid var(--muted);
    padding: 16px 20px;
    margin: 12px 0;
    background: #080808;
}

.terminal-box .tb-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.terminal-box p {
    font-size: 12px;
    color: #7a9e7a;
    line-height: 1.7;
    margin: 0;
    white-space: pre-wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--muted);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    padding: 8px 12px;
    outline: none;
    resize: vertical;
    caret-color: var(--green);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    background: var(--bg);
    padding: 10px 16px;
    letter-spacing: 0.5px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast.toast-hide {
    opacity: 0;
    transform: translateX(20px);
}

.toast-error {
    border: 1px solid var(--red);
    color: var(--red);
    text-shadow: 0 0 6px rgba(255, 51, 51, 0.5);
    box-shadow: 0 0 12px rgba(255, 51, 51, 0.15);
}

.toast-warn {
    border: 1px solid var(--amber);
    color: var(--amber);
    text-shadow: var(--amber-glow);
    box-shadow: 0 0 12px rgba(255, 176, 0, 0.15);
}

/* ===== NAV USAGE ===== */
.nav-usage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--amber);
    text-shadow: var(--amber-glow);
    letter-spacing: 0.05em;
    pointer-events: none;
    white-space: nowrap;
}

/* ===== AUTH PAGES ===== */
.auth-box {
    max-width: 420px;
    margin: 2rem auto;
    border: 1px solid var(--green);
    padding: 2rem;
    background: rgba(0, 20, 0, 0.4);
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.08);
}

.auth-intro {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.auth-intro strong {
    color: var(--amber);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.75rem;
    color: var(--green);
    letter-spacing: 0.1em;
}

.form-input {
    background: #0a0a0a;
    border: 1px solid #1a3a1a;
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    padding: 0.55rem 0.75rem;
    outline: none;
    transition: border-color 0.15s;
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 8px rgba(51, 255, 0, 0.2);
}

.auth-btn {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
    margin-top: 0.5rem;
}

.auth-btn:hover {
    background: rgba(51, 255, 0, 0.08);
    box-shadow: 0 0 12px rgba(51, 255, 0, 0.25);
}

.auth-btn-danger {
    border-color: var(--red);
    color: var(--red);
}

.auth-btn-danger:hover {
    background: rgba(255, 51, 51, 0.08);
    box-shadow: 0 0 12px rgba(255, 51, 51, 0.2);
}

.auth-divider {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin: 1.25rem 0;
    letter-spacing: 0.1em;
}

.google-btn {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: #1a1a2e;
    border: 1px solid #444;
    color: #ccc;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s;
    box-sizing: border-box;
}

.google-btn:hover {
    background: #252540;
    border-color: #666;
}

.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.auth-footer a {
    color: var(--green);
    text-decoration: none;
}

.auth-error {
    background: rgba(255, 51, 51, 0.08);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

/* ===== PRICING ===== */
.page-subtitle {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* ===== EXPORT DROPDOWN ===== */
#export-wrap {
    position: relative;
}

.export-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--bg);
    border: 1px solid var(--green);
    display: flex;
    flex-direction: column;
    z-index: 200;
    min-width: 90px;
    box-shadow: 0 0 12px rgba(51, 255, 0, 0.2);
}

.export-opt {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--muted);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 12px;
    text-align: left;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}

.export-opt:last-child {
    border-bottom: none;
}

.export-opt:hover {
    background: var(--green);
    color: var(--bg);
}

/* ===== PRICING GRID ===== */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1.5rem;
    overflow-x: auto;
}

.pricing-card {
    border: 1px solid #1a3a1a;
    padding: 2.25rem 1.5rem;
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(0, 15, 0, 0.4);
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--green);
    box-shadow: 0 0 18px rgba(51, 255, 0, 0.1);
}

.pricing-card-featured {
    border-color: var(--amber);
    box-shadow: 0 0 18px rgba(255, 176, 0, 0.12);
}

.pricing-card-featured:hover {
    border-color: var(--amber);
    box-shadow: 0 0 24px rgba(255, 176, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--amber);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.06em;
}

.pricing-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    margin-bottom: -4px;
}

.pricing-tier {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 700;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    text-shadow: var(--green-glow);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
    flex: 1;
    white-space: nowrap;
}

.pricing-features li::before {
    content: '> ';
    color: var(--green);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.55rem 0.5rem;
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: rgba(51, 255, 0, 0.1);
}

.pricing-btn-outline {
    border-color: var(--muted);
    color: var(--muted);
}

.pricing-btn-outline:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--green);
    color: var(--green);
}

/* ===== DASHBOARD ===== */
.dash-value {
    color: var(--amber);
    text-shadow: var(--amber-glow);
}

.usage-bar-wrap {
    margin-top: 0.5rem;
}

.usage-bar-track {
    height: 8px;
    background: #0a1a0a;
    border: 1px solid #1a3a1a;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.usage-bar-fill {
    height: 100%;
    background: var(--green);
    transition: width 0.4s ease;
}

/* ===== PAYWALL MODAL ===== */
#paywall-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.paywall-box {
    border: 1px solid var(--amber);
    background: #0a0a0a;
    padding: 2rem;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 0 30px rgba(255, 176, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paywall-title {
    font-size: 1.1rem;
    color: var(--amber);
    text-shadow: var(--amber-glow);
    letter-spacing: 0.1em;
}

.paywall-msg {
    color: var(--muted);
    font-size: 0.85rem;
}

.paywall-upgrade-btn {
    margin-top: 0;
    background: var(--amber);
    color: #0a0a0a;
    border-color: var(--amber);
    font-weight: 700;
}

.paywall-upgrade-btn:hover {
    background: #ffcc44;
    box-shadow: 0 0 16px rgba(255, 176, 0, 0.4);
}

.paywall-close {
    background: transparent;
    border: 1px solid #333;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
    letter-spacing: 0.06em;
}

.paywall-close:hover {
    border-color: var(--muted);
    color: #ccc;
}

/* =====================================================
   LANDING PAGE OVERLAY
   ===================================================== */

/* ── Overlay container ── */
#landing-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--bg);
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.75s;
    scroll-behavior: smooth;
}

#landing-overlay.launching {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ── Shared section layout ── */
.land-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

.land-section-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

/* ── Hero ── */
.land-hero {
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    background-image: radial-gradient(circle, rgba(51,255,0,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 0 0;
}

.land-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 40%, var(--bg) 100%);
    pointer-events: none;
}

.land-hero-left {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.land-tagline {
    font-size: 11px;
    color: var(--amber);
    text-shadow: var(--amber-glow);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.land-headline {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--green);
    text-shadow: 0 0 20px rgba(51,255,0,0.4), var(--glow);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.land-sub {
    font-size: 14px;
    color: #7ac87a;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 420px;
}

.land-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.land-bullets li {
    font-size: 13px;
    color: #5aa85a;
}

.land-bi {
    color: var(--green);
    text-shadow: var(--glow-sm);
    margin-right: 8px;
    font-weight: 700;
}

.land-free-cta {
    display: inline-block;
    border: 1px solid var(--green);
    color: var(--green);
    text-shadow: var(--glow-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.land-free-cta:hover {
    background: var(--green);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(51,255,0,0.35);
}

.land-hero-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.land-cube-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* ── 3D Cube ── */
.land-cube-scene {
    perspective: 700px;
    width: 140px;
    height: 140px;
}

#land-cube {
    width: 140px;
    height: 140px;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
}

.cube-face {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1.5px solid var(--green);
    background: rgba(51, 255, 0, 0.04);
    box-shadow: inset 0 0 18px rgba(51,255,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    color: var(--green);
    text-shadow: var(--glow);
}

.face-front  { transform: translateZ(70px); font-size: 18px; letter-spacing: 4px; }
.face-back   { transform: rotateY(180deg) translateZ(70px); }
.face-left   { transform: rotateY(-90deg) translateZ(70px); font-size: 28px; }
.face-right  { transform: rotateY(90deg)  translateZ(70px); font-size: 12px; }
.face-top    { transform: rotateX(90deg)  translateZ(70px); font-size: 11px; }
.face-bottom { transform: rotateX(-90deg) translateZ(70px); font-size: 11px; }

.land-cube-hint {
    font-size: 11px;
    color: var(--amber);
    text-shadow: var(--amber-glow);
    letter-spacing: 0.08em;
    animation: blink 1.6s steps(1) infinite;
}

/* ── Scroll hint ── */
.land-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.15em;
    animation: float-hint 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes float-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Product Mockup ── */
.land-mockup {
    border: 1px solid var(--muted);
    background: rgba(0, 10, 0, 0.6);
    font-size: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(51,255,0,0.06);
}

.mockup-titlebar {
    background: rgba(51,255,0,0.05);
    border-bottom: 1px solid var(--muted);
    padding: 6px 14px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.mockup-body {
    display: flex;
    min-height: 260px;
}

.mockup-map-panel {
    flex: 1;
    border-right: 1px solid var(--muted);
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 10px;
}

.mockup-form-row {
    font-size: 12px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-btn {
    margin-left: auto;
    border: 1px solid var(--green);
    padding: 2px 8px;
    font-size: 11px;
    color: var(--green);
}

.mockup-cur {
    animation: blink 0.8s steps(1) infinite;
}

.mockup-map-grid {
    flex: 1;
    position: relative;
    background:
        linear-gradient(rgba(51,255,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51,255,0,0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    overflow: hidden;
}

.mp {
    position: absolute;
    font-size: 9px;
    color: #ff2200;
    text-shadow: 0 0 6px rgba(255,34,0,0.7);
    animation: mp-ping 2s ease-in-out infinite;
}

.mp1 { top: 22%; left: 18%; animation-delay: 0s; }
.mp2 { top: 45%; left: 38%; animation-delay: 0.4s; }
.mp3 { top: 30%; left: 62%; animation-delay: 0.8s; }
.mp4 { top: 65%; left: 25%; animation-delay: 1.2s; }
.mp5 { top: 58%; left: 55%; animation-delay: 1.6s; }
.mp6 { top: 75%; left: 75%; animation-delay: 0.6s; }

@keyframes mp-ping {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.map-sweep {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
    opacity: 0.5;
    animation: sweep-down 3s ease-in-out infinite;
}

@keyframes sweep-down {
    0%   { top: 0%;   opacity: 0.6; }
    100% { top: 100%; opacity: 0.1; }
}

.mockup-leads-panel {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    padding: 10px 14px;
    gap: 1px;
}

.mockup-thead {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    padding: 4px 0 6px;
    border-bottom: 1px solid var(--muted);
    margin-bottom: 4px;
}

.mockup-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    font-size: 11px;
    color: var(--green);
    padding: 5px 0;
    border-bottom: 1px solid rgba(31,82,31,0.4);
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
    overflow: hidden;
}

.mockup-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mr1 { animation-delay: 0.6s; }
.mr2 { animation-delay: 1.1s; }
.mr3 { animation-delay: 1.6s; }
.mr4 { animation-delay: 2.1s; }
.mr5 { animation-delay: 2.6s; }

.mockup-status {
    margin-top: auto;
    padding-top: 8px;
    font-size: 11px;
    color: var(--muted);
}

.mockup-found {
    color: #ff2200;
    text-shadow: 0 0 6px rgba(255,34,0,0.5);
    font-weight: 700;
}

.mockup-meta { color: var(--muted); }

/* ── Feature cards ── */
.land-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.land-feat {
    border: 1px solid #1a3a1a;
    padding: 1.75rem 1.5rem;
    background: rgba(0,10,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.land-feat:nth-child(1) { animation-delay: 0.1s; }
.land-feat:nth-child(2) { animation-delay: 0.25s; }
.land-feat:nth-child(3) { animation-delay: 0.4s; }

.land-feat:hover {
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(51,255,0,0.08);
}

.feat-icon {
    color: var(--green);
    opacity: 0.85;
}

.feat-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green);
    text-shadow: var(--glow-sm);
}

.feat-body {
    font-size: 12px;
    color: #5aa85a;
    line-height: 1.7;
}

/* ── How it works steps ── */
.land-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.land-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    border: 1px solid #1a3a1a;
    background: rgba(0,10,0,0.4);
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.land-step:nth-child(1) { animation-delay: 0.1s; }
.land-step:nth-child(3) { animation-delay: 0.3s; }
.land-step:nth-child(5) { animation-delay: 0.5s; }

.step-num {
    font-size: 28px;
    font-weight: 700;
    color: rgba(51,255,0,0.18);
    line-height: 1;
    letter-spacing: -1px;
}

.step-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green);
    text-shadow: var(--glow-sm);
}

.step-body {
    font-size: 12px;
    color: #5aa85a;
    line-height: 1.7;
}

.step-arrow {
    color: var(--muted);
    font-size: 16px;
    letter-spacing: -4px;
    padding-top: 2.5rem;
    flex-shrink: 0;
}

/* ── CTA section ── */
.land-cta-section {
    text-align: center;
    padding: 100px 40px 80px;
    border-top: 1px solid #1a3a1a;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(51,255,0,0.04) 0%, transparent 100%);
}

.land-cta-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.land-cta-headline {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--green);
    text-shadow: 0 0 20px rgba(51,255,0,0.3);
    margin-bottom: 2.5rem;
}

.land-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.land-launch-btn {
    background: var(--green);
    border: none;
    color: var(--bg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 0 24px rgba(51,255,0,0.35);
}

.land-launch-btn:hover {
    box-shadow: 0 0 40px rgba(51,255,0,0.55);
    transform: translateY(-1px);
}

.land-launch-btn:active {
    transform: translateY(0);
}

.land-pricing-link {
    border: 1px solid var(--muted);
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 13px 24px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.land-pricing-link:hover {
    border-color: var(--green);
    color: var(--green);
}

.land-cta-foot {
    font-size: 11px;
    color: #2a4a2a;
    letter-spacing: 0.05em;
}

/* ── Live-Scan Advantage ── */
.land-livescan-section { background: rgba(51,255,0,0.02); border-top: 1px solid rgba(51,255,0,0.08); border-bottom: 1px solid rgba(51,255,0,0.08); }

.livescan-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }

.livescan-vs {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.livescan-col {
    flex: 1;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(51,255,0,0.12);
}

.livescan-bad {
    border-color: rgba(255,60,60,0.2);
    background: rgba(255,30,30,0.03);
}

.livescan-good {
    border-color: rgba(51,255,0,0.25);
    background: rgba(51,255,0,0.04);
}

.livescan-col-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.livescan-bad .livescan-col-label  { color: #ff4444; }
.livescan-good .livescan-col-label { color: var(--green); }

.livescan-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 13px;
    line-height: 1.5;
}

.ls-x  { color: #ff4444; margin-right: 0.5rem; }
.ls-ok { color: var(--green); margin-right: 0.5rem; text-shadow: var(--glow-sm); }

.livescan-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    font-size: 18px;
    color: var(--amber);
    opacity: 0.6;
    flex-shrink: 0;
}

.livescan-quote {
    margin: 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--amber);
    background: rgba(255,176,0,0.04);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(51,255,0,0.75);
    font-style: normal;
}

.livescan-quote em {
    color: var(--amber);
    font-style: normal;
    text-shadow: 0 0 8px rgba(255,176,0,0.4);
}

/* ── ROI Calculator ── */
.land-roi-section { background: rgba(0,0,0,0.3); }
.roi-wrap { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.75rem; }
.roi-intro { font-size: 15px; color: rgba(51,255,0,0.7); margin: 0; }
.roi-terminal { border: 1px solid rgba(51,255,0,0.2); background: rgba(0,0,0,0.5); }
.roi-term-bar { padding: 0.5rem 1rem; border-bottom: 1px solid rgba(51,255,0,0.12); font-size: 11px; color: rgba(51,255,0,0.4); letter-spacing: 0.1em; }
.roi-term-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.roi-row { display: flex; align-items: baseline; gap: 0.75rem; font-size: 13px; }
.roi-label { color: rgba(51,255,0,0.5); min-width: 160px; }
.roi-eq    { color: rgba(51,255,0,0.3); }
.roi-val   { color: var(--green); }
.roi-amber { color: var(--amber); text-shadow: 0 0 8px rgba(255,176,0,0.35); }
.roi-green { color: var(--green); text-shadow: var(--glow-sm); }
.roi-muted { color: rgba(51,255,0,0.35); font-size: 11px; }
.roi-divider { color: rgba(51,255,0,0.15); font-size: 12px; }
.roi-slider-wrap { display: flex; align-items: center; gap: 0.75rem; margin: 0.25rem 0; }
.roi-range-label { font-size: 11px; color: rgba(51,255,0,0.4); white-space: nowrap; }
.roi-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 2px; background: rgba(51,255,0,0.2); outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; background: var(--amber); border-radius: 0; box-shadow: 0 0 8px rgba(255,176,0,0.5); cursor: pointer; }
.roi-slider::-moz-range-thumb { width: 14px; height: 14px; background: var(--amber); border: none; border-radius: 0; box-shadow: 0 0 8px rgba(255,176,0,0.5); cursor: pointer; }
.roi-verdict { font-size: 13px; padding-top: 0.25rem; }
.roi-cursor { display: inline-block; animation: blink 1s step-end infinite; color: var(--green); }
.roi-foot { font-size: 12px; color: rgba(51,255,0,0.4); margin: 0; line-height: 1.7; border-left: 2px solid rgba(255,176,0,0.3); padding-left: 1rem; }

/* ── Responsive ── */
@media (max-width: 820px) {
    .land-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .land-hero-left { max-width: 100%; }
    .land-bullets { align-items: center; }
    .land-features { grid-template-columns: 1fr; }
    .land-steps { flex-direction: column; }
    .step-arrow { display: none; }
    .land-section { padding: 60px 20px; }
    .livescan-vs { flex-direction: column; }
    .livescan-divider { padding: 0.5rem 0; transform: rotate(90deg); }
}

/* ===== FAQ ===== */
.land-faq { display: flex; flex-direction: column; gap: 2px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid #1a1a1a; background: #0d0d0d; }
.faq-item[open] { border-color: var(--green); }
.faq-q { padding: 18px 22px; cursor: pointer; font-family: var(--font); font-size: 0.9rem; color: var(--green); list-style: none; user-select: none; }
.faq-q::before { content: '> '; opacity: 0.5; }
.faq-item[open] .faq-q { color: #fff; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { padding: 0 22px 18px; font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin: 0; }
