/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(5,11,24,0.66);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(123,47,255,0.18);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 60px; }
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.logo span { font-weight: 300; }
nav ul { list-style: none; display: flex; gap: clamp(16px, 2.2vw, 34px); align-items: center; }
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}
nav ul a:hover { color: var(--white); }
nav ul a:hover::after { width: 100%; }
nav ul a.is-active,
nav ul a[aria-current="page"],
nav ul a[aria-current="location"] {
  color: var(--white);
  text-shadow: 0 0 12px rgba(0,229,255,0.75), 0 0 26px rgba(123,47,255,0.55);
}
nav ul a.is-active::after,
nav ul a[aria-current="page"]::after,
nav ul a[aria-current="location"]::after {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 14px rgba(0,229,255,0.8), 0 0 28px rgba(123,47,255,0.55);
}
.nav-cta {
  padding: 10px 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--violet), var(--cyan-dim));
  color: var(--white) !important;
  font-weight: 600 !important;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  position: relative;
  z-index: 2000;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  overflow: visible;
}
.nav-toggle .hamburger-line {
  position: absolute;
  left: 50%;
  display: block;
  width: 14px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 180ms cubic-bezier(.2,.9,.2,1), opacity 120ms ease;
  transform-origin: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.35);
}
.nav-toggle .hamburger-line:nth-child(1) { transform: translate(-50%, -8px); }
.nav-toggle .hamburger-line:nth-child(2) { transform: translate(-50%, 0); }
.nav-toggle .hamburger-line:nth-child(3) { transform: translate(-50%, 8px); }
.nav-toggle:focus { outline: 2px solid rgba(0,229,255,0.16); outline-offset: 2px; }
.nav-toggle.open .hamburger-line:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger-line:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }
.nav-toggle, .nav-toggle * { z-index: 2000; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5,11,24,0.96), rgba(7,13,28,0.96));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6%);
  transition: opacity 260ms ease, transform 260ms ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; align-items: center; padding: 0 24px; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
body.menu-open { overflow: hidden; }

.btn-primary {
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, var(--violet), var(--cyan-dim));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 36px rgba(123,47,255,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim), var(--violet));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(123,47,255,0.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  padding: 16px 36px;
  border-radius: 8px;
  border: 1px solid rgba(123,47,255,0.5);
  background: transparent;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
}
.btn-outline:hover {
  border-color: var(--violet);
  background: rgba(123,47,255,0.1);
  transform: translateY(-3px);
}

.service-card {
  background: linear-gradient(145deg, rgba(11,22,48,0.72), rgba(11,22,48,0.44));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 44px 36px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,47,255,0.06), rgba(0,229,255,0.04));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px;
}
.service-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(0,229,255,0.28);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,229,255,0.08) inset;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(123,47,255,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s, color 0.3s, border-color 0.3s;
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { transform: translateY(-2px); color: var(--white); border-color: rgba(0,229,255,0.32); }
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 12px; border-radius: 100px; background: rgba(123,47,255,0.12); border: 1px solid rgba(123,47,255,0.2); font-size: 0.72rem; font-weight: 500; color: var(--violet-light); letter-spacing: 0.3px;
}
.service-number {
  position: absolute; top: 36px; right: 36px; font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -2px; color: rgba(123,47,255,0.07); line-height: 1; transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(123,47,255,0.12); }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 0.875rem; font-weight: 500; text-decoration: none; margin-top: 8px; transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }
.service-link svg { width: 16px; height: 16px; }

.platform-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.platform-row {
  display: flex; align-items: center; gap: 20px; background: var(--card-bg); border: 1px solid rgba(123,47,255,0.12); border-radius: 12px; padding: 20px 24px; transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden;
}
.platform-row::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--violet), var(--cyan)); border-radius: 3px 0 0 3px; opacity: 0; transition: opacity 0.3s;
}
.platform-row:hover { border-color: rgba(123,47,255,0.3); transform: translateX(8px); }
.platform-row:hover::after { opacity: 1; }
.platform-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cyan); font-family: 'Space Grotesk', sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 1px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
}
.tech-stack { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.tech-pill {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 100px; background: var(--card-bg); border: 1px solid rgba(123,47,255,0.15); font-size: 0.825rem; font-weight: 500; transition: all 0.3s;
}
.tech-pill:hover { border-color: var(--violet); background: rgba(123,47,255,0.12); transform: translateY(-2px); }
.tech-pill .dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-violet { background: var(--violet-light); }
.dot-cyan { background: var(--cyan); }
.dot-green { background: #4ADE80; }
.dot-orange { background: #FB923C; }

.browser-window {
  background: var(--navy2); border-radius: 16px; border: 1px solid rgba(123,47,255,0.2); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 1px rgba(123,47,255,0.3);
}
.browser-bar { background: rgba(5,11,24,0.8); padding: 14px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(123,47,255,0.1); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.bd-red { background: #FF5F57; }
.bd-yellow { background: #FFBD2E; }
.bd-green { background: #28CA41; }
.browser-url { flex: 1; background: rgba(123,47,255,0.08); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; color: var(--muted); }
.browser-content { padding: 32px; }
.code-block { background: rgba(5,11,24,0.66); box-shadow: 0 18px 60px rgba(0,0,0,0.22); border-radius: 10px; padding: 24px; font-size: 0.8rem; line-height: 1.9; border: 1px solid rgba(123,47,255,0.1); }
.code-block .c-purple { color: var(--violet-light); }
.code-block .c-cyan { color: var(--cyan); }
.code-block .c-green { color: #4ADE80; }
.code-block .c-muted { color: var(--muted); }
.code-block .c-orange { color: #FB923C; }

.step-circle {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy); border: 1px solid rgba(123,47,255,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; position: relative; z-index: 1; font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--violet-light); transition: all 0.4s;
}
.process-step:hover .step-circle {
  background: linear-gradient(135deg, var(--violet), var(--cyan-dim));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 40px rgba(123,47,255,0.4);
}

.testi-card {
  background: var(--card-bg); border: 1px solid rgba(123,47,255,0.12); border-radius: 16px; padding: 36px; transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover { transform: translateY(-6px); border-color: rgba(123,47,255,0.35); }
.testi-stars { color: #FCD34D; margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote { color: var(--white); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; background: linear-gradient(135deg, var(--violet), var(--cyan-dim)); flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; font-family: 'Space Grotesk', sans-serif; }
.author-info .role { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }

.pricing-card {
  background: var(--card-bg); border: 1px solid rgba(123,47,255,0.15); border-radius: 20px; padding: 44px 36px; position: relative; transition: transform 0.4s, box-shadow 0.4s;
}
.pricing-card.featured {
  border-color: var(--violet); background: linear-gradient(160deg, rgba(123,47,255,0.12), rgba(0,229,255,0.05)); box-shadow: 0 0 60px rgba(123,47,255,0.15);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 32px 60px rgba(0,0,0,0.4); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--violet), var(--cyan-dim)); padding: 6px 20px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.plan-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 32px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.plan-features li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.plan-features li .check { color: var(--cyan); font-size: 0.8rem; flex-shrink: 0; }
.plan-features li.active { color: var(--white); }
.plan-divider { height: 1px; background: rgba(123,47,255,0.12); margin-bottom: 24px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(123,47,255,0.14)); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--cyan); flex-shrink: 0; }
.contact-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.contact-detail p { color: var(--muted); font-size: 0.875rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; background: rgba(11,22,48,0.8); border: 1px solid rgba(123,47,255,0.2); border-radius: 10px; padding: 14px 18px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(123,47,255,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(136,146,176,0.5); }
.form-textarea { resize: vertical; min-height: 120px; }

footer { background: var(--navy2); border-top: 1px solid rgba(123,47,255,0.12); padding: 72px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin: 16px 0 28px; max-width: 280px; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(123,47,255,0.1); border: 1px solid rgba(123,47,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s; text-decoration: none; color: var(--muted); }
.social-icon:hover { background: rgba(123,47,255,0.2); border-color: var(--violet); color: var(--white); transform: translateY(-3px); }
.footer-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(123,47,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }

.showcase-card, .ready-card, .blog-card, .contact-split > form {
  background: linear-gradient(145deg, rgba(11,22,48,0.78), rgba(11,22,48,0.42));
  border: 1px solid rgba(123,47,255,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}
.showcase-card { border-radius: 14px; padding: 28px; min-height: 260px; overflow: hidden; position: relative; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; }
.showcase-card:hover, .ready-card:hover, .blog-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.28); box-shadow: 0 30px 80px rgba(0,0,0,0.34), 0 0 24px rgba(0,229,255,0.06); }
.showcase-card-large { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-start; min-height: 544px; }
.showcase-screen { border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px; background: rgba(5,11,24,0.68); min-height: 340px; display: flex; flex-direction: column; }
.screen-top { display: flex; gap: 8px; margin-bottom: 30px; flex-shrink: 0; }
.screen-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); opacity: 0.65; }
.screen-chart { display: grid; grid-template-columns: repeat(4,1fr); align-items: end; gap: 14px; min-height: 250px; flex: 1; }
.screen-chart i { display: block; border-radius: 10px 10px 2px 2px; background: linear-gradient(180deg, var(--cyan), var(--violet)); box-shadow: 0 0 24px rgba(0,229,255,0.16); animation: barPulse 2.8s ease-in-out infinite; }
.screen-chart i:nth-child(1) { height: 42%; }
.screen-chart i:nth-child(2) { height: 72%; animation-delay: 0.2s; }
.screen-chart i:nth-child(3) { height: 56%; animation-delay: 0.4s; }
.screen-chart i:nth-child(4) { height: 88%; animation-delay: 0.6s; }
.showcase-content { margin-top: 22px; }
.showcase-card h3, .ready-card h3, .blog-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; margin: 14px 0 10px; }
.showcase-card p, .ready-card p, .blog-card p, .form-note { color: var(--muted); line-height: 1.7; font-size: 0.92rem; }
.mini-graph { position: relative; overflow: hidden; margin-bottom: 28px; min-height: 138px; border-radius: 14px; padding: 16px; background: linear-gradient(145deg, rgba(5,11,24,0.76), rgba(11,22,48,0.54)); border: 1px solid rgba(255,255,255,0.08); }
.mini-graph::before { content: ''; position: absolute; inset: 0; opacity: 0.28; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 34px 34px; pointer-events: none; }
.graph-head { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.7px; text-transform: uppercase; }
.graph-head strong { color: var(--cyan); font-size: 1rem; text-shadow: 0 0 16px rgba(0,229,255,0.45); }
.line-graph { position: relative; display: grid; grid-template-columns: repeat(5,1fr); align-items: end; gap: 8px; height: 50px; }
.line-graph::after { content: ''; position: absolute; left: 5%; right: 5%; top: 24px; height: 2px; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 16px rgba(0,229,255,0.5); transform: skewY(-12deg); }
.line-graph i { position: relative; z-index: 1; width: 11px; height: 11px; border-radius: 50%; justify-self: center; background: var(--cyan); box-shadow: 0 0 18px rgba(0,229,255,0.75); animation: graphPulse 2.4s ease-in-out infinite; }
.line-graph i:nth-child(1) { align-self: end; animation-delay: 0s; }
.line-graph i:nth-child(2) { align-self: center; animation-delay: 0.12s; }
.line-graph i:nth-child(3) { align-self: end; margin-bottom: 18px; animation-delay: 0.24s; }
.line-graph i:nth-child(4) { align-self: start; margin-top: 10px; animation-delay: 0.36s; }
.line-graph i:nth-child(5) { align-self: start; animation-delay: 0.48s; }
.funnel-row { position: relative; display: grid; grid-template-columns: 1fr 0.72fr 0.48fr; gap: 8px; margin-top: 18px; }
.funnel-row span { height: 9px; border-radius: 999px; background: linear-gradient(90deg, rgba(123,47,255,0.8), rgba(0,229,255,0.65)); }
.social-bars { position: relative; display: grid; grid-template-columns: repeat(5,1fr); align-items: end; gap: 10px; height: 74px; }
.social-bars i { display: block; border-radius: 9px 9px 2px 2px; background: linear-gradient(180deg, var(--cyan), var(--violet)); box-shadow: 0 0 18px rgba(123,47,255,0.24); animation: barPulse 2.6s ease-in-out infinite; }
.social-bars i:nth-child(1) { height: 38%; }
.social-bars i:nth-child(2) { height: 58%; animation-delay: 0.12s; }
.social-bars i:nth-child(3) { height: 84%; animation-delay: 0.24s; }
.social-bars i:nth-child(4) { height: 66%; animation-delay: 0.36s; }
.social-bars i:nth-child(5) { height: 94%; animation-delay: 0.48s; }
.metric-row { position: relative; display: flex; justify-content: space-between; margin-top: 12px; color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.8px; }
.ready-card { border-radius: 14px; padding: 32px; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; }
.ready-kicker, .blog-meta { color: var(--cyan); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.blog-card { border-radius: 14px; padding: 32px; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s; }
.blog-card a { display: inline-flex; margin-top: 22px; color: var(--cyan); text-decoration: none; font-weight: 700; }
.contact-split > form { border-radius: 16px; padding: 28px; }
.form-note { margin-top: 14px; text-align: center; font-size: 0.78rem; }
