/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── TOKENS ─── */
:root {
  --w: #ffffff;
  --ow: #f7f8fa;
  --bg2: #f2f4f7;
  --bdr: #e8eaed;
  --bdr2: #d4d8e0;
  --ink: #0d0f14;
  --ink2: #3a3f4d;
  --ink3: #6b7280;
  --ink4: #9ca3af;
  --blue: #1d4ed8;
  --blue2: #3b82f6;
  --bluepale: #eff6ff;
  --bluebdr: #bfdbfe;
  --tagbg: #f0f4ff;
  --tagc: #2563eb;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--w);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#cd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
#cr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 78, 216, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s,
    background 0.3s,
    border-radius 0.3s;
}
#cr.hover {
  width: 48px;
  height: 48px;
  border-color: rgba(29, 78, 216, 0.7);
}
#cr.view {
  width: 80px;
  height: 80px;
  background: var(--ink);
  border-color: var(--ink);
}

/* ─── PAGE TRANSITION VEIL ─── */
#veil {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    backdrop-filter 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#veil.active {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6);
}
#veil-e {
  width: 110px;
  height: 110px;
  opacity: 0;
  transform: scale(0.55) rotate(-40deg);
  transition:
    opacity 0.35s ease 0.06s,
    transform 0.55s cubic-bezier(0.25, 1, 0.5, 1) 0.06s;
  pointer-events: none;
}
#veil.active #veil-e {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* logo hover animation */
/* .nav-logo .logo-spiral{
  transition:transform .55s cubic-bezier(.25,1,.5,1),filter .4s ease;
  transform-origin:50% 50%;
} */
.nav-logo-svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-logo:hover .nav-logo-svg {
  transform: scale(1.05);
}
.nav-logo .logo-spiral {
  transform-origin: 630px 219px;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.4s;
}
/* .nav-logo:hover .logo-spiral{
  transform:rotate(180deg) scale(1.08);
  filter:drop-shadow(0 0 12px rgba(0,87,255,.6));
} */
.nav-logo .logo-letters path {
  transition: fill 0.35s ease;
}
/* .nav-logo:hover .logo-letters path{fill:#1d4ed8} */

/* ─── SCROLL PROGRESS ─── */
#sprog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  z-index: 7000;
  width: 0;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 64px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  transition:
    height 0.3s,
    background 0.3s,
    border-color 0.3s;
}
nav.scrolled {
  height: 56px;
}
nav.on-dark {
  background: rgba(6, 8, 16, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
nav.on-dark .nl a {
  color: rgba(255, 255, 255, 0.6);
}
nav.on-dark .nl a:hover,
nav.on-dark .nl a.active {
  color: #fff;
}
nav.on-dark .npill {
  background: #fff;
  color: var(--ink);
}
nav.on-dark .hamburger span {
  background: #fff;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: none;
}
.nav-logo svg {
  height: 28px;
  width: auto;
}

.nl {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nl a {
  color: var(--ink3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  cursor: none;
}
.nl a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.nl a:hover::after,
.nl a.active::after {
  right: 0;
}
.nl a:hover,
.nl a.active {
  color: var(--ink);
}

.npill {
  background: var(--ink);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition:
    background 0.25s,
    box-shadow 0.25s;
  letter-spacing: 0.2px;
}
.npill:hover {
  background: var(--blue);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
  align-items: flex-end;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.hamburger span:nth-child(1) {
  width: 22px;
}
.hamburger span:nth-child(2) {
  width: 15px;
}
.hamburger span:nth-child(3) {
  width: 22px;
}
.hamburger.open span:nth-child(1) {
  width: 20px;
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}
.hamburger.open span:nth-child(3) {
  width: 20px;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
#mob {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: var(--w);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.38s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
}
#mob.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.mob-links {
  list-style: none;
  margin-bottom: 44px;
}
.mob-links li {
  border-bottom: 1px solid var(--bdr);
}
.mob-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-decoration: none;
  transform: translateY(28px);
  opacity: 0;
  transition:
    color 0.2s,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease;
}
#mob.open .mob-links a {
  transform: none;
  opacity: 1;
}
#mob.open .mob-links li:nth-child(1) a {
  transition-delay: 0.06s;
}
#mob.open .mob-links li:nth-child(2) a {
  transition-delay: 0.1s;
}
#mob.open .mob-links li:nth-child(3) a {
  transition-delay: 0.14s;
}
.mob-links a:hover {
  color: var(--blue);
}
.mob-links .arr {
  opacity: 0.2;
  transition: all 0.2s;
}
.mob-links a:hover .arr {
  opacity: 1;
  transform: translateX(4px);
}
.mob-footer {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#mob.open .mob-footer {
  opacity: 1;
  transform: none;
}
.mob-meta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.mob-meta a {
  font-size: 13px;
  color: var(--ink4);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-meta a:hover {
  color: var(--blue);
}

/* ─── PAGES ─── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ─── SCROLL REVEAL ─── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ─── SHARED LAYOUT ─── */
.w {
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
}
.lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lbl::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--blue);
  display: block;
  flex-shrink: 0;
}
h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", sans-serif;
}

/* ─── HERO ─── */
.hero {
  padding: 130px 0 0;
  background: var(--w);
  overflow: hidden;
}
.htop {
  padding: 0 60px;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hkick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
}
.hpulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--ink);
}
.hero h1 strong {
  font-weight: 600;
  background: linear-gradient(120deg, var(--blue) 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hsub {
  margin-top: 22px;
  color: var(--ink3);
  font-size: 17px;
  line-height: 1.75;
  max-width: 420px;
}
.hctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.bdark {
  background: var(--ink);
  color: #fff;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.bdark:hover {
  background: var(--blue);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.28);
}
.bghost {
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.bghost:hover {
  color: var(--blue);
}
.bghost svg {
  transition: transform 0.25s;
}
.bghost:hover svg {
  transform: translateX(3px);
}
.hstats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--bdr);
}
.snum {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
}
.slbl {
  font-size: 12px;
  color: var(--ink4);
  margin-top: 2px;
}

/* REEL */
.reel-col {
  position: relative;
}
.reel-outer {
  position: relative;
}
.reel-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  position: relative;
  aspect-ratio: 16/10;
  box-shadow: 0 32px 80px rgba(13, 15, 20, 0.18);
  cursor: none;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 100px rgba(13, 15, 20, 0.22);
}
.rbg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #06091a 0%,
    #0f1a3e 40%,
    #0a2060 70%,
    #0c1830 100%
  );
}
.rgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.rglow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.3) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gp 4s ease-in-out infinite;
}
@keyframes gp {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.rlbl {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rdur {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.rplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.reel-card:hover .rplay {
  transform: translate(-50%, -50%) scale(1.1);
}
.rplay svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
  margin-left: 3px;
}
.rbot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: center;
}
.rprog {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-right: 16px;
}
.rprogb {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--blue2), #93c5fd);
  border-radius: 2px;
}
.rtime {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.rchip {
  position: absolute;
  background: white;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(13, 15, 20, 0.1);
  font-size: 12px;
  white-space: nowrap;
}
.rchip1 {
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rchip2 {
  top: -18px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.cgreen {
  background: #22c55e;
}
.cblue {
  background: var(--blue2);
}
.clbl {
  font-weight: 600;
  color: var(--ink);
  font-size: 12px;
}
.csub {
  font-size: 11px;
  color: var(--ink4);
}

/* TICKER */
.ticker-wrap {
  margin-top: 80px;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 17px 0;
  overflow: hidden;
  background: var(--ow);
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: tick 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ti {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ti::after {
  content: "✦";
  color: var(--blue);
  font-size: 9px;
}

/* CLIENTS */
.csec {
  padding: 88px 0;
  background: var(--w);
}
.chead {
  text-align: center;
  margin-bottom: 52px;
}
.chead h2 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}
.crow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ccell {
  flex: 0 0 16.66%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  transition: background 0.25s;
}
.ccell:hover {
  background: var(--ow);
}
.ccell:nth-child(6n) {
  border-right: none;
}
.wm {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #c8cdd8;
  letter-spacing: -0.4px;
  transition: color 0.25s;
  user-select: none;
}
.ccell:hover .wm {
  color: #8898b0;
}

/* SELECTED WORK */
.hwsec {
  padding: 100px 0;
  background: var(--ow);
}
.hwh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.hwh h2 {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-top: 12px;
}
.link-arr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink3);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  transition: color 0.25s;
  white-space: nowrap;
  margin-bottom: 6px;
}
.link-arr:hover {
  color: var(--blue);
}
.link-arr:hover svg {
  transform: translateX(4px);
}
.link-arr svg {
  transition: transform 0.25s;
}
.hwgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hwcard {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bdr);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s;
  cursor: none;
}
.hwcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 15, 20, 0.09);
  border-color: var(--bdr2);
}
.hwthumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.hwthi {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.hwcard:hover .hwthi {
  transform: scale(1.04);
}
.th1 {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 40%, #a5b4fc 100%);
}
.th2 {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 40%, #7dd3fc 100%);
}
.th3 {
  background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 40%, #86efac 100%);
}
.thmock {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
}
.mscr {
  background: white;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}
.mbar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin-bottom: 6px;
}
.mbar.w60 {
  width: 60%;
}
.mbar.w80 {
  width: 80%;
}
.mbar.w40 {
  width: 40%;
}
.mrow {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.mblk {
  height: 28px;
  border-radius: 4px;
  background: #f3f4f6;
  flex: 1;
}
.mblk.acc {
  background: rgba(29, 78, 216, 0.15);
}
.hwbody {
  padding: 22px 24px 26px;
}
.hwmeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hwcat {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hwyr {
  font-size: 12px;
  color: var(--ink4);
}
.hwtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.hwdesc {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hwtags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tpill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--tagbg);
  color: var(--tagc);
  letter-spacing: 0.2px;
}

/* VALUES */
.vsec {
  padding: 100px 0;
  background: var(--w);
}
.vgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vleft h2 {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 12px 0 20px;
}
.vleft p {
  color: var(--ink3);
  font-size: 16px;
  line-height: 1.8;
  max-width: 400px;
}
.vright {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vrow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.vrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 0 2px 2px 0;
}
.vrow:hover::before {
  transform: scaleY(1);
}
.vic {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bluepale);
  color: var(--blue);
}
.vic svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.vtit {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.vdesc {
  font-size: 13px;
  color: var(--ink4);
}

/* PROCESS */
.prosec {
  padding: 100px 0;
  background: var(--w);
}
.proh {
  text-align: center;
  margin-bottom: 64px;
}
.proh h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-top: 10px;
}
.protrack {
  display: flex;
  gap: 0;
  position: relative;
}
.protrack::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--bdr);
}
.pstep {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.pnum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--w);
  border: 1.5px solid var(--bdr2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink3);
  transition: all 0.3s;
}
.pstep:hover .pnum {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bluepale);
}
.ptit {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.pdesc {
  font-size: 13px;
  color: var(--ink4);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testsec {
  padding: 100px 0;
  background: var(--ow);
}
.testh {
  text-align: center;
  margin-bottom: 52px;
}
.testh h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-top: 10px;
}
.testgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testcard {
  background: var(--w);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--bdr);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.testcard:hover {
  box-shadow: 0 12px 36px rgba(13, 15, 20, 0.08);
  transform: translateY(-4px);
}
.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 18px;
  transition: letter-spacing 0.3s;
}
.testcard:hover .stars {
  letter-spacing: 2px;
}
.ttxt {
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.tauth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ava {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}
.avb {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
}
.avc {
  background: linear-gradient(135deg, #0891b2, #38bdf8);
}
.aname {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.arole {
  font-size: 12px;
  color: var(--ink4);
}

/* CTA */
.ctasec {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ctabg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(29, 78, 216, 0.2) 0%,
    transparent 70%
  );
}
.ctadots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.ctain {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 60px;
}
.ctain h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -2px;
  color: white;
  line-height: 1.06;
  margin: 14px 0 22px;
}
.ctain h2 span {
  background: linear-gradient(120deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ctain p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.bwhite {
  background: white;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.bwhite:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.ctamic {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 18px;
  letter-spacing: 0.5px;
}

/* FOOTER */
footer {
  background: #060810;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ftgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ftbrand p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 220px;
  margin-top: 14px;
}
.ftcol h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.ftcol a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition:
    color 0.2s,
    padding-left 0.25s;
  position: relative;
  cursor: none;
}
.ftcol a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s;
  font-size: 12px;
}
.ftcol a:hover {
  color: white;
  padding-left: 16px;
}
.ftcol a:hover::before {
  opacity: 1;
  transform: none;
}
.ftbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
.ftbot p {
  color: rgba(255, 255, 255, 0.22);
  font-size: 12.5px;
}

/* ─── WORK PAGE ─── */
.wphero {
  padding: 0 0 80px;
  background: var(--w);
}
.wphero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin: 16px 0 22px;
  max-width: 720px;
  line-height: 1.05;
}
.wphero p {
  color: var(--ink3);
  font-size: 18px;
  max-width: 480px;
  line-height: 1.75;
}
.wpfbar {
  padding: 30px 48px;
  background: var(--w);
}
.wpfs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wfb {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--bdr);
  background: transparent;
  color: var(--ink3);
  font-size: 13px;
  font-weight: 500;
  cursor: none;
  transition: all 0.25s;
  font-family: "Instrument Sans", sans-serif;
}
.wfb.on,
.wfb:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.wpfeat {
  padding: 0 0 80px;
  background: var(--w);
}
.fc {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bdr);
  transition: box-shadow 0.35s;
  margin-bottom: 20px;
  background: var(--w);
}
.fc:hover {
  box-shadow: 0 20px 60px rgba(13, 15, 20, 0.1);
}
.fc.flip {
  direction: rtl;
}
.fc.flip > * {
  direction: ltr;
}
.fthumb {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.fthi {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.fc:hover .fthi {
  transform: scale(1.04);
}
.ft-nx {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #3b82f6 100%);
}
.ft-sc {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #34d399 100%);
}
.ft-lm {
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #fb923c 100%);
}
.ftart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftlogo {
  width: 160px;
  height: 160px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.ftlbl {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.fbody {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ftags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ftit {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.fdesc {
  color: var(--ink3);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.fmet {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--ow);
  border-radius: 12px;
}
.fmn {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
}
.fml {
  font-size: 12px;
  color: var(--ink4);
  margin-top: 2px;
}
.fcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: gap 0.25s;
}
.fcta:hover {
  gap: 14px;
}
.wpgsec {
  padding: 20px 0 120px;
  background: var(--w);
}
.wpglbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink4);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.wpg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wgc {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bdr);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: none;
}
.wgc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(13, 15, 20, 0.09);
  border-color: var(--bdr2);
}
.wgth {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.wgthi {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wgc:hover .wgthi {
  transform: scale(1.06);
}
.wg1 {
  background: linear-gradient(135deg, #ede9fe, #c4b5fd, #a78bfa);
}
.wg2 {
  background: linear-gradient(135deg, #fef9c3, #fde68a, #fbbf24);
}
.wg3 {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8, #f9a8d4);
}
.wg4 {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4, #5eead4);
}
.wg5 {
  background: linear-gradient(135deg, #fee2e2, #fecaca, #f87171);
}
.wg6 {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd, #38bdf8);
}
.wgicon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  letter-spacing: -1px;
}
.wgbody {
  padding: 20px 22px 24px;
}
.wgind {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink4);
  margin-bottom: 6px;
  font-weight: 600;
}
.wgtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.wgdesc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 14px;
}
.wgtags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.wgtag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--tagbg);
  color: var(--tagc);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ─── CONTACT PAGE ─── */
.cphero {
  padding: 160px 0 80px;
  background: var(--w);
}
.cphero h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin: 14px 0 20px;
  max-width: 640px;
  line-height: 1.06;
}
.cphero p {
  color: var(--ink3);
  font-size: 18px;
  max-width: 460px;
  line-height: 1.75;
}
.cpbody {
  padding: 60px 0 120px;
  background: var(--ow);
}
.cpgrid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}
.cpinfo {
  position: sticky;
  top: 90px;
}
.cpinfo h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}
.cpdet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cpdic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.cpdic svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.cpdl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink4);
  font-weight: 600;
  margin-bottom: 3px;
}
.cpdv {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.cpdivider {
  height: 1px;
  background: var(--bdr);
  margin: 28px 0;
}
.cpsoc {
  display: flex;
  gap: 10px;
}
.sb {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--bdr);
  background: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  transition: all 0.25s;
  cursor: none;
}
.sb:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bluepale);
}
.sb svg {
  width: 15px;
  height: 15px;
}
.cpfc {
  background: var(--w);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--bdr);
  box-shadow: 0 4px 24px rgba(13, 15, 20, 0.06);
}
.cpfh h4 {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}
.cpfh p {
  font-size: 14px;
  color: var(--ink4);
  margin-bottom: 32px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fg {
  margin-bottom: 20px;
}
.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink3);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.fg:focus-within label {
  color: var(--blue);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
}
.fg select {
  cursor: none;
}
.fg select option {
  background: white;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
  background: white;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--ink4);
}
.fg textarea {
  resize: vertical;
  min-height: 120px;
}
.fsbtn {
  width: 100%;
  background: var(--ink);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 100px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition:
    background 0.25s,
    box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fsbtn:hover {
  background: var(--blue);
  box-shadow: 0 8px 28px rgba(29, 78, 216, 0.28);
}
.fsok {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--blue);
  font-weight: 600;
  font-size: 16px;
  background: var(--bluepale);
  border-radius: 12px;
  margin-top: 12px;
}

/* ─── CASE STUDY PAGE ─── */
.cs-cover {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.cs-cover-bg {
  position: absolute;
  inset: 0;
  transition: background 0.5s ease;
}
.cs-cover-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cs-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.cs-cover-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  cursor: none;
  transition: color 0.2s;
  margin-bottom: 40px;
  grid-column: 1/-1;
}
.cs-back:hover {
  color: white;
}
.cs-cover-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.cs-industry {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cs-divider {
  color: rgba(255, 255, 255, 0.3);
}
.cs-tags-cover {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}
.cs-cover-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: white;
  line-height: 1.04;
  margin-bottom: 18px;
}
.cs-cover-tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.cs-cover-metrics {
  display: flex;
  gap: 40px;
}
.cs-metric-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
}
.cs-metric-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cs-cover-card {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}
.cs-cover-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}
.cs-cover-card-bg {
  position: absolute;
  inset: 0;
}
.cs-cover-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cs-cover-card-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  letter-spacing: -3px;
  opacity: 0.9;
}
.cs-cover-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cs-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.cs-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrl 2s ease-in-out infinite;
}
@keyframes scrl {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* Case overview */
.cs-overview {
  padding: 100px 0;
  background: var(--w);
}
.cs-ov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.cs-section-h {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 14px 0 20px;
}
.cs-ov-body {
  color: var(--ink3);
  font-size: 16px;
  line-height: 1.8;
}
.cs-ov-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cs-ov-stat {
  background: var(--ow);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--bdr);
}
.cs-ov-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -1px;
}
.cs-ov-stat-l {
  font-size: 12px;
  color: var(--ink4);
  margin-top: 4px;
  line-height: 1.4;
}

/* Case full-width image */
.cs-img-full {
  padding: 0;
}
.cs-img-full-inner {
  height: 520px;
  position: relative;
  overflow: hidden;
}
.cs-img-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cs-img-full:hover .cs-img-full-bg {
  transform: scale(1.03);
}
.cs-img-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.cs-img-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Case insight */
.cs-insight {
  padding: 100px 0;
  background: var(--ow);
}
.cs-insight-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cs-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-style: italic;
  margin: 20px 0 16px;
}
.cs-quote-attr {
  font-size: 13px;
  color: var(--ink4);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Case process */
.cs-process {
  padding: 100px 0;
  background: var(--w);
}
.cs-proc-head {
  margin-bottom: 52px;
}
.cs-proc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cs-proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--bdr);
}
.cs-proc-step:last-child {
  border-bottom: none;
}
.cs-proc-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink4);
  letter-spacing: 1px;
  padding-top: 4px;
}
.cs-proc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.cs-proc-desc {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.75;
}

/* Case image grid */
.cs-img-grid-section {
  padding: 60px 0;
  background: var(--ow);
}
.cs-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-img-grid-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-img-grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.cs-ig-tall {
  min-height: 420px;
}
.cs-img-grid-right .cs-img-grid-item {
  flex: 1;
}
.cs-ig-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cs-img-grid-item:hover .cs-ig-bg {
  transform: scale(1.04);
}
.cs-ig-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

/* Case results */
.cs-results {
  padding: 100px 0;
  background: var(--w);
}
.cs-res-head {
  margin-bottom: 52px;
}
.cs-res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-res-card {
  background: var(--ow);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--bdr);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cs-res-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 15, 20, 0.08);
}
.cs-res-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.cs-res-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.cs-res-desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
}

/* Case testimonial */
.cs-testi {
  padding: 100px 0;
  background: var(--ow);
}
.cs-testi-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cs-testi-quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
  font-style: italic;
}
.cs-testi-auth {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

/* Case next */
.cs-next {
  padding: 80px 0;
  background: var(--ink);
}
.cs-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-next-left .lbl {
  color: rgba(255, 255, 255, 0.4);
}
.cs-next-left .lbl::before {
  background: rgba(255, 255, 255, 0.4);
}
.cs-next-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  color: white;
  letter-spacing: -1px;
  margin-top: 12px;
  cursor: none;
  transition: color 0.2s;
}
.cs-next-title:hover {
  color: #60a5fa;
}
.cs-next-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-top: 6px;
}

/* ─── RIPPLE ─── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rip 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rip {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .htop {
    grid-template-columns: 1fr;
  }
  .fc {
    grid-template-columns: 1fr;
  }
  .fthumb {
    min-height: 260px;
  }
  .cpgrid {
    grid-template-columns: 1fr;
  }
  .cpinfo {
    position: static;
  }
  .cs-cover-inner {
    grid-template-columns: 1fr;
  }
  /* cs-cover-card mobile visible */
  .cs-res-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hwgrid,
  .testgrid,
  .vmcards,
  .ftgrid {
    grid-template-columns: 1fr;
  }
  .wpg {
    grid-template-columns: 1fr 1fr;
  }
  .vgrid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .protrack {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .protrack::after {
    display: none;
  }
  .crow .ccell {
    flex: 0 0 33.33%;
  }
  .cs-ov-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cs-img-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }
  .nl {
    display: none;
  }
  .npill {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .w,
  .htop,
  .ctain,
  .wphero .w,
  .cphero .w {
    padding: 0 20px;
  }
  .htop {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .reel-col {
    display: block !important;
  }
  .reel-card {
    aspect-ratio: 16/9;
    border-radius: 16px;
  }
  .rchip {
    display: none;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .wpg {
    grid-template-columns: 1fr;
  }
  .cpfc {
    padding: 28px 22px;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .fbody {
    padding: 28px 24px;
  }
  .wphero,
  .cphero {
    padding: 0 0 60px;
  }
  .hstats {
    flex-direction: column;
    gap: 20px;
  }
  .cs-cover-metrics {
    flex-wrap: wrap;
    gap: 24px;
  }
  .cs-res-grid {
    grid-template-columns: 1fr;
  }
  .cs-proc-step {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
  .cs-next-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .wphero .w {
    grid-template-columns: 1fr !important;
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .wphero-visual {
    display: block !important;
    height: 220px;
    margin-top: 16px;
  }
  .wphero-stats {
    gap: 20px;
  }
  .wpg-placeholder-row {
    grid-template-columns: 1fr !important;
  }
}

/* ─── SERVICES SECTION ─── */
.srvsec {
  padding: 100px 0;
  background: var(--w);
  overflow: hidden;
}
.srv-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.srv-top-left h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -1.8px;
  color: var(--ink);
  margin: 12px 0 20px;
  line-height: 1.06;
}
.srv-top-left p {
  color: var(--ink3);
  font-size: 16px;
  line-height: 1.8;
  max-width: 380px;
}
.srv-top-right {
  padding-top: 16px;
}
.srv-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bdr);
}
.srv-stat:first-child {
  border-top: 1px solid var(--bdr);
}
.srv-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -1px;
  min-width: 70px;
}
.srv-stat-l {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.5;
  padding-top: 4px;
}

.srv-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.srv-tab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--bdr);
  background: transparent;
  color: var(--ink3);
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  transition: all 0.28s;
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: 0.2px;
}
.srv-tab.on {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.srv-tab:hover:not(.on) {
  border-color: var(--bdr2);
  color: var(--ink);
}

/* ─── SERVICES INTERACTIVE CARDS ─── */
.srv-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.srv-icard {
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid var(--bdr);
  background: var(--w);
  cursor: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.srv-icard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bluepale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.srv-icard:hover {
  border-color: var(--bluebdr);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(29, 78, 216, 0.08);
}
.srv-icard:hover::before {
  opacity: 1;
}
.srv-icard-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.srv-icard-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s;
}
.srv-icard:hover .srv-icard-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.srv-icard-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink3);
  transition: stroke 0.35s;
}
.srv-icard:hover .srv-icard-icon svg {
  stroke: white;
}
.srv-icard h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 10px;
}
.srv-icard p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
  margin: 0 0 20px;
}
.srv-icard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.srv-icard-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3);
  background: var(--ow);
  border: 1px solid var(--bdr);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}
.srv-icard:hover .srv-icard-tag {
  border-color: var(--bluebdr);
  color: var(--blue);
  background: var(--bluepale);
}
.srv-icard-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
  opacity: 0;
  transform: scale(0.8);
}
.srv-icard:hover .srv-icard-arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--blue);
  border-color: var(--blue);
}
.srv-icard-arrow svg {
  width: 14px;
  height: 14px;
  stroke: white;
}
@media (max-width: 768px) {
  .srv-card-grid {
    grid-template-columns: 1fr;
  }
  .srv-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
}

.srv-panels {
  position: relative;
}
.srv-panel {
  display: none;
  animation: panelIn 0.45s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.srv-panel.on {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.srv-panel-left h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.1;
}
.srv-panel-left p {
  color: var(--ink3);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.srv-deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.srv-del {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink2);
}
.srv-del::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: gap 0.25s;
}
.srv-link:hover {
  gap: 13px;
}
.srv-link svg {
  transition: transform 0.25s;
}

.srv-panel-right {
  position: relative;
}
.srv-visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.srv-visual-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
}
.srv-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.srv-visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
}
.srv-visual-badge-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}
.srv-visual-badge-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.srv-visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.18;
}
.srv-visual-icon svg {
  width: 120px;
  height: 120px;
  color: white;
}
@media (max-width: 900px) {
  .srv-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .srv-panel.on {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .srv-panel-right {
    display: none;
  }
}

/* ─── CAREER PAGE ─── */
.crhero {
  padding: 160px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.crhero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.crhero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.25) 0%,
    transparent 70%
  );
}
.crhero .w {
  position: relative;
  z-index: 2;
}
.crhero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: white;
  margin: 16px 0 22px;
  max-width: 720px;
  line-height: 1.04;
}
.crhero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.cr-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.cr-hero-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
}
.cr-hero-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cr-values {
  padding: 100px 0;
  background: var(--w);
}
.cr-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.cr-vcard {
  background: var(--ow);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--bdr);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cr-vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(13, 15, 20, 0.08);
}
.cr-vcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--bluepale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.cr-vcard-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.cr-vcard h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cr-vcard p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
}

.cr-openings {
  padding: 100px 0;
  background: var(--ow);
}
.cr-openings-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.cr-openings-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-top: 10px;
}
.cr-dept-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cr-dept-tab {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--bdr);
  background: transparent;
  color: var(--ink3);
  font-size: 12px;
  font-weight: 600;
  cursor: none;
  transition: all 0.25s;
  font-family: "Instrument Sans", sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.cr-dept-tab.on,
.cr-dept-tab:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.cr-job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cr-job {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bdr);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  cursor: none;
}
.cr-job:hover {
  border-color: var(--bdr2);
  box-shadow: 0 8px 32px rgba(13, 15, 20, 0.07);
  transform: translateX(4px);
}
.cr-job-dept {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bluepale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.cr-job-dept svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}
.cr-job-info {
  flex: 1;
}
.cr-job-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.cr-job-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cr-job-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--tagbg);
  color: var(--tagc);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cr-job-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  transition:
    background 0.25s,
    transform 0.25s;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.cr-job-apply:hover {
  background: var(--blue);
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .cr-job {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cr-values-grid {
    grid-template-columns: 1fr;
  }
}

.cr-perks {
  padding: 100px 0;
  background: var(--w);
}
.cr-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.cr-perk {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--bdr);
  background: var(--ow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cr-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 15, 20, 0.07);
}
.cr-perk-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.cr-perk h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.cr-perk p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .cr-perks-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cr-perks-grid {
    grid-template-columns: 1fr;
  }
}

/* APPLICATION MODAL */
#applyModal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#applyModal.open {
  display: flex;
}
.apply-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.apply-box {
  position: relative;
  z-index: 1;
  background: var(--w);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  box-shadow: 0 32px 80px rgba(13, 15, 20, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease;
}
#applyModal.open .apply-box {
  transform: none;
  opacity: 1;
}
.apply-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  background: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  transition: all 0.25s;
}
.apply-close:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--ow);
}
.apply-close svg {
  width: 16px;
  height: 16px;
}
.apply-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.apply-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.apply-box > p {
  font-size: 14px;
  color: var(--ink4);
  margin-bottom: 32px;
}
.apply-divider {
  height: 1px;
  background: var(--bdr);
  margin: 24px 0;
}
.apply-upload {
  border: 2px dashed var(--bdr);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  margin-bottom: 20px;
}
.apply-upload:hover {
  border-color: var(--blue);
  background: var(--bluepale);
}
.apply-upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.apply-upload p {
  font-size: 13px;
  color: var(--ink3);
}
.apply-upload strong {
  color: var(--blue);
}
.apply-submit {
  width: 100%;
  background: var(--ink);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 100px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.apply-submit:hover {
  background: var(--blue);
}
.apply-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.apply-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.apply-success h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.apply-success p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .apply-box {
    padding: 28px 24px;
  }
}

/* Cursor VIEW label */
#cr.view::after {
  content: "View";
  position: absolute;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Instrument Sans", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

/* Mobile hero layout */
@media (max-width: 1100px) {
  .htop {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reel-col {
    display: block !important;
  }
  .reel-outer {
    max-width: 480px;
    margin: 0 auto;
  }
  .rchip1,
  .rchip2 {
    display: none;
  }
}

/* Extra case study placeholders */
.cs-tools-sec {
  padding: 80px 0;
  background: var(--bg2);
}
.cs-tools-head {
  text-align: center;
  margin-bottom: 44px;
}
.cs-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cs-tool-card {
  background: var(--w);
  border-radius: 14px;
  border: 1px solid var(--bdr);
  padding: 24px 20px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.cs-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 15, 20, 0.08);
}
.cs-tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cs-tool-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.cs-tool-type {
  font-size: 11px;
  color: var(--ink4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cs-img-duo {
  padding: 60px 0;
  background: var(--w);
}
.cs-img-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-img-duo-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}
.cs-id-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.cs-img-duo-item:hover .cs-id-bg {
  transform: scale(1.04);
}
.cs-id-lbl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.cs-timeline {
  padding: 80px 0;
  background: var(--ow);
}
.cs-tl-head {
  margin-bottom: 44px;
}
.cs-tl-track {
  position: relative;
  padding-left: 32px;
}
.cs-tl-track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--bdr2);
}
.cs-tl-item {
  position: relative;
  padding: 0 0 36px 28px;
}
.cs-tl-item:last-child {
  padding-bottom: 0;
}
.cs-tl-dot {
  position: absolute;
  left: -10px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--w);
  border: 2px solid var(--bdr2);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.cs-tl-item:hover .cs-tl-dot {
  border-color: var(--blue);
  background: var(--bluepale);
}
.cs-tl-week {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cs-tl-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.cs-tl-desc {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cs-tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-img-duo-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced services tab accent */
.srv-tab {
  position: relative;
  overflow: hidden;
}
.srv-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--blue);
  transition:
    left 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.srv-tab.on::after {
  left: 0;
  right: 0;
}

/* ─── CAREERS PAGE ─── */
.car-hero {
  padding: 160px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.car-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.car-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.2) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.car-hero-inner {
  position: relative;
  z-index: 2;
}
.car-hero-inner h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: white;
  margin: 16px 0 22px;
  max-width: 720px;
  line-height: 1.05;
}
.car-hero-inner h1 span {
  background: linear-gradient(120deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.car-hero-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.car-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
}
.car-hstat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
}
.car-hstat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

.car-values {
  padding: 88px 0;
  background: var(--w);
}
.car-val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.car-val-card {
  background: var(--ow);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--bdr);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.car-val-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.car-val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 15, 20, 0.09);
  border-color: var(--bdr2);
}
.car-val-card:hover::before {
  transform: scaleX(1);
}
.car-val-ico {
  font-size: 32px;
  margin-bottom: 20px;
}
.car-val-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.car-val-desc {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
}

.car-openings {
  padding: 88px 0;
  background: var(--ow);
}
.car-open-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
}
.car-job {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--bdr);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: none;
}
.car-job:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(13, 15, 20, 0.08);
  border-color: var(--bdr2);
}
.car-job-left {
  flex: 1;
}
.car-job-dept {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.car-job-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.car-job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.car-job-tag {
  font-size: 12px;
  color: var(--ink4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-job-tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.car-apply-btn {
  background: var(--ink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  transition:
    background 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.car-apply-btn:hover {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
}

.car-culture {
  padding: 88px 0;
  background: var(--w);
}
.car-cul-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}
.car-cul-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 12px 0 20px;
}
.car-cul-left p {
  color: var(--ink3);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.car-cul-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.car-cul-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bdr);
}
.car-cul-item:last-child {
  border-bottom: none;
}
.car-cul-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.car-cul-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink2);
}
.car-cul-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.car-cul-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.car-cul-img:nth-child(1) {
  grid-column: 1/-1;
  height: 200px;
}
.car-cul-img:nth-child(2),
.car-cul-img:nth-child(3) {
  height: 140px;
}
.car-cul-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.car-cul-img:hover .car-cul-img-bg {
  transform: scale(1.05);
}

/* ─── APPLY MODAL ─── */
#apply-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#apply-modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-box {
  position: relative;
  z-index: 2;
  background: var(--w);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 44px;
  box-shadow: 0 40px 120px rgba(13, 15, 20, 0.3);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
#apply-modal.open .modal-box {
  transform: none;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ow);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--bdr);
  color: var(--ink);
}
.modal-close svg {
  width: 16px;
  height: 16px;
}
.modal-head {
  margin-bottom: 32px;
}
.modal-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-head h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.modal-head p {
  font-size: 14px;
  color: var(--ink4);
}

@media (max-width: 768px) {
  .car-val-grid,
  .car-cul-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .car-job {
    flex-direction: column;
    align-items: flex-start;
  }
  .car-hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }
  .modal-box {
    padding: 28px 22px;
  }
}

/* Services panel base styles */
.srv-panel {
  display: none;
}
.srv-panel.on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.srvsec {
  padding: 100px 0;
  background: var(--ow);
}
.srv-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.srv-top-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 12px 0 16px;
}
.srv-top-left p {
  color: var(--ink3);
  font-size: 15px;
  line-height: 1.75;
  max-width: 400px;
}
.srv-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
}
.srv-stat-l {
  font-size: 12px;
  color: var(--ink4);
  margin-top: 3px;
  max-width: 180px;
  line-height: 1.4;
}
.srv-stat {
  margin-bottom: 20px;
}
.srv-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 44px;
  overflow-x: auto;
}
.srv-tab {
  background: none;
  border: none;
  padding: 14px 24px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink3);
  cursor: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.srv-tab.on {
  color: var(--ink);
}
.srv-panel-left h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.srv-panel-left p {
  color: var(--ink3);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.srv-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.srv-del {
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.srv-del::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.srv-del:last-child {
  border-bottom: none;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: gap 0.25s;
}
.srv-link:hover {
  gap: 12px;
}
.srv-link svg {
  transition: transform 0.25s;
}
.srv-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.srv-visual-bg {
  position: absolute;
  inset: 0;
}
.srv-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.srv-visual-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 80px;
  height: 80px;
  opacity: 0.5;
}
.srv-visual-icon svg {
  width: 80px;
  height: 80px;
  stroke: white;
}
.srv-visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
}
.srv-visual-badge-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}
.srv-visual-badge-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .srv-panel.on {
    grid-template-columns: 1fr;
  }
  .srv-top {
    grid-template-columns: 1fr;
  }
  .srv-visual {
    display: none;
  }
}

/* ═══════════════════ INTERACTIVE SERVICES ═══════════════════ */
.isrv-section {
  padding: 120px 0;
  background: #f7f8fa;
}
.isrv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.isrv-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  line-height: 1.1;
}
.isrv-header p {
  max-width: 380px;
  color: var(--ink2);
  font-size: 17px;
  line-height: 1.7;
}
.isrv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e2e6eb;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}
.isrv-card {
  padding: 44px 40px;
  border-right: 1px solid #e2e6eb;
  border-bottom: 1px solid #e2e6eb;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.isrv-card:nth-child(2n) {
  border-right: none;
}
.isrv-card:nth-child(n + 3) {
  border-bottom: none;
}
.isrv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}
.isrv-card:hover::before,
.isrv-card.open::before {
  opacity: 1;
}
.isrv-card-inner {
  position: relative;
  z-index: 1;
}
.isrv-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink3);
  margin-bottom: 20px;
  transition: color 0.25s;
}
.isrv-card:hover .isrv-num,
.isrv-card.open .isrv-num {
  color: rgba(255, 255, 255, 0.6);
}
.isrv-icon {
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.isrv-icon svg {
  width: 22px;
  height: 22px;
  stroke: #1d4ed8;
  transition: stroke 0.25s;
}
.isrv-card:hover .isrv-icon,
.isrv-card.open .isrv-icon {
  background: rgba(255, 255, 255, 0.15);
}
.isrv-card:hover .isrv-icon svg,
.isrv-card.open .isrv-icon svg {
  stroke: white;
}
.isrv-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: color 0.25s;
}
.isrv-card:hover .isrv-title,
.isrv-card.open .isrv-title {
  color: white;
}
.isrv-short {
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.25s;
}
.isrv-card:hover .isrv-short,
.isrv-card.open .isrv-short {
  color: rgba(255, 255, 255, 0.75);
}
.isrv-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.isrv-card.open .isrv-expand {
  max-height: 400px;
}
.isrv-expand-inner {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
}
.isrv-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.isrv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
}
.isrv-item::before {
  content: "→";
  flex-shrink: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.isrv-cta-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.isrv-cta-sm:hover {
  border-color: white;
}
.isrv-arrow {
  display: inline-block;
  transition: transform 0.3s 0.15s;
  font-size: 16px;
}
.isrv-card.open .isrv-arrow {
  transform: rotate(45deg);
}
.isrv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}
.isrv-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.25s,
    transform 0.35s,
    background 0.25s;
  margin-top: 4px;
}
.isrv-card:hover .isrv-toggle,
.isrv-card.open .isrv-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.isrv-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink2);
  transition:
    stroke 0.25s,
    transform 0.35s;
}
.isrv-card:hover .isrv-toggle svg,
.isrv-card.open .isrv-toggle svg {
  stroke: white;
}
.isrv-card.open .isrv-toggle {
  transform: rotate(45deg);
}

/* ═══════════════════ WORK PAGE PLACEHOLDERS ═══════════════════ */
.wg-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-radius: 16px;
}
.wg-placeholder::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
}
.wgc.placeholder .wgth {
  opacity: 0.5;
}

/* ═══════════════════ WORK HERO MOBILE FIX ═══════════════════ */
.wphero-visual {
  margin-top: 40px;
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f38 0%, #1d3a6e 100%);
}
.wphv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100%;
  gap: 0;
}
.wphv-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wphv-cell {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.wphv-cell.lit {
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.3) 0%,
    rgba(59, 130, 246, 0.2) 100%
  );
  border-color: rgba(59, 130, 246, 0.25);
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════ HOME HERO MOBILE VIDEO FIX ═══════════════════ */
@media (max-width: 768px) {
  .htop {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 0 24px !important;
  }
  .hright {
    display: block !important;
  }
  .showreel-card {
    width: 100% !important;
    height: 220px !important;
  }
  .wphero .w {
    padding: 0 24px;
  }
  .wphero-visual {
    display: block !important;
  }
}

/* ═══════════════════ CURSOR VIEW LABEL ═══════════════════ */
#cursor-view {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition:
    opacity 0.2s,
    transform 0.2s;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
#cursor-view.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.view-trigger {
  cursor: none;
}

/* ═══════════════════ E LOGO TRANSITION ANIMATION ═══════════════════ */
#trans-logo {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
#trans-logo svg {
  width: clamp(80px, 15vw, 180px);
  transform-origin: center;
  filter: drop-shadow(0 0 40px rgba(0, 87, 255, 0.6));
}
.trans-e-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
@keyframes eStrokeIn {
  0% {
    stroke-dashoffset: 1000;
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes eStrokeOut {
  0% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1000;
    opacity: 0;
  }
}
@keyframes transLogoFadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#trans-logo.animating {
  animation: transLogoFadeIn 0.8s ease forwards;
}
#trans-logo.animating .trans-e-path {
  animation: eStrokeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s forwards;
}

/* ═══════════════════ NAV LOGO HOVER ANIMATION ═══════════════════ */
.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}
.nav-logo-wrap svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-logo-wrap:hover svg {
  transform: scale(1.08);
}
.nav-logo-wrap .logo-spiral {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
.nav-logo-wrap:hover .logo-spiral {
  transform: rotate(180deg) scale(1.1);
  transform-box: fill-box;
}
.nav-logo-wrap .logo-letter {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-box: fill-box;
  transform-origin: center;
}
.nav-logo-wrap:hover .logo-letter:nth-child(1) {
  transform: translateY(-3px);
}
.nav-logo-wrap:hover .logo-letter:nth-child(3) {
  transform: translateY(-3px);
}
.nav-logo-wrap:hover .logo-letter:nth-child(4) {
  transform: translateY(-3px) scaleX(1.02);
}
.nav-logo-wrap:hover .logo-letter:nth-child(5) {
  transform: translateY(-3px);
}

/* ═══════════════════ INTERACTIVE SERVICES MOBILE ═══════════════════ */
@media (max-width: 768px) {
  .isrv-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .isrv-card {
    border-right: none !important;
    border-bottom: 1px solid #e2e6eb !important;
  }
  .isrv-card:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 900px) {
  .isrv-grid {
    grid-template-columns: 1fr;
  }
  .isrv-card {
    border-right: none !important;
    border-bottom: 1px solid #e2e6eb !important;
  }
  .isrv-card:last-child {
    border-bottom: none !important;
  }
}

/* ═══ WORK PAGE EXTRAS ═══ */
.wg7 .wgicon,
.wg8 .wgicon,
.wg9 .wgicon {
  font-size: 18px;
}
.wgthi.wg7 {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.wgthi.wg8 {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}
.wgthi.wg9 {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #2d2d2d);
}
.wpg-placeholder-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.wpg-ph-cta {
  background: linear-gradient(
    135deg,
    var(--bluepale) 0%,
    white 100%
  ) !important;
  border-color: var(--bluebdr) !important;
}
.wpg-ph-cta:hover {
  border-color: var(--blue) !important;
}
.wpg-ph-card {
  border: 2px dashed #d1d9e6;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background: white;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.wpg-ph-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.wpg-ph-inner {
  text-align: center;
}
.wpg-ph-badge {
  display: inline-block;
  background: #f0f4ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.wpg-ph-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.wpg-ph-sub {
  font-size: 13px;
  color: var(--ink3);
}
@media (max-width: 768px) {
  .wpg-placeholder-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .wpg-placeholder-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══ WORK HERO BANNER ON MOBILE ═══ */
.wphero {
  position: relative;
  overflow: hidden;
}
.wphero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef2ff 100%);
  z-index: 0;
}
.wphero .w {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.wphero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.wphero-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--blue);
}
.wphero-stat-l {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 2px;
}
.wphero-visual {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f38 0%, #1b3566 50%, #0f2d5a 100%);
  height: 300px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.wphv-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.wphv-cards {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}
.wphv-mini {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  transition: transform 0.3s;
}
.wphv-mini:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.4),
    rgba(59, 130, 246, 0.2)
  );
}
.wphv-mini:nth-child(2) {
  background: rgba(255, 255, 255, 0.05);
}
.wphv-mini:nth-child(3) {
  background: rgba(255, 255, 255, 0.04);
}
.wphv-mini:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.3),
    rgba(52, 211, 153, 0.15)
  );
}
.wphv-mini-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.wphv-mini-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.wphv-mini-m {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .wphero .w {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .wphero-visual {
    height: 260px;
  }
}

/* ═══════════════════ CAREER APPLY POPUP ═══════════════════ */
.apply-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.apply-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.apply-popup {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.apply-popup-overlay.open .apply-popup {
  transform: scale(1) translateY(0);
}
.apply-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e6eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
  color: var(--ink2);
}
.apply-popup-close:hover {
  background: #f7f8fa;
}
.apply-role-badge {
  background: #f0f4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.apply-popup h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.apply-popup .apply-subtitle {
  color: var(--ink2);
  font-size: 15px;
  margin-bottom: 32px;
}
.apply-form-field {
  margin-bottom: 20px;
}
.apply-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.apply-form-field input,
.apply-form-field select,
.apply-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e6eb;
  border-radius: 12px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s;
  box-sizing: border-box;
  outline: none;
}
.apply-form-field input:focus,
.apply-form-field select:focus,
.apply-form-field textarea:focus {
  border-color: var(--blue);
}
.apply-form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.apply-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-file-zone {
  border: 2px dashed #d1d9e6;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.apply-file-zone:hover {
  border-color: var(--blue);
  background: #f0f4ff;
}
.apply-file-zone p {
  font-size: 13px;
  color: var(--ink3);
  margin: 0;
}
.apply-file-zone strong {
  font-size: 15px;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.apply-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 8px;
}
.apply-submit:hover {
  background: #1a3fbd;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .apply-popup {
    padding: 28px 24px;
  }
  .apply-form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══ CAREER PAGE ═══ */
.crhero {
  background: linear-gradient(135deg, #0f1f38 0%, #1b3566 60%, #0f2d5a 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  color: white;
}
.crhero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
}
.crhero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.7;
}
.crhero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.crhero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.cr-values-sec {
  padding: 100px 0;
  background: #f7f8fa;
}
.cr-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.cr-val-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e8edf2;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.cr-val-card:hover {
  transform: translateY(-4px);
  border-color: var(--bluebdr);
}
.cr-val-icon {
  width: 44px;
  height: 44px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cr-val-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}
.cr-val-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.cr-val-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}
.cr-perks-sec {
  padding: 100px 0;
}
.cr-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.cr-perk {
  background: #f7f8fa;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cr-perk-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e8edf2;
}
.cr-perk-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}
.cr-perk h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.cr-perk p {
  font-size: 14px;
  color: var(--ink2);
  margin: 0;
  line-height: 1.6;
}
.cr-roles-sec {
  padding: 100px 0;
  background: #f7f8fa;
}
.cr-roles-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.cr-role-card {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #e8edf2;
  transition:
    border-color 0.25s,
    transform 0.25s;
  cursor: pointer;
}
.cr-role-card:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}
.cr-role-left {
  flex: 1;
}
.cr-role-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.cr-role-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cr-role-tag {
  background: #f0f4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.cr-role-tag.green {
  background: #f0fdf4;
  color: #16a34a;
}
.cr-role-tag.orange {
  background: #fff7ed;
  color: #ea580c;
}
.cr-role-apply-btn {
  flex-shrink: 0;
  background: var(--blue);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
  font-family: "Instrument Sans", sans-serif;
}
.cr-role-apply-btn:hover {
  background: #1a3fbd;
  transform: translateY(-1px);
}
.cr-culture-sec {
  padding: 100px 0;
}
.cr-culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.cr-culture-text h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cr-culture-text p {
  color: var(--ink2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.cr-culture-visual {
  border-radius: 20px;
  background: linear-gradient(135deg, #0f1f38, #1b3566);
  height: 380px;
  position: relative;
  overflow: hidden;
}
.cr-culture-vis-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.cr-culture-vis-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cr-culture-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .cr-values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cr-perks-grid {
    grid-template-columns: 1fr;
  }
  .cr-culture-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cr-values-grid {
    grid-template-columns: 1fr;
  }
  .cr-role-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════ APPLY POPUP MODAL ════════ */
#apply-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 15, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#apply-popup.open {
  opacity: 1;
  pointer-events: all;
}
.apply-modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
}
#apply-popup.open .apply-modal {
  transform: translateY(0) scale(1);
}
.apply-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.2s;
}
.apply-close:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.apply-close:hover svg {
  stroke: white;
}
.apply-close svg {
  stroke: var(--ink3);
  transition: stroke 0.2s;
}
.apply-header {
  margin-bottom: 32px;
}
.apply-role-badge {
  display: inline-flex;
  background: var(--bluepale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.apply-header h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 6px;
}
.apply-role-sub {
  font-size: 14px;
  color: var(--ink3);
}
.apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-field {
  margin-bottom: 18px;
}
.apply-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink3);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.apply-field input,
.apply-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--bdr);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: var(--w);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: vertical;
}
.apply-field input:focus,
.apply-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
}
.apply-dropzone {
  border: 2px dashed var(--bdr);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: none;
  transition: all 0.25s;
}
.apply-dropzone:hover {
  border-color: var(--blue);
  background: var(--bluepale);
}
.apply-dropzone svg {
  stroke: var(--ink3);
  margin-bottom: 10px;
}
.apply-dropzone span {
  display: block;
  font-size: 14px;
  color: var(--ink3);
  margin-bottom: 4px;
}
.apply-dropzone small {
  font-size: 12px;
  color: var(--ink3);
  opacity: 0.6;
}
.apply-file-name {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-top: 8px;
  min-height: 20px;
}
.apply-actions {
  margin-top: 8px;
}
.apply-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
}
.apply-note {
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.apply-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 16px;
}
@media (max-width: 580px) {
  .apply-modal {
    padding: 32px 24px;
  }
  .apply-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════ SERVICES SHOWCASE (replaces vsec) ═══════════════════ */
.srv-showcase {
  padding: 100px 0;
  background: var(--ow);
  overflow: hidden;
}
.srv-sc-head {
  text-align: center;
  margin-bottom: 60px;
}
.srv-sc-head h2 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin: 14px 0 16px;
  line-height: 1.05;
}
.srv-sc-sub {
  color: var(--ink3);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.srv-sc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--bdr);
  margin-bottom: 52px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.srv-sc-tab {
  flex: 1;
  min-width: 140px;
  background: none;
  border: none;
  padding: 20px 12px 18px;
  font-family: "Instrument Sans", sans-serif;
  cursor: none;
  transition: all 0.3s;
  text-align: left;
  position: relative;
  scroll-snap-align: start;
}
.srv-sc-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--ink);
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.srv-sc-tab.active::after {
  right: 0;
}
.srv-sc-tab-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 6px;
  opacity: 0.6;
}
.srv-sc-tab.active .srv-sc-tab-num {
  opacity: 1;
}
.srv-sc-tab-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink3);
  transition: color 0.3s;
}
.srv-sc-tab.active .srv-sc-tab-name {
  color: var(--ink);
}

.srv-sc-panels {
  position: relative;
  min-height: 440px;
}
.srv-sc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  animation: srvPanelIn 0.45s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.srv-sc-panel.active {
  display: grid;
}
@keyframes srvPanelIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.srv-sc-panel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  border-radius: 100px;
}
.srv-sc-panel-left h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.07;
}
.srv-sc-panel-left p {
  color: var(--ink3);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}
.srv-sc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.srv-sc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bdr);
  font-size: 14px;
  color: var(--ink2);
}
.srv-sc-item:last-child {
  border-bottom: none;
}
.srv-sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.srv-sc-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--bdr);
}
.srv-sc-stat-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -1px;
}
.srv-sc-stat-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink4);
  margin-top: 3px;
}
.srv-sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: none;
  transition: gap 0.25s;
}
.srv-sc-cta:hover {
  gap: 14px;
}
.srv-sc-cta svg {
  width: 16px;
  height: 16px;
}

.srv-sc-panel-right {
}
.srv-sc-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.srv-sc-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.srv-sc-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
}
.srv-sc-badge-n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}
.srv-sc-badge-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}
.srv-sc-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand mockup */
.brand-mockup {
  text-align: center;
  padding: 20px;
}
.bm-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 16px;
}
.bm-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
.bm-wordmark {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-wordmark::before {
  content: "";
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}
.bm-wordmark::after {
  content: "";
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  width: 70%;
}
.bm-palette {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.bm-palette span {
  flex: 1;
  height: 32px;
  border-radius: 8px;
}
.bm-type-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bm-type-lines div {
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.bm-type-lines div:nth-child(2) {
  width: 75%;
}
.bm-type-lines div:nth-child(3) {
  width: 55%;
}

/* UX mockup */
.ux-screen {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  width: 240px;
}
.ux-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.ux-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.ux-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.ux-nav div {
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  flex: 1;
}
.ux-nav div:last-child {
  max-width: 40px;
}
.ux-hero-block {
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 10px;
}
.ux-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.ux-cards div {
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

/* Dev mockup */
.dev-code {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 20px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 2;
  min-width: 220px;
}
.dev-line {
  color: rgba(255, 255, 255, 0.7);
}
.dev-ind {
  padding-left: 20px;
}
.dev-kw {
  color: #7dd3fc;
}
.dev-var {
  color: #86efac;
}
.dev-key {
  color: #c4b5fd;
}
.dev-str {
  color: #fda4af;
}
.dev-num {
  color: #fbbf24;
}

/* Growth mockup */
.gm-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 0 20px;
  margin-bottom: 12px;
}
.gm-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
  animation: barGrow 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes barGrow {
  from {
    height: 0;
  }
  to {
    height: var(--h);
  }
}
.gm-bar:last-child {
  background: rgba(255, 255, 255, 0.9);
}
.gm-stat {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gm-stat span {
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: -4px;
}

@media (max-width: 900px) {
  .srv-sc-panel.active {
    grid-template-columns: 1fr;
  }
  .srv-sc-panel-right {
    display: none;
  }
  .srv-sc-tabs {
    gap: 0;
  }
  .srv-sc-tab {
    min-width: 110px;
    padding: 14px 8px 12px;
  }
  .srv-sc-tab-name {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .srv-showcase {
    padding: 80px 0;
  }
  .srv-sc-head {
    margin-bottom: 40px;
  }
}

/* ═══ MOBILE HERO IMPROVEMENTS ═══ */
@media (max-width: 768px) {
  .reel-outer {
    width: 100%;
    max-width: 100%;
  }
  .reel-card {
    width: 100%;
    min-height: 200px;
    aspect-ratio: 16/9;
    border-radius: 14px;
    display: block !important;
  }
  .rbg {
    border-radius: 14px;
  }
  .htop .reel-col {
    display: block !important;
    margin-top: 0;
  }
  .hkick {
    font-size: 12px;
  }
  h1 {
    font-size: clamp(34px, 8vw, 56px) !important;
  }
}

/* ═══ LOGO HOVER ANIMATION ENHANCEMENT ═══ */
.nav-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-logo svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-logo:hover svg {
  transform: scale(1.05);
}
.nav-logo .logo-letter {
  transition:
    fill 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
.nav-logo:hover .logo-letter:nth-child(1) {
  transform: translateY(-2px);
}
.nav-logo:hover .logo-letter:nth-child(2) {
  transform: translateY(-4px);
  transition-delay: 0.05s;
}
.nav-logo:hover .logo-letter:nth-child(3) {
  transform: translateY(-2px);
  transition-delay: 0.1s;
}
.nav-logo:hover .logo-letter:nth-child(4) {
  transform: translateY(-4px);
  transition-delay: 0.08s;
}
/* .nav-logo:hover .logo-spiral{
  transform:rotate(360deg) scale(1.1)!important;
  filter:drop-shadow(0 0 14px rgba(0,87,255,.7))!important;
  transition-duration:.8s!important;
} */

/* ═══ ENHANCED CURSOR VIEW ═══ */
#cursor-view {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
}

/* ═══ WORK GRID - 9th card area + more placeholders ═══ */
.wpg-ph-card {
  cursor: none;
}
.wpg-placeholder-row.d3 {
  margin-top: 0;
}
.wpg-placeholder-row.d4 {
  margin-top: 0;
}

/* ══════════════════════════════════════════════════
   PHONE FIELD WITH COUNTRY SELECTOR — CONTACT FORM
══════════════════════════════════════════════════ */
.phone-field {
  display: flex;
  position: relative;
}
.phone-country {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: none;
  min-width: 100px;
  transition: border-color 0.2s;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
}
.phone-country:hover {
  border-color: var(--bdr2);
}
.phone-country svg {
  opacity: 0.5;
  flex-shrink: 0;
}
.phone-flag {
  font-size: 17px;
  line-height: 1;
}
.phone-code {
  font-weight: 600;
  font-size: 13px;
}
.phone-number-input {
  flex: 1;
  border: 1.5px solid var(--bdr);
  border-radius: 0 10px 10px 0;
  padding: 13px 16px;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: var(--ow);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.phone-number-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.07);
  z-index: 1;
}
.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 500;
  background: white;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(13, 15, 20, 0.14);
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  overflow: hidden;
}
.country-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.country-search {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid var(--bdr);
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  outline: none;
  color: var(--ink);
  background: var(--ow);
}
.country-list {
  max-height: 220px;
  overflow-y: auto;
}
.country-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: none;
  font-size: 13px;
  color: var(--ink);
  transition: background 0.15s;
}
.country-opt:hover {
  background: var(--bluepale);
}
.country-opt .co-flag {
  font-size: 17px;
  width: 24px;
  text-align: center;
}
.country-opt .co-name {
  flex: 1;
  font-weight: 500;
}
.country-opt .co-code {
  color: var(--ink4);
  font-size: 12px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════
   FILE UPLOAD ZONE — CONTACT FORM
══════════════════════════════════════════════════ */
.cf-upload-zone {
  border: 2px dashed var(--bdr);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: none;
  transition: all 0.25s;
  background: var(--ow);
}
.cf-upload-zone:hover {
  border-color: var(--blue);
  background: var(--bluepale);
}
.cf-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: white;
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}
.cf-upload-zone:hover .cf-upload-icon {
  border-color: var(--blue);
  background: var(--bluepale);
}
.cf-upload-icon svg {
  stroke: var(--ink3);
  transition: stroke 0.25s;
}
.cf-upload-zone:hover .cf-upload-icon svg {
  stroke: var(--blue);
}
.cf-upload-text {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.6;
}
.cf-upload-text strong {
  color: var(--ink);
  font-weight: 600;
}
.cf-upload-text span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 3px;
}
.cf-file-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-file-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  border-radius: 100px;
  padding: 5px 12px 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.cf-file-pill svg {
  width: 12px;
  height: 12px;
  stroke: var(--blue);
  cursor: none;
}
.cf-file-remove {
  cursor: none;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.cf-file-remove:hover {
  opacity: 1;
}

/* ══════════════════════════════════════════════════
   JOB ACCORDION — CAREER PAGE
══════════════════════════════════════════════════ */
.job-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--bdr);
}
.job-item {
  border-bottom: 1.5px solid var(--bdr);
  background: white;
  transition: background 0.25s;
}
.job-item:last-child {
  border-bottom: none;
}
.job-item.open {
  background: var(--ow);
}
.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: none;
  transition: background 0.2s;
  gap: 20px;
}
.job-header:hover {
  background: var(--bluepale);
}
.job-item.open .job-header {
  background: var(--bluepale);
}
.job-header-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.job-dept-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.job-dept-dot.design {
  background: #6366f1;
}
.job-dept-dot.ux {
  background: #8b5cf6;
}
.job-dept-dot.dev {
  background: #10b981;
}
.job-dept-dot.marketing {
  background: #f59e0b;
}
.job-dept-dot.strategy {
  background: #3b82f6;
}
.job-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.job-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.job-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--ow);
  border: 1px solid var(--bdr);
  color: var(--ink3);
  letter-spacing: 0.2px;
}
.job-tag.green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}
.job-tag.blue {
  background: var(--bluepale);
  border-color: var(--bluebdr);
  color: var(--blue);
}
.job-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.job-salary {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.job-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background: white;
}
.job-toggle-icon svg {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  stroke: var(--ink3);
}
.job-item.open .job-toggle-icon {
  background: var(--blue);
  border-color: var(--blue);
}
.job-item.open .job-toggle-icon svg {
  transform: rotate(180deg);
  stroke: white;
}
.job-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.job-item.open .job-body {
  max-height: 1200px;
}
.job-body-inner {
  padding: 0 32px 36px 58px;
}
.job-section {
  margin-bottom: 28px;
}
.job-section h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.job-section p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
}
.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-list li {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.job-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
  top: 3px;
}
.job-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bdr);
}
.job-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.job-perks span {
  font-size: 13px;
  color: var(--ink3);
  background: white;
  border: 1px solid var(--bdr);
  padding: 6px 12px;
  border-radius: 100px;
}
.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  font-family: "Instrument Sans", sans-serif;
  transition:
    background 0.25s,
    transform 0.25s;
  white-space: nowrap;
}
.job-apply-btn:hover {
  background: #0057ff;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════
   APPLY MODAL — FULL REBUILD
══════════════════════════════════════════════════ */
.apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 12, 18, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.apply-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.apply-modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  scrollbar-width: thin;
  scrollbar-color: var(--bdr) transparent;
}
.apply-overlay.open .apply-modal-box {
  transform: none;
}
.am-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 0;
  gap: 20px;
}
.am-badge {
  display: inline-flex;
  background: var(--bluepale);
  border: 1px solid var(--bluebdr);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.am-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.6px;
  margin: 0 0 6px;
}
.am-sub {
  font-size: 14px;
  color: var(--ink4);
  line-height: 1.6;
  margin: 0;
}
.am-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--bdr);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  flex-shrink: 0;
  transition: all 0.2s;
  margin-top: 4px;
}
.am-close:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.am-close:hover svg {
  stroke: white;
}
.am-close svg {
  stroke: var(--ink3);
  transition: stroke 0.2s;
}
#apply-form-content {
  padding: 32px 40px 40px;
}
.am-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 16px;
}
.am-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.am-field {
  margin-bottom: 16px;
}
.am-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink3);
  margin-bottom: 8px;
}
.am-req {
  color: #ef4444;
  margin-left: 1px;
}
.am-field input,
.am-field select,
.am-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: var(--ow);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.am-field input:focus,
.am-field select:focus,
.am-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.07);
}
.am-field textarea {
  resize: vertical;
  min-height: 100px;
}
.am-divider {
  height: 1px;
  background: var(--bdr);
  margin: 24px 0;
}
.am-phone-wrap {
  display: flex;
  position: relative;
}
.am-country-sel {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: none;
  min-width: 90px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s;
  position: relative;
}
.am-country-sel svg {
  opacity: 0.5;
}
.am-country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 600;
  background: white;
  border: 1.5px solid var(--bdr);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  overflow: hidden;
}
.am-country-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.am-country-search {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid var(--bdr);
  font-size: 14px;
  outline: none;
  font-family: "Instrument Sans", sans-serif;
  background: var(--ow);
}
.am-country-list {
  max-height: 200px;
  overflow-y: auto;
}
.am-country-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  cursor: none;
  font-size: 13px;
  transition: background 0.15s;
}
.am-country-opt:hover {
  background: var(--bluepale);
}
.am-phone-input {
  flex: 1;
  border: 1.5px solid var(--bdr);
  border-radius: 0 10px 10px 0;
  padding: 12px 15px;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background: var(--ow);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.am-phone-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.07);
}
.am-cv-zone {
  border: 2px dashed var(--bdr);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  cursor: none;
  transition: all 0.25s;
  margin-bottom: 8px;
}
.am-cv-zone:hover,
.am-cv-zone.drag {
  border-color: var(--blue);
  background: var(--bluepale);
}
.am-cv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--ow);
  border: 1.5px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.25s;
}
.am-cv-zone:hover .am-cv-icon,
.am-cv-zone.drag .am-cv-icon {
  background: white;
  border-color: var(--blue);
}
.am-cv-icon svg {
  stroke: var(--ink3);
  transition: stroke 0.25s;
}
.am-cv-zone:hover .am-cv-icon svg,
.am-cv-zone.drag .am-cv-icon svg {
  stroke: var(--blue);
}
.am-cv-text {
  font-size: 14px;
  color: var(--ink3);
}
.am-cv-text strong {
  color: var(--ink);
  font-weight: 600;
}
.am-cv-text span {
  display: block;
  font-size: 12px;
  opacity: 0.65;
  margin-top: 4px;
}
.am-cv-filename {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 18px;
  text-align: center;
}
.am-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: none;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.25s;
  margin-top: 8px;
}
.am-submit-btn:hover {
  background: #0057ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.25);
}
.am-privacy {
  font-size: 12px;
  color: var(--ink4);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.am-success {
  padding: 60px 40px;
  text-align: center;
}
.am-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.am-success h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.am-success p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 32px;
}
.am-done-btn {
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  font-family: "Instrument Sans", sans-serif;
  transition: background 0.25s;
}
.am-done-btn:hover {
  background: #0057ff;
}

/* Mobile apply modal */
@media (max-width: 640px) {
  .am-header {
    padding: 28px 24px 0;
  }
  #apply-form-content {
    padding: 24px 24px 32px;
  }
  .am-row {
    grid-template-columns: 1fr;
  }
  .am-success {
    padding: 40px 24px;
  }
  .job-header {
    padding: 20px 20px;
  }
  .job-body-inner {
    padding: 0 20px 28px 20px;
  }
  .job-footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-apply-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .phone-field {
    flex-direction: column;
  }
  .phone-country {
    border-right: 1.5px solid var(--bdr);
    border-radius: 10px 10px 0 0;
    border-bottom: none;
  }
  .phone-number-input {
    border-radius: 0 0 10px 10px;
  }
}
