/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 28 2026 | 19:06:47 */
/* ArkInfo Services — Shared Design System
   Brand colors from logo: #1A6BF0 (blue) → #6C3CE0 (purple) → #E04AC0 (pink)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --blue: #1A6BF0;
  --purple: #6C3CE0;
  --pink: #E04AC0;
  --dark: #0A0A12;
  --dark-surface: #111122;
  --dark-card: #161630;
  --dark-border: rgba(108, 60, 224, 0.15);
  --text-primary: #F0EFF4;
  --text-secondary: #9B98B0;
  --text-muted: #5E5B73;
  --gradient: linear-gradient(135deg, #1A6BF0, #6C3CE0, #E04AC0);
  --gradient-subtle: linear-gradient(135deg, rgba(26,107,240,0.08), rgba(108,60,224,0.08), rgba(224,74,192,0.08));
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === BACKGROUND EFFECTS === */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(108,60,224,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,60,224,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bg-glow {
  position: fixed;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108,60,224,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10, 10, 18, 0.8);
  border-bottom: 1px solid var(--dark-border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo svg { height: 42px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-tagline {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient) !important;
  border-radius: var(--radius-sm) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 600 !important;
  transition: opacity 0.25s, transform 0.25s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text-primary);
  margin: 5px 0; border-radius: 2px; transition: 0.3s;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: rgba(10,10,18,0.97);
    padding: 40px 20px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
}

/* === SECTIONS === */
section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
h3 { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 12px; }
p { color: var(--text-secondary); font-size: 16px; max-width: 600px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,60,224,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(108,60,224,0.3);
}
.btn-outline:hover { border-color: var(--purple); background: rgba(108,60,224,0.05); }

/* === CARDS === */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,60,224,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(108,60,224,0.05);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* === FOOTER === */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dark-border);
  padding: 60px 40px 30px;
  background: rgba(10,10,18,0.5);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,60,224,0.1) 0%, rgba(224,74,192,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.hero h1 { margin-bottom: 24px; }
.hero p { font-size: 18px; margin-bottom: 36px; max-width: 540px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* === MISC === */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 24px 0;
}
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(108,60,224,0.1);
  border: 1px solid rgba(108,60,224,0.2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.5px;
}

/* === FLOATING SOCIAL SIDEBAR === */
.social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: none;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, width 0.3s;
  position: relative;
  overflow: hidden;
}
.social-float a:first-child { border-radius: 0 var(--radius-sm) 0 0; }
.social-float a:last-child { border-radius: 0 0 var(--radius-sm) 0; }
.social-float a svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s; }
.social-float a .social-label {
  position: absolute;
  left: 44px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  padding: 0 14px 0 8px;
}
.social-float a:hover {
  width: 140px;
  background: var(--dark-surface);
  color: var(--text-primary);
  border-color: rgba(108,60,224,0.3);
}
.social-float a:hover .social-label {
  opacity: 1;
  transform: translateX(0);
}
.social-float a:hover svg { transform: scale(1.1); }

/* Facebook hover */
.social-float a.social-fb:hover { background: rgba(24,119,242,0.12); color: #1877F2; border-color: rgba(24,119,242,0.25); }
.social-float a.social-fb:hover .social-label { color: #1877F2; }
/* X/Twitter hover */
.social-float a.social-x:hover { background: rgba(240,240,240,0.08); color: var(--text-primary); border-color: rgba(240,240,240,0.2); }
.social-float a.social-x:hover .social-label { color: var(--text-primary); }
/* LinkedIn hover */
.social-float a.social-li:hover { background: rgba(10,102,194,0.12); color: #0A66C2; border-color: rgba(10,102,194,0.25); }
.social-float a.social-li:hover .social-label { color: #0A66C2; }

@media (max-width: 768px) {
  .social-float {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    background: rgba(10,10,18,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--dark-border);
    padding: 6px 0;
  }
  .social-float a {
    width: 56px;
    height: 42px;
    border: none;
    border-radius: 0 !important;
    background: transparent;
  }
  .social-float a:hover { width: 56px; background: transparent; }
  .social-float a .social-label { display: none; }
  footer { padding-bottom: 60px; }
}
