/* ── PAGE LOADER (home-specific animation delay) ─────────── */
#loader {
   position: fixed;
   inset: 0;
   z-index: 9000;
   background: var(--bk);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 28px;
   transition: opacity .7s .2s, visibility .7s .2s;
}

#loader.done {
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
}

.loader-logo {
   height: 34px;
   width: auto;
   opacity: 0;
   animation: fadeIn .6s .1s forwards;
}

.loader-bar-wrap {
   width: 200px;
   height: 1px;
   background: rgba(158, 30, 29, .2);
   overflow: hidden;
}

.loader-bar {
   height: 100%;
   width: 0%;
   background: var(--grad);
   animation: loaderFill 1.4s cubic-bezier(.23, 1, .32, 1) .3s forwards;
}

.loader-pct {
   font-size: 11px;
   letter-spacing: .22em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx4);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 0 68px;
   position: relative;
   overflow: hidden;
}

.hero-grid {
   position: absolute;
   inset: 0;
   z-index: 0;
   background:
      repeating-linear-gradient(0deg, rgba(158, 30, 29, .03) 0, rgba(158, 30, 29, .03) 1px, transparent 1px, transparent 90px),
      repeating-linear-gradient(90deg, rgba(158, 30, 29, .03) 0, rgba(158, 30, 29, .03) 1px, transparent 1px, transparent 90px);
   animation: gridDrift 25s linear infinite;
   background-size: 90px 90px;
}

@keyframes gridDrift {
   0% {
      background-position: 0 0, 0 0;
   }

   100% {
      background-position: 90px 90px, 90px 90px;
   }
}

.hero-orb-1 {
   position: absolute;
   bottom: -280px;
   left: -200px;
   width: 800px;
   height: 800px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(158, 30, 29, .11) 0%, transparent 65%);
   pointer-events: none;
   animation: glowPulse 5s ease-in-out infinite;
}

.hero-orb-2 {
   position: absolute;
   top: -200px;
   right: -150px;
   width: 600px;
   height: 600px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(229, 121, 23, .055) 0%, transparent 65%);
   pointer-events: none;
   animation: glowPulse 7s ease-in-out infinite reverse;
}

.hero-body {
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 0;
   position: relative;
   z-index: 2;
   min-height: 100vh;
}

.hero-left {
   padding: 140px 0 180px;
}

.hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 14px;
   font-size: 10px;
   letter-spacing: .38em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--o);
   margin-bottom: 32px;
   opacity: 0;
   animation: fadeUp .9s .6s forwards;
}

.hero-eyebrow-line {
   width: 34px;
   height: 1px;
   background: var(--o-dim);
}

.hero-h1 {
   font-size: clamp(50px, 5.8vw, 90px);
   font-weight: 600;
   line-height: .96;
   letter-spacing: -.03em;
   opacity: 0;
   animation: fadeUp 1.1s .8s forwards;
}

.hero-h1 .fire {
   display: block;
   background: var(--gtext);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   font-weight: 300;
   font-style: italic;
}

.hero-h1 .underline-wrap {
   display: inline-block;
   position: relative;
}

.hero-h1 .underline-wrap::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   right: 0;
   height: 2px;
   background: var(--grad);
   transform: scaleX(0);
   transform-origin: left;
   animation: scaleInX 1s 1.6s cubic-bezier(.23, 1, .32, 1) forwards;
}

@keyframes scaleInX {
   from {
      transform: scaleX(0)
   }

   to {
      transform: scaleX(1)
   }
}

.hero-sub {
   font-size: 15px;
   line-height: 1.88;
   color: var(--tx2);
   max-width: 540px;
   margin: 32px 0 52px;
   font-weight: 300;
   opacity: 0;
   animation: fadeUp .9s 1s forwards;
}

.hero-sub strong {
   font-weight: 500;
   color: var(--tx);
}

.hero-actions {
   display: flex;
   gap: 20px;
   align-items: center;
   opacity: 0;
   animation: fadeUp .9s 1.2s forwards;
}

.hero-stats {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 3;
   display: flex;
   border-top: 1px solid var(--bd);
   background: rgba(0, 0, 0, .7);
   backdrop-filter: blur(16px);
   opacity: 0;
   animation: fadeIn .8s 1.6s forwards;
}

.hs-item {
   flex: 1;
   padding: 22px 36px;
   border-right: 1px solid var(--bd);
   position: relative;
   overflow: hidden;
   transition: background .35s;
}

.hs-item:last-child {
   border-right: none;
}

.hs-item:hover {
   background: rgba(158, 30, 29, .07);
}

.hs-num {
   font-size: 28px;
   font-weight: 600;
   line-height: 1;
   background: var(--gtext);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: block;
}

.hs-lbl {
   font-size: 10px;
   letter-spacing: .18em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx3);
   display: block;
   margin-top: 5px;
}

.hero-right {
   height: 100vh;
   position: relative;
   overflow: hidden;
   border-left: 1px solid rgba(158, 30, 29, .12);
   opacity: 0;
   animation: fadeIn 1.2s .5s forwards;
}

.hv-mono {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-42%, -50%);
   font-size: 340px;
   font-weight: 700;
   color: rgba(158, 30, 29, .045);
   line-height: 1;
   user-select: none;
   letter-spacing: -.05em;
   animation: floatY 8s ease-in-out infinite;
}

.hv-ring1 {
   position: absolute;
   top: 18%;
   right: -60px;
   width: 440px;
   height: 440px;
   border-radius: 50%;
   border: 1px solid rgba(158, 30, 29, .12);
   animation: spinSlow 40s linear infinite;
}

.hv-ring2 {
   position: absolute;
   top: 30%;
   right: 60px;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   border: 1px solid rgba(229, 121, 23, .08);
   animation: spinSlow 28s linear infinite reverse;
}

.hv-ring3 {
   position: absolute;
   top: 42%;
   right: 120px;
   width: 180px;
   height: 180px;
   border-radius: 50%;
   border: 1px solid rgba(158, 30, 29, .1);
   animation: spinSlow 18s linear infinite;
}

.hv-card {
   position: absolute;
   background: rgba(8, 8, 8, .88);
   border: 1px solid var(--bd);
   padding: 14px 20px;
   backdrop-filter: blur(12px);
}

.hv-card-lbl {
   font-size: 9px;
   letter-spacing: .2em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx4);
}

.hv-card-val {
   font-size: 17px;
   font-weight: 600;
   color: var(--tx);
   line-height: 1.2;
}

.hv-c1 {
   top: 22%;
   left: 12%;
   animation: floatY 6s ease-in-out infinite;
}

.hv-c2 {
   top: 52%;
   left: 28%;
   animation: floatY 8s ease-in-out 1s infinite;
}

.hv-c3 {
   top: 72%;
   left: 8%;
   animation: floatY 7s ease-in-out .5s infinite;
}

.hv-line1 {
   position: absolute;
   top: 38%;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(to right, rgba(158, 30, 29, .35), transparent);
}

.hv-line2 {
   position: absolute;
   top: 62%;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(to right, rgba(229, 121, 23, .2), transparent);
}

.hero-scroll {
   position: absolute;
   bottom: 72px;
   left: 68px;
   z-index: 4;
   display: flex;
   align-items: center;
   gap: 14px;
   opacity: 0;
   animation: fadeIn .8s 2s forwards;
}

.scroll-bar-h {
   width: 56px;
   height: 1px;
   background: linear-gradient(to right, var(--m), transparent);
   animation: pulseWidth 2s ease-in-out infinite;
}

@keyframes pulseWidth {

   0%,
   100% {
      opacity: 1;
      transform: scaleX(1)
   }

   50% {
      opacity: .4;
      transform: scaleX(.6)
   }
}

.hero-scroll span {
   font-size: 9px;
   letter-spacing: .3em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx4);
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about {
   background: var(--bk2);
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 96px;
   align-items: center;
}

.about-h2 {
   margin-bottom: 28px;
}

.about-p {
   font-size: 14px;
   line-height: 1.9;
   color: var(--tx2);
   margin-bottom: 16px;
   font-weight: 300;
}

.cms-box {
   margin-top: 36px;
   padding: 28px 32px;
   border: 1px solid var(--bd);
   background: rgba(158, 30, 29, .04);
   position: relative;
   overflow: hidden;
}

.cms-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   height: 2px;
   width: 100%;
   background: var(--grad);
}

.cms-box::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(105deg, transparent 40%, rgba(229, 121, 23, .06) 50%, transparent 60%);
   background-size: 400px 100%;
   opacity: 0;
   transition: opacity .3s;
}

.cms-box:hover::after {
   opacity: 1;
   animation: shimmer 1.2s ease forwards;
}

.cms-badge {
   display: inline-block;
   font-size: 9px;
   letter-spacing: .25em;
   text-transform: uppercase;
   font-weight: 500;
   color: var(--o);
   background: rgba(229, 121, 23, .1);
   padding: 4px 12px;
   margin-bottom: 14px;
}

.cms-title {
   font-size: 17px;
   font-weight: 600;
   color: var(--tx);
   margin-bottom: 10px;
   letter-spacing: -.01em;
}

.cms-text {
   font-size: 13px;
   line-height: 1.75;
   color: var(--tx2);
   font-weight: 300;
}

.about-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 36px;
   margin-top: 52px;
   padding-top: 52px;
   border-top: 1px solid var(--bd);
}

.st-num {
   display: block;
   font-size: 48px;
   font-weight: 600;
   line-height: 1;
   background: var(--gtext);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.st-lbl {
   display: block;
   font-size: 10px;
   letter-spacing: .18em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx3);
   margin-top: 6px;
}

.av-wrap {
   background: var(--bk4);
   border: 1px solid var(--bd);
   aspect-ratio: 4/5;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
}

.av-mono {
   font-size: 260px;
   font-weight: 700;
   color: rgba(158, 30, 29, .055);
   line-height: 1;
   user-select: none;
   letter-spacing: -.04em;
   animation: floatY 9s ease-in-out infinite;
}

.av-corner-tl {
   position: absolute;
   top: -1px;
   left: -1px;
   width: 60px;
   height: 60px;
   border-top: 2px solid var(--m);
   border-left: 2px solid var(--m);
}

.av-corner-br {
   position: absolute;
   bottom: -1px;
   right: -1px;
   width: 60px;
   height: 60px;
   border-bottom: 2px solid var(--o);
   border-right: 2px solid var(--o);
}

.av-scan {
   position: absolute;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(to right, transparent, var(--m), transparent);
   animation: scanLine 4s ease-in-out infinite;
}

@keyframes scanLine {
   0% {
      top: 10%;
      opacity: 0;
   }

   10% {
      opacity: .6;
   }

   90% {
      opacity: .6;
   }

   100% {
      top: 90%;
      opacity: 0;
   }
}

.av-pill {
   position: absolute;
   background: rgba(8, 8, 8, .9);
   border: 1px solid var(--bd);
   padding: 10px 16px;
   backdrop-filter: blur(12px);
}

.av-p1 {
   top: 18%;
   left: 12%;
   animation: floatY 6s ease-in-out infinite;
}

.av-p2 {
   top: 48%;
   right: 10%;
   animation: floatY 8s ease-in-out 1s infinite;
}

.av-p3 {
   bottom: 15%;
   left: 18%;
   animation: floatY 7s ease-in-out .5s infinite;
}

.av-pill-label {
   font-size: 9px;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: var(--tx4);
   font-weight: 400;
}

.av-pill-val {
   font-size: 14px;
   font-weight: 600;
   color: var(--tx);
   line-height: 1.3;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.svc-head {
   display: flex;
   gap: 96px;
   align-items: flex-start;
   margin-bottom: 60px;
}

.svc-desc {
   font-size: 14px;
   line-height: 1.85;
   color: var(--tx2);
   max-width: 360px;
   font-weight: 300;
   padding-top: 8px;
}

.svc-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1px;
   background: var(--bd);
   border: 1px solid var(--bd);
}

.svc-card {
   background: var(--bk);
   padding: 44px 36px;
   position: relative;
   overflow: hidden;
   transition: background .35s;
}

.svc-card:hover {
   background: var(--bk3);
}

.svc-card.featured {
   grid-column: span 3;
   background: rgba(158, 30, 29, .03);
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 48px;
   align-items: start;
}

.svc-bar {
   position: absolute;
   top: 0;
   left: 0;
   height: 2px;
   width: 0;
   background: var(--grad);
   transition: width .5s cubic-bezier(.23, 1, .32, 1);
}

.svc-card:hover .svc-bar {
   width: 100%;
}

.svc-n {
   font-size: 10px;
   letter-spacing: .25em;
   text-transform: uppercase;
   color: var(--tx5);
   font-weight: 400;
   display: block;
   margin-bottom: 24px;
}

.svc-icon {
   width: 48px;
   height: 48px;
   border: 1px solid rgba(158, 30, 29, .3);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 24px;
   transition: border-color .3s, background .3s;
}

.svc-card:hover .svc-icon {
   border-color: var(--o);
   background: rgba(229, 121, 23, .06);
}

.svc-icon svg {
   width: 22px;
   height: 22px;
   stroke: var(--m);
   fill: none;
   stroke-width: 1.3;
   transition: stroke .3s;
}

.svc-card:hover .svc-icon svg {
   stroke: var(--o);
}

.svc-name {
   font-size: 20px;
   font-weight: 600;
   color: var(--tx);
   margin-bottom: 12px;
   letter-spacing: -.01em;
   line-height: 1.2;
}

.svc-text {
   font-size: 13px;
   line-height: 1.78;
   color: var(--tx2);
   font-weight: 300;
   margin-bottom: 24px;
}

.svc-features {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 28px;
}

.svc-feat-tag {
   font-size: 10px;
   letter-spacing: .14em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx4);
   border: 1px solid var(--bd-dim);
   padding: 5px 12px;
}

.svc-more {
   font-size: 10px;
   letter-spacing: .2em;
   text-transform: uppercase;
   font-weight: 500;
   color: var(--o);
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: gap .3s;
}

.svc-more::after {
   content: '→';
}

.svc-more:hover {
   gap: 14px;
}

/* ── WORK GRID — Horizontal Scroll + 3D Tilt ─────────── */
.work-head {
   display: flex;
   gap: 96px;
   align-items: flex-start;
   margin-bottom: 60px;
}

.work-head-right {
   display: flex;
   align-items: center;
   gap: 20px;
   margin-left: auto;
   padding-top: 8px;
}

.va {
   font-size: 11px;
   letter-spacing: .18em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx3);
   text-decoration: none;
   transition: color .3s;
   align-self: flex-end;
}

.va:hover { color: var(--o); }

.scroll-nav {
   display: flex;
   gap: 6px;
}

.scroll-btn {
   width: 36px;
   height: 36px;
   border: 1px solid var(--bd);
   background: none;
   color: var(--tx3);
   font-size: 15px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: border-color .3s, color .3s, background .3s;
   line-height: 1;
}

.scroll-btn:hover {
   border-color: var(--o);
   color: var(--o);
   background: rgba(229,121,23,.06);
}

/* Track */
.scroll-outer {
   overflow: hidden;
}

.scroll-track {
   display: flex;
   gap: 24px;
   transition: transform .6s cubic-bezier(.23,1,.32,1);
   will-change: transform;
   width: max-content;
}

/* Card wrapper */
.hc {
   width: 380px;
   flex-shrink: 0;
   position: relative;
   cursor: pointer;
}

/* Card inner — receives 3D transforms */
.hc-inner {
   position: relative;
   border-radius: 10px;
   overflow: hidden;
   border: 1px solid rgba(255,255,255,.08);
   background: #111;
   transition: transform .5s cubic-bezier(.23,1,.32,1),
               box-shadow .5s cubic-bezier(.23,1,.32,1),
               border-color .4s;
}

/* Resting tilt */
.hc:nth-child(odd) .hc-inner  { transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.hc:nth-child(even) .hc-inner { transform: perspective(900px) rotateY(4deg) rotateX(-2deg); }

/* Hover: straighten + lift */
.hc:hover .hc-inner {
   transform: perspective(900px) rotateY(0deg) rotateX(0deg) translateY(-10px);
   box-shadow: 0 48px 96px rgba(0,0,0,.75),
               0 0 0 1px rgba(158,30,29,.3),
               0 0 80px rgba(158,30,29,.07);
   border-color: rgba(158,30,29,.28);
}

/* Gradient top accent bar */
.hc-inner::before {
   content: '';
   position: absolute;
   top: 0; left: 0; right: 0;
   height: 2px;
   background: var(--grad);
   opacity: 0;
   transition: opacity .4s;
   z-index: 5;
}

.hc:hover .hc-inner::before { opacity: 1; }

/* Browser chrome */
.hc-chrome {
   background: #1c1c1c;
   padding: 10px 14px;
   display: flex;
   align-items: center;
   gap: 10px;
   border-bottom: 1px solid rgba(255,255,255,.05);
}

.hc-chrome-dots { display: flex; gap: 6px; }

.hc-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
}

.hc-dot-r { background: #ff5f56; }
.hc-dot-y { background: #ffbd2e; }
.hc-dot-g { background: #27c93f; }

.hc-url {
   flex: 1;
   background: rgba(255,255,255,.05);
   border-radius: 4px;
   padding: 4px 10px;
   font-size: 10px;
   color: var(--tx3);
   letter-spacing: .04em;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

/* Screen — 16:9 matches a real desktop viewport screenshot */
.hc-screen {
   aspect-ratio: 16/9;
   position: relative;
   overflow: hidden;
}

.hc-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top;
   display: block;
   transition: transform .6s cubic-bezier(.23,1,.32,1);
}

.hc:hover .hc-img { transform: scale(1.03); }

/* Fallback (no image) */
.hc-fallback {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 100px;
   font-weight: 700;
   color: rgba(158,30,29,.09);
   letter-spacing: -.04em;
   position: relative;
}

.hc-fallback::after {
   content: '';
   position: absolute;
   inset: 0;
   background-image: repeating-linear-gradient(45deg,
      rgba(158,30,29,.04) 0, rgba(158,30,29,.04) 1px,
      transparent 1px, transparent 40px);
}

/* Palette cycle for fallbacks */
.hc:nth-child(5n+1) .hc-fallback { background: linear-gradient(135deg,#090000,#160400,#0c0707); }
.hc:nth-child(5n+2) .hc-fallback { background: linear-gradient(135deg,#000000,#0d0900); }
.hc:nth-child(5n+3) .hc-fallback { background: linear-gradient(135deg,#000407,#07040e); }
.hc:nth-child(5n+4) .hc-fallback { background: linear-gradient(135deg,#040000,#110606); }
.hc:nth-child(5n) .hc-fallback { background: linear-gradient(135deg,#020203,#080408); }

/* Hover overlay */
.hc-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
   opacity: 0;
   transition: opacity .4s;
   z-index: 2;
}

.hc:hover .hc-overlay { opacity: 1; }

/* Info block */
.hc-info {
   position: absolute;
   bottom: 0; left: 0; right: 0;
   padding: 22px;
   z-index: 3;
   opacity: 0;
   transform: translateY(10px);
   transition: opacity .38s cubic-bezier(.23,1,.32,1), transform .38s cubic-bezier(.23,1,.32,1);
}

.hc:hover .hc-info { opacity: 1; transform: none; }

.hc-tag {
   font-size: 9px;
   letter-spacing: .28em;
   text-transform: uppercase;
   color: var(--o);
   margin-bottom: 6px;
   display: block;
}

.hc-name {
   font-size: 20px;
   font-weight: 600;
   letter-spacing: -.02em;
   color: var(--tx);
   margin-bottom: 12px;
}

.hc-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 10px;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--tx);
   text-decoration: none;
   padding: 7px 16px;
   border: 1px solid rgba(255,255,255,.18);
   background: rgba(255,255,255,.07);
   backdrop-filter: blur(6px);
   transition: background .3s, border-color .3s;
}

.hc-link:hover { background: var(--m); border-color: var(--m); }

/* Project number */
.hc-num {
   position: absolute;
   top: 48px; right: 14px;
   font-size: 10px;
   letter-spacing: .18em;
   color: rgba(255,255,255,.14);
   z-index: 4;
}

/* Footer strip */
.hc-footer {
   padding: 16px 18px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-top: 1px solid rgba(255,255,255,.05);
}

.hc-footer-name {
   font-size: 13px;
   font-weight: 500;
   color: var(--tx);
   letter-spacing: -.01em;
}

.hc-footer-platform {
   font-size: 9px;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--tx3);
}

/* Progress bar */
.work-progress {
   display: flex;
   align-items: center;
   gap: 20px;
   margin-top: 36px;
}

.wp-bar-bg {
   flex: 1;
   height: 1px;
   background: rgba(255,255,255,.06);
   position: relative;
   overflow: hidden;
}

.wp-bar-fill {
   height: 100%;
   background: var(--grad);
   transition: width .4s cubic-bezier(.23,1,.32,1);
}

.wp-label {
   font-size: 10px;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: var(--tx4);
   white-space: nowrap;
}

/* Dot indicators */
.work-dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 24px;
}

.wd {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--tx5);
   cursor: pointer;
   transition: background .3s, transform .3s, width .3s;
   border: none;
   padding: 0;
}

.wd.on {
   background: var(--o);
   transform: scale(1.4);
   width: 18px;
   border-radius: 3px;
}

/* Empty state */
.work-empty {
   border: 1px solid var(--bd);
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 240px;
}

/* Mobile */
@media(max-width:900px) {
   .scroll-outer {
      overflow-x: scroll;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
   }

   .scroll-outer::-webkit-scrollbar { display: none; }

   .scroll-track {
      transition: none;
      transform: none !important;
   }

   .hc { width: 300px; }

   .hc:nth-child(odd) .hc-inner,
   .hc:nth-child(even) .hc-inner {
      transform: none;
   }

   .hc:hover .hc-inner { transform: none; box-shadow: none; border-color: rgba(255,255,255,.08); }

   .hc-info { opacity: 1; transform: none; }
   .hc-overlay { opacity: 1; }

   .scroll-nav { display: none; }
}

/* ── PROCESS ──────────────────────────────────────────────── */
#process {
   background: var(--bk);
}

.proc-head {
   display: flex;
   gap: 96px;
   align-items: flex-start;
   margin-bottom: 88px;
}

.proc-intro {
   font-size: 14px;
   line-height: 1.88;
   color: var(--tx2);
   max-width: 420px;
   padding-top: 4px;
   font-weight: 300;
}

.proc-steps {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1px;
   background: var(--bd);
   border: 1px solid var(--bd);
   counter-reset: step;
}

.ps {
   background: var(--bk);
   padding: 44px 32px;
   position: relative;
   transition: background .35s;
   overflow: hidden;
}

.ps:hover {
   background: var(--bk3);
}

.ps-bar {
   position: absolute;
   top: 0;
   left: 0;
   height: 2px;
   width: 0;
   background: var(--grad);
   transition: width .5s cubic-bezier(.23, 1, .32, 1);
}

.ps:hover .ps-bar {
   width: 100%;
}

.ps::after {
   content: '';
   position: absolute;
   bottom: -60px;
   left: -60px;
   width: 160px;
   height: 160px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(158, 30, 29, .1) 0%, transparent 70%);
   opacity: 0;
   transition: opacity .4s;
   pointer-events: none;
}

.ps:hover::after {
   opacity: 1;
}

.ps-n {
   font-size: 64px;
   font-weight: 700;
   color: rgba(158, 30, 29, .06);
   line-height: 1;
   margin-bottom: 18px;
   display: block;
}

.ps-name {
   font-size: 18px;
   font-weight: 600;
   color: var(--tx);
   margin-bottom: 12px;
   letter-spacing: -.01em;
}

.ps-text {
   font-size: 12px;
   line-height: 1.78;
   color: var(--tx2);
   font-weight: 300;
}

/* ── TECH STACK ───────────────────────────────────────────── */
#tech {
   background: var(--bk3);
   padding: 72px 68px;
}

.tech-inner {
   max-width: 1260px;
   margin: 0 auto;
}

.tech-lbl {
   font-size: 10px;
   letter-spacing: .28em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx3);
   text-align: center;
   margin-bottom: 36px;
}

.tech-list {
   display: flex;
   flex-wrap: wrap;
   gap: 2px;
   justify-content: center;
}

.tech-tag {
   padding: 13px 26px;
   border: 1px solid var(--bd);
   font-size: 11px;
   letter-spacing: .14em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--tx3);
   transition: border-color .3s, color .3s, background .3s, transform .2s;
   cursor: none;
}

.tech-tag:hover {
   border-color: var(--o);
   color: var(--o);
   background: rgba(229, 121, 23, .05);
   transform: translateY(-2px);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
   background: var(--bk2);
}

.test-inner {
   max-width: 820px;
   margin: 0 auto;
   text-align: center;
}

.qm {
   display: block;
   font-size: 96px;
   font-weight: 700;
   line-height: .5;
   margin-bottom: 32px;
   background: var(--gtext);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.qt {
   font-size: clamp(17px, 2.1vw, 16px);
   font-weight: 300;
   font-style: italic;
   line-height: 1.65;
   color: var(--tx2);
   margin-bottom: 40px;
   transition: opacity .32s;
}

.qa-name {
   font-size: 12px;
   letter-spacing: .2em;
   text-transform: uppercase;
   font-weight: 500;
   color: var(--o);
}

.qa-role {
   font-size: 12px;
   color: var(--tx3);
   margin-top: 5px;
   letter-spacing: .06em;
   font-weight: 300;
}

.qa-sep {
   margin: 0 6px;
   opacity: .35;
}

.qa-company {
   color: var(--tx2);
   font-weight: 400;
}

.t-dots {
   display: flex;
   gap: 8px;
   justify-content: center;
   margin-top: 44px;
}

.t-dot {
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: var(--tx5);
   cursor: none;
   transition: background .3s, transform .3s;
}

.t-dot.on {
   background: var(--o);
   transform: scale(1.5);
}

/* ── CTA ──────────────────────────────────────────────────── */
#cta {
   padding: 152px 68px;
   text-align: center;
   position: relative;
   overflow: hidden;
   background: var(--bk);
}

.cta-orb {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 880px;
   height: 380px;
   background: radial-gradient(ellipse, rgba(158, 30, 29, .08) 0%, transparent 65%);
   pointer-events: none;
   animation: glowPulse 6s ease-in-out infinite;
}

.cta-lbl {
   font-size: 10px;
   letter-spacing: .35em;
   text-transform: uppercase;
   font-weight: 400;
   color: var(--o);
   margin-bottom: 24px;
}

.cta-h2 {
   margin-bottom: 48px;
}

.cta-div {
   width: 44px;
   height: 2px;
   background: var(--grad);
   margin: 0 auto 36px;
}

.cta-mail {
   font-size: 18px;
   font-weight: 300;
   font-style: italic;
   color: var(--tx2);
   text-decoration: none;
   border-bottom: 1px solid rgba(229, 121, 23, .3);
   padding-bottom: 3px;
   transition: color .3s, border-color .3s;
}

.cta-mail:hover {
   color: var(--o);
   border-color: var(--o);
}

/* ── MOBILE ───────────────────────────────────────────────── */
@media(max-width:900px) {
   #hero {
      padding: 100px 24px 160px;
   }

   .hero-body {
      grid-template-columns: 1fr;
   }

   .hero-left {
      padding: 0;
   }

   .hero-right {
      display: none;
   }

   .hero-stats .hs-item {
      padding: 14px 18px;
   }

   .hs-num {
      font-size: 22px;
   }

   .about-grid {
      grid-template-columns: 1fr;
      gap: 52px;
   }

   .svc-head,
   .work-head,
   .proc-head {
      flex-direction: column;
      gap: 16px;
   }

   .svc-desc,
   .va {
      text-align: left;
   }

   .svc-grid {
      grid-template-columns: 1fr;
   }

   .svc-card.featured {
      grid-column: auto;
      grid-template-columns: 1fr;
      gap: 24px;
   }


   .proc-steps {
      grid-template-columns: 1fr 1fr;
   }

   #tech {
      padding: 60px 24px;
   }

   #cta {
      padding: 80px 24px;
   }
}
