/**
 * theme-industrial.css — Design tokens · Industrial maker (Option A)
 * Used by panel/index2.php — does not override theme.css
 */
 
 html, body {
  margin: 0;
  padding: 0;
  background: #0b0e12; /* o var(--bg) si defines la variable fuera de .ind-landing */
}
 
.ind-landing *, .ind-landing *::before, .ind-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ind-landing {
  --accent: #22d3ee;
  --accent-hover: #06b6d4;
  --accent-dim: rgba(34, 211, 238, 0.1);
  --accent-glow: rgba(34, 211, 238, 0.35);
  --brand-gold: #c9a96e;

  --bg: #0b0e12;
  --bg-elevated: #111820;
  --bg-card: #151b24;
  --bg-muted: #1a2230;

  --border: rgba(34, 211, 238, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --text: #e8edf4;
  --text-muted: #8b95a8;
  --text-faint: #5a6478;

  --green: #34d399;
  --red: #f87171;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  --topbar-h: 60px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

html.light-mode .ind-landing {
  --bg: #f4f7fa;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-muted: #eef2f7;

  --border: rgba(6, 182, 212, 0.2);
  --border-subtle: rgba(0, 0, 0, 0.07);

  --text: #0f1419;
  --text-muted: #5c6778;
  --text-faint: #8b95a8;

  --shadow: 0 24px 48px rgba(15, 20, 25, 0.08);
}

/* Gradient + noise (no grid) */
.ind-landing::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, var(--accent-dim), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(34, 211, 238, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.ind-landing > * { position: relative; z-index: 1; }

/* ── Buttons ── */
.ind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

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

.ind-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}

.ind-btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-subtle);
}

.ind-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ind-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding: 8px 12px;
  font-weight: 500;
}

.ind-btn-ghost:hover { color: var(--text); }

.ind-btn-muted {
  background: var(--bg-muted);
  color: var(--text-muted);
  border-color: var(--border-subtle);
  cursor: default;
  width: 100%;
}

.ind-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 7px 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.ind-theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Section typography ── */
.ind-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}

.ind-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.ind-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.ind-section-head {
  margin-bottom: 44px;
}

.ind-section-head.center {
  text-align: center;
}

.ind-section-head.center .ind-lead {
  margin-left: auto;
  margin-right: auto;
}
