@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ght-bg: #070b14;
  --ght-bg2: #0d1424;
  --ght-ink: #f1f5f9;
  --ght-muted: #94a3b8;
  --ght-faint: #64748b;
  --ght-line: rgba(148, 163, 184, 0.14);
  --ght-card: rgba(15, 23, 42, 0.72);
  --ght-cyan: #22d3ee;
  --ght-cyan-deep: #0891b2;
  --ght-indigo: #818cf8;
  --ght-ok: #a3e635;
  --ght-danger: #fb7185;
  --ght-font: "Outfit", system-ui, sans-serif;
  --ght-display: "Instrument Serif", Georgia, serif;
  --ght-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.75);
  --ght-radius: 20px;
  --ght-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ght-body {
  margin: 0;
  font-family: var(--ght-font);
  color: var(--ght-ink);
  background: var(--ght-bg);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.ght-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(700px 420px at 92% 8%, rgba(129, 140, 248, 0.16), transparent 50%),
    radial-gradient(600px 400px at 70% 100%, rgba(8, 145, 178, 0.08), transparent 45%),
    linear-gradient(180deg, #070b14 0%, #0a1020 100%);
}
a { color: var(--ght-cyan); text-decoration: none; }
a:hover { color: #67e8f9; }
.ght-skip { position: absolute; left: -999px; }
.ght-skip:focus { left: 0.5rem; top: 0.5rem; z-index: 99; background: #fff; color: #000; padding: 0.5rem; }
.ght-wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

/* Nav */
.ght-top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--ght-line);
}
.ght-top-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0;
}
.ght-brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--ght-ink); font-weight: 750; letter-spacing: -0.02em;
}
.ght-brand img {
  width: 42px; height: 42px; border-radius: 0; object-fit: cover;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.ght-brand em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ght-cyan), var(--ght-indigo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ght-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.55rem; align-items: center; }
.ght-nav > a:not(.ght-btn) {
  color: var(--ght-muted); font-weight: 600; font-size: 0.9rem;
  padding: 0.4rem 0.65rem; border-radius: 999px;
}
.ght-nav > a:not(.ght-btn).is-on,
.ght-nav > a:not(.ght-btn):hover {
  color: #fff; background: rgba(148, 163, 184, 0.1);
}
.ght-main { padding: 1.75rem 0 3.5rem; }

/* Buttons */
.ght-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; border: 1px solid var(--ght-line);
  background: rgba(255,255,255,0.04); color: var(--ght-ink);
  font: inherit; font-weight: 700; padding: 0.72rem 1.2rem; cursor: pointer;
  transition: transform 0.18s var(--ght-ease), background 0.18s ease, border-color 0.18s ease;
}
.ght-btn:hover { transform: translateY(-1px); border-color: rgba(34, 211, 238, 0.35); color: #fff; }
.ght-btn-primary {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  border-color: transparent; color: #041016;
  box-shadow: 0 16px 36px -16px rgba(34, 211, 238, 0.65);
}
.ght-btn-primary:hover { color: #041016; filter: brightness(1.06); }
.ght-btn-ghost { background: transparent; }
.ght-btn-sm { padding: 0.42rem 0.9rem; font-size: 0.86rem; }
.ght-btn-danger {
  background: rgba(251, 113, 133, 0.12); color: #fda4af;
  border-color: rgba(251, 113, 133, 0.28);
}

/* Home hero */
.ght-home-hero {
  position: relative;
  border: 1px solid var(--ght-line);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(700px 360px at 85% 20%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(500px 280px at 10% 90%, rgba(99, 102, 241, 0.14), transparent 50%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 20, 0.98));
  box-shadow: var(--ght-shadow);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  margin: 0.35rem 0 2rem;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ght-home-hero { grid-template-columns: 1.05fr 0.95fr; gap: 2.25rem; min-height: 420px; }
}
.ght-kicker {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.28);
  padding: 0.38rem 0.75rem; border-radius: 999px;
}
.ght-home-hero h1 {
  font-family: var(--ght-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0.9rem 0 0.85rem;
  color: #f8fafc;
}
.ght-home-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #67e8f9, #a5b4fc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ght-hero-lead {
  margin: 0 0 1.35rem;
  color: var(--ght-muted);
  font-size: 1.05rem;
  max-width: 34rem;
}
.ght-hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.ght-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 0.5rem 0;
}
.ght-hero-brand img,
.ght-radar-gif {
  display: block;
  width: min(320px, 78%);
  height: auto;
  border: 0;
  background: transparent;
  border-radius: 28px;
}

/* Classic rotating radar - CSS animation (no JS required) */
.ght-radar {
  width: 280px;
  max-width: 72vw;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 28px;
  padding: 14px;
  box-sizing: border-box;
  background: linear-gradient(160deg, #0b1220, #070b14);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow: 0 22px 50px -24px rgba(34, 211, 238, 0.4);
}
.ght-radar-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #070b14;
  border: 1px solid rgba(71, 85, 105, 0.65);
}
.ght-radar-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at center, transparent 0 22%, rgba(71, 85, 105, 0.55) 22.2% 22.7%, transparent 23%),
    radial-gradient(circle at center, transparent 0 40%, rgba(71, 85, 105, 0.5) 40.2% 40.7%, transparent 41%),
    radial-gradient(circle at center, transparent 0 58%, rgba(71, 85, 105, 0.45) 58.2% 58.7%, transparent 59%),
    radial-gradient(circle at center, transparent 0 76%, rgba(71, 85, 105, 0.4) 76.2% 76.8%, transparent 77%);
}

/* Sweep ABOVE the grid so it’s obvious */
.ght-radar-sweep-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  transform-origin: 50% 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(207, 250, 254, 0.95) 0deg,
    rgba(34, 211, 238, 0.75) 8deg,
    rgba(34, 211, 238, 0.35) 28deg,
    rgba(34, 211, 238, 0.12) 55deg,
    rgba(34, 211, 238, 0.03) 90deg,
    transparent 120deg,
    transparent 360deg
  );
  animation: ght-radar-spin 2.8s linear infinite;
  -webkit-animation: ght-radar-spin 2.8s linear infinite;
  will-change: transform;
  mix-blend-mode: screen;
}
.ght-radar-sweep-disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #ecfeff 0deg,
    rgba(103, 232, 249, 0.6) 3deg,
    transparent 6deg,
    transparent 360deg
  );
}

@keyframes ght-radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@-webkit-keyframes ght-radar-spin {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.ght-radar-cross {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.ght-radar-cross-h {
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.9) 15%, rgba(8, 145, 178, 0.9) 85%, transparent);
}
.ght-radar-cross-v {
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: linear-gradient(180deg, transparent, rgba(8, 145, 178, 0.9) 15%, rgba(8, 145, 178, 0.9) 85%, transparent);
}
.ght-radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.2), 0 0 18px rgba(34, 211, 238, 0.95);
  z-index: 6;
  animation: ght-radar-core 1.8s ease-in-out infinite;
}
.ght-radar-blip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #ecfeff;
  box-shadow: 0 0 10px 2px rgba(103, 232, 249, 0.9);
  z-index: 5;
  animation: ght-radar-blip 2.8s ease-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes ght-radar-core {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}
@keyframes ght-radar-blip {
  0%, 100% { transform: scale(0.65); opacity: 0.2; }
  40% { transform: scale(1.15); opacity: 1; }
  70% { opacity: 0.35; }
}

.ght-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: #a5f3fc;
}
.ght-hero-live {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  animation: ght-live-pulse 1.8s ease-out infinite;
}
@keyframes ght-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .ght-radar-core,
  .ght-radar-blip,
  .ght-hero-live,
  .ght-radar-sweep-disc {
    animation: none !important;
  }
  .ght-radar-blip { opacity: 0.85; }
  .ght-radar-sweep-disc { transform: rotate(-30deg); }
}

/* Feature grid */
.ght-section-head { margin: 0 0 1.1rem; }
.ght-section-head h2 {
  margin: 0 0 0.4rem;
  font-family: var(--ght-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}
.ght-section-head p { margin: 0; color: var(--ght-muted); max-width: 38rem; }
.ght-grid-3 {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0 0 2rem;
}
@media (min-width: 760px) { .ght-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.ght-card {
  background: var(--ght-card);
  border: 1px solid var(--ght-line);
  border-radius: var(--ght-radius);
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: var(--ght-shadow);
  backdrop-filter: blur(10px);
  transition: border-color 0.18s ease, transform 0.18s var(--ght-ease);
}
.ght-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-2px);
}
.ght-card .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 800;
  color: #041016; background: var(--ght-cyan);
  margin-bottom: 0.75rem;
}
.ght-card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; letter-spacing: -0.02em; }
.ght-card p { margin: 0; color: var(--ght-muted); font-size: 0.92rem; }

.ght-panel {
  background: var(--ght-card);
  border: 1px solid var(--ght-line);
  border-radius: calc(var(--ght-radius) + 4px);
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow: var(--ght-shadow);
  margin-bottom: 1.15rem;
  backdrop-filter: blur(10px);
}
.ght-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--ght-display);
  font-weight: 400;
  font-size: 1.55rem;
}
.ght-panel .lede { color: var(--ght-muted); margin: 0 0 1rem; max-width: 40rem; }

.ght-flash {
  padding: 0.8rem 1rem; border-radius: 14px; margin-bottom: 1rem;
  font-size: 0.92rem; border: 1px solid var(--ght-line);
}
.ght-flash-ok { background: rgba(163, 230, 53, 0.1); color: #d9f99d; border-color: rgba(163,230,53,0.25); }
.ght-flash-err { background: rgba(251, 113, 133, 0.1); color: #fda4af; border-color: rgba(251,113,133,0.28); }
.ght-flash-info { background: rgba(34, 211, 238, 0.1); color: #a5f3fc; border-color: rgba(34,211,238,0.25); }

.ght-form label {
  display: block; font-size: 0.74rem; font-weight: 700;
  color: var(--ght-faint); margin: 0 0 0.3rem; letter-spacing: 0.02em;
}
.ght-form input, .ght-form select, .ght-form textarea {
  width: 100%; margin: 0 0 0.9rem; padding: 0.75rem 0.9rem;
  border-radius: 14px; border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.55); color: var(--ght-ink); font: inherit;
}
.ght-form input:focus, .ght-form select:focus, .ght-form textarea:focus {
  outline: none; border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}
.ght-form textarea { min-height: 100px; resize: vertical; }
.ght-form-row { display: grid; gap: 0.75rem; }
@media (min-width: 640px) {
  .ght-form-row-2 { grid-template-columns: 1fr 1fr; }
  .ght-form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.ght-table { width: 100%; border-collapse: collapse; }
.ght-table th {
  text-align: left; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ght-faint); padding: 0.55rem; border-bottom: 1px solid var(--ght-line);
}
.ght-table td {
  padding: 0.8rem 0.55rem; border-bottom: 1px solid rgba(148,163,184,0.08); vertical-align: top;
}
.ght-table th.ght-sort {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.ght-table th.ght-sort:hover { color: var(--ght-cyan); }
.ght-table th.ght-sort::after {
  content: ' ↕';
  opacity: 0.35;
  font-size: 0.75em;
}
.ght-table th.ght-sort.is-asc::after { content: ' ↑'; opacity: 1; color: var(--ght-cyan); }
.ght-table th.ght-sort.is-desc::after { content: ' ↓'; opacity: 1; color: var(--ght-cyan); }
.ght-pill {
  display: inline-flex; align-items: center; padding: 0.16rem 0.55rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 750;
}
.ght-pill-ok { background: rgba(163,230,53,0.12); color: #d9f99d; }
.ght-pill-warn { background: rgba(251,191,36,0.12); color: #fde68a; }
.ght-pill-danger { background: rgba(248,113,113,0.14); color: #fecaca; }
.ght-pill-mute { background: rgba(148,163,184,0.12); color: #94a3b8; }
.ght-risk-bar {
  display: inline-flex; gap: 3px; align-items: center; vertical-align: middle;
}
.ght-risk-bar i {
  width: 8px; height: 12px; border-radius: 2px;
  background: rgba(148,163,184,0.25);
  display: inline-block;
}
.ght-risk-bar i.is-on { background: #fbbf24; }
.ght-risk-bar[data-score="4"] i.is-on { background: #fb923c; }
.ght-risk-bar[data-score="5"] i.is-on { background: #f87171; }
.ght-risk-bar[data-score="1"] i.is-on { background: #a3e635; }
.ght-risk-bar[data-score="2"] i.is-on { background: #84cc16; }

.ght-want-head {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  justify-content: space-between; align-items: flex-start; margin-bottom: 1.1rem;
}
.ght-want-head h1 {
  margin: 0; font-family: var(--ght-display); font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 400;
}
.ght-find {
  display: grid; gap: 0.75rem; padding: 1.05rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.1);
}
@media (min-width: 720px) {
  .ght-find { grid-template-columns: 1fr auto; align-items: start; }
}
.ght-find h3 { margin: 0 0 0.3rem; font-size: 1.02rem; }
.ght-find .meta { color: var(--ght-faint); font-size: 0.82rem; }
.ght-find .price { font-size: 1.25rem; font-weight: 800; color: var(--ght-cyan); white-space: nowrap; }
.ght-find .actions { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.ght-empty { text-align: center; padding: 2.2rem 1rem; color: var(--ght-muted); }

/* -- Pro results / deal cards -- */
.ght-results { padding: 1.15rem 1.2rem 1.35rem; }
.ght-results-head {
  display: flex; flex-wrap: wrap; gap: 0.85rem 1.25rem;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(148,163,184,0.12);
}
.ght-results-title {
  margin: 0;
  font-family: var(--ght-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.ght-results-lede {
  margin: 0.3rem 0 0;
  color: var(--ght-faint);
  font-size: 0.86rem;
  max-width: 36rem;
}
.ght-results-tools {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  align-items: center; justify-content: flex-end;
}
.ght-filter-pills {
  display: inline-flex; flex-wrap: wrap; gap: 0.3rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148,163,184,0.12);
}
.ght-filter-pill {
  display: inline-flex; align-items: center;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--ght-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.ght-filter-pill:hover { color: #fff; background: rgba(148,163,184,0.1); }
.ght-filter-pill.is-on {
  color: #041016;
  background: linear-gradient(135deg, #22d3ee, #818cf8);
}

.ght-deal-list { display: grid; gap: 0.75rem; }
.ght-deal {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.14);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(10, 16, 32, 0.88));
  box-shadow: 0 18px 40px -32px rgba(0,0,0,0.9);
  transition: border-color 0.2s ease, transform 0.2s var(--ght-ease), box-shadow 0.2s ease;
}
.ght-deal:hover {
  border-color: rgba(34, 211, 238, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 22px 48px -28px rgba(34, 211, 238, 0.28);
}
.ght-deal.is-new {
  border-color: rgba(163, 230, 53, 0.28);
  background:
    radial-gradient(500px 120px at 0% 0%, rgba(163, 230, 53, 0.08), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(10, 16, 32, 0.88));
}
.ght-deal.is-reserve {
  border-color: rgba(251, 191, 36, 0.28);
  background:
    radial-gradient(480px 120px at 100% 0%, rgba(251, 191, 36, 0.08), transparent 55%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(10, 16, 32, 0.88));
}
.ght-deal.is-ignored { opacity: 0.72; }
@media (min-width: 760px) {
  .ght-deal {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 1rem 1.15rem;
  }
}
.ght-deal-rank {
  font-family: var(--ght-display);
  font-size: 1.35rem;
  color: rgba(148,163,184,0.35);
  line-height: 1;
  min-width: 1.8rem;
  padding-top: 0.15rem;
}
.ght-deal-body { min-width: 0; }
.ght-deal-topline {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.45rem;
}
.ght-deal-badges {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  align-items: center;
}
.ght-deal-chip {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ght-muted);
  background: rgba(148,163,184,0.1);
  border: 1px solid rgba(148,163,184,0.1);
}
.ght-deal-chip.is-source {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.18);
}
.ght-deal-chip.is-new {
  color: #d9f99d;
  background: rgba(163, 230, 53, 0.12);
  border-color: rgba(163, 230, 53, 0.22);
}
.ght-deal-chip.is-warn {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.22);
}
.ght-deal-chip.is-mute { color: var(--ght-faint); }
.ght-deal-chip.is-loc::before { content: "📍 "; font-size: 0.7em; }

.ght-deal-match {
  --pct: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: conic-gradient(#22d3ee calc(var(--pct) * 1%), rgba(148,163,184,0.14) 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.ght-deal-match.is-hot { background: conic-gradient(#a3e635 calc(var(--pct) * 1%), rgba(148,163,184,0.14) 0); }
.ght-deal-match.is-mid { background: conic-gradient(#22d3ee calc(var(--pct) * 1%), rgba(148,163,184,0.14) 0); }
.ght-deal-match.is-low { background: conic-gradient(#94a3b8 calc(var(--pct) * 1%), rgba(148,163,184,0.14) 0); }
.ght-deal-match::before {
  content: "";
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0b1220;
  grid-area: 1 / 1;
}
.ght-deal-match span {
  grid-area: 1 / 1;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.ght-deal-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #f8fafc;
}
.ght-deal-host {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--ght-faint);
  font-weight: 600;
}
.ght-deal-desc {
  margin: 0.5rem 0 0;
  color: var(--ght-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.ght-deal-ai {
  margin-top: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.14);
  color: #a5f3fc;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}
.ght-deal-ai-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(165, 243, 252, 0.7);
  margin-bottom: 0.15rem;
  font-weight: 750;
}
.ght-deal-actions {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 0.85rem;
  align-items: center;
}
.ght-deal-actions form { margin: 0; display: inline-flex; }

.ght-deal-side {
  text-align: right;
  min-width: 7.5rem;
  padding-top: 0.1rem;
}
.ght-deal-price {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #67e8f9;
  line-height: 1.1;
  white-space: nowrap;
}
.ght-deal-match-label {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ght-faint);
  font-weight: 700;
}
@media (max-width: 759px) {
  .ght-deal-side {
    text-align: left;
    display: flex; align-items: baseline; gap: 0.55rem;
    min-width: 0;
  }
  .ght-deal-match-label { margin-top: 0; }
  .ght-deal-rank { display: none; }
}

.ght-deal-banner {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  align-items: center; justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  margin-bottom: 0.15rem;
}
.ght-deal-banner p {
  margin: 0;
  color: var(--ght-muted);
  font-size: 0.88rem;
  flex: 1;
  min-width: 12rem;
}
.ght-empty-deals {
  display: grid; gap: 0.35rem; justify-items: center;
  padding: 2.6rem 1.2rem;
  border-radius: 16px;
  border: 1px dashed rgba(148,163,184,0.18);
  background: rgba(2, 6, 23, 0.25);
}
.ght-empty-deals strong { color: var(--ght-ink); font-size: 1.05rem; }
.ght-empty-deals span { color: var(--ght-faint); font-size: 0.9rem; }
.ght-empty-deals em { color: var(--ght-cyan); font-style: normal; font-weight: 700; }

/* Market snapshot (results) */
.ght-market-snap {
  margin: 0.85rem 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(15, 23, 42, 0.35));
  display: grid;
  gap: 0.85rem;
}
.ght-market-snap.is-early {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(148, 163, 184, 0.06);
}
.ght-market-snap-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ght-cyan);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ght-market-snap.is-early .ght-market-snap-kicker { color: var(--ght-faint); }
.ght-market-snap-headline {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ght-ink);
  line-height: 1.35;
}
.ght-market-snap-detail {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--ght-muted);
  line-height: 1.45;
}
.ght-market-snap-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .ght-market-snap-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.ght-market-snap-stats div {
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.ght-market-snap-stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--ght-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.ght-market-snap-stats strong {
  font-size: 0.98rem;
  color: var(--ght-cyan);
  font-weight: 800;
}
.ght-market-snap-buckets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.ght-market-bucket {
  font-size: 0.78rem;
  color: var(--ght-muted);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
}
.ght-market-bucket[data-key="around"] { background: rgba(34, 211, 238, 0.12); color: #a5f3fc; }
.ght-market-bucket[data-key="under"] { background: rgba(134, 239, 172, 0.12); color: #bbf7d0; }
.ght-market-bucket[data-key="over"] { background: rgba(252, 165, 165, 0.12); color: #fecaca; }
.ght-market-snap-nudge {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: var(--ght-ink);
  font-weight: 600;
  line-height: 1.4;
}
.ght-market-snap-nudge.is-aligned {
  color: var(--ght-muted);
  font-weight: 500;
}
.ght-market-snap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

/* Close-match reserves offer */
.ght-reserve-offer {
  margin: 0.85rem 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(15, 23, 42, 0.35));
}
.ght-reserve-offer-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fde68a;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ght-reserve-offer-headline {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ght-ink);
  line-height: 1.35;
}
.ght-reserve-offer-detail {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.86rem;
  color: var(--ght-muted);
  line-height: 1.45;
}
.ght-reserve-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.ght-find-reserve {
  background: rgba(251, 191, 36, 0.04);
  border-radius: 12px;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  margin: 0.25rem 0;
}

.ght-auth { max-width: 26rem; margin: 1.25rem auto; }
.ght-foot {
  border-top: 1px solid var(--ght-line);
  padding: 1.6rem 0 2.2rem; margin-top: 1rem;
  color: var(--ght-faint); font-size: 0.88rem;
}
.ght-foot-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.ght-foot strong { color: #e2e8f0; }
.ght-foot-links { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

@media (max-width: 640px) {
  .ght-nav .ght-btn-sm { padding: 0.38rem 0.75rem; }
  .ght-home-hero { border-radius: 22px; }
}

/* KPI + hints */
.ght-kpi h3 { margin: 0; font-size: 0.78rem; color: var(--ght-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.ght-kpi p { margin: 0.35rem 0 0; font-size: 1.6rem; font-weight: 800; }
.ght-hint { margin: 0.35rem 0 0.85rem; font-size: 0.82rem; color: var(--ght-faint); }
.ght-stop-rules { margin: 0.5rem 0 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--ght-line); border-radius: 14px; background: rgba(2,6,23,0.35); }
.ght-stop-rules summary { cursor: pointer; font-weight: 700; color: var(--ght-ink); }
.ght-stopped-banner { margin: 0.55rem 0 0; color: var(--ght-danger); font-weight: 650; font-size: 0.92rem; }
.ght-stop-progress { display: grid; gap: 0.85rem; }
.ght-stop-row .ght-stop-label { font-weight: 650; margin-bottom: 0.35rem; }
.ght-stop-bar { height: 8px; border-radius: 999px; background: rgba(148,163,184,0.15); overflow: hidden; }
.ght-stop-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--ght-cyan), var(--ght-indigo)); border-radius: 999px; }
.ght-stop-row.is-done .ght-stop-bar > span { background: var(--ght-ok); }
.ght-stop-meta { margin-top: 0.3rem; font-size: 0.82rem; color: var(--ght-muted); }
.ght-btn:disabled, .ght-btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* Admin console */
.ght-admin .ght-admin-top {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ght-line);
}
/* ONE row on desktop: brand | scrollable links | Site/Logout */
.ght-admin-top-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  min-width: 0;
}
.ght-admin-bar-right {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  margin-left: auto;
}
.ght-admin .ght-brand {
  flex-shrink: 0;
  gap: 0.45rem;
}
.ght-admin .ght-brand img {
  width: 32px;
  height: 32px;
}
.ght-admin-tag {
  margin-left: 0.25rem; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0b1220; background: var(--ght-cyan); padding: 0.15rem 0.4rem; border-radius: 999px;
}
.ght-admin-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.ght-admin-nav a {
  color: var(--ght-muted);
  font-weight: 650;
  font-size: 0.78rem;
  padding: 0.32rem 0.45rem;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ght-admin-nav a.is-on, .ght-admin-nav a:hover { color: var(--ght-ink); background: rgba(34,211,238,0.08); }
.ght-admin-nav-extra { display: none !important; }
.ght-admin-user { display: none; }
.ght-admin .ght-nav-toggle { display: none; }
.ght-admin-main { padding: 1.25rem 0 2.5rem; }
.ght-admin-foot { border-top: 1px solid var(--ght-line); padding: 1rem 0 1.5rem; color: var(--ght-faint); font-size: 0.82rem; }
.ght-admin-grid { display: grid; gap: 0.85rem; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); margin: 1rem 0 1.25rem; }
.ght-admin-grid .ght-kpi {
  background: var(--ght-card);
  border: 1px solid var(--ght-line);
  border-radius: 16px;
  padding: 1.05rem 1.1rem;
  box-shadow: var(--ght-shadow);
}
.ght-admin-grid .ght-kpi span {
  display: block;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ght-faint);
  margin-bottom: 0.4rem;
}
.ght-admin-grid .ght-kpi strong {
  font-family: var(--ght-display);
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--ght-ink);
}
.ght-admin h1 {
  margin: 0 0 0.35rem;
  font-family: var(--ght-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  letter-spacing: -0.03em;
}
.ght-admin-code {
  display: block;
  padding: 0.75rem;
  background: #0b1220;
  color: #e2e8f0;
  border-radius: 12px;
  overflow: auto;
  font-size: 0.82rem;
  border: 1px solid var(--ght-line);
}
.ght-badge-ok { display: inline-flex; padding: 0.12rem 0.45rem; border-radius: 999px; background: rgba(163,230,53,0.14); color: #d9f99d; font-size: 0.75rem; font-weight: 750; }
.ght-badge-miss { display: inline-flex; padding: 0.12rem 0.45rem; border-radius: 999px; background: rgba(251,113,133,0.14); color: #fda4af; font-size: 0.75rem; font-weight: 750; }
.ght-env-table td { padding: 0.45rem 0.35rem; border-bottom: 1px solid rgba(148,163,184,0.08); font-size: 0.88rem; }
.ght-lede { color: var(--ght-muted); margin: 0.25rem 0 1rem; }

/* Admin tablet/phone: brand + hamburger on one row; menu drops below when open */
@media (max-width: 1100px) {
  .ght-admin-top-inner {
    flex-wrap: wrap;
  }
  .ght-admin .ght-nav-toggle { display: inline-flex; }
  .ght-admin-site-btn,
  .ght-admin-logout-btn { display: none; }
  .ght-admin-nav {
    display: none;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    gap: 0.15rem;
    padding: 0.45rem 0 0.1rem;
    border-top: 1px solid var(--ght-line);
    order: 3;
  }
  body.ght-nav-open .ght-admin-nav { display: flex; }
  .ght-admin-nav a {
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .ght-admin-nav-extra { display: block !important; }
}

/* Hunt progress overlay (MTN-style) */
body.ght-building { overflow: hidden; }
.ght-build-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 1.25rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}
.ght-build-overlay[hidden] { display: none !important; }
.ght-build-card {
  width: min(440px, 100%);
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  border-radius: 22px;
  padding: 1.6rem 1.45rem 1.35rem;
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(34, 211, 238, 0.22);
  text-align: center;
  color: var(--ght-ink);
}
.ght-build-spinner {
  width: 2.4rem; height: 2.4rem; margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.25);
  border-top-color: var(--ght-cyan);
  animation: ght-spin 0.8s linear infinite;
}
@keyframes ght-spin { to { transform: rotate(360deg); } }
.ght-build-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--ght-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ght-ink);
}
#ght-hunt-step {
  margin: 0 0 1rem;
  color: var(--ght-cyan);
  font-weight: 700;
  font-size: 0.95rem;
}
.ght-build-steps {
  list-style: none; margin: 0; padding: 0;
  text-align: left;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.ght-build-steps-live {
  max-height: min(48vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}
.ght-build-steps li {
  font-size: 0.82rem;
  color: var(--ght-faint);
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  border: 1px solid transparent;
  word-break: break-word;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.ght-build-steps li.is-done {
  color: #d9f99d;
  background: rgba(163, 230, 53, 0.1);
}
.ght-build-steps li.is-on {
  color: var(--ght-ink);
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.28);
  font-weight: 700;
}
.ght-build-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--ght-faint);
}

.ght-row-actions {
  display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center;
}
.ght-row-actions form { display: inline; margin: 0; }

.ght-build-card-wide { width: min(640px, 100%); text-align: left; }
.ght-build-card-wide h2,
.ght-build-card-wide #ght-hunt-step,
.ght-build-card-wide #ght-create-step,
.ght-build-card-wide #ght-manual-step,
.ght-build-card-wide .ght-build-note { text-align: center; }
.ght-build-card-wide #ght-hunt-step,
.ght-build-card-wide #ght-create-step,
.ght-build-card-wide #ght-manual-step {
  max-height: 3.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.ght-narrative { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.ght-narrative li {
  font-size: 0.88rem; color: var(--ght-muted);
  padding: 0.45rem 0.7rem; border-radius: 10px;
  background: rgba(2,6,23,0.35); border: 1px solid var(--ght-line);
}
.ght-narrative-at { color: var(--ght-cyan); font-weight: 700; margin-right: 0.4rem; font-variant-numeric: tabular-nums; }

.ght-narrative-summary {
  cursor: pointer; list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  align-items: center; justify-content: space-between;
  font-weight: 750; font-size: 1.05rem; color: var(--ght-ink);
}
.ght-narrative-summary::-webkit-details-marker { display: none; }
.ght-narrative-summary::before {
  content: '▸'; margin-right: 0.35rem; color: var(--ght-cyan);
  display: inline-block; transition: transform 0.15s ease;
}
details#hunt-narrative[open] > .ght-narrative-summary::before { transform: rotate(90deg); }

/* -- Mobile / touch -- */
html, body.ght-body { overflow-x: hidden; }
.ght-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.ght-table-scroll > .ght-table { min-width: 640px; }
.ght-panel[style*="overflow"] { -webkit-overflow-scrolling: touch; }
.ght-table-cards { min-width: 0; }

.ght-nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--ght-line);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.ght-nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ght-ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}
body.ght-nav-open .ght-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.ght-nav-open .ght-nav-toggle span:nth-child(2) { opacity: 0; }
body.ght-nav-open .ght-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ght-form label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ght-muted);
  letter-spacing: 0;
  margin: 0.35rem 0 0.75rem;
  line-height: 1.4;
}
.ght-form label:has(input[type="checkbox"]) input {
  width: auto;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .ght-wrap { width: min(1120px, calc(100% - 1.25rem)); }
  .ght-main { padding: 1.15rem 0 2.5rem; }
  .ght-panel { padding: 1.05rem 0.95rem 1.15rem; border-radius: 18px; }
  .ght-card { padding: 1.05rem; }

  .ght-nav-toggle { display: inline-flex; }
  .ght-top-inner { flex-wrap: wrap; gap: 0.65rem; }
  .ght-brand span { font-size: 0.95rem; }
  .ght-brand img { width: 36px; height: 36px; }
  .ght-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.35rem 0 0.55rem;
    border-top: 1px solid var(--ght-line);
  }
  body.ght-nav-open .ght-nav { display: flex; }
  .ght-nav > a:not(.ght-btn) {
    padding: 0.72rem 0.85rem;
    font-size: 1rem;
    border-radius: 12px;
  }
  .ght-nav .ght-btn {
    width: 100%;
    margin-top: 0.25rem;
    min-height: 2.75rem;
  }

  .ght-admin-brand-text { font-size: 0.92rem; }
  .ght-admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ght-admin-grid .ght-kpi strong { font-size: 1.35rem; }

  .ght-home-hero {
    padding: 1.25rem 1.1rem 1.4rem;
    border-radius: 20px;
    margin-bottom: 1.35rem;
  }
  .ght-home-hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); margin: 0.7rem 0 0.65rem; }
  .ght-hero-lead { font-size: 0.98rem; margin-bottom: 1rem; }
  .ght-hero-actions .ght-btn { min-height: 2.75rem; flex: 1 1 auto; }
  .ght-hero-brand img { width: min(200px, 58%); }
  .ght-radar { width: min(210px, 70vw); }

  .ght-grid-3 { gap: 0.75rem; }
  .ght-want-head { gap: 0.65rem; }
  .ght-want-head > div:last-child { width: 100%; }
  .ght-want-head .ght-btn { min-height: 2.5rem; }

  .ght-form input,
  .ght-form select,
  .ght-form textarea {
    font-size: 16px; /* stop iOS zoom on focus */
    padding: 0.8rem 0.85rem;
    margin-bottom: 0.8rem;
  }
  .ght-btn { min-height: 2.6rem; }
  .ght-btn-sm { min-height: 2.25rem; }
  .ght-row-actions { gap: 0.4rem; }
  .ght-row-actions .ght-btn { flex: 1 1 auto; }

  /* Hunt list → stacked cards on phones */
  .ght-table-cards { min-width: 0 !important; }
  .ght-table-scroll:has(.ght-table-cards) { overflow: visible; }
  .ght-table-cards thead { display: none; }
  .ght-table-cards,
  .ght-table-cards tbody { display: block; width: 100%; }
  .ght-table-cards tr {
    display: block;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid var(--ght-line);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
    margin: 0 0 0.75rem;
  }
  .ght-table-cards td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    border: 0;
    padding: 0.4rem 0;
    white-space: normal !important;
  }
  .ght-table-cards td::before {
    content: attr(data-label);
    flex: 0 0 5.5rem;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ght-faint);
    padding-top: 0.15rem;
  }
  .ght-table-cards td[data-label="Want"],
  .ght-table-cards td[data-label="Message"] {
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 0.65rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(148,163,184,0.1);
  }
  .ght-table-cards td[data-label="Want"]::before,
  .ght-table-cards td[data-label="Message"]::before { content: none; }
  .ght-table-cards td[data-label="Actions"] {
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.65rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(148,163,184,0.1);
  }
  .ght-table-cards td[data-label="Actions"]::before { margin-bottom: 0.15rem; }
  .ght-table-cards td[data-label="Actions"] > .ght-row-actions { width: 100%; }

  .ght-build-overlay {
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
      max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    align-items: end;
  }
  @media (min-height: 700px) {
    .ght-build-overlay { align-items: center; }
  }
  .ght-build-card,
  .ght-build-card-wide {
    width: 100%;
    max-height: min(92dvh, 92vh);
    overflow: auto;
    padding: 1.2rem 1rem 1.1rem;
    border-radius: 18px;
  }
  .ght-build-steps-live { max-height: min(42dvh, 280px); }
  .ght-build-card h2 { font-size: 1.25rem; }

  .ght-find .price { white-space: normal; }
  .ght-auth { margin: 0.5rem auto; max-width: none; }
  .ght-foot { padding: 1.25rem 0 calc(1.6rem + env(safe-area-inset-bottom)); }
  .ght-foot-inner { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .ght-admin-grid { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .ght-admin-grid .ght-kpi { padding: 0.85rem 0.8rem; }
  .ght-grid-3 { grid-template-columns: 1fr; }
  .ght-kpi p { font-size: 1.35rem; }
  .ght-brand span { max-width: 11rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
