@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
body {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
}
:root {
	--bg-color: #ffffff;
	--text-color: #000000;
	--header-border: #e5e7eb;
	--gray-bg: #f9fafb;
	--card-bg: #ffffff;
	--border-gray: #d1d5db;
}
@media (prefers-color-scheme: dark) {
  :root {
	--bg-color: #1f2328;
	--text-color: rgba(255,255,255,0.8);
	--header-border: rgba(255,255,255,0.05);
	--gray-bg: #111417;
	--card-bg: #191c20;
	--border-gray: rgba(255,255,255,0.2);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero fade-in */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}
.fade-in-up-1 { animation-delay: 0.05s; }
.fade-in-up-2 { animation-delay: 0.2s; }
.fade-in-up-3 { animation-delay: 0.4s; }
.fade-in-up-4 { animation-delay: 0.6s; }

/* Dot grid background */
.dot-grid {
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.dark .dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* Hero gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(157, 125, 255, 0.12);
  top: -100px; left: -100px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(185, 98, 255, 0.08);
  bottom: -80px; right: -80px;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(99, 102, 241, 0.06);
  top: 40%; right: 10%;
}
.dark .hero-orb-1 { background: rgba(157, 125, 255, 0.08); }
.dark .hero-orb-2 { background: rgba(185, 98, 255, 0.05); }
.dark .hero-orb-3 { background: rgba(99, 102, 241, 0.04); }

/* Floating icons */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate)); }
  50% { transform: translateY(-8px) rotate(var(--rotate)); }
}
.floating-icon {
  position: absolute;
  opacity: 0.18;
  font-size: 40px;
  color: #9d7dff;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.dark .floating-icon {
  opacity: 0.12;
  color: #b962ff;
}
.floating-icon:nth-child(odd) { animation-duration: 7s; }
.floating-icon:nth-child(3n) { animation-duration: 8s; }

/* Glyph glow */
.glyph-glow {
  filter: drop-shadow(0 0 28px rgba(157, 125, 255, 0.35));
}
.dark .glyph-glow {
  filter: drop-shadow(0 0 36px rgba(185, 98, 255, 0.45));
}

/* Gradient headline */
.gradient-text {
  background: linear-gradient(135deg, #9d7dff 0%, #b962ff 50%, #7c5cfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section heading */
.section-heading {
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Feature card hover */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(157, 125, 255, 0.3);
}
.dark .feature-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(157, 125, 255, 0.2);
}

/* Screenshot frame */
.screenshot-frame {
  background: linear-gradient(135deg, rgba(157, 125, 255, 0.05), rgba(185, 98, 255, 0.05));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.04);
}
.dark .screenshot-frame {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Contact card hover */
.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(157, 125, 255, 0.3);
}
.dark .contact-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  border-color: rgba(157, 125, 255, 0.2);
}

/* CTA gradient bg */
.cta-gradient {
  background: linear-gradient(135deg, rgba(157, 125, 255, 0.07) 0%, rgba(185, 98, 255, 0.07) 100%);
}
.dark .cta-gradient {
  background: linear-gradient(135deg, rgba(157, 125, 255, 0.1) 0%, rgba(185, 98, 255, 0.05) 100%);
}

/* FAQ accordion */
.faq-item {
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(157, 125, 255, 0.3);
}
.dark .faq-item:hover {
  border-color: rgba(157, 125, 255, 0.2);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
}
.faq-chevron {
  transition: transform 0.3s ease;
}
.faq-chevron.open {
  transform: rotate(180deg);
}
