/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%
}

button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer
}

a {
  color: inherit;
  text-decoration: none
}

ol,
ul {
  list-style: none
}

input {
  font: inherit;
  color: inherit
}

/* ===== TOKENS ===== */
:root {
  --bg: #FAF7F0;
  --surface: #FFFFFF;
  --surface-warm: #F2EEE4;
  --bg-dark: #0B0A12;
  --surface-dark: #13111C;
  --ink: #171520;
  --ink-muted: #6B6478;
  --ink-subtle: #A8A2B5;
  --ink-on-dark: #F4F1F8;
  --purple: #4B2E83;
  --purple-soft: #7C5CB8;
  --purple-tint: #EDE8F5;
  --purple-deep: #2E1B57;
  --orange: #F26F22;
  --orange-soft: #FF9659;
  --orange-tint: #FFE8D9;
  --border: rgba(23, 21, 32, 0.08);
  --border-strong: rgba(23, 21, 32, 0.16);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 1px 2px rgba(23, 21, 32, 0.04), 0 2px 4px rgba(23, 21, 32, 0.04);
  --shadow-md: 0 4px 8px rgba(23, 21, 32, 0.04), 0 12px 24px rgba(23, 21, 32, 0.06);
  --shadow-lg: 0 8px 16px rgba(23, 21, 32, 0.06), 0 24px 48px rgba(23, 21, 32, 0.08);
  --shadow-purple: 0 12px 32px rgba(75, 46, 131, 0.18);
  --success: #2EA86A;
  --f-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.7, 0, 0.15, 1);
}

/* ===== BASE ===== */
/* scroll-behavior is intentionally removed — Lenis handles smooth scroll via JS */
html {
  scroll-behavior: auto
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: multiply;
}

@media (max-width:760px) {
  body {
    cursor: auto
  }
}

/* ===== UTILITIES ===== */
.skip-link {
  position: fixed;
  left: 8px;
  top: 8px;
  background: var(--ink);
  color: var(--ink-on-dark);
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 10000;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0)
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease);
}

.btn--orange {
  background: var(--orange);
  color: #fff
}

.btn--orange:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242, 111, 34, 0.3)
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--ink)
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--ink-on-dark)
}

.section__h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  color: var(--ink);
}

/* ===== CURSOR ===== */
.cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal
}

.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

.cursor__ring {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(75, 46, 131, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor.is-hot .cursor__ring {
  width: 64px;
  height: 64px;
  border-color: var(--orange);
  background: rgba(242, 111, 34, 0.05);
}

.cursor.is-hot .cursor__dot {
  opacity: 0
}

.cursor__label {
  font: 500 9px/1 var(--f-mono);
  letter-spacing: 0.18em;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.cursor.is-hot .cursor__label {
  opacity: 1
}

@media (max-width:760px) {
  .cursor {
    display: none
  }
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__inner {
  position: relative;
  width: min(640px, 80vw)
}

.loader__mark {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center
}

.loader__mark .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  opacity: 0;
  transform: scale(0)
}

.dot--purple-tl {
  background: var(--purple)
}

.dot--purple-bl {
  background: var(--purple)
}

.dot--orange {
  background: var(--orange)
}

.loader__word {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 88px);
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-block;
  overflow: hidden;
}

.loader__word .ch {
  display: inline-block;
  transform: translateY(110%);
}

.loader__count {
  position: absolute;
  left: -2px;
  bottom: -80px;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
}

.loader__label {
  position: absolute;
  right: -2px;
  bottom: -80px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

.loader__slab {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2
}

.loader__slab--top {
  top: 0;
  background: var(--orange);
  transform: translateY(-100%)
}

.loader__slab--bottom {
  bottom: 0;
  background: var(--purple);
  transform: translateY(100%)
}

.loader.is-out .loader__slab--top {
  transform: translateY(0);
  transition: transform 0.7s var(--ease)
}

.loader.is-out .loader__slab--bottom {
  transform: translateY(0);
  transition: transform 0.7s var(--ease)
}

.loader.is-done {
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease) 0.6s
}

/* ===== PAGE PROGRESS ===== */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  z-index: 9997;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}

.section-index {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}

/* ===== STATUS WIDGET ===== */
.status-widget {
  position: fixed;
  top: 84px;
  right: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.status-widget__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(46, 168, 106, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 168, 106, 0.5)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(46, 168, 106, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 168, 106, 0)
  }
}

.status-widget__title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink)
}

.status-widget__meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-muted)
}

@media (max-width:920px) {
  .status-widget {
    display: none
  }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 50;
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}

.nav.is-hidden {
  transform: translateY(calc(-100% - 20px))
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 24px
}

.nav__logo img {
  height: 30px;
  width: auto
}

.nav__menu {
  display: flex;
  gap: 28px
}

.nav__link {
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transition: right 0.4s var(--ease)
}

.nav__link:hover {
  color: var(--purple)
}

.nav__link:hover::after {
  right: 0
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px
}

.nav__clock {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted)
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block
}

@media (max-width:880px) {

  .nav__menu,
  .nav__clock {
    display: none
  }

  .nav__burger {
    display: flex
  }
}

/* Mega menu */
.mega {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(720px, calc(100vw - 60px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
}

.mega.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0)
}

.mega__head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 14px;
  text-transform: uppercase
}

.mega__col {
  display: flex;
  flex-direction: column
}

.mega__item {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, color 0.3s
}

.mega__item:hover {
  color: var(--purple);
  padding-left: 6px
}

.mega__feature {
  background: linear-gradient(135deg, var(--purple-tint) 0%, var(--orange-tint) 100%);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.mega__feature-img {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, var(--purple) 0 1px, transparent 1px 8px);
  opacity: 0.12;
}

.mega__feature-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange)
}

.mega__feature-title {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2
}

.mega__feature-meta {
  font-size: 12px;
  color: var(--ink-muted)
}

@media (max-width:880px) {
  .mega {
    display: none
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 45;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 600;
}

.mobile-menu.is-open {
  display: flex
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--bg)
}

.hero__pin {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  padding-top: 96px
}

.hero__sector {
  position: absolute;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
  box-shadow: var(--shadow-sm);
}

.hero__sector-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted)
}

.hero__sector-pills {
  display: flex;
  gap: 4px
}

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
}

.pill.is-active {
  background: var(--ink);
  color: var(--ink-on-dark)
}

.pill:hover {
  color: var(--ink)
}

.pill.is-active:hover {
  color: var(--ink-on-dark)
}

.hero__track {
  display: flex;
  height: 100%;
  width: 200%;
  transition: transform 0.9s var(--ease)
}

.hero__slide {
  flex: 0 0 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 180px 8vw 120px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero__bg canvas {
  width: 100%;
  height: 100%
}

.hero__bg--mesh {
  background: radial-gradient(ellipse at 70% 30%, rgba(124, 92, 184, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(242, 111, 34, 0.14) 0%, transparent 50%);
}

.hero__bg--video {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8vw
}

.hero__video-card {
  position: relative;
  width: 38vw;
  height: 60vh;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__video-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, var(--purple-tint) 0 14px, var(--surface) 14px 28px);
  opacity: 0.7;
}

.hero__video-tag {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--purple)
}

.hero__bg--particles {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-warm) 100%)
}

.hero__bg--banking {
  background:
    linear-gradient(135deg, rgba(75, 46, 131, 0.18), rgba(242, 111, 34, 0.10)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(23, 21, 32, 0.04) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(23, 21, 32, 0.04) 38px 39px);
}

.hero__bg--image {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('/assets/bg-slider1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.hero__bg--image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('/assets/patter-3.png') no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.hero__bg--image2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('/assets/bg-slider2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg--image2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('/assets/patter-3.png') no-repeat;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 90%)
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 24px;
  text-transform: uppercase
}

.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 24px;
}

.hero__h1 .ch {
  display: inline-block
}

.hero__h1 .word {
  display: inline-block;
  margin-right: 0.18em
}

.hero__lead {
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 30px;
}

/* White text for image background slides */
.hero__slide:has(.hero__bg--image) .hero__eyebrow,
.hero__slide:has(.hero__bg--image) .hero__h1,
.hero__slide:has(.hero__bg--image) .hero__lead,
.hero__slide:has(.hero__bg--image2) .hero__eyebrow,
.hero__slide:has(.hero__bg--image2) .hero__h1,
.hero__slide:has(.hero__bg--image2) .hero__lead {
  color: #ffffff;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero__controls {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 120px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s var(--ease);
}

.hero__arrow:hover {
  background: #ffffff;
  color: #171520;
  border-color: #ffffff
}

.hero__pager {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: #ffffff
}

.hero__bar {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden
}

.hero__bar i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--orange);
  transition: width 0.5s var(--ease)
}

.hero__drag {
  display: none;
}

.hero__arrows {
  display: none;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border)
}

.marquee__row {
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative
}

.marquee__row--dark {
  background: var(--purple);
  color: var(--ink-on-dark)
}

.marquee__row--light {
  background: var(--bg);
  color: var(--purple);
  border-top: 1px solid var(--border)
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  will-change: transform;
  padding-left: 40px
}

.marquee__track span {
  flex-shrink: 0
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 160px 8vw;
  position: relative;
  background: var(--bg)
}

.manifesto__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.manifesto__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 40px
}

.manifesto__copy {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink-subtle);
  text-wrap: balance;
}

.manifesto__copy .word {
  transition: color 0.4s var(--ease);
  display: inline-block;
  margin-right: 0.18em
}

.manifesto__copy .word.is-lit {
  color: var(--ink)
}

.manifesto__avatars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c, #7C5CB8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--bg);
  margin-right: -10px;
}

.avatar--label {
  width: auto;
  background: transparent;
  color: var(--ink-muted);
  border: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ping {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite
}

.tagcloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.tag {
  position: absolute;
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}

.tag:nth-child(1) {
  top: 6%;
  left: 5%
}

.tag:nth-child(2) {
  top: 12%;
  right: 8%
}

.tag:nth-child(3) {
  top: 62%;
  left: 2%
}

.tag:nth-child(4) {
  bottom: 8%;
  right: 18%
}

.tag:nth-child(5) {
  top: 38%;
  right: 2%
}

.tag:nth-child(6) {
  bottom: 24%;
  left: 42%
}

@media (max-width:880px) {
  .tagcloud {
    display: none
  }
}

/* ===== SERVICES ===== */
.services {
  background: var(--surface-warm);
  padding: 160px 8vw
}

.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap
}

.services__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase
}

.services__list {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto
}

.srv {
  display: grid;
  grid-template-columns: 90px 1fr 2fr 40px;
  gap: 24px;
  align-items: center;
  padding: 32px 16px;
  border-bottom: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  position: relative;
  border-left: 3px solid transparent;
}

.srv__idx {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.08em
}

.srv__name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em
}

.srv__desc {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.55;
  transition: opacity 0.4s
}

.srv__arrow {
  font-size: 24px;
  color: var(--ink-muted);
  transition: transform 0.4s, color 0.3s
}

.srv:hover {
  border-left-color: var(--orange);
  background: var(--surface);
  padding-left: 28px
}

.srv:hover .srv__desc {
  opacity: 1
}

.srv:hover .srv__arrow {
  transform: translateX(8px);
  color: var(--orange)
}

@media (max-width:760px) {
  .srv {
    grid-template-columns: 60px 1fr 30px
  }

  .srv__desc {
    grid-column: 1/-1;
    opacity: 1;
    font-size: 13px
  }
}

/* ===== BIZGRID ===== */
.bizgrid {
  background: var(--bg);
  padding: 160px 8vw
}

.bizgrid__head {
  margin-bottom: 60px;
  max-width: 1200px;
  margin-inline: auto
}

.bizgrid__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.bizgrid__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto
}

@media (max-width:880px) {
  .bizgrid__cards {
    grid-template-columns: 1fr
  }
}

.bcard {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}

.bcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--purple-tint), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.bcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.bcard:hover::before {
  opacity: 1
}

.bcard__idx {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--orange);
  font-weight: 500
}

.bcard__icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 28px;
  height: 28px;
  color: var(--purple)
}

.bcard__icon svg {
  width: 100%;
  height: 100%
}

.bcard__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative
}

.bcard__desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  position: relative;
  flex: 1
}

.bcard__link {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--purple);
  letter-spacing: 0.06em;
  margin-top: auto;
  position: relative;
  align-self: flex-start;
  transition: color 0.3s
}

.bcard__link:hover {
  color: var(--orange)
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 160px 8vw;
  background: var(--bg);
  position: relative
}

.industries__head {
  margin-bottom: 48px
}

.industries__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto
}

@media (max-width:880px) {
  .industries__grid {
    grid-template-columns: 1fr 1fr
  }
}

.ind {
  position: relative;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.32 0.12 calc(var(--h1) * 1deg)), oklch(0.52 0.16 calc(var(--h2) * 1deg)));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: all 0.5s var(--ease);
  isolation: isolate;
}

.ind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 14px);
}

.ind__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-on-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease);
}

.ind__cta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.ind:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg)
}

.ind:hover .ind__label {
  transform: translateY(-32px)
}

.ind:hover .ind__cta {
  transform: translateY(0);
  opacity: 1
}

.industries__note {
  position: absolute;
  right: 8vw;
  bottom: 60px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
}

/* ===== SHOWCASE (DARK) ===== */
.showcase {
  position: relative;
  background: var(--bg-dark);
  height: 600vh
}

.showcase__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.showcase__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124, 92, 184, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(242, 111, 34, 0.12), transparent 45%),
    var(--bg-dark);
}

.showcase__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px
}

/* Laptop */
.laptop {
  position: relative;
  width: min(880px, 75vw);
  transform-style: preserve-3d;
  transform: rotateX(8deg);
}

.laptop__lid {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1825, #0f0d18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px 14px 4px 4px;
  transform-origin: bottom center;
  transform: rotateX(-110deg);
  transition: transform 0.1s linear;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  padding: 14px;
}

.laptop__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0911;
  border-radius: 6px;
  overflow: hidden;
}

.laptop__hinge {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -6px;
  height: 6px;
  background: linear-gradient(180deg, #0f0d18, #1a1825);
}

.laptop__base {
  width: 104%;
  margin-left: -2%;
  height: 14px;
  background: linear-gradient(180deg, #1a1825, #08070d);
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.laptop__base::before {
  content: "";
  position: absolute;
  left: 38%;
  right: 38%;
  top: 0;
  height: 4px;
  background: #0a0911;
  border-radius: 0 0 6px 6px;
}

/* Dashboard */
.dash {
  height: 100%;
  position: relative;
  background: #0e0c18;
  color: var(--ink-on-dark);
  overflow: hidden
}

.dash__bar {
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15)
}

.dash__dot:first-child {
  background: #ff5f57
}

.dash__dot:nth-child(2) {
  background: #febc2e
}

.dash__dot:nth-child(3) {
  background: #28c840
}

.dash__url {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-subtle);
  margin-left: 12px
}

.dash__scroller {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform
}

.dash__hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px
}

.dash__eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 6px
}

.dash__h {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em
}

.dash__sub {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-subtle);
  margin-top: 6px
}

.dash__pillrow {
  display: flex;
  gap: 6px
}

.dash__pill {
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(46, 168, 106, 0.18);
  color: #7AE0A8;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em
}

.dash__pill.alt {
  background: rgba(124, 92, 184, 0.18);
  color: #C9B6F0
}

.dash__chart {
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden
}

.dash__chart svg {
  width: 100%;
  height: 100%
}

.dash__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.dash__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.dash__card span {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-subtle);
  letter-spacing: 0.1em
}

.dash__card b {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600
}

.dash__card i {
  font-family: var(--f-mono);
  font-size: 9px;
  color: #7AE0A8;
  font-style: normal
}

.dash__card i.neg {
  color: #FF8A8A
}

.dash__rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden
}

.dash__row {
  display: grid;
  grid-template-columns: 80px 100px 1fr 120px 80px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #0e0c18;
  font-family: var(--f-mono);
  font-size: 10px;
}

.dash__row span:first-child {
  color: var(--ink-subtle)
}

.dash__row b {
  font-weight: 500;
  text-align: right;
  color: #fff
}

.dash__row .ok {
  color: #7AE0A8;
  text-align: right;
  letter-spacing: 0.08em
}

.dash__foot {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-subtle);
  text-align: center;
  padding-top: 6px
}

/* Showcase meta */
.showcase__meta {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  color: var(--ink-on-dark);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
}

.showcase__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 14px
}

.showcase__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px
}

.showcase__dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px
}

.showcase__dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px
}

.showcase__dl dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-subtle);
  margin-bottom: 3px
}

.showcase__dl dd {
  font-size: 12px;
  color: var(--ink-on-dark)
}

.showcase__next {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em
}

@media (max-width:1100px) {
  .showcase__meta {
    display: none
  }
}

/* ===== WORKS ===== */
.works {
  padding: 160px 8vw;
  background: var(--bg)
}

.works__head {
  margin-bottom: 60px
}

.works__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto
}

@media (max-width:880px) {
  .works__grid {
    grid-template-columns: 1fr
  }
}

.work {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: all 0.5s var(--ease)
}

.work__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, oklch(0.4 0.13 calc(var(--h1) * 1deg)), oklch(0.65 0.16 calc(var(--h2) * 1deg)));
  position: relative;
  overflow: hidden;
}

.work__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 10px);
}

.work--tall .work__img {
  aspect-ratio: 3/4
}

.work--short .work__img {
  aspect-ratio: 4/2.4
}

.work--mid .work__img {
  aspect-ratio: 4/2.8
}

.work--tallish .work__img {
  aspect-ratio: 3/3.6
}

.work__meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  padding: 16px 18px 4px
}

.work__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  padding: 0 18px 18px;
  letter-spacing: -0.01em
}

.work__badge {
  position: absolute;
  left: 18px;
  bottom: 80px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.work:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.work:hover .work__badge {
  transform: translateY(0);
  opacity: 1
}

.works__more {
  text-align: center;
  margin-top: 60px;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink)
}

.works__more a {
  position: relative;
  padding: 18px 28px;
  display: inline-block;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: all 0.3s
}

.works__more a:hover {
  background: var(--ink);
  color: var(--ink-on-dark);
  border-color: var(--ink)
}

/* ===== STATS ===== */
.stats {
  position: relative;
  background: var(--purple-tint);
  padding: 120px 8vw;
  overflow: hidden
}

.stats__mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  opacity: 0.6;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(75, 46, 131, 0.25), transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(242, 111, 34, 0.15), transparent 40%);
  animation: meshmove 18s var(--ease) infinite alternate;
}

@keyframes meshmove {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(4%, -3%)
  }
}

.stats__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto
}

@media (max-width:880px) {
  .stats__inner {
    grid-template-columns: 1fr 1fr
  }
}

.stat {
  padding: 0 28px;
  border-left: 1px solid rgba(75, 46, 131, 0.18)
}

.stat:first-child {
  border-left: 0;
  padding-left: 0
}

.stat__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 600;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1
}

.stat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-top: 14px
}

/* ===== WHY ===== */
.why {
  background: var(--bg);
  padding: 0 8vw;
  height: 300vh;
  position: relative
}

.why__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0
}

@media (max-width:880px) {
  .why__pin {
    grid-template-columns: 1fr;
    padding: 80px 0
  }
}

.why__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  border-top: 1px solid var(--border)
}

.why__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.4;
  transition: opacity 0.5s var(--ease)
}

.why__item.is-active {
  opacity: 1
}

.why__num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.08em
}

.why__h {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 6px;
  margin-bottom: 8px
}

.why__p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px
}

.why__shape {
  width: min(380px, 80%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-purple);
  transition: border-radius 0.8s var(--ease), background 0.8s var(--ease);
}

.why__shape svg {
  width: 70%;
  height: 70%
}

.why__shape.shape-1 {
  border-radius: 50%
}

.why__shape.shape-2 {
  border-radius: 18% 82% 18% 82% / 82% 18% 82% 18%
}

.why__shape.shape-3 {
  border-radius: 14px
}

.why__shape.shape-4 {
  border-radius: 50% 14% 50% 14%/14% 50% 14% 50%
}

/* ===== CLIENT MARQUEE ===== */
.clmarq {
  background: var(--surface-warm);
  padding: 60px 0;
  border-block: 1px solid var(--border);
  overflow: hidden
}

.clmarq__row {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 80px
}

.clmarq__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
  will-change: transform;
  padding-left: 60px
}

.logo-text {
  transition: color 0.3s
}

.logo-text:hover {
  color: var(--ink)
}

/* ===== AWARDS ===== */
.awards {
  padding: 60px 8vw;
  background: var(--bg);
  overflow: hidden
}

.awards__track {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 22px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  min-width: 130px;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange)
}

.badge__t {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink)
}

.badge__s {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.08em
}

/* ===== WALL ===== */
.wall {
  padding: 120px 8vw;
  background: var(--bg)
}

.wall__head {
  margin-bottom: 48px;
  max-width: 1200px;
  margin-inline: auto
}

.wall__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.wall__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

@media (max-width:880px) {
  .wall__grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-align: center;
  padding: 8px;
  transition: all 0.4s var(--ease);
}

.cell:hover,
.cell.is-rippled {
  background: var(--purple);
  color: var(--ink-on-dark)
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
  padding: 0 8vw;
  height: 300vh
}

.process__head {
  padding-top: 120px;
  margin-bottom: 0
}

.process__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.process__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0
}

@media (max-width:880px) {
  .process__pin {
    grid-template-columns: 1fr
  }
}

.proc {
  opacity: 0.25;
  transition: opacity 0.5s var(--ease);
  padding: 18px 0;
  border-top: 1px solid var(--border)
}

.proc.is-active {
  opacity: 1
}

.proc__idx {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-subtle);
  letter-spacing: 0.08em;
  transition: color 0.4s
}

.proc.is-active .proc__idx {
  color: var(--orange)
}

.proc__h {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 8px
}

.proc__p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 480px
}

.process__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-warm);
  box-shadow: var(--shadow-purple);
}

.pmesh {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease)
}

.pmesh--1 {
  background: radial-gradient(circle at 30% 30%, var(--purple-tint), transparent 60%), radial-gradient(circle at 70% 70%, var(--orange-tint), transparent 60%);
  opacity: 1
}

.pmesh--2 {
  background: linear-gradient(135deg, var(--orange-tint), var(--purple-tint))
}

.pmesh--3 {
  background: radial-gradient(circle at 50% 50%, var(--purple-soft), transparent 70%)
}

.process__visual.s-2 .pmesh--1 {
  opacity: 0
}

.process__visual.s-2 .pmesh--2 {
  opacity: 1
}

.process__visual.s-3 .pmesh--1 {
  opacity: 0
}

.process__visual.s-3 .pmesh--3 {
  opacity: 1
}

.process__visual.s-4 .pmesh--1 {
  opacity: 0
}

.process__visual.s-4 .pmesh--2 {
  opacity: 0.7
}

.process__visual.s-4 .pmesh--3 {
  opacity: 0.5
}

/* ===== QUOTES ===== */
.quotes {
  background: var(--surface-warm);
  padding: 140px 8vw
}

.quotes__head {
  margin-bottom: 40px
}

.quotes__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted)
}

.quotes__stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 280px
}

.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transform: translateY(20px)
}

.quote.is-active {
  opacity: 1;
  transform: translateY(0)
}

.quote__wave {
  width: 140px;
  height: 40px;
  margin-bottom: 24px
}

.quote__text {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance
}

.quote__author {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase
}

.quotes__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 13px
}

.quotes__nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  transition: all 0.3s
}

.quotes__nav button:hover {
  background: var(--ink);
  color: var(--ink-on-dark);
  border-color: var(--ink)
}

/* ===== INSIGHTS ===== */
.insights {
  padding: 140px 8vw;
  background: var(--bg)
}

.insights__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px
}

.insights__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 14px
}

.insights__all {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--purple)
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto
}

@media (max-width:880px) {
  .insights__grid {
    grid-template-columns: 1fr
  }
}

.post {
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column
}

.post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md)
}

.post__cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden
}

.post__cover--1 {
  background: linear-gradient(135deg, #2A1B57, #7C5CB8)
}

.post__cover--2 {
  background: linear-gradient(135deg, #8E4A1A, #F26F22)
}

.post__cover--3 {
  background: linear-gradient(135deg, #1A3957, #5C8DB8)
}

.post__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 12px);
}

.post__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--orange);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.post__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  padding: 18px 18px 8px;
  color: var(--ink);
  text-wrap: balance
}

.post__meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  padding: 0 18px 18px;
  margin-top: auto
}

/* ===== CTA (DARK) ===== */
.cta {
  position: relative;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: 160px 8vw;
  overflow: hidden;
  text-align: center
}

.cta__mesh {
  position: absolute;
  inset: 0;
  z-index: 0
}

.cta__mesh div {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px)
}

.cta__mesh div:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--purple-deep);
  left: -10%;
  top: -20%;
  animation: meshmove 14s ease-in-out infinite alternate
}

.cta__mesh div:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--purple);
  right: -10%;
  bottom: -10%;
  animation: meshmove 18s ease-in-out infinite alternate
}

.cta__mesh div:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--orange);
  left: 50%;
  top: 60%;
  opacity: 0.3;
  animation: meshmove 22s ease-in-out infinite alternate-reverse
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto
}

.cta__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 36px
}

.cta__h {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
  text-wrap: balance
}

.cta__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease);
}

.cta__circle-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 28s linear infinite
}

.cta__circle:hover .cta__circle-text {
  animation-duration: 8s
}

.cta__circle:hover {
  background: var(--orange);
  box-shadow: 0 20px 60px rgba(242, 111, 34, 0.4)
}

.cta__circle:hover .cta__circle-arrow {
  color: #fff
}

@keyframes rotate {
  to {
    transform: rotate(360deg)
  }
}

.cta__circle-arrow {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--orange);
  transition: color 0.3s
}

.cta__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
  max-width: 780px;
  margin-inline: auto
}

@media (max-width:760px) {
  .cta__contacts {
    grid-template-columns: 1fr
  }
}

.cta__contact {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  transition: all 0.4s var(--ease);
}

.cta__contact:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px)
}

.cta__contact-l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-subtle);
  display: block;
  margin-bottom: 8px
}

.cta__contact-t {
  font-size: 14px;
  color: var(--ink-on-dark);
  display: block
}

/* ===== FOOTER ===== */
.foot {
  background: var(--bg);
  padding: 80px 5vw 30px
}

.foot__word {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 260px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
  text-align: center;
  margin-bottom: 60px;
}

.foot__i {
  position: relative
}

.foot__cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.7em;
  background: var(--orange);
  margin-left: 0.04em;
  vertical-align: baseline;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border)
}

@media (max-width:880px) {
  .foot__cols {
    grid-template-columns: 1fr 1fr
  }
}

.foot__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 18px;
  font-weight: 500
}

.foot__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.3s
}

.foot__col a:hover {
  color: var(--purple)
}

.foot__copy {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 14px
}

.foot__form {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden
}

.foot__form input {
  flex: 1;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  font-size: 13px;
  outline: none
}

.foot__form button {
  padding: 10px 14px;
  background: transparent;
  color: var(--orange);
  font-size: 18px
}

.foot__form button:hover {
  background: var(--orange);
  color: #fff
}

.foot__social {
  display: flex;
  gap: 8px;
  margin-top: 14px
}

.foot__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 0;
  color: var(--ink-muted);
}

.foot__social a:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple)
}

.foot__rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  flex-wrap: wrap;
}

.foot__rail-tag {
  color: var(--orange)
}

.foot__top {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot__top svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.foot__top span {
  position: relative;
  z-index: 2;
  color: var(--ink)
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important
  }
}

/* ===== HIDE SQUARE BRACKETS ===== */
/* Hide section numbers in eyebrows */
.hero__eyebrow::before,
.manifesto__eyebrow::before,
.services__eyebrow::before,
.bizgrid__eyebrow::before,
.industries__eyebrow::before,
.showcase__eyebrow::before,
.works__eyebrow::before,
.why__eyebrow::before,
.wall__eyebrow::before,
.process__eyebrow::before,
.quotes__eyebrow::before,
.insights__eyebrow::before,
.cta__eyebrow::before,
.mega__feature-eyebrow::before {
  content: '';
  font-size: 0;
}

/* Hide brackets in hero eyebrows */
.hero__eyebrow {
  font-size: 0;
}

.hero__eyebrow::after {
  content: attr(data-text);
  font-size: 11px;
}

/* Hide section index */
.section-index {
  display: none !important;
}

/* Hide status widget */
.status-widget {
  display: none !important;
}

/* Hide hero pager */
.hero__pager {
  display: none !important;
}

/* Hide featured label in mega menu */
.mega__feature-eyebrow {
  display: none !important;
}

/* Hide tagcloud (BPO, Cloud, Development tags) */
.tagcloud {
  display: none !important;
}

/* Hide avatars (RA, MK, ST, 3 leads online) */
.manifesto__avatars {
  display: none !important;
}

/* Hide Featured Work section (laptop showcase) */
.showcase {
  display: none !important;
}

/* Hide Selected Work section */
.works {
  display: none !important;
}

/* Hide Why Intechnix section */
.why {
  display: none !important;
}

/* Hide Client Marquee section */
.clmarq {
  display: none !important;
}

/* Hide Logo Wall (Engaged By) section */
.wall {
  display: none !important;
}

/* Hide Process section */
.process {
  display: none !important;
}

/* Hide Insights section */
.insights {
  display: none !important;
}

/* Hide header clock/time */
.nav__clock {
  display: none !important;
}

/* Services hover image */
.services {
  position: relative;
}

.services__hover-image {
  position: fixed;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.7, 0, 0.15, 1);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.services__hover-image.active {
  opacity: 1;
}

@media (max-width: 1200px) {
  .services__hover-image {
    display: none;
  }
}

/* Business cards with background images */
.bcard--customer-service {
  background-image: linear-gradient(rgba(23, 21, 32, 0.75), rgba(23, 21, 32, 0.85)), url('/assets/customer-service-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.bcard--analysis {
  background-image: linear-gradient(rgba(23, 21, 32, 0.75), rgba(23, 21, 32, 0.85)), url('/assets/analysis-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.bcard--hr {
  background-image: linear-gradient(rgba(23, 21, 32, 0.75), rgba(23, 21, 32, 0.85)), url('/assets/hr-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.bcard--backoffice {
  background-image: linear-gradient(rgba(23, 21, 32, 0.75), rgba(23, 21, 32, 0.85)), url('/assets/backoffice-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.bcard--customer-service .bcard__title,
.bcard--analysis .bcard__title,
.bcard--hr .bcard__title,
.bcard--backoffice .bcard__title {
  color: white;
}

.bcard--customer-service .bcard__desc,
.bcard--analysis .bcard__desc,
.bcard--hr .bcard__desc,
.bcard--backoffice .bcard__desc {
  color: rgba(255, 255, 255, 0.9);
}

.bcard--customer-service .bcard__icon,
.bcard--analysis .bcard__icon,
.bcard--hr .bcard__icon,
.bcard--backoffice .bcard__icon {
  color: #F26F22;
}

.bcard--customer-service .bcard__link,
.bcard--analysis .bcard__link,
.bcard--hr .bcard__link,
.bcard--backoffice .bcard__link {
  color: white;
}

.bcard--customer-service .bcard__link:hover,
.bcard--analysis .bcard__link:hover,
.bcard--hr .bcard__link:hover,
.bcard--backoffice .bcard__link:hover {
  color: #F26F22;
}

/* Hide learn more links on business cards */
.bcard__link {
  display: none !important;
}

/* Industry grid images */
.ind--banking {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-banking.jpg');
  background-size: cover;
  background-position: center;
}

.ind--manufacturing {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-manufacturing.jpg');
  background-size: cover;
  background-position: center;
}

.ind--healthcare {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-healthcare.jpg');
  background-size: cover;
  background-position: center;
}

.ind--retail {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-retail.jpg');
  background-size: cover;
  background-position: center;
}

.ind--technology {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-technology.jpg');
  background-size: cover;
  background-position: center;
}

.ind--logistics {
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(75, 46, 131, 0.85) 100%), url('/assets/industry-logistics.jpg');
  background-size: cover;
  background-position: center;
}

/* Footer logo styling */
.foot__logo {
  margin-bottom: 3rem;
}

.foot__logo img {
  max-width: 200px;
  height: auto;
}

/* Animated gradient background for CTA section */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cta {
  background: linear-gradient(-45deg, #0B0A12, #4B2E83, #7C5CB8, #4B2E83, #0B0A12) !important;
  background-size: 400% 400% !important;
  animation: gradientShift 6s ease infinite !important;
  padding: 40px 8vw !important;
  position: relative !important;
  overflow: hidden !important;
}

.cta__h {
  margin-bottom: 30px !important;
  font-size: clamp(28px, 4vw, 56px) !important;
}

.cta__eyebrow {
  margin-bottom: 20px !important;
}

/* Hide CTA mesh */
.cta__mesh {
  display: none !important;
}

/* Animated color change for CTA eyebrow */
@keyframes colorChange {

  0%,
  100% {
    color: #FFFFFF;
  }

  50% {
    color: #F26F22;
  }
}

.cta__eyebrow {
  animation: colorChange 2s ease-in-out infinite;
  font-weight: 600;
}

/* About page animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.about-hero,
.about-hero+section>div>div,
.about-hero+section>div>div>div {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero+section>div>div:nth-child(1)>div:nth-child(1) {
  animation-delay: 0.1s;
}

.about-hero+section>div>div:nth-child(1)>div:nth-child(2) {
  animation-delay: 0.2s;
}

/* Updated: Mon May 25 15:36:30 +04 2026 */