/* =============================================================================
   Xima — landing paraguas
   Estilo deliberadamente sobrio: lo importante es transmitir respaldo y claridad,
   no efectos visuales. Tipografía sans, paleta de dos colores, mucho aire.
   ============================================================================= */

:root {
  --bg: #0b0d12;
  --surface: #141823;
  --text: #e6e8ec;
  --text-muted: #8c93a3;
  --accent: #ffb020;       /* ámbar — la misma familia que el panel Filament */
  --accent-soft: #ffb02033;
  --border: #1f2433;
  --radius: 8px;
  --max-width: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ------------------------------------------------------------------ Header */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.brand svg,
.brand img {
  height: 32px;
  width: auto;
  display: block;
}

.lang-switch {
  font-size: 13px;
  color: var(--text-muted);
}
.lang-switch a + a::before { content: " · "; color: var(--border); }
.lang-switch a.active { color: var(--text); pointer-events: none; }

/* ------------------------------------------------------------------ Hero */
.hero {
  padding: 96px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ Divisions */
.divisions {
  padding: 64px 0 96px;
}
.divisions h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.division {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.division:hover {
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}
.division h3 {
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.division .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.division .tag.coming { color: var(--text-muted); background: var(--border); }
.division p {
  color: var(--text-muted);
  margin: 0 0 18px;
  font-size: 15px;
}
.division .cta {
  font-size: 14px;
  font-weight: 500;
}

/* ------------------------------------------------------------------ Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
