/* ================================================================
   INOVACRIA — style.css
   Premium performance agency — white base, editorial design
   ================================================================ */

/* ---- 1. CUSTOM PROPERTIES ---- */
:root {
  --blue:         #28C7FF;
  --purple:       #5B3FFF;
  --gradient:     linear-gradient(135deg, #28C7FF 0%, #5B3FFF 100%);

  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAFC;
  --bg-dark:      #080E1D;

  --ink:          #0F172A;
  --ink-2:        #1E293B;
  --ink-mid:      #334155;
  --ink-soft:     #64748B;
  --ink-muted:    #94A3B8;

  --border:       #E5E7EB;
  --border-soft:  #F1F5F9;
  --border-dark:  rgba(255,255,255,0.08);

  --shadow-xs:    0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 56px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.06);

  --r:            12px;
  --r-lg:         18px;
  --r-xl:         24px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:        68px;
  --section-py:   112px;
  --ease:         0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ---- 2. RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.65; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
em { font-style: italic; }


/* ---- 3. TYPOGRAPHY UTILITIES ---- */
.g-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---- 4. LAYOUT ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.sec-header {
  margin-bottom: 60px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(91,63,255,0.07);
  border: 1px solid rgba(91,63,255,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.sec-tag--light {
  color: var(--blue);
  background: rgba(40,199,255,0.1);
  border-color: rgba(40,199,255,0.2);
}

.sec-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.sec-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 480px;
  line-height: 1.75;
}


/* ---- 5. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  position: relative;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 14px rgba(91,63,255,0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(91,63,255,0.44);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: #C8CDD5;
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
}


/* ---- 6. SCROLL REVEAL ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}


/* ---- 7. NAVBAR ---- */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-wrap {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 32px;
  /* footer PNG will appear dark; use brightness filter to lighten */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.logo span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}

.footer-logo span { color: rgba(255,255,255,0.9); }

/* Hero canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* pass events through — JS listens on hero, not canvas */
  z-index: 1;
  opacity: 0.7;
  will-change: transform; /* GPU layer */
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--ease);
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  color: #fff !important;
  background: var(--gradient);
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(91,63,255,0.28);
  transition: transform var(--ease), box-shadow var(--ease) !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(91,63,255,0.4) !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--ease);
}

.burger:hover { background: var(--bg-soft); }

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 299;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 4px 24px 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Nav overlay backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 298;
  background: rgba(15,23,42,0.2);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--ease);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav a:active { opacity: 0.7; }

.mobile-nav-cta {
  margin-top: 8px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(91,63,255,0.3);
  border-bottom: none !important;
}


/* ====================================================
   8. HERO — CINEMATIC
   ==================================================== */
.hero {
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ---- Background atmosphere ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 2;
  pointer-events: none;
}

.hero-orb-1 {
  width: 820px;
  height: 820px;
  right: -220px;
  top: -180px;
  background: radial-gradient(circle at 35% 35%, rgba(91,63,255,0.1) 0%, transparent 65%);
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  left: -120px;
  bottom: -80px;
  background: radial-gradient(circle at 65% 60%, rgba(40,199,255,0.08) 0%, transparent 65%);
}

.hero-orb-3 {
  width: 340px;
  height: 340px;
  left: 42%;
  top: 28%;
  background: radial-gradient(circle, rgba(91,63,255,0.052) 0%, transparent 65%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 55% 45%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 90% at 55% 45%, black 25%, transparent 100%);
}

/* ---- Hero layout ---- */
.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
}

/* ---- Copy ---- */
.hero-copy { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(91,63,255,0.055);
  border: 1px solid rgba(91,63,255,0.14);
  padding: 7px 14px 7px 9px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}

.eyebrow-pip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(91,63,255,0.1);
  flex-shrink: 0;
}

.eyebrow-pip::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  animation: eyebrowPulse 2.8s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.82); }
}

.hero-title {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 26px;
}

.hero-title em {
  display: block;
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

.hero-sub {
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: var(--ink-soft);
  line-height: 1.76;
  margin-bottom: 42px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 13px;
  cursor: pointer;
  white-space: nowrap;
  background: var(--gradient);
  color: #fff;
  border: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 22px rgba(91,63,255,0.38), 0 1px 0 rgba(255,255,255,0.14) inset;
  transition: transform var(--ease), box-shadow var(--ease);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(91,63,255,0.48), 0 1px 0 rgba(255,255,255,0.14) inset;
}

.btn-hero-primary:active { transform: translateY(0); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: 13px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--ink-mid);
  background: rgba(15,23,42,0.03);
  border: 1.5px solid rgba(15,23,42,0.1);
  letter-spacing: -0.01em;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.btn-hero-outline:hover {
  background: rgba(15,23,42,0.06);
  border-color: rgba(15,23,42,0.18);
  transform: translateY(-2px);
}

.btn-hero-outline:active { transform: translateY(0); }

/* Trust micro-line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust-avatars {
  display: flex;
  flex-direction: row-reverse;
}

.ht-av {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  background: linear-gradient(
    135deg,
    hsl(calc(var(--n, 1) * 44 + 190), 65%, 66%) 0%,
    hsl(calc(var(--n, 1) * 44 + 230), 72%, 58%) 100%
  );
  margin-right: -9px;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 4px;
}

.hero-trust-stars {
  font-size: 11px;
  color: #F59E0B;
  letter-spacing: 1.5px;
  line-height: 1;
}

.hero-trust-text > span:not(.hero-trust-stars) {
  font-size: 12.5px;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ---- Visual composition ---- */
.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 24px 40px 36px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Browser mockup */
.hv-browser {
  width: 100%;
  max-width: 440px;
  background: #FAFCFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow:
    0 52px 120px rgba(15,23,42,0.13),
    0 12px 40px rgba(15,23,42,0.07),
    0 0 0 0.5px rgba(15,23,42,0.05);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Chrome bar */
.hv-chrome {
  height: 40px;
  background: #EFF3F8;
  border-bottom: 1px solid #E3E8F0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.hv-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.hv-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hv-dots i:nth-child(1) { background: #FF5F57; }
.hv-dots i:nth-child(2) { background: #FEBC2E; }
.hv-dots i:nth-child(3) { background: #28C840; }

.hv-url {
  flex: 1;
  background: rgba(0,0,0,0.045);
  border-radius: 6px;
  height: 22px;
  font-size: 10.5px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.hv-ssl {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  flex-shrink: 0;
}

.hv-actions {
  display: flex;
  gap: 5px;
}

.hv-action-btn {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(0,0,0,0.04);
}

/* LP screen */
.hv-screen { background: #FAFCFF; }

.hv-lp-hero {
  background: var(--gradient);
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hv-lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hv-lp-logo-bar {
  width: 50px;
  height: 7px;
  background: rgba(255,255,255,0.65);
  border-radius: 4px;
}

.hv-lp-navlinks { display: flex; gap: 6px; }

.hv-lp-navlink {
  width: 26px;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.hv-lp-navlink.short { width: 18px; }

.hv-lp-badge {
  height: 5px;
  width: 54px;
  background: rgba(255,255,255,0.45);
  border-radius: 10px;
}

.hv-lp-h1 {
  height: 10px;
  width: 90%;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
}

.hv-lp-h1.narrow { width: 62%; background: rgba(255,255,255,0.68); }

.hv-lp-ctas {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.hv-lp-btn-solid {
  height: 22px;
  width: 88px;
  background: rgba(255,255,255,0.95);
  border-radius: 5px;
}

.hv-lp-btn-ghost {
  height: 22px;
  width: 76px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 5px;
}

/* LP body */
.hv-lp-body {
  padding: 13px 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hv-lp-row { display: flex; gap: 8px; }
.hv-lp-row.three { gap: 7px; }
.hv-lp-row.two   { gap: 10px; }

.hv-lp-col {
  flex: 1;
  height: 44px;
  background: #F2F5FA;
  border: 1px solid #E8ECF4;
  border-radius: 7px;
}

.hv-lp-col.accent {
  background: rgba(91,63,255,0.04);
  border-color: rgba(91,63,255,0.14);
}

.hv-lp-bar {
  flex: 1;
  height: 6px;
  background: #E3E9F4;
  border-radius: 3px;
}

.hv-lp-bar.short { flex: 0 0 55%; }

.hv-lp-block {
  flex: 1;
  height: 32px;
  background: #F2F5FA;
  border: 1px solid #E8ECF4;
  border-radius: 7px;
}

/* ---- Floating cards — glassmorphism ---- */
.hv-float {
  position: absolute;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.96);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(15,23,42,0.1),
    0 4px 16px rgba(15,23,42,0.06),
    0 0 0 0.5px rgba(15,23,42,0.04);
  z-index: 10;
}

/* Float 1: Analytics card — top right */
.hv-analytics {
  top: 0;
  right: 0;
  padding: 14px 16px;
  min-width: 196px;
  animation: floatA 7.2s ease-in-out infinite;
}

.hv-an-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hv-an-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.hv-an-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 600;
  color: #22D3A5;
  letter-spacing: 0.02em;
}

.hv-an-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 5px rgba(34,211,165,0.6);
  animation: dotBlink 2.5s ease-in-out infinite;
}

/* Chart bars */
.hv-an-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-bottom: 10px;
}

.hv-an-bar {
  flex: 1;
  height: var(--h, 50%);
  background: rgba(91,63,255,0.1);
  border-radius: 3px 3px 0 0;
}

.hv-an-bar.peak { background: var(--gradient); }

.hv-an-row {
  display: flex;
  gap: 14px;
  padding-top: 9px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hv-an-stat { display: flex; flex-direction: column; gap: 1px; }

.hv-an-val {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hv-an-key {
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Float 2: Notification — bottom left */
.hv-notif {
  bottom: 4px;
  left: 0;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  animation: floatB 6.4s ease-in-out infinite;
}

.hv-notif-ring {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(34,211,165,0.1);
  border: 1px solid rgba(34,211,165,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-notif-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22D3A5;
  animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,165,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,211,165,0.0); }
}

.hv-notif-body strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.hv-notif-body span {
  font-size: 11px;
  color: var(--ink-muted);
}

/* Float 3: Ad card — mid right */
.hv-adcard {
  top: 42%;
  right: 0;
  width: 120px;
  overflow: hidden;
  padding: 0;
  animation: floatC 8.5s ease-in-out infinite;
  transform: translateY(-50%);
}

.hv-adcard-thumb {
  height: 66px;
  background: linear-gradient(135deg,
    rgba(40,199,255,0.24) 0%,
    rgba(91,63,255,0.24) 100%
  );
  display: flex;
  align-items: flex-start;
  padding: 7px;
}

.hv-adcard-tag {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: rgba(91,63,255,0.7);
  backdrop-filter: blur(4px);
  padding: 3px 7px;
  border-radius: 4px;
}

.hv-adcard-copy {
  padding: 9px 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hv-adcard-line {
  height: 6px;
  background: #E3E9F4;
  border-radius: 3px;
}

.hv-adcard-line.slim { width: 65%; }

.hv-adcard-cta {
  height: 16px;
  background: var(--gradient);
  border-radius: 4px;
  opacity: 0.72;
  margin-top: 2px;
}

/* Float animations */
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(0.15deg); }
  40%       { transform: translateY(-9px) rotate(-0.1deg); }
  70%       { transform: translateY(-4px) rotate(0.15deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  55%       { transform: translateY(-7px); }
}

@keyframes floatC {
  0%, 100% { transform: translateY(-50%) rotate(-0.15deg); }
  50%       { transform: translateY(calc(-50% - 6px)) rotate(0.12deg); }
}

/* Trust strip */
.trust-row {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.trust-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-muted);
  opacity: 0.38;
  transition: opacity var(--ease);
  cursor: default;
}

.trust-logos span:hover { opacity: 0.65; }


/* ====================================================
   9. SERVICES
   ==================================================== */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 34px 30px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}

/* Gradient border mask on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: var(--gradient);
  z-index: 0;
  opacity: 0;
  transition: opacity var(--ease);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  padding: 1.5px;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px transparent;
  border-color: transparent;
}

.svc-card:hover::after { opacity: 1; }

/* All inner content needs z-index above the ::after mask */
.svc-card > * { position: relative; z-index: 1; }

.svc-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(91,63,255,0.06);
  border: 1px solid rgba(91,63,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--ease), border-color var(--ease);
}

.svc-card:hover .svc-icon {
  background: rgba(91,63,255,0.1);
  border-color: rgba(91,63,255,0.22);
}

.svc-name {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  transition: gap var(--ease);
}

.svc-link:hover { gap: 10px; }


/* ====================================================
   10. RESULTS
   ==================================================== */
.results {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle depth */
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(91,63,255,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(40,199,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.results-left { padding-top: 8px; }

.results-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 20px;
}

.results-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 28px;
}

.results-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--ease);
}

.results-cta:hover { gap: 10px; }

.results-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-block {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--ease);
  border-radius: var(--r);
}

.stat-block:last-child { border-bottom: none; }

.stat-block:hover { background: rgba(255,255,255,0.03); }

.stat-num {
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 14px;
}

.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  width: var(--w, 70%);
  background: var(--gradient);
  border-radius: 2px;
}


/* ====================================================
   11. PORTFOLIO
   ==================================================== */
.portfolio {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Thumbnail area */
.proj-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--border-soft);
}

.proj-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.proj-card:hover .proj-img { transform: scale(1.04); }

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,29,0.22) 0%, transparent 60%);
  z-index: 4;
  opacity: 0;
  transition: opacity var(--ease);
}

.proj-card:hover .proj-overlay { opacity: 1; }

/* CSS fallback visuals — shown when img is missing */
.proj-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Fallback 1: Landing Page */
.pf-1 { background: #EFF4FB; }

.pf-band {
  height: 38%;
  background: var(--gradient);
  opacity: 0.85;
  flex-shrink: 0;
}

.pf-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F8FAFC;
}

.pf-row {
  height: 8px;
  background: #DDE4EF;
  border-radius: 4px;
  width: 100%;
}

.pf-row.short { width: 55%; }

.pf-cols { display: flex; gap: 6px; }

.pf-col {
  flex: 1;
  height: 28px;
  background: #E8EDF5;
  border-radius: 6px;
  border: 1px solid #DDE4EF;
}

/* Fallback 2: Ad Creative */
.pf-2 { background: #F0EDFB; flex-direction: row; }

.pf-ad-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pf-ad-img {
  flex: 1;
  background: linear-gradient(135deg, rgba(91,63,255,0.25) 0%, rgba(40,199,255,0.2) 100%);
}

.pf-ad-copy {
  padding: 10px 12px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-ad-row {
  height: 7px;
  background: #E0D9F7;
  border-radius: 3px;
}

.pf-ad-row.short { width: 55%; }

.pf-ad-cta {
  height: 22px;
  width: 80px;
  background: var(--gradient);
  opacity: 0.7;
  border-radius: 5px;
  margin-top: 2px;
}

/* Fallback 3: E-commerce grid */
.pf-3 { background: #EBF7F4; }

.pf-ecom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  height: 100%;
}

.pf-ecom-item {
  background: #D9EEE9;
  border-radius: 8px;
  border: 1px solid #C4E3DC;
}

/* Fallback 4: Video */
.pf-4 { background: #0E1525; }

.pf-video-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pf-play {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-video-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 60%;
}

.pf-video-row {
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  width: 100%;
}

.pf-video-row.short { width: 65%; }

/* Card body */
.proj-body { padding: 22px 26px 26px; }

.proj-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(91,63,255,0.07);
  border: 1px solid rgba(91,63,255,0.13);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.proj-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 7px;
  transition: color var(--ease);
}

.proj-card:hover .proj-title { color: var(--purple); }

.proj-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  transition: gap var(--ease);
}

.proj-link:hover { gap: 10px; }


/* ====================================================
   12. PROCESS
   ==================================================== */
.process {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
}

.proc-step { padding-right: 32px; }

.proc-head {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.proc-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

.proc-step:hover .proc-circle {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91,63,255,0.35);
}

.proc-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
  margin-left: 10px;
}

.proc-step:last-child { padding-right: 0; }

.proc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.proc-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}


/* ====================================================
   13. CTA
   ==================================================== */
.cta-sec {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-a {
  width: 500px;
  height: 500px;
  left: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(91,63,255,0.18) 0%, transparent 70%);
}

.cta-orb-b {
  width: 500px;
  height: 500px;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(40,199,255,0.12) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 8px rgba(34,211,165,0.6);
  flex-shrink: 0;
  animation: dotBlink 2.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ====================================================
   14. FOOTER
   ==================================================== */
.footer {
  background: #060C18;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 230px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.f-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: all var(--ease);
}

.f-social:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--ease);
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 6px;
}


/* ====================================================
   15. SCROLLBAR & SELECTION
   ==================================================== */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

::selection {
  background: rgba(91,63,255,0.14);
  color: var(--ink);
}


/* ====================================================
   16. RESPONSIVE — TABLET (≤1024px)
   ==================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 88px; }

  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 64px 32px 60px;
    gap: 52px;
    min-height: unset;
  }

  .hero-copy { max-width: 100%; }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding: 24px 40px 36px 16px;
    min-height: 480px;
  }

  .trust-wrap { padding: 24px 32px; }

  .results-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .results-desc { max-width: 100%; }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
  }

  .proc-connector { display: none; }
  .proc-step { padding-right: 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: 1 / -1; }
}


/* ====================================================
   17. RESPONSIVE — MOBILE (≤768px)
   ==================================================== */
@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .container { padding: 0 20px; }
  .nav-wrap  { padding: 0 20px; }

  .nav-links { display: none; }
  .burger    { display: flex; }
  .mobile-nav { display: flex; }

  .hero-wrap {
    padding: 44px 20px 40px;
    gap: 44px;
  }

  .hero-eyebrow { font-size: 10.5px; padding: 6px 12px 6px 8px; margin-bottom: 24px; }

  .hero-title {
    font-size: clamp(34px, 9vw, 52px);
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }

  .hero-sub { font-size: 16px; margin-bottom: 32px; }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    font-size: 16px;
  }

  .hero-trust { gap: 10px; }

  /* Simplified visual on mobile */
  .hero-visual {
    min-height: auto;
    padding: 0 0 24px 0;
  }

  .hv-browser {
    max-width: 100%;
    border-radius: 16px;
  }

  .hv-notif  { display: none; }
  .hv-adcard { display: none; }

  .hv-analytics {
    top: -12px;
    right: 4px;
    min-width: 166px;
    padding: 12px 13px;
  }

  .hv-an-chart { height: 36px; }

  .trust-wrap {
    padding: 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-logos { gap: 20px; }
  .trust-logos span { font-size: 12px; }

  .svc-grid { grid-template-columns: 1fr; }

  .proj-grid { grid-template-columns: 1fr; }

  .proc-steps { grid-template-columns: 1fr; gap: 32px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sec-header { margin-bottom: 40px; }
  .sec-title  { font-size: clamp(26px, 7vw, 38px); }

  .cta-title { font-size: clamp(26px, 7vw, 44px); }
  .cta-sub   { font-size: 16px; }

  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Mobile canvas: softer */
  .hero-canvas { opacity: 0.5; }
}


/* ====================================================
   18. RESPONSIVE — SMALL (≤480px)
   ==================================================== */
@media (max-width: 480px) {
  .trust-logos  { gap: 18px; }
  .hv-analytics { display: none; }
  .hero-visual  { min-height: 360px; padding: 16px; }

  .results-layout { gap: 36px; }
  .stat-block { padding: 22px 20px; }

  .footer-top { gap: 24px; }
}
