/* ==========================================================================
   Checkit Infotech Pvt. Ltd. — Core Stylesheet
   Theme: Blue & White
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand blues */
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #1466f0;
  --blue-700: #0b4bc0;
  --blue-800: #0a3a92;
  --blue-900: #072a6b;

  --navy:      #061a3a;
  --navy-soft: #0c2148;
  --navy-2:    #0d2a5c;

  /* Neutrals */
  --white:  #ffffff;
  --gray-50:  #f7f9fc;
  --gray-100: #eef2f8;
  --gray-200: #e2e8f2;
  --gray-300: #cbd5e4;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Semantic */
  --primary:       var(--blue-600);
  --primary-dark:  var(--blue-700);
  --primary-light: var(--blue-50);
  --ink:           #0f1e35;
  --body:          #4a5a72;
  --line:          var(--gray-200);
  --bg:            var(--white);
  --bg-alt:        var(--gray-50);

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(6, 26, 58, .06);
  --shadow-sm: 0 2px 8px rgba(6, 26, 58, .06);
  --shadow-md: 0 10px 30px rgba(6, 26, 58, .08);
  --shadow-lg: 0 24px 60px rgba(6, 26, 58, .12);
  --shadow-blue: 0 14px 34px rgba(20, 102, 240, .28);

  /* Layout */
  --container: 1200px;
  --nav-h: 76px;

  --ease: cubic-bezier(.4, 0, .2, 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;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }

img, svg, video { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
li { margin-bottom: .45rem; }

strong { color: var(--ink); font-weight: 650; }

::selection { background: var(--blue-600); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: 860px; }

.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.section-sm { padding: clamp(48px, 5vw, 72px) 0; }
.section-alt { background: var(--bg-alt); }
.section-blue {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 55%, #2a7bff 100%);
  color: rgba(255,255,255,.85);
  overflow: hidden;   /* clips the decorative blobs to the panel */
}
.section-blue h1, .section-blue h2, .section-blue h3, .section-blue h4 { color: #fff; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; }

/* ---------- 4. Section Headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 7px 15px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.section-blue .eyebrow,
.eyebrow-light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}
.section-blue .eyebrow::before { background: #7db4ff; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.text-center { margin-inline: auto; }
.section-head p { font-size: 1.06rem; margin-bottom: 0; }
.section-blue .section-head p { color: rgba(255,255,255,.82); }

.lead { font-size: 1.12rem; line-height: 1.75; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(20,102,240,.36);
}

.btn-outline {
  border-color: var(--gray-300);
  color: var(--ink);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white { background: #fff; color: var(--blue-700); }
.btn-white:hover { background: var(--blue-50); color: var(--blue-800); transform: translateY(-2px); }

.btn-ghost-light {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 11px 20px; font-size: .88rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .93rem;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(6,26,58,.06);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 32px; height: 41px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name {
  font-size: 1.14rem;
  font-weight: 800;
  color: #39444a;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.brand-tagline {
  display: none;
  font-size: .62rem;
  font-style: italic;
  color: var(--gray-400);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu > li { margin: 0; position: relative; }
/* CTA duplicated for the mobile drawer only — .nav-actions carries the
   desktop one. Without this the button appears twice above 980px. */
.nav-menu .mobile-cta { display: none; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  font-size: .93rem;
  font-weight: 550;
  color: var(--gray-700);
  border-radius: var(--r-full);
  transition: all .2s var(--ease);
}
.nav-menu > li > a:hover { color: var(--primary); background: var(--blue-50); }
.nav-menu > li > a.active { color: var(--primary); font-weight: 650; }
.nav-menu .caret { width: 11px; height: 11px; opacity: .55; transition: transform .25s var(--ease); }
.nav-menu > li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 9px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .22s var(--ease);
}
.nav-menu > li:hover .dropdown,
.nav-menu > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 13px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--r-sm);
}
.dropdown a:hover { background: var(--blue-50); color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: all .25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 74px) 0 92px;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(20,102,240,.14), transparent 62%),
    radial-gradient(760px 460px at 4% 12%, rgba(59,130,246,.10), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,102,240,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,102,240,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: .55em; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--blue-600), #37a0ff 60%, var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.14rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 550; color: var(--gray-600); }
.hero-trust-item svg { width: 17px; height: 17px; color: var(--primary); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  /* extra top/bottom padding reserves clear space for the floating badges */
  padding: 46px 26px 44px;
  position: relative;
  z-index: 2;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.hero-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.dots { display: flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-200); display: block; }
.dots i:first-child { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }

.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 20px; }
.metric-box {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 15px 16px;
}
.metric-box .label { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); }
.metric-box .value { font-size: 1.5rem; font-weight: 750; color: var(--ink); letter-spacing: -.03em; line-height: 1.25; }
.metric-box .value small { font-size: .8rem; color: #16a34a; font-weight: 650; margin-left: 5px; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 108px;
  padding: 0 2px;
}
.chart-bars i {
  flex: 1;
  display: block;
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
  border-radius: 5px 5px 3px 3px;
  animation: growBar 1.1s var(--ease) backwards;
}
@keyframes growBar { from { height: 4% !important; opacity: .4; } }

.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 3;
  animation: bob 4.5s ease-in-out infinite;
}
.float-badge .fb-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--blue-50);
  color: var(--primary);
  flex-shrink: 0;
}
.float-badge .fb-icon svg { width: 17px; height: 17px; }
.float-badge .fb-title { font-size: .84rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.float-badge .fb-sub { font-size: .73rem; color: var(--gray-500); line-height: 1.25; }
/* Float over the orbit edges, clear of the core and the terminal below. */
.fb-1 { top: 1%;  left: -28px; }
.fb-2 { top: 74%; right: -28px; animation-delay: 1.6s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

.hero-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,102,240,.28), transparent 68%);
  filter: blur(46px);
  top: -50px; right: -60px;
  z-index: 0;
}

/* ---------- 8. Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 66px) 0 66px;
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-700) 48%, var(--blue-600) 100%);
  color: rgba(255,255,255,.84);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 100% at 70% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 70% 0%, #000, transparent 72%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,180,255,.30), transparent 66%);
  filter: blur(60px);
  top: -180px; right: -100px;
}
.page-hero > .container { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 660px; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: .86rem;
}
.breadcrumb li { margin: 0; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 9px; }
.breadcrumb a { color: rgba(255,255,255,.82); font-weight: 500; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; color: rgba(255,255,255,.38); }

/* ---------- 9. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: .5em; }
.card p { font-size: .96rem; margin-bottom: 0; }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--blue-50), var(--blue-100));
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all .3s var(--ease);
}
.card-icon svg { width: 25px; height: 25px; }
.card:hover .card-icon {
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

/* A whole card can be a link — keep its body text in the normal colour
   instead of inheriting the anchor blue. */
a.card, a.card:hover { color: var(--body); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .89rem;
  font-weight: 620;
  color: var(--primary);
}
.card-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

.card-num {
  position: absolute;
  top: 16px; right: 22px;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--blue-50);
  line-height: 1;
  letter-spacing: -.05em;
  pointer-events: none;
  transition: color .3s var(--ease);
}
.card:hover .card-num { color: var(--blue-100); }

.card-flat {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all .28s var(--ease);
}
.card-flat:hover { background: #fff; box-shadow: var(--shadow-sm); border-color: var(--blue-200); }

/* Glass card (on blue backgrounds) */
.card-glass {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
  height: 100%;
}
.card-glass:hover { background: rgba(255,255,255,.14); transform: translateY(-5px); }
.card-glass p { color: rgba(255,255,255,.8); font-size: .96rem; margin-bottom: 0; }
.card-glass .card-icon { background: rgba(255,255,255,.14); color: #fff; }
.card-glass:hover .card-icon { background: #fff; color: var(--blue-700); }

/* ---------- 10. Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center;
  padding: 34px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all .3s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.stat-num {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  background: linear-gradient(120deg, var(--blue-600), #43a4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 9px;
}
.stat-label { font-size: .92rem; font-weight: 550; color: var(--gray-500); }

.stats-blue .stat {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.stats-blue .stat:hover { background: rgba(255,255,255,.14); }
.stats-blue .stat-num { background: linear-gradient(120deg, #fff, #b9d7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-blue .stat-label { color: rgba(255,255,255,.78); }

/* ---------- 11. Feature List ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: .98rem;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231466f0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.check-list.light li { color: rgba(255,255,255,.86); }
.check-list.light li::before {
  background-color: rgba(255,255,255,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.check-list.two-col { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }

/* ---------- 12. Split Sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-500));
  min-height: 400px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 38px 38px;
}
.split-media-inner { position: relative; z-index: 2; width: 100%; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 550;
  color: var(--gray-700);
  transition: all .22s var(--ease);
}
.pill:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pill-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }
.pill-light:hover { background: #fff; color: var(--blue-700); border-color: #fff; }

/* ---------- 13. Process / Timeline ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.process::before {
  content: "";
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-num {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-200);
  color: var(--primary);
  display: grid; place-items: center;
  font-weight: 750;
  font-size: 1.08rem;
  transition: all .3s var(--ease);
}
.process-step:hover .process-num {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-blue);
}
.process-step h4 { margin-bottom: .4em; }
.process-step p { font-size: .92rem; margin-bottom: 0; }

/* ---------- 14. Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: all .28s var(--ease);
}
.industry:hover {
  transform: translateY(-6px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--primary);
  display: grid; place-items: center;
  transition: all .28s var(--ease);
}
.industry-icon svg { width: 22px; height: 22px; }
.industry:hover .industry-icon { background: var(--primary); color: #fff; }
.industry h4 { font-size: .95rem; margin: 0; }

/* ---------- 15. Tech Stack Tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 42px;
}
.tab {
  padding: 11px 24px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.tab:hover { border-color: var(--blue-300); color: var(--primary); }
.tab.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: var(--shadow-blue); }

.tab-panel { display: none; animation: fadeUp .4s var(--ease); }
.tab-panel.active { display: block; }

.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tech {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 12px;
  text-align: center;
  transition: all .26s var(--ease);
}
.tech:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.tech-logo {
  width: 44px; height: 44px;
  margin: 0 auto 11px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--primary);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.03em;
}
.tech span { font-size: .86rem; font-weight: 600; color: var(--gray-700); }

/* ---------- 16. Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); transform: translateY(-5px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 17px; height: 17px; color: #f5a623; }
.testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  flex-grow: 1;
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after  { content: "\201D"; }
.t-author { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.t-name { font-weight: 680; color: var(--ink); font-size: .95rem; line-height: 1.3; }
.t-role { font-size: .84rem; color: var(--gray-500); line-height: 1.3; }

/* ---------- 17. Portfolio ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 42px; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.work:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.work-thumb {
  height: 190px;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-500));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.work-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.work-thumb svg { width: 52px; height: 52px; color: rgba(255,255,255,.9); position: relative; z-index: 2; transition: transform .35s var(--ease); }
.work:hover .work-thumb svg { transform: scale(1.15) rotate(-5deg); }
.work-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  color: var(--blue-700);
  font-size: .73rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: .03em;
}
.work-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.work-body h3 { font-size: 1.14rem; margin-bottom: .45em; }
.work-body p { font-size: .93rem; flex-grow: 1; }
.work-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.chip {
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

/* ---------- 18. Accordion / FAQ ---------- */
.accordion { display: grid; gap: 13px; }
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: all .25s var(--ease);
}
.acc-item.open { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 620;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  line-height: 1.45;
}
.acc-head:hover { color: var(--primary); }
.acc-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--primary);
  display: grid; place-items: center;
  transition: all .28s var(--ease);
}
.acc-icon svg { width: 15px; height: 15px; }
.acc-item.open .acc-icon { background: var(--primary); color: #fff; transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.acc-body-inner { padding: 0 24px 24px; font-size: .97rem; }
.acc-body-inner p:last-child { margin-bottom: 0; }

/* ---------- 19. Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .87rem;
  font-weight: 620;
  color: var(--ink);
}
.field label .req { color: #dc2626; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--gray-50);
  transition: all .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,102,240,.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field .error-msg { font-size: .8rem; color: #dc2626; display: none; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #dc2626; background: #fef2f2; }
.field.invalid .error-msg { display: block; }

.checkbox-row { display: flex; align-items: flex-start; gap: 11px; font-size: .88rem; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }

.form-note { font-size: .84rem; color: var(--gray-500); margin-top: 16px; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: .93rem;
  margin-bottom: 24px;
}
.form-success.show { display: flex; }
.form-success svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 2px; }

/* ---------- 20. Contact Info ---------- */
.info-item {
  display: flex;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: 0; }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 21px; height: 21px; }
.info-item h4 { margin-bottom: .25em; font-size: .98rem; }
.info-item p { font-size: .94rem; margin-bottom: 0; }
.info-item a { font-weight: 550; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
  background: var(--gray-100);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 21. CTA Band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 70px);
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 52%, #2b82ff 100%);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000, transparent 75%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin-inline: auto; font-size: 1.06rem; }
.cta-band .btn-group { justify-content: center; margin-top: 32px; }

/* ---------- 22. Careers ---------- */
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all .28s var(--ease);
}
.job:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateX(5px); }
.job h3 { font-size: 1.12rem; margin-bottom: .35em; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .86rem; color: var(--gray-500); }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-meta svg { width: 14px; height: 14px; color: var(--primary); }

/* ---------- 23. Blog ---------- */
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  height: 100%;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.post-thumb {
  height: 168px;
  background: linear-gradient(140deg, var(--blue-600), #47a3ff);
  position: relative;
  display: grid; place-items: center;
}
.post-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.2), transparent 55%);
}
.post-thumb svg { width: 44px; height: 44px; color: rgba(255,255,255,.92); position: relative; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.post-body h3 { font-size: 1.1rem; line-height: 1.4; margin-bottom: .5em; }
.post-body p { font-size: .93rem; flex-grow: 1; }
.post-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: .8rem; color: var(--gray-500);
  margin-bottom: 13px;
}
.post-meta .chip { font-size: .72rem; }

/* ---------- 24. Legal / Doc Pages ---------- */
.doc { font-size: 1rem; }
.doc h2 { font-size: 1.5rem; margin-top: 2.4em; padding-top: .3em; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 1.12rem; margin-top: 1.8em; }
.doc ul { padding-left: 1.35rem; }
.doc li { margin-bottom: .55rem; }
.doc-updated {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 8px 16px;
  border-radius: var(--r-full);
  margin-bottom: 34px;
}
.toc {
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 28px;
  margin-bottom: 44px;
}
.toc h4 { margin-bottom: .8em; }
.toc ol { margin: 0; padding-left: 1.2rem; font-size: .94rem; }

/* ---------- 25. Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.62);
  padding: 78px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,102,240,.28), transparent 66%);
  filter: blur(70px);
  top: -320px; left: -160px;
}
.site-footer > .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 54px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: rgba(255,255,255,.4); }
.site-footer .brand-tagline { display: block; color: rgba(255,255,255,.42); }
.footer-about { font-size: .93rem; line-height: 1.75; margin: 22px 0 24px; max-width: 330px; }
.footer-col h4 {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: .93rem; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col a { transition: all .2s var(--ease); display: inline-block; }

.footer-contact li {
  display: flex;
  gap: 11px;
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--blue-400); flex-shrink: 0; margin-top: 4px; }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.72);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); padding-left: 0; }
.socials svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .87rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.62); }
.footer-legal a:hover { color: #fff; }
.cin-badge {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* Newsletter */
.newsletter-form { display: flex; gap: 9px; margin-top: 18px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: .9rem;
  padding: 12px 15px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--blue-400); background: rgba(255,255,255,.1); }
.newsletter-form button {
  padding: 12px 18px;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.newsletter-form button:hover { background: var(--blue-500); }

/* ---------- 26. Cookie Banner ---------- */
.cookie-bar {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 1200;
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp .45s var(--ease);
}
.cookie-bar.show { display: flex; }
.cookie-bar p { flex: 1; min-width: 260px; font-size: .9rem; margin: 0; }

/* ---------- 27. Back to Top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  padding: 0;                 /* buttons default to 1px 6px */
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.to-top svg { width: 19px; height: 19px; }

/* ---------- 28. Marquee (client strip) ---------- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scrollX 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gray-400);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .25s var(--ease);
}
.marquee-item:hover { color: var(--primary); }
.marquee-item svg { width: 20px; height: 20px; }
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 29. Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 30. Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 40px; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 980px) {
  :root { --nav-h: 68px; }

  .nav-toggle { display: grid; }
  .nav-actions .btn { display: none; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 18px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { border-bottom: 1px solid var(--gray-100); }
  .nav-menu > li > a { padding: 15px 4px; font-size: 1rem; border-radius: 0; justify-content: space-between; }
  .nav-menu > li > a:hover { background: none; }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--blue-100);
    border-radius: 0;
    min-width: 0;
    padding: 0 0 12px 14px;
    margin-left: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .nav-menu > li:hover .dropdown { transform: none; }
  .nav-menu > li.expanded .dropdown { max-height: 520px; }
  .nav-menu > li.expanded .caret { transform: rotate(180deg); }
  .nav-menu .mobile-cta { display: block; margin-top: 22px; border: 0 !important; }
  .nav-menu .mobile-cta .btn { display: inline-flex; width: 100%; }

  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero { padding-top: calc(var(--nav-h) + 52px); padding-bottom: 70px; }
  .hero-lead { max-width: none; }
  .fb-1 { left: 0; top: -18px; }
  .fb-2 { right: 0; }

  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-media { min-height: 320px; order: -1; }
  .split.media-last .split-media { order: 0; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process::before { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-about { max-width: none; }
  .process { grid-template-columns: 1fr; }
  .job { flex-direction: column; align-items: flex-start; gap: 18px; }
  .job .btn { width: 100%; }
  .form-card { padding: 26px 22px; }
  .section-head { margin-bottom: 38px; }
  .btn-group .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-bar .btn-group { width: 100%; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 460px) {
  .container { padding-inline: 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-sub { display: none; }
  .site-footer .brand-tagline { display: none; }
  .hero-card { padding: 20px; }
  .float-badge { display: none; }
  .hero-visual { padding-top: 0; }
}

/* ---------- 31. Print ---------- */
@media print {
  .site-header, .site-footer, .to-top, .cookie-bar, .cta-band { display: none !important; }
  body { color: #000; }
  .page-hero { background: none; color: #000; padding-top: 20px; }
  .page-hero h1, .page-hero p { color: #000; }
  .scroll-progress { display: none !important; }
}

/* ==========================================================================
   32. MOTION LAYER
   Everything below is decorative movement. All of it collapses to a static
   end-state under prefers-reduced-motion (see section 33).
   ========================================================================== */

/* ---- 32.1 Page entrance ---- */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn .45s var(--ease); }

.anim-up { animation: fadeUp .85s var(--ease) backwards; }

/* ---- 32.2 Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1100;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600) 45%, #38a1ff);
  box-shadow: 0 0 14px rgba(20,102,240,.65);
  transition: width .12s linear;
}

/* ---- 32.3 Reveal variants ---- */
.reveal-left, .reveal-right, .reveal-zoom, .reveal-flip {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-zoom  { transform: scale(.9); }
.reveal-flip  { transform: perspective(900px) rotateX(-14deg); transform-origin: top center; }
.reveal-left.visible, .reveal-right.visible,
.reveal-zoom.visible, .reveal-flip.visible {
  opacity: 1;
  transform: none;
}

/* ---- 32.4 Rotating headline words ---- */
.rotator {
  display: inline-grid;
  vertical-align: bottom;
  text-align: left;
}
.rotator > span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(.5em) rotateX(-55deg);
  transform-origin: center bottom;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  background: linear-gradient(100deg, var(--blue-600), #37a0ff 60%, var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.rotator > span.is-in  { opacity: 1; transform: none; }
.rotator > span.is-out { opacity: 0; transform: translateY(-.5em) rotateX(55deg); }

/* ---- 32.5 Hover shine sweep ---- */
.card, .work, .post, .job, .testimonial, .industry, .tech { position: relative; }
.card::after, .work::after, .post::after,
.testimonial::after, .industry::after, .tech::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.card:hover::after, .work:hover::after, .post:hover::after,
.testimonial:hover::after, .industry:hover::after, .tech:hover::after {
  animation: shine .85s var(--ease);
}
@keyframes shine {
  0%   { left: -75%; opacity: 0; }
  18%  { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}
.card-glass::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); }

/* ---- 32.6 Button ripple ---- */
.btn { overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transform: translate(-50%, -50%) scale(0);
  opacity: .9;
  pointer-events: none;
  animation: rippleOut .62s ease-out forwards;
}
.btn-outline .ripple, .btn-white .ripple { background: rgba(20,102,240,.28); }
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ---- 32.7 Drifting background blobs ---- */
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: blobDrift 20s ease-in-out infinite;
}
.section-blue > .blob:nth-of-type(1),
.cta-band > .blob:nth-of-type(1) {
  width: 380px; height: 380px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(150,200,255,.42), transparent 68%);
}
.section-blue > .blob:nth-of-type(2),
.cta-band > .blob:nth-of-type(2) {
  width: 320px; height: 320px;
  bottom: -110px; right: -60px;
  background: radial-gradient(circle, rgba(90,160,255,.40), transparent 68%);
  animation-delay: -7s;
  animation-duration: 26s;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -34px) scale(1.14); }
  66%      { transform: translate(-36px, 30px) scale(.9); }
}

/* ---- 32.8 Live pulse dot ---- */
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseRing 2s var(--ease) infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* ---- 32.9 Hero card activity feed ---- */
.feed {
  position: relative;
  height: 46px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.feed li {
  position: absolute;
  left: 0; right: 0; top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: .84rem;
  color: var(--gray-600);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.feed li.is-in { opacity: 1; transform: none; }
.feed li b { color: var(--ink); font-weight: 650; }
.feed li .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feed li .tick svg { width: 11px; height: 11px; }

/* ---- 32.10 Progress rings ---- */
.ring-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.ring-item { text-align: center; }
.ring {
  position: relative;
  width: 136px; height: 136px;
  margin: 0 auto 20px;
}
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.ring .track { stroke: var(--blue-100); }
.ring .bar {
  stroke: var(--primary);
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 1.7s var(--ease);
}
.ring .ring-val {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.ring-item h4 { margin-bottom: .3em; }
.ring-item p { font-size: .9rem; margin: 0; }

/* ---- 32.11 Skill bars ---- */
.bar-item { margin-bottom: 24px; }
.bar-item:last-child { margin-bottom: 0; }
.bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
  font-size: .95rem;
}
.bar-head strong { font-weight: 620; }
.bar-head span { font-weight: 700; color: var(--primary); font-size: .9rem; }
.bar-track {
  height: 9px;
  border-radius: var(--r-full);
  background: var(--gray-100);
  overflow: hidden;
}
.bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  transition: width 1.5s var(--ease);
}

/* ---- 32.12 Process connector fill ---- */
.process::after {
  content: "";
  position: absolute;
  top: 27px; left: 8%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  transition: width 1.9s var(--ease);
  z-index: 0;
}
.process.line-on::after { width: 84%; }
@media (max-width: 980px) { .process::after { display: none; } }

/* ---- 32.13 Testimonial spotlight ---- */
.testimonial { transition: all .5s var(--ease); }
.testimonial.spotlight {
  transform: translateY(-9px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
}
.testimonial.spotlight .t-avatar { transform: scale(1.08); }
.t-avatar { transition: transform .5s var(--ease); }

/* ---- 32.14 Reverse marquee ---- */
.marquee-track.reverse { animation-direction: reverse; animation-duration: 38s; }

/* ---- 32.15 Tilt (hero card follows the cursor) ---- */
.tilt {
  transform:
    perspective(1100px)
    rotateX(var(--ty, 0deg))
    rotateY(var(--tx, 0deg));
  transition: transform .35s var(--ease);
  will-change: transform;
}

/* ---- 32.16 Back-to-top scroll ring ---- */
.to-top { overflow: visible; }
.to-top .ring-svg {
  position: absolute;
  /* Sized by inset rather than width/height: the global `svg { max-width:100% }`
     reset would otherwise clamp the width to the button's 48px while the height
     stayed 58px, and the -90deg rotation would then throw the ring off-centre. */
  inset: -5px;
  width: auto;
  height: auto;
  max-width: none;
  transform: rotate(-90deg);
  pointer-events: none;
}

/* Keep the button clear of the cookie banner while that is on screen.
   --cookie-h is measured and set by initCookieBar(). */
body.cookie-open .to-top {
  bottom: calc(var(--cookie-h, 0px) + 36px);
}
.to-top .ring-svg circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 163.4;
}
.to-top .ring-svg .rt-track { stroke: rgba(255,255,255,.28); }
.to-top .ring-svg .rt-bar   { stroke: #fff; stroke-dashoffset: 163.4; }

/* ---- 32.17 Success checkmark draw ---- */
.form-success svg path, .form-success svg polyline {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}
.form-success.show svg path    { animation: drawIn .75s var(--ease) forwards; }
.form-success.show svg polyline{ animation: drawIn .5s .35s var(--ease) forwards; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }

/* ---- 32.18 Icon micro-motion ---- */
.card:hover .card-icon svg,
.industry:hover .industry-icon svg { animation: nudge .5s var(--ease); }
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-4px) scale(1.08); }
}
.link-arrow:hover, .card-link:hover { letter-spacing: .012em; }
.link-arrow, .card-link { transition: letter-spacing .25s var(--ease); }

/* ---- 32.19 Floating hero glow follows scroll ---- */
.hero-glow { animation: blobDrift 24s ease-in-out infinite; }

@media (max-width: 980px) {
  .ring-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .ring-grid { grid-template-columns: 1fr; }
  .rotator { display: block; }
}

/* ==========================================================================
   34. HERO TECH SCENE — orbiting stack + live build terminal
   ========================================================================== */

/* Sized to the scene so the floating badges stay pinned to it at any width. */
.scene-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.tech-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* Soft glow behind the core */
.scene-glow {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,102,240,.30), transparent 70%);
  filter: blur(34px);
  animation: corePulse 5s var(--ease) infinite;
}

/* Orbit rings */
.scene-rings {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.scene-rings circle { fill: none; }
.scene-rings .ring-soft {
  stroke: rgba(20,102,240,.14);
  stroke-width: 1.5;
}
.scene-rings .ring-dash {
  stroke: var(--blue-500);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 3 16;
  opacity: .75;
}
.scene-rings .r-out { animation: dashFlow 3.2s linear infinite; }
.scene-rings .r-in  { animation: dashFlow 2.4s linear infinite reverse; }
@keyframes dashFlow { to { stroke-dashoffset: -38; } }

/* Orbit tracks. The ring sits on the box edge, so a node pinned to the top
   centre of the track lands exactly on the ring. */
.orbit { position: absolute; border-radius: 50%; }
.orbit-out { inset: 10%;   animation: spin 30s linear infinite; }
.orbit-in  { inset: 22.5%; animation: spin 22s linear infinite reverse; }

.orbit-slot {
  position: absolute;
  inset: 0;
  transform: rotate(var(--a));
}
/* Cancels the slot rotation so the chip is never on its side… */
.node-wrap {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--a) * -1));
}
/* …and this cancels the track rotation, keeping every chip upright. */
.orbit-node {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: -.02em;
  color: var(--blue-700);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.orbit-out .orbit-node { animation: spin 30s linear infinite reverse; }
.orbit-in  .orbit-node { animation: spin 22s linear infinite; }
.orbit-node:hover {
  transform: scale(1.16);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-300);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Core */
.core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 112px; height: 112px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 18px 44px rgba(20,102,240,.42);
}
.core svg { width: 46px; height: 46px; position: relative; z-index: 2; }
.core-pulse {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 2px solid var(--blue-400);
  animation: corePing 3s var(--ease) infinite;
}
.core-pulse:nth-of-type(2) { animation-delay: 1.5s; }
@keyframes corePing {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
@keyframes corePulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* Drifting particles */
.particle {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  opacity: .55;
  animation: floatUp 9s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes floatUp {
  0%   { transform: translateY(10px) scale(.6); opacity: 0; }
  25%  { opacity: .7; }
  75%  { opacity: .5; }
  100% { transform: translateY(-70px) scale(1.1); opacity: 0; }
}

/* Build terminal */
.terminal {
  max-width: 430px;          /* keep in line with the scene above it */
  margin: 22px auto 0;
  border-radius: var(--r-md);
  background: #08132b;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.term-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
}
.term-bar i:nth-child(1) { background: #ff5f57; }
.term-bar i:nth-child(2) { background: #febc2e; }
.term-bar i:nth-child(3) { background: #28c840; }
.term-bar span {
  margin-left: 6px;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}
.term-body {
  margin: 0;
  padding: 16px 18px 18px;
  min-height: 132px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  line-height: 1.85;
  color: #9fb6d9;
  white-space: pre-wrap;
  word-break: break-word;
}
.term-body .t-cmd { color: #6fa8ff; }
.term-body .t-ok  { color: #4ade80; }
.term-body .t-err { color: #f87171; }
.term-body .t-dim { color: #64789c; }
.term-caret {
  display: inline-block;
  width: 8px;
  height: 1em;
  vertical-align: -2px;
  background: var(--blue-400);
  animation: caretBlink 1.05s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

@media (max-width: 980px) {
  .tech-scene { max-width: 380px; }
}
@media (max-width: 460px) {
  .tech-scene { max-width: 300px; }
  .orbit-node { width: 44px; height: 44px; border-radius: 13px; font-size: .74rem; }
  .core { width: 92px; height: 92px; border-radius: 26px; }
  .core svg { width: 38px; height: 38px; }
  .term-body { min-height: 118px; font-size: .76rem; }
}

/* ==========================================================================
   33. REDUCED MOTION — must stay last so it overrides the motion layer
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom, .reveal-flip {
    opacity: 1 !important;
    transform: none !important;
  }
  .rotator > span { opacity: 0; }
  .rotator > span.is-in { opacity: 1; transform: none; }
  .feed li { opacity: 0; }
  .feed li.is-in { opacity: 1; transform: none; }
  .blob, .pulse-dot::after, .hero-glow { animation: none !important; }
  .card::after, .work::after, .post::after,
  .testimonial::after, .industry::after, .tech::after { display: none; }
  .tilt { transform: none !important; }
  .testimonial.spotlight { transform: none; }

  /* Hero scene: hold a clean static composition. */
  .orbit, .orbit-node, .scene-rings .ring-dash,
  .core-pulse, .scene-glow, .particle { animation: none !important; }
  .core-pulse, .particle { opacity: 0; }
  .term-caret { animation: none !important; opacity: 0; }
}
