/* Throne Path — Guardian Ops draft site
   Dark-green / black salt industrial. Mobile-first. No frameworks. */

:root {
  --bg: #0a0f0c;
  --bg-elev: #121a15;
  --bg-card: #152019;
  --border: #24332a;
  --border-strong: #2f4638;
  --text: #e6efe8;
  --text-muted: #8fa396;
  --accent: #2d6a4f;
  --accent-bright: #40916c;
  --accent-dim: #1b4332;
  --warn: #c9a227;
  --danger: #b33a3a;
  --done: #40916c;
  --focus: #74c69d;
  --radius: 6px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 960px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* DRAFT banner */
.draft-banner {
  background: var(--warn);
  color: #1a1400;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  flex-shrink: 0;
}

/* Header / nav */
.site-header {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-bottom-color: var(--accent-bright);
  outline: none;
}

.nav a[aria-current="page"] {
  color: var(--accent-bright);
  border-bottom-color: var(--accent-bright);
}

/* Main */
main {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  font-weight: 750;
}

h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
}

h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

p { margin: 0 0 1rem; color: var(--text); }

.lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }

/* Hero */
.hero {
  padding: 0.5rem 0 1.5rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
}

/* Cards / lanes */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lane-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--accent-dim);
  color: var(--accent-bright);
  border-radius: 3px;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}

/* Loop steps */
.loop {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.loop li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.75rem;
  border-left: 2px solid var(--border-strong);
  margin-left: 0.7rem;
}

.loop li:last-child { border-left-color: transparent; }

.loop li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 0.85rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  border: 1px solid;
}

.chip-red {
  background: rgba(179, 58, 58, 0.2);
  border-color: var(--danger);
  color: #f0a0a0;
}

.chip-do {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--warn);
  color: #e8d48a;
}

.chip-done {
  background: rgba(64, 145, 108, 0.2);
  border-color: var(--done);
  color: #95d5b2;
}

/* Buttons / CTAs */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-bright);
}

.btn-primary:hover { background: var(--accent-bright); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.btn-block { width: 100%; }

/* Forms */
.form-panel {
  max-width: 28rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--accent-bright);
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.checkbox-row input {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--accent-bright);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: none;
}

.form-status.show {
  display: block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--warn);
  color: #e8d48a;
}

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
}

.price-table th {
  background: var(--accent-dim);
  color: var(--accent-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table td:last-child,
.price-table th:last-child {
  font-family: var(--mono);
  white-space: nowrap;
}

.price-placeholder {
  color: var(--warn);
  font-weight: 700;
}

.include-list,
.exclude-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.include-list li { margin-bottom: 0.4rem; }
.exclude-list li { margin-bottom: 0.4rem; color: var(--text-muted); }

.notice {
  background: var(--bg-elev);
  border-left: 3px solid var(--warn);
  padding: 0.85rem 1rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

.notice strong { color: var(--warn); }

/* Footer */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner p { margin: 0 0 0.4rem; color: var(--text-muted); }
.footer-inner p:last-child { margin-bottom: 0; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ai-line{margin:.75rem 0 0;font-size:1.05rem;line-height:1.45;max-width:36rem}
