/* Viora — Dark Technical Design System */
/* Space Grotesk + IBM Plex Mono */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&family=Orbitron:wght@400;500;600;700&display=swap');

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

:root {
  --bg:        #0a0a0e;
  --surface:   #111118;
  --border:    #1e1e2e;
  --text:      #e8e8f0;
  --muted:     #6a6a8a;
  --accent:    #4f8eff;
  --accent-glow: rgba(79, 142, 255, 0.15);
  --mono:      'IBM Plex Mono', monospace;
  --sans:      'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(10, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-cta {
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent-glow); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_171986/16565ff6-634e-4b3d-8995-2d21b3795772.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,14,0.55) 0%,
    rgba(10,10,14,0.70) 50%,
    rgba(10,10,14,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a0b4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── SERVICES KEYWORDS ───────────────────────────────── */
.services {
  padding: 5rem 2rem;
  background: var(--bg);
}
.services-inner { max-width: 900px; margin: 0 auto; }
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  text-align: center;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.service-chip {
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.service-chip:hover { border-color: var(--accent); background: var(--accent-glow); }

/* ── INTEGRATION SHOWCASE ────────────────────────────── */
.showcase {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.showcase-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.showcase-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}
.integrations-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}
.integration-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}
.integration-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.integration-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.integration-icon svg {
  width: 100%;
  height: 100%;
}
.integration-name {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── PARTNERS STRIP ─────────────────────────────────── */
.partners {
  padding: 4rem 2rem;
  background: var(--bg);
}
.partners-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 40px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 0.85; }
.partner-logo svg {
  width: 32px;
  height: 32px;
}

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.cta-btn {
  display: inline-block;
  font-family: 'Orbitron', var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.9rem 2.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  padding: 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { min-height: 90vh; }
  .hero-title { font-size: 2.4rem; }
  .services, .showcase, .partners, .cta-section { padding: 3.5rem 1.5rem; }
  .integrations-hub { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .partners-grid { gap: 1rem; }
}