/* ══ HOME ══ */
.home-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2rem; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,196,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,196,74,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,196,74,0.06) 0%, transparent 65%);
  top: 10%; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 700px; width: 100%; }
.hero-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 4px; color: var(--accent); text-transform: uppercase; margin-bottom: 1rem; opacity: 0; animation: fadeUp .5s .05s forwards; }
.hero-title { font-family: var(--display); font-size: clamp(48px, 9vw, 80px); font-weight: 700; line-height: .9; letter-spacing: 4px; text-transform: uppercase; margin-bottom: .75rem; opacity: 0; animation: fadeUp .5s .15s forwards; }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 14px; color: var(--text2); font-weight: 300; margin-bottom: 2rem; line-height: 1.7; opacity: 0; animation: fadeUp .5s .25s forwards; }
.search-wrap { opacity: 0; animation: fadeUp .5s .35s forwards; width: 100%; }
.search-box { display: flex; align-items: center; background: var(--bg2); border: 1px solid var(--border2); border-radius: 4px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(232,196,74,0.1); }
.search-prefix { padding: 0 1rem; color: var(--text3); display: flex; align-items: center; }
#search-input { flex: 1; background: none; border: none; outline: none; font-family: var(--mono); font-size: 13px; color: var(--text); padding: 14px 0; }
#search-input::placeholder { color: var(--text3); }
#search-btn { background: var(--accent); border: none; cursor: pointer; padding: 0 1.5rem; height: 50px; font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #0a0c0f; transition: background .15s; }
#search-btn:hover { background: var(--accent2); }
.search-examples { margin-top: .75rem; font-family: var(--mono); font-size: 10px; color: var(--text3); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.ex-tag { color: var(--accent); cursor: pointer; border: 1px solid rgba(232,196,74,0.2); padding: 2px 8px; border-radius: 2px; transition: background .15s; }
.ex-tag:hover { background: rgba(232,196,74,0.08); }
.tip-box { margin-top: .75rem; background: rgba(232,196,74,0.03); border: 1px solid rgba(232,196,74,0.12); border-radius: 3px; padding: 8px 12px; font-family: var(--mono); font-size: 10px; color: var(--text2); line-height: 1.6; text-align: left; }
.tip-label { color: var(--accent); font-weight: 500; margin-right: 4px; }

/* RECENT */
.recent-searches { width: 100%; max-width: 900px; margin-top: 1.5rem; opacity: 0; animation: fadeUp .5s .4s forwards; }
.recent-title { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--text3); text-transform: uppercase; margin-bottom: .5rem; display: flex; align-items: center; gap: 8px; }
.recent-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.recent-list { display: flex; flex-wrap: wrap; gap: 6px; }
.recent-item { display: flex; align-items: center; gap: 7px; background: var(--bg2); border: 1px solid var(--border); border-radius: 3px; padding: 5px 9px; cursor: pointer; transition: border-color .15s; font-size: 12px; }
.recent-item:hover { border-color: var(--border2); }
.recent-item img, .recent-item-av { width: 18px; height: 18px; border-radius: 2px; object-fit: cover; }
.recent-item-av { background: var(--bg4); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 7px; color: var(--text2); }
.recent-item-name { color: var(--text); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-remove { background: none; border: none; cursor: pointer; color: var(--text3); font-size: 12px; line-height: 1; padding: 0; transition: color .15s; margin-left: 2px; }
.recent-remove:hover { color: var(--red); }

/* HOME SECTIONS */
.home-sections { position: relative; z-index: 1; width: 100%; max-width: 900px; margin-top: 2rem; opacity: 0; animation: fadeUp .5s .45s forwards; }
.home-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.home-section-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; }
.home-section-hd { display: flex; align-items: center; justify-content: space-between; padding: .625rem 1rem; border-bottom: 1px solid var(--border); }
.home-section-title { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); }
.home-section-badge { font-family: var(--mono); font-size: 9px; color: var(--green); background: var(--green-bg); border: 1px solid var(--green-border); padding: 1px 6px; border-radius: 2px; animation: pulse-dot 2s infinite; }

/* FEED */
.feed-item { display: flex; align-items: center; gap: 10px; padding: 8px 1rem; border-bottom: 1px solid var(--border); font-size: 12px; cursor: pointer; transition: background .1s; }
.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: rgba(255,255,255,0.02); }
.feed-av { width: 26px; height: 26px; border-radius: 3px; background: var(--bg4); object-fit: cover; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 10px; color: var(--text3); }
.feed-name { color: var(--text); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed-time { font-family: var(--mono); font-size: 9px; color: var(--text3); }
.feed-ban-tag { font-family: var(--mono); font-size: 9px; background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); padding: 1px 5px; border-radius: 2px; white-space: nowrap; }

/* HOME FEATURES */
.home-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; margin-top: 1rem; overflow: hidden; }
.feature { background: var(--bg2); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 10px; }
.feature-icon { width: 28px; height: 28px; border-radius: 3px; background: rgba(232,196,74,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.feature-title { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 2px; }
.feature-desc { font-size: 11px; color: var(--text2); line-height: 1.5; }
