/* CHANGED: 2026-04-08 akushnir #7301 extracted from inline <style> for external stylesheet caching */

:root {
  --eiq-green: #4ade80;
  --eiq-cyan: #22d3ee;
  --eiq-ink: #060c18;
  --eiq-panel: #111c30;
}

body {
  font-family: 'Inter', sans-serif;
  background: #060c18;
  color: #e2e8f0;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 100;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, .45);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(74, 222, 128, .95);
  outline-offset: 3px;
  border-radius: 10px;
}

.grad-text {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-green {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 60%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(74, 222, 128, 0.06) 0%, transparent 50%),
    #060c18;
}

.mesh-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.glass {
  background: rgba(17, 28, 48, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.3) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.orb-green {
  background: rgba(74, 222, 128, 0.12);
}

.orb-cyan {
  background: rgba(34, 211, 238, 0.08);
}

.orb-purple {
  background: rgba(139, 92, 246, 0.07);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.float-delay {
  animation: float 8s ease-in-out 2s infinite;
}

.float-slow {
  animation: float 10s ease-in-out 1s infinite;
}

.metric-card {
  background: rgba(17, 28, 48, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.service-card {
  background: rgba(11, 18, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .arrow {
  transition: transform 0.3s ease;
}

.service-card:hover .arrow {
  transform: translateX(6px);
}

.testimonial-card {
  background: rgba(15, 25, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 28px;
}

.pricing-popular {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.06), rgba(34, 211, 238, 0.03));
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 9999px;
  background: rgba(17, 28, 48, .72);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: .01em;
}

/* CHANGED: 2026-04-07 akushnir #7760 .hero-kicker removed — element deleted from hero section */

.section-ribbon {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, .4), transparent);
}

.hero-sequence {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn .7s ease forwards;
}

.hero-sequence.delay-1 {
  animation-delay: .08s;
}

.hero-sequence.delay-2 {
  animation-delay: .16s;
}

.hero-sequence.delay-3 {
  animation-delay: .24s;
}

.hero-sequence.delay-4 {
  animation-delay: .32s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skip rendering for below-fold sections until scrolled into view (#7302) */
.cv-defer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #060c18;
}

::-webkit-scrollbar-thumb {
  background: #19294a;
  border-radius: 3px;
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(6, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 40;
  padding: 0.5rem 1.5rem 1.5rem;
}

.mob-menu.open {
  display: block;
}

.mob-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

/* Safe-area for notch/home-bar */
.safe-bottom {
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

/* Hero rotator */
.hero-rotator {
  display: grid;
  min-height: 1.2em;
}

.hero-rotator > span {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  animation: heroSlide 30s infinite;
  animation-fill-mode: both;
}

.hero-rotator > span:nth-child(1) {
  animation-name: heroSlideFirst;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.hero-rotator > span:nth-child(2) {
  animation-delay: 5s;
}

.hero-rotator > span:nth-child(3) {
  animation-delay: 10s;
}

.hero-rotator > span:nth-child(4) {
  animation-delay: 15s;
}

.hero-rotator > span:nth-child(5) {
  animation-delay: 20s;
}

.hero-rotator > span:nth-child(6) {
  animation-delay: 25s;
}

@keyframes heroSlideFirst {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  18% {
    opacity: 0;
    transform: translateY(-14px);
  }
  100% {
    opacity: 0;
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  2% {
    opacity: 1;
    transform: translateY(0);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  18% {
    opacity: 0;
    transform: translateY(-14px);
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .float,
  .float-delay,
  .float-slow,
  .hero-rotator > span,
  .hero-sequence,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
