/* ============================================================
   Climent Media — AI Assistants pages
   Extends the main styles.css (tokens + nav + footer + buttons).
   Only adds: status badges, directory grid, landing layout.
   ============================================================ */

:root {
  --st-live: #35d07f;
  --st-live-soft: rgba(53, 208, 127, 0.12);
  --st-beta: var(--accent);
  --st-beta-soft: rgba(255, 92, 0, 0.12);
  --st-build: #ffb020;
  --st-build-soft: rgba(255, 176, 32, 0.12);
  --st-plan: #8a8a86;
  --st-plan-soft: rgba(255, 255, 255, 0.06);
}

/* ---------- Status badge ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status--live { color: var(--st-live); background: var(--st-live-soft); border-color: rgba(53,208,127,0.3); }
.status--beta { color: var(--st-beta); background: var(--st-beta-soft); border-color: rgba(255,92,0,0.35); }
.status--build { color: var(--st-build); background: var(--st-build-soft); border-color: rgba(255,176,32,0.32); }
.status--plan { color: var(--st-plan); background: var(--st-plan-soft); border-color: var(--border); }
.status--live::before { animation: st-pulse 2.2s infinite; }

@keyframes st-pulse {
  0% { box-shadow: 0 0 0 0 rgba(53,208,127,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(53,208,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,208,127,0); }
}

/* ---------- Directory ---------- */
.dir {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem clamp(1.2rem, 5vw, 3rem) 5rem;
}
.dir-head { max-width: 680px; margin-bottom: 3rem; }
.dir-head h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.dir-head .accent-word { color: var(--accent); }
.dir-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }

.dir-legend { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }

.assist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}

.assist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.assist-card:hover { transform: translateY(-4px); border-color: rgba(255,92,0,0.35); }
.assist-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at 50% -20%, rgba(255,92,0,0.09), transparent 55%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.assist-card:hover::after { opacity: 1; }

.assist-card__top { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 1rem; }
.assist-card__icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 11px; color: var(--accent);
  background: rgba(255,92,0,0.09); border: 1px solid rgba(255,92,0,0.22);
}
.assist-card__icon svg { width: 22px; height: 22px; }
.assist-card__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem; }
.assist-card h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.assist-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; flex-grow: 1; }
.assist-card__go { margin-top: 1.1rem; font-size: 0.85rem; font-weight: 700; color: var(--accent); }

/* ---------- Landing ---------- */
.lp { max-width: 860px; margin: 0 auto; padding: 8rem clamp(1.2rem, 5vw, 2rem) 4rem; }
.lp-back { display: inline-block; color: var(--muted); font-size: 0.88rem; margin-bottom: 2rem; text-decoration: none; }
.lp-back:hover { color: var(--accent); }

.lp-hero { border-bottom: 1px solid var(--border); padding-bottom: 2.4rem; margin-bottom: 2.4rem; }
.lp-hero__top { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.lp-hero__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 13px; color: var(--accent);
  background: rgba(255,92,0,0.09); border: 1px solid rgba(255,92,0,0.22);
}
.lp-hero__icon svg { width: 28px; height: 28px; }
.lp p.lp-cat { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0; }
.lp h1 { font-size: clamp(2.1rem, 5.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; margin-top: 0.4rem; }
.lp-tagline { color: var(--muted); font-size: 1.12rem; margin-top: 1rem; max-width: 640px; }

.lp h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; margin: 2.6rem 0 1rem; }
.lp p { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.lp strong { color: var(--text); }

.feat-list { list-style: none; display: grid; gap: 0.7rem; margin: 0.5rem 0 1rem; }
.feat-list li { position: relative; padding-left: 1.6rem; color: var(--muted); font-size: 0.98rem; }
.feat-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }

.construction {
  display: flex; align-items: flex-start; gap: 0.9rem;
  border: 1px solid rgba(255,176,32,0.32);
  background:
    repeating-linear-gradient(45deg, rgba(255,176,32,0.05) 0 12px, transparent 12px 24px),
    rgba(255,176,32,0.04);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
}
.construction svg { width: 22px; height: 22px; color: var(--st-build); flex-shrink: 0; margin-top: 2px; }
.construction p { margin: 0; color: var(--text); font-size: 0.95rem; }
.construction strong { color: var(--st-build); }

.offer {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem;
  margin-top: 2.4rem;
  background:
    radial-gradient(500px circle at 30% -20%, rgba(255,92,0,0.1), transparent 60%),
    var(--surface);
}
.offer h2 { margin-top: 0; }
.offer p { margin-bottom: 1.2rem; }
.offer .btn-primary { margin-top: 0.4rem; }

.spec-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-top: 1rem; color: var(--muted); font-size: 0.85rem; }
.spec-row span { display: inline-flex; align-items: center; gap: 0.4rem; }
.spec-row b { color: var(--text); font-weight: 600; }

@media (max-width: 640px) {
  .dir, .lp { padding-top: 6.5rem; }
}
