/* Aetiyya Tools Launcher — placeholder hub.
   Plain CSS, no build, no deps (ADR 0001). Light + dark via prefers-color-scheme. */

:root {
  --bg: #f4ecd8;            /* warm parchment */
  --bg-card: #fbf6e9;
  --bg-card-soon: #efe7d3;
  --ink: #2c2418;
  --ink-soft: #6b5d45;
  --line: #e2d6ba;
  --accent: #8a5a2b;       /* warm brown */
  --accent-ink: #5c3a17;
  --live: #3f7a3f;
  --live-bg: #e3f0df;
  --soon: #8a6d2b;
  --soon-bg: #ece0c5;
  --shadow: 0 1px 2px rgba(44, 36, 24, .06), 0 6px 18px rgba(44, 36, 24, .08);
  --shadow-hover: 0 2px 4px rgba(44, 36, 24, .10), 0 12px 30px rgba(44, 36, 24, .16);
  --radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #181410;
    --bg-card: #221c14;
    --bg-card-soon: #1d1810;
    --ink: #efe7d6;
    --ink-soft: #b6a786;
    --line: #352b1f;
    --accent: #d9a566;
    --accent-ink: #e8c79a;
    --live: #8fce8a;
    --live-bg: #1f2e1d;
    --soon: #d8b86a;
    --soon-bg: #2a2415;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 18px rgba(0, 0, 0, .35);
    --shadow-hover: 0 2px 4px rgba(0, 0, 0, .4), 0 12px 30px rgba(0, 0, 0, .5);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(1.5rem, 4vw, 4rem) 1.25rem 2rem;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.site-header { text-align: center; max-width: 40rem; }

.eyebrow {
  margin: 0 0 .65rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  letter-spacing: .01em;
  color: var(--accent-ink);
}

.tagline {
  margin: .8rem auto 0;
  max-width: 32rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

main { width: 100%; max-width: 52rem; }

.tool-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 100%;
  padding: 1.4rem 1.4rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

a.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

a.tool-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.tool-card--soon {
  opacity: .82;
  background: var(--bg-card-soon);
  cursor: default;
}

.tool-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.tool-card__name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.tool-card__desc { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.tool-card__url {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .01em;
}

.status {
  flex: none;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status--live { color: var(--live); background: var(--live-bg); }
.status--soon { color: var(--soon); background: var(--soon-bg); }

.site-footer {
  margin-top: auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: .82rem;
  max-width: 36rem;
}

.site-footer p { margin: 0; }
