/*
Theme Name: GeoMiner Coming Soon
Theme URI: https://geominer.com
Author: GeoMiner
Description: Página "Próximamente" para GeoMiner - Sistema de Seguridad Minera
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: geominer
*/

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

:root {
  --black:   #080808;
  --white:   #f0f0f0;
  --gray:    #666666;
  --gold:    #C9931A;
  --gold-lg: #E8B84B;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Canvas particles ── */
#gm-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Radial glow ── */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 55%,
    rgba(201,147,26,.07) 0%,
    transparent 75%
  );
}

/* ── Wrapper ── */
.cs-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 0;
}



/* ── Eyebrow ── */
.cs-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up .9s ease .8s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-eyebrow::before,
.cs-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* ── Headline ── */
.cs-headline {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 200;
  letter-spacing: clamp(6px, 1.5vw, 16px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up .9s ease 1.0s forwards;
}

.cs-headline strong {
  font-weight: 800;
  display: block;
  color: #ffffff;
}

/* ── Typewriter line ── */
.cs-typewriter {
  font-size: clamp(.85rem, 1.8vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gray);
  min-height: 1.6em;
  margin-bottom: 52px;
  opacity: 0;
  animation: fade-up .9s ease 1.2s forwards;
}

.tw-cursor {
  display: inline-block;
  width: 2px;
  height: .85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink .75s step-end infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ── Thin gold line ── */
.cs-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up .9s ease 1.4s forwards;
}

/* ── Tagline ── */
.cs-tagline {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #3a3a3a;
  opacity: 0;
  animation: fade-up .9s ease 1.6s forwards;
}

/* ── Shared keyframe ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Responsive ── */
@media (max-width: 500px) {
  .cs-headline { letter-spacing: 4px; }
}
