/* ==========================================================================
   NEXVION LLC — Core Stylesheet
   Connect. Optimize. Grow.
   Brand: Poppins (display) / Inter (text)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Dark site — tell the browser, so native scrollbars, form controls and
     autofill render dark rather than light-on-dark. */
  color-scheme: dark;

  /* Brand palette — from CompanyBrandGuideline */
  --ink:        #0D1321;
  --blue:       #1E3A8A;
  --cyan:       #22D3EE;
  --violet:     #8B5CF6;
  --pink:       #EC4899;
  --white:      #F8FAFC;

  /* Derived surfaces */
  --ink-0:      #070b14;
  --ink-1:      #0D1321;
  --ink-2:      #121a2c;
  --ink-3:      #18213a;
  --surface:    rgba(255,255,255,.028);
  --surface-2:  rgba(255,255,255,.05);
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  /* Text */
  --text:       #F8FAFC;
  --text-soft:  rgba(248,250,252,.72);
  --text-dim:   rgba(248,250,252,.52);
  --text-faint: rgba(248,250,252,.34);

  /* Gradients */
  --grad:       linear-gradient(120deg, #22D3EE 0%, #8B5CF6 52%, #EC4899 100%);
  --grad-soft:  linear-gradient(120deg, #22D3EE 0%, #8B5CF6 60%, #EC4899 100%);
  --grad-blue:  linear-gradient(120deg, #1E3A8A 0%, #2563EB 45%, #22D3EE 100%);
  --grad-warm:  linear-gradient(120deg, #8B5CF6 0%, #EC4899 100%);

  /* Glow */
  --glow-cyan:   0 0 40px rgba(34,211,238,.28);
  --glow-violet: 0 0 44px rgba(139,92,246,.32);
  --glow-pink:   0 0 40px rgba(236,72,153,.26);

  /* Type */
  --font-display: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-text:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Metrics */
  --wrap:    1220px;
  --wrap-sm: 940px;
  --r-sm:  12px;
  --r:     18px;
  --r-lg:  26px;
  --r-xl:  34px;

  --nav-h: 78px;
  --ease:  cubic-bezier(.22,.68,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-1);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

body.no-scroll { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 4.3vw, 3.25rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.6rem); }
h4 { font-size: 1.12rem; font-weight: 600; }
p  { margin: 0; text-wrap: pretty; }

::selection { background: rgba(139,92,246,.42); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), var(--pink));
  border-radius: 99px;
  border: 3px solid var(--ink-0);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--cyan), var(--violet)); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap--sm { max-width: var(--wrap-sm); }

.section { position: relative; padding: clamp(72px, 9vw, 130px) 0; }
.section--tight { padding: clamp(54px, 6vw, 84px) 0; }
.section--flush-top { padding-top: 0; }

.sec-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p {
  color: var(--text-soft);
  font-size: 1.06rem;
  margin-top: 18px;
  line-height: 1.75;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .745rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.sec-head--center .eyebrow::after {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(270deg, var(--cyan), var(--violet));
}

/* Gradient text */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-text--anim {
  background: linear-gradient(120deg, #22D3EE, #8B5CF6, #EC4899, #8B5CF6, #22D3EE);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradShift 9s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.muted { color: var(--text-soft); }
.dim   { color: var(--text-dim); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-soft); line-height: 1.75; }

/* Section index numeral (Inubiz-style scannability, Nexvion styling) */
.sec-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.05em;
  background: linear-gradient(180deg, rgba(139,92,246,.30), rgba(139,92,246,0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: -10px;
  user-select: none;
}

/* --------------------------------------------------------------------------
   4. BACKGROUND FX — aurora, grid, noise, cursor glow
   -------------------------------------------------------------------------- */
.fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx__grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 62% at 50% 24%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 62% at 50% 24%, #000 20%, transparent 78%);
}

.fx__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: .5;
  will-change: transform;
}
.fx__blob--1 {
  width: 620px; height: 620px;
  top: -190px; left: -130px;
  background: radial-gradient(circle, rgba(34,211,238,.42), transparent 68%);
  animation: drift1 26s ease-in-out infinite;
}
.fx__blob--2 {
  width: 700px; height: 700px;
  top: 6%; right: -230px;
  background: radial-gradient(circle, rgba(139,92,246,.44), transparent 68%);
  animation: drift2 32s ease-in-out infinite;
}
.fx__blob--3 {
  width: 560px; height: 560px;
  bottom: -160px; left: 32%;
  background: radial-gradient(circle, rgba(236,72,153,.30), transparent 68%);
  animation: drift3 29s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(90px, 70px, 0) scale(1.12); }
}
@keyframes drift2 {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(-110px, 90px, 0) scale(1.08); }
}
@keyframes drift3 {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(70px, -80px, 0) scale(1.14); }
}

/* Fine noise texture for depth */
.fx__noise {
  position: absolute;
  inset: 0;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow (desktop pointer only) */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.13), rgba(34,211,238,.055) 42%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .5s var(--ease);
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* Everything above the FX layer */
.page { position: relative; z-index: 2; }

/* Scroll progress bar */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad);
  z-index: 1000;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .935rem;
  font-weight: 600;
  letter-spacing: -.01em;
  padding: 14px 28px;
  border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* Primary — gradient fill with sheen sweep */
.btn--primary {
  background: var(--grad);
  background-size: 180% 100%;
  color: #fff;
  box-shadow: 0 10px 34px -10px rgba(139,92,246,.66);
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,.34) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease-out);
}
.btn--primary:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 18px 44px -10px rgba(139,92,246,.8);
}
.btn--primary:hover::after { transform: translateX(130%); }

/* Ghost — glass with gradient border on hover */
.btn--ghost {
  background: rgba(255,255,255,.035);
  border-color: var(--line-2);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.08);
  border-color: rgba(34,211,238,.6);
  box-shadow: 0 12px 34px -12px rgba(34,211,238,.5);
}

.btn--sm { padding: 10px 20px; font-size: .86rem; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--cyan);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 13px; color: var(--violet); }

/* --------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  height: 66px;
  background: rgba(10,15,27,.82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--line);
}
.hdr__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo lockup */
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo__mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 12px rgba(139,92,246,.5));
  transition: transform .5s var(--ease-out);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.07); }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: .012em;
}
.logo__name i { font-style: normal; }
.logo__sub {
  font-family: var(--font-display);
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .38em;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .905rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 9px 15px;
  border-radius: 99px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.nav__link[aria-current="page"] { font-weight: 600; }
.nav__link svg { width: 11px; height: 11px; opacity: .6; transition: transform .3s var(--ease); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 290px;
  background: rgba(16,22,38,.95);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 9px;
  box-shadow: 0 26px 62px -18px rgba(0,0,0,.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__item:hover .drop,
.nav__item:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 14px;
}
.drop__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: var(--r-sm);
  transition: background .25s var(--ease);
}
.drop__link:hover { background: rgba(255,255,255,.06); }
.drop__ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(139,92,246,.14);
  border: 1px solid rgba(139,92,246,.22);
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.drop__ico svg { width: 16px; height: 16px; stroke: var(--cyan); }
.drop__link:hover .drop__ico {
  background: rgba(34,211,238,.18);
  border-color: rgba(34,211,238,.38);
}
.drop__t {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
.drop__d {
  font-size: .765rem;
  color: var(--text-dim);
  display: block;
  line-height: 1.4;
  margin-top: 2px;
}

.hdr__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.8px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease), width .4s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21.5px; width: 13px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); width: 18px; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(8,12,22,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: calc(var(--nav-h) + 26px) 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .42s var(--ease), visibility .42s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer__list { display: flex; flex-direction: column; gap: 2px; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.03em;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(22px);
}
.drawer.open .drawer__link {
  animation: drawerIn .55s var(--ease-out) forwards;
}
.drawer__link span {
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: .1em;
}
@keyframes drawerIn { to { opacity: 1; transform: translateY(0); } }
.drawer__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 6px;
}
.drawer__chip {
  font-size: .8rem;
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text-soft);
}
.drawer__foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer__meta { font-size: .88rem; color: var(--text-dim); }
.drawer__meta a { color: var(--cyan); }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 22px) 0 48px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 7px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .82rem;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.hero__badge b {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  background: var(--grad);
  color: #fff;
}
.hero__badge i {
  font-style: normal;
  padding-right: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.65);
  animation: pulseDot 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  margin-bottom: 22px;
}
/* Deliberate three-line stack — one promise per service pillar */
.hero__h1 span { display: block; }
.hero__h1 span:nth-child(1) { color: var(--text-soft); }
.hero__h1 span:nth-child(2) { color: var(--white); }
.hero h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.55vw, 1.19rem);
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 545px;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

/* Tagline chips */
.hero__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.tag-chip {
  font-family: var(--font-display);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.035);
  color: var(--text-soft);
  transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.tag-chip:nth-child(1):hover { border-color: rgba(34,211,238,.6);  color: var(--cyan); }
.tag-chip:nth-child(2):hover { border-color: rgba(139,92,246,.6);  color: var(--violet); }
.tag-chip:nth-child(3):hover { border-color: rgba(236,72,153,.6);  color: var(--pink); }
.tag-chip:hover { transform: translateY(-3px); }

/* Inline hero proof strip */
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero__proof > div {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--line);
  flex: 0 1 auto;
  min-width: 0;
}
.hero__proof > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__proof b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__proof span {
  display: block;
  font-size: .755rem;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* Hero visual — orbital rings echoing the logo swoosh */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.orbit--1 { inset: 4%;  animation: spin 34s linear infinite; }
.orbit--2 { inset: 17%; border-color: rgba(34,211,238,.18); animation: spin 26s linear infinite reverse; }
.orbit--3 { inset: 30%; border-color: rgba(139,92,246,.2);  animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Nodes travelling the orbits */
.orbit::after {
  content: '';
  position: absolute;
  top: -4.5px; left: 50%;
  width: 9px; height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px 2px rgba(34,211,238,.9);
}
.orbit--2::after { background: var(--violet); box-shadow: 0 0 16px 2px rgba(139,92,246,.9); }
.orbit--3::after { background: var(--pink);   box-shadow: 0 0 16px 2px rgba(236,72,153,.9); }

.hero__core {
  position: relative;
  width: 40%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(139,92,246,.3), rgba(13,19,33,.9) 68%);
  border: 1px solid var(--line-2);
  box-shadow: 0 0 80px -12px rgba(139,92,246,.6), inset 0 0 44px rgba(34,211,238,.14);
  animation: corePulse 5.5s ease-in-out infinite;
}
@keyframes corePulse {
  0%,100% { box-shadow: 0 0 80px -12px rgba(139,92,246,.55), inset 0 0 44px rgba(34,211,238,.13); }
  50%     { box-shadow: 0 0 108px -8px rgba(236,72,153,.6), inset 0 0 54px rgba(139,92,246,.2); }
}
.hero__core svg { width: 56%; height: 56%; }

/* Floating capability cards around the orbit */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 12px;
  border-radius: 14px;
  background: rgba(18,26,44,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px -14px rgba(0,0,0,.85);
  white-space: nowrap;
  z-index: 3;
}
.float-card svg { width: 17px; height: 17px; flex-shrink: 0; }
.float-card b {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  display: block;
  line-height: 1.25;
}
.float-card span { font-size: .7rem; color: var(--text-dim); display: block; line-height: 1.3; }
.float-card--a { top: 7%;  left: -6%;  animation: bob 6.5s ease-in-out infinite; }
.float-card--b { top: 40%; right: -9%; animation: bob 7.5s ease-in-out infinite .8s; }
.float-card--c { bottom: 9%; left: 3%; animation: bob 8s ease-in-out infinite 1.6s; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-13px); }
}

/* Signal bars motif (telecom nod) */
.sig { display: flex; align-items: flex-end; gap: 2.5px; height: 17px; }
.sig i {
  width: 3px;
  border-radius: 2px;
  background: var(--cyan);
  animation: sigBar 1.3s ease-in-out infinite;
}
.sig i:nth-child(1) { height: 30%; animation-delay: 0s; }
.sig i:nth-child(2) { height: 55%; animation-delay: .15s; background: var(--violet); }
.sig i:nth-child(3) { height: 78%; animation-delay: .3s;  background: var(--violet); }
.sig i:nth-child(4) { height: 100%; animation-delay: .45s; background: var(--pink); }
@keyframes sigBar {
  0%,100% { transform: scaleY(.45); opacity: .5; }
  50%     { transform: scaleY(1); opacity: 1; }
}

/* --------------------------------------------------------------------------
   8. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 26px;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.6vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.marquee__item:hover { color: var(--white); }
.marquee__item::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. CARDS — glass base + gradient border on hover
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  transition: transform .5s var(--ease-out), background .45s var(--ease), border-color .45s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* animated gradient hairline */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
/* inner glow bloom */
.card::after {
  content: '';
  position: absolute;
  top: -55%; left: 50%;
  width: 70%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,.3), transparent 66%);
  filter: blur(46px);
  opacity: 0;
  transition: opacity .55s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-7px);
  background: var(--surface-2);
  border-color: transparent;
}
.card:hover::before, .card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }

/* Icon tile */
.ico {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.24);
  transition: transform .5s var(--ease-out), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.ico svg { width: 25px; height: 25px; stroke: var(--cyan); stroke-width: 1.7; fill: none; }
.card:hover .ico {
  transform: translateY(-3px) scale(1.06) rotate(-5deg);
  background: rgba(34,211,238,.16);
  border-color: rgba(34,211,238,.42);
  box-shadow: var(--glow-cyan);
}
.ico--cyan   { background: rgba(34,211,238,.12);  border-color: rgba(34,211,238,.26); }
.ico--cyan svg   { stroke: var(--cyan); }
.ico--violet { background: rgba(139,92,246,.13); border-color: rgba(139,92,246,.28); }
.ico--violet svg { stroke: var(--violet); }
.ico--pink   { background: rgba(236,72,153,.12); border-color: rgba(236,72,153,.26); }
.ico--pink svg   { stroke: var(--pink); }
.ico--blue   { background: rgba(37,99,235,.14);  border-color: rgba(37,99,235,.3); }
.ico--blue svg   { stroke: #60A5FA; }

.card p { color: var(--text-soft); font-size: .95rem; line-height: 1.72; margin-top: 12px; }

/* Card index numeral watermark */
.card__idx {
  position: absolute;
  top: 20px; right: 26px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.05);
  letter-spacing: -.04em;
  transition: color .45s var(--ease);
  z-index: 0;
}
.card:hover .card__idx { color: rgba(139,92,246,.24); }

/* Feature list inside cards */
.card__list { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.card__list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 8px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

/* Bento — asymmetric feature grid */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento > *:nth-child(1) { grid-column: span 4; }
.bento > *:nth-child(2) { grid-column: span 2; }
.bento > *:nth-child(3) { grid-column: span 2; }
.bento > *:nth-child(4) { grid-column: span 2; }
.bento > *:nth-child(5) { grid-column: span 2; }
.bento > *:nth-child(6) { grid-column: span 6; }

/* --------------------------------------------------------------------------
   11. SERVICE CARD (large, featured)
   -------------------------------------------------------------------------- */
.svc {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.svc h3 { margin-top: 4px; transition: color .35s var(--ease); }
.svc:hover h3 { color: var(--cyan); }
.svc__foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.svc__price {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: .02em;
}

/* Alternating detail rows (services page) */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
  padding: clamp(42px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}
.svc-row:nth-child(even) .svc-row__media { order: -1; }
.svc-row__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 22%, rgba(139,92,246,.22), transparent 58%),
    radial-gradient(circle at 76% 80%, rgba(34,211,238,.18), transparent 58%),
    rgba(255,255,255,.022);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.svc-row__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}
.svc-row__media svg.big {
  width: 34%; height: auto;
  stroke-width: 1.2;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 26px rgba(139,92,246,.5));
}
.svc-row__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  font-size: .78rem;
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text-soft);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.chip:hover {
  border-color: rgba(34,211,238,.5);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11b. PILLAR STRIP — compact three-up service overview
   -------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.pillar {
  position: relative;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform .5s var(--ease-out), background .45s var(--ease), border-color .45s var(--ease);
}
.pillar::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .55s var(--ease-out);
}
.pillar:hover { transform: translateY(-5px); background: var(--surface-2); border-color: var(--line-2); }
.pillar:hover::after { transform: scaleX(1); }

.pillar__k {
  display: block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pillar h4 { font-size: 1.16rem; font-weight: 600; letter-spacing: -.02em; }
.pillar > p { font-size: .9rem; color: var(--text-dim); line-height: 1.65; margin-top: 10px; }
.pillar__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.pillar__tags span {
  font-size: .715rem;
  padding: 5px 11px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   11c. TEAM GRID
   -------------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.person { text-align: center; }
.person__av {
  width: 86px; height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 30px -10px rgba(139,92,246,.7);
  transition: transform .5s var(--ease-out);
}
.card:hover .person__av { transform: scale(1.06); }
.person b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -.015em;
}
.person > span {
  display: block;
  font-size: .8rem;
  color: var(--cyan);
  margin-top: 5px;
  letter-spacing: .02em;
}
.person p { font-size: .87rem; color: var(--text-dim); line-height: 1.65; margin-top: 13px; }

/* --------------------------------------------------------------------------
   12. STATS
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: rgba(13,19,33,.72);
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.6vw, 32px);
  text-align: center;
  transition: background .45s var(--ease);
  position: relative;
}
.stat:hover { background: rgba(139,92,246,.09); }
.stat__n {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat__l {
  font-size: .845rem;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: var(--line);
}
.steps__fill {
  position: absolute;
  top: 27px; left: 8%;
  height: 1px;
  width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(139,92,246,.9);
  transition: width 1.7s var(--ease-out);
}
.steps.in .steps__fill { width: 84%; }

.step { position: relative; text-align: center; }
.step__n {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  background: var(--ink-1);
  border: 1px solid var(--line-2);
  position: relative;
  z-index: 2;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease),
              transform .5s var(--ease-out), color .4s var(--ease);
}
.step:hover .step__n {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--glow-violet);
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--text-dim); line-height: 1.66; }

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote { display: flex; flex-direction: column; min-height: 268px; }
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: .7;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.quote p {
  font-size: .97rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 26px;
}
.quote__who { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad);
  flex-shrink: 0;
}
.quote__who b {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
.quote__who span { font-size: .78rem; color: var(--text-dim); display: block; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 15px; height: 15px; fill: #FBBF24; }

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.faq__item.open { border-color: rgba(139,92,246,.42); background: rgba(139,92,246,.05); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 21px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text);
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--cyan); }
.faq__ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.faq__ic::before, .faq__ic::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.faq__ic::before { width: 11px; height: 1.6px; }
.faq__ic::after  { width: 1.6px; height: 11px; }
.faq__item.open .faq__ic {
  background: var(--grad);
  border-color: transparent;
  transform: rotate(180deg);
}
.faq__item.open .faq__ic::after { transform: scaleY(0); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.faq__a p {
  padding: 0 24px 23px;
  color: var(--text-soft);
  font-size: .945rem;
  line-height: 1.76;
  max-width: 78ch;
}

/* --------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(42px, 6vw, 82px) clamp(26px, 5vw, 66px);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(139,92,246,.3), transparent 62%),
    radial-gradient(ellipse 60% 90% at 16% 100%, rgba(34,211,238,.2), transparent 62%),
    radial-gradient(ellipse 60% 90% at 86% 100%, rgba(236,72,153,.2), transparent 62%),
    rgba(13,19,33,.72);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 74%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p {
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.06rem;
  line-height: 1.75;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
}
.cta-band__note {
  margin-top: 24px;
  font-size: .84rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.phero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 clamp(52px, 6vw, 84px);
  overflow: hidden;
}
.phero__inner { max-width: 820px; }
.phero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin-bottom: 22px; }
.phero p {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--text-soft);
  line-height: 1.76;
  max-width: 640px;
}
.phero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

/* Breadcrumb */
.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: var(--text-faint);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.crumb a { transition: color .3s var(--ease); }
.crumb a:hover { color: var(--cyan); }
.crumb svg { width: 12px; height: 12px; opacity: .5; }
.crumb b { color: var(--text-soft); font-weight: 500; }

/* --------------------------------------------------------------------------
   18. FORMS
   -------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 17px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: .81rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-soft);
}
.field label span { color: var(--pink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 17px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--text);
  font-size: .95rem;
  font-family: var(--font-text);
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(139,92,246,.7);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(139,92,246,.13);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.field select option { background: var(--ink-2); color: var(--text); }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .845rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.form__consent input {
  width: 17px; height: 17px;
  margin-top: 3px;
  accent-color: var(--violet);
  flex-shrink: 0;
  cursor: pointer;
}
.form__consent a { color: var(--cyan); }

.form__msg {
  display: none;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  line-height: 1.6;
  border: 1px solid;
}
.form__msg.show { display: block; }
.form__msg--ok {
  background: rgba(52,211,153,.1);
  border-color: rgba(52,211,153,.4);
  color: #6EE7B7;
}
.form__msg--err {
  background: rgba(236,72,153,.1);
  border-color: rgba(236,72,153,.4);
  color: #F9A8D4;
}

/* Contact info tiles */
.info-tile {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .45s var(--ease-out);
}
.info-tile:hover {
  border-color: rgba(34,211,238,.42);
  background: var(--surface-2);
  transform: translateX(5px);
}
.info-tile__ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.26);
  flex-shrink: 0;
}
.info-tile__ic svg { width: 19px; height: 19px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.info-tile b {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 6px;
}
.info-tile p, .info-tile a {
  font-size: .96rem;
  color: var(--text);
  line-height: 1.6;
  transition: color .3s var(--ease);
}
.info-tile a:hover { color: var(--cyan); }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.ftr {
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(7,11,20,.5), rgba(7,11,20,.95));
  padding: clamp(52px, 6vw, 80px) 0 0;
  margin-top: clamp(50px, 6vw, 80px);
}
.ftr__top {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.25fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(38px, 5vw, 56px);
}
.ftr__brand { max-width: 330px; }
.ftr__brand > p {
  color: var(--text-dim);
  font-size: .91rem;
  line-height: 1.72;
  margin: 18px 0 22px;
}
.ftr__tag {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ftr h5 {
  font-family: var(--font-display);
  font-size: .755rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.ftr__links { display: flex; flex-direction: column; gap: 11px; }
.ftr__links a {
  font-size: .91rem;
  color: var(--text-dim);
  transition: color .3s var(--ease), transform .3s var(--ease), padding-left .3s var(--ease);
  display: inline-block;
}
.ftr__links a:hover { color: var(--cyan); padding-left: 6px; }

.ftr__contact { display: flex; flex-direction: column; gap: 15px; }
.ftr__ci { display: flex; gap: 12px; align-items: flex-start; font-size: .89rem; color: var(--text-dim); line-height: 1.6; }
.ftr__ci svg { width: 16px; height: 16px; stroke: var(--violet); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.ftr__ci a { transition: color .3s var(--ease); }
.ftr__ci a:hover { color: var(--cyan); }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  transition: transform .4s var(--ease-out), background .35s var(--ease),
              border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.socials svg { width: 16px; height: 16px; fill: var(--text-dim); transition: fill .35s var(--ease); }
.socials a:hover {
  transform: translateY(-4px);
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 10px 26px -8px rgba(139,92,246,.7);
}
.socials a:hover svg { fill: #fff; }

.ftr__bot {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--text-faint);
}
.ftr__bot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.ftr__bot a { transition: color .3s var(--ease); }
.ftr__bot a:hover { color: var(--cyan); }

/* Giant ghosted wordmark */
.ftr__ghost {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 15vw, 12rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .78;
  text-align: center;
  background: linear-gradient(180deg, rgba(139,92,246,.16), rgba(139,92,246,0) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: none;
  pointer-events: none;
  padding-top: 14px;
  overflow: hidden;
}

/* Back to top */
.totop {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  border: 0;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s, box-shadow .4s var(--ease);
  box-shadow: 0 10px 30px -10px rgba(139,92,246,.8);
}
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translateY(-4px); box-shadow: 0 16px 38px -10px rgba(139,92,246,.95); }
.totop svg { width: 19px; height: 19px; stroke: #fff; stroke-width: 2.3; fill: none; }

/* --------------------------------------------------------------------------
   20. REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* If scripting is unavailable, never hide content behind a reveal that
   will never fire. */
@media (scripting: none) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .steps__fill { width: 84% !important; }
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal="fade"]  { transform: none; }

/* --------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 54px; }
  .hero__visual { max-width: 420px; order: -1; }
  .float-card--a { left: -2%; }
  .float-card--b { right: -2%; }
  .ftr__top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .ftr__brand { grid-column: span 2; max-width: 100%; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .bento > * { grid-column: span 3 !important; }
}

@media (max-width: 900px) {
  .nav, .hdr__cta .btn--ghost { display: none; }
  .burger { display: block; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps::before, .steps__fill { display: none; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 32px; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 19px; }
  .hdr__inner { padding-inline: 19px; }
  .grid--2, .grid--3, .grid--4, .team { grid-template-columns: 1fr; }
  .bento > * { grid-column: span 6 !important; }
  .form__row { grid-template-columns: 1fr; }
  .hero__proof > div {
    width: 50%;
    padding: 0 0 16px;
    margin: 0;
    border-right: 0;
  }
  .hero__proof { gap: 18px 0; }
  .float-card--a { top: 2%; left: -4%; padding: 9px 13px 9px 10px; }
  .float-card--b { top: 44%; right: -5%; padding: 9px 13px 9px 10px; }
  .float-card--c { bottom: 3%; left: -2%; padding: 9px 13px 9px 10px; }
  .float-card b { font-size: .75rem; }
  .float-card span { font-size: .64rem; }
  .ftr__top { grid-template-columns: 1fr; }
  .ftr__brand { grid-column: span 1; }
  .ftr__bot { flex-direction: column; align-items: flex-start; }
  .cursor-glow { display: none; }
  .totop { right: 16px; bottom: 16px; }
  .drawer__link { font-size: 1.28rem; }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (max-width: 560px) {
  /* Header has only room for the logo and the burger — the drawer carries the CTA */
  .hdr__cta .btn--primary { display: none; }
  .logo__name { font-size: 1.12rem; }
  .hero__badge { font-size: .75rem; padding: 6px 7px 6px 6px; }
  .hero__badge b { font-size: .62rem; padding: 3px 9px; }
  .hero__badge i { padding-right: 8px; gap: 6px; }
}

@media (max-width: 420px) {
  .float-card--b, .float-card--c { display: none; }
  .stats { grid-template-columns: 1fr; }
  .hero__visual { max-width: 300px; }
}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY — reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .cursor-glow { display: none; }
  .steps.in .steps__fill { width: 84%; }
}

/* Print */
@media print {
  .fx, .cursor-glow, .totop, .hdr, .marquee, .scroll-bar { display: none !important; }
  body { background: #fff; color: #000; }
}
