/* ============================================================
   HomeSignal — homepage styles (index.html)
   ============================================================ */

body { background: var(--bg); font-size: 15px; }

/* HERO */
.hero { padding: 72px 48px 56px; text-align: center; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--green-light); border: 1px solid var(--green-mid); color: var(--green-dark); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 24px; letter-spacing: 0.06em; text-transform: uppercase; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: 46px; font-weight: 700; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.03em; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto 40px; line-height: 1.75; font-weight: 400; }

/* SEARCH */
.search-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px; max-width: 660px; margin: 0 auto; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.search-card-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; text-align: left; }
.search-card-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; text-align: left; }
.search-row { display: flex; gap: 10px; }
.search-input { flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13px; color: var(--text); background: var(--bg-secondary); }
.search-input::placeholder { color: var(--text-tertiary); }
.btn-search { background: var(--green); color: #fff; border: none; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.btn-search:hover { opacity: 0.9; }
.search-msg { display: none; margin-top: 14px; font-size: 13px; text-align: left; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--green-light); border: 1px solid var(--green-mid); color: var(--green-dark); }
.search-msg.show { display: block; }

/* NOT LISTED BAND */
.not-listed-band { padding: 24px 48px; background: var(--green-light); border-top: 1px solid var(--green-mid); border-bottom: 1px solid var(--green-mid); }
.not-listed-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 960px; margin: 0 auto; }
.nl-icon { width: 42px; height: 42px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--green-mid); }
.nl-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nl-text { flex: 1; min-width: 200px; }
.nl-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--green-dark); }
.nl-text p { font-size: 13px; color: var(--green-text); line-height: 1.5; }
.nl-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nl-input { border: 1px solid var(--green-mid); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: var(--green-dark); background: var(--bg); width: 220px; }
.nl-input::placeholder { color: var(--green-text); opacity: 0.6; }
.btn-request { background: var(--green); color: #fff; border: none; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.btn-request:hover { opacity: 0.9; }

/* TOPICS */
.topics-section { padding: 28px 48px; border-bottom: 1px solid var(--border); background: var(--bg); }
.topics-label { font-size: 11px; color: var(--text-tertiary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.topics-row { display: flex; gap: 10px; flex-wrap: wrap; }
.topic-pill { display: flex; align-items: center; gap: 7px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 7px 16px; font-size: 13px; color: var(--text-secondary); cursor: pointer; }
.topic-pill svg { width: 15px; height: 15px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.topic-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.topic-pill.special { background: var(--green-light); border-color: var(--green-mid); color: var(--green-dark); font-weight: 500; }
.topic-pill.special svg { stroke: var(--green-dark); }
.topic-pill.special:hover { background: #d4e8c2; }
