/* ============================================================
   TekproAI — index.css
   Styles specific to index.html (landing page only)
   Requires: assets/css/base.css
   ============================================================ */

/* ── Hero ── */
.hero {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 44px 24px 52px;
  text-align: center; position: relative;
}
.glow-orb {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulse-orb 4s ease-in-out infinite; pointer-events: none;
}
@keyframes pulse-orb {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.1); opacity: 0.7; }
}

/* ── Wings ── */
.wings-wrap { margin-bottom: 18px; animation: fadeUp 1s ease 0.2s both; }
.wings-svg  {
  width: 180px; opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(0,230,118,0.4));
  animation: wings-flap 6s ease-in-out infinite;
}
@keyframes wings-flap {
  0%,100% { transform: scaleY(1)    translateY(0); }
  25%      { transform: scaleY(0.92) translateY(-4px); }
  50%      { transform: scaleY(1.04) translateY(-8px); }
  75%      { transform: scaleY(0.96) translateY(-4px); }
}

/* ── Eyebrow / Headline / Taglines ── */
.eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--green);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px; animation: fadeUp 1s ease 0.3s both;
}
.eyebrow span {
  display: inline-block; width: 24px; height: 1px;
  background: var(--green); vertical-align: middle; margin: 0 8px;
}
h1.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 120px);
  line-height: 0.92; letter-spacing: 2px; color: var(--text);
  margin-bottom: 10px; animation: fadeUp 1s ease 0.4s both;
}
h1.headline .tek     { color: var(--green); }
h1.headline .ai-word { color: transparent; -webkit-text-stroke: 1px var(--green); }

.tagline {
  font-size: clamp(14px, 2.2vw, 20px); color: var(--muted);
  font-weight: 300; letter-spacing: 1px;
  margin-bottom: 6px; animation: fadeUp 1s ease 0.5s both;
}
.tagline strong { color: var(--gold); font-weight: 500; }
.sub-tagline {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted);
  letter-spacing: 2px; margin-bottom: 40px; animation: fadeUp 1s ease 0.6s both;
}

/* ── Tools Grid ── */
.tools-label {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 18px; animation: fadeUp 1s ease 0.7s both;
}
.tools-grid {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; max-width: 680px; margin: 0 auto;
  animation: fadeUp 1s ease 0.8s both;
}
.tool-chip {
  display: flex; align-items: center; gap: 9px; padding: 10px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 40px;
  font-size: 13px; color: var(--muted); font-family: 'DM Mono', monospace;
  transition: all 0.25s; text-decoration: none; position: relative; overflow: hidden;
}
.tool-chip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.tool-chip:hover { border-color: var(--green); color: var(--text); transform: translateY(-2px); }
.tool-chip:hover::before { opacity: 1; }
.tool-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.tool-chip.live { border-color: rgba(0,230,118,0.4); color: var(--text); background: rgba(0,230,118,0.04); }
.tool-chip.live .dot { animation: blink 1.5s infinite; }
.live-tag { font-size: 9px; margin-left: 4px; color: var(--green); opacity: 0.8; }

.tool-chip.soon { color: #8aab8e; border-color: #253328; background: #0d1810; }
.tool-chip.soon .dot { background: #3a6645; }
.tool-chip.soon:hover { color: var(--text); border-color: var(--green); }
.soon-tag { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: #3a6645; margin-left: 4px; font-family: 'DM Mono', monospace; }

/* ── Countdown ── */
.countdown-wrap  { margin-top: 44px; animation: fadeUp 1s ease 0.9s both; }
.countdown-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.countdown       { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cd-unit         { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cd-num          { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 5vw, 50px); color: var(--green); line-height: 1; min-width: 54px; text-align: center; }
.cd-sep          { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--border); padding-top: 4px; align-self: flex-start; }
.cd-lbl          { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ── Responsive — index only ── */
@media (max-width: 560px) {
  .hero       { padding: 28px 16px 44px; }
  .cd-sep     { display: none; }
  .tools-grid { gap: 8px; }
  .tool-chip  { font-size: 13px; padding: 10px 14px; }
  .tool-chip.soon { color: #9dbfa1; }
}
