:root {
  --bg: #0a0a0a;
  --bg-section: #050505;
  --bg-card: #111111;
  --border: #1a1a1a;
  --border-light: #2a2a2a;
  --text: #e8e8e8;
  --text-dim: #777777;
  --text-faint: #444444;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Prevent ANY element from causing horizontal scroll/clip */
html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* iPhone safe-area (notch / Dynamic Island / home indicator) */
  padding-left:   env(safe-area-inset-left);
  padding-right:  env(safe-area-inset-right);
}

/* All images / media never exceed their container */
img, video, iframe, svg { max-width: 100%; }

::selection {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ── PAGE TRANSITION ── */

/* Sits above all page content and the custom cursor, below the preloader.
   Starts off-screen above (translateY(-100%)) so it's invisible on load.
   .is-entering: sweeps down to cover the page before navigation.
   .is-exiting:  sweeps up to reveal the new page after arrival. */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #000;
  transform: translateY(-100%);
  transition: transform 0.22s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  will-change: transform;
}

#page-transition.is-entering {
  transform: translateY(0);
  pointer-events: all;
}

/* Exit: overlay starts at translateY(0) (set inline by JS), then transitions
   to translateY(-100%) via this class — reveals the new page beneath */
#page-transition.is-exiting {
  transform: translateY(-100%);
}

/* ── PRELOADER ── */
body.preloading {
  overflow: hidden;
}

/* Gate hero animations while preloader is visible */
body.preloading .fade-in,
body.preloading .word-inner {
  animation-play-state: paused;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderExit 400ms cubic-bezier(0.4, 0, 1, 1) 1100ms both;
}

@keyframes preloaderExit {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-letters {
  display: flex;
  gap: 0.05em;
}

/* Clip mask — each letter slides up from below this container */
.pl {
  display: inline-block;
  overflow: hidden;
}

.pl-inner {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
  animation: letterReveal 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pl:nth-child(1) .pl-inner { animation-delay: 200ms; }
.pl:nth-child(2) .pl-inner { animation-delay: 300ms; }
.pl:nth-child(3) .pl-inner { animation-delay: 400ms; }
.pl:nth-child(4) .pl-inner { animation-delay: 500ms; }

@keyframes letterReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.preloader-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: scaleX(0);
  transform-origin: center;
  animation: lineExpand 500ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms both;
}

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    animation: none;
    opacity: 1;
  }
  .pl-inner,
  .preloader-line {
    animation: none;
    transform: none;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px; /* top = nav height + breathing room */
}

.hero-bg {
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: 0;
  right: 0;
  background: var(--bg);
  z-index: 0;
  will-change: transform;
}

/* Chrome/metallic abstract background using CSS */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 120%;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(180,180,190,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 70% 30%, rgba(140,140,155,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 300px 600px at 50% 60%, rgba(100,100,115,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 800px 300px at 60% 20%, rgba(200,200,210,0.05) 0%, transparent 80%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* width is controlled by grid-template-columns (55%) */
}

/* ── HERO 3D EMBED ── */
.hero-3d {
  position: relative;
  align-self: stretch; /* fill full grid row height so canvas has dimensions */
  z-index: 1;
  pointer-events: none;
}

.sphere-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Left-edge fade: dissolves 3D into the hero text area */
.hero-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  width: 70%;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.6) 55%, transparent 100%);
  z-index: 2;
}

/* Bottom fade: 3D dissolves into section below, matching hero-bg::after */
.hero-3d::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
}

.hero-marquee {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 16px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-marquee .dash {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--text-faint);
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
}

.hero-headline .thin {
  font-weight: 200;
  color: var(--text-dim);
}

.hero-sub {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--white);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -40%; }
  100% { top: 120%; }
}

/* ── SERVICES ── */
.services {
  padding: 120px 60px;
  background: var(--bg-section);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-top: 16px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.service-card:hover .service-icon {
  color: rgba(255,255,255,0.7);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process {
  padding: 120px 60px;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.process-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.process-grid-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Timeline line ── */
.process-timeline {
  position: absolute;
  top: 52px; /* vertically centered through the step numbers */
  left: calc(16.66% + 20px);  /* start at center of first step */
  right: calc(16.66% + 20px); /* end at center of last step */
  height: 1px;
  pointer-events: none;
}

.process-timeline-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.06) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-timeline.drawn .process-timeline-fill {
  transform: scaleX(1);
}

/* Dots at each step position */
.process-dot {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-dot:nth-child(2) { left: 0;   transition-delay: 0s; }
.process-dot:nth-child(3) { left: 50%; transform: translateX(-50%) translateY(-50%) scale(0); }
.process-dot:nth-child(4) { right: 0;  transition-delay: 0.7s; }

.process-timeline.drawn .process-dot:nth-child(2) {
  transform: translateY(-50%) scale(1);
  transition-delay: 0s;
}
.process-timeline.drawn .process-dot:nth-child(3) {
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition-delay: 0.6s;
}
.process-timeline.drawn .process-dot:nth-child(4) {
  transform: translateY(-50%) scale(1);
  transition-delay: 1.2s;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

/* ── Step numbers ── */
.process-num {
  display: block;
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--white);
  opacity: 0.07;
  margin-bottom: -16px;
  pointer-events: none;
  user-select: none;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.process-step h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 72px; /* align with h3 now that num sits above */
  color: var(--text-faint);
  font-size: 1.5rem;
}

.process-arrow svg {
  width: 48px;
  height: 48px;
}

.process-summary {
  text-align: center;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 70px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  overflow: hidden;
  background: var(--bg-section);
  padding: 20px 0;
  pointer-events: none;
  user-select: none;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
}

/* ── WORK ── */
.work {
  padding: 120px 60px;
  background: var(--bg-section);
}

.work-label {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--border-light);
  text-align: center;
  margin-bottom: 60px;
}

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

.work-card {
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}

.work-card:hover {
  transform: translateY(-10px);
}

.work-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, box-shadow 0.5s;
}

.work-card:hover .work-thumb {
  border-color: var(--border-light);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

/* Overlay on hover */
.work-thumb::after {
  content: 'VIEW PROJECT →';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 5;
}

.work-card:hover .work-thumb::after {
  opacity: 1;
}

/* Mock laptop/screen inside thumbnails */
.work-thumb .mock-inner {
  width: 70%;
  height: 60%;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.work-card:hover .mock-inner {
  transform: scale(1.04);
}

.work-thumb .mock-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

/* Browser dots */
.mock-dots {
  position: absolute;
  top: 5px;
  left: 8px;
  display: flex;
  gap: 4px;
  z-index: 3;
}
.mock-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* ── Per-card thumbnail previews ── */

/* ── Card 1: Code.It ── */
.work-card:nth-child(1) .work-thumb { background: #0b1610; }
.ci-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; }
.ci-progress-bar { height:2px; background:rgba(255,255,255,0.05); flex-shrink:0; }
.ci-progress-fill { height:100%; width:62%; background:linear-gradient(90deg,#22c55e,#4ade80); border-radius:0 1px 1px 0; }
.ci-body { display:flex; flex:1; overflow:hidden; }
.ci-sidebar { width:22%; background:#0a1209; border-right:1px solid rgba(74,222,128,0.1); display:flex; flex-direction:column; align-items:center; padding:6px 0; gap:4px; flex-shrink:0; }
.ci-avatar { width:14px; height:14px; border-radius:50%; background:linear-gradient(135deg,#22c55e,#16a34a); margin-bottom:4px; }
.ci-si { width:60%; height:3px; border-radius:1px; background:rgba(255,255,255,0.08); }
.ci-si-active { background:rgba(74,222,128,0.5); box-shadow:0 0 4px rgba(74,222,128,0.3); }
.ci-editor { flex:1; display:flex; flex-direction:column; overflow:hidden; background:#0d1a10; }
.ci-editor-tab { height:10px; background:#0a1209; border-bottom:1px solid rgba(74,222,128,0.08); display:flex; align-items:center; gap:3px; padding:0 5px; flex-shrink:0; }
.ci-tab-dot { width:5px; height:5px; border-radius:50%; background:rgba(74,222,128,0.3); }
.ci-tab-name { width:20px; height:2px; border-radius:1px; background:rgba(255,255,255,0.15); }
.ci-code { padding:4px 4px 4px 2px; display:flex; flex-direction:column; gap:3px; }
.ci-row { display:flex; align-items:center; gap:2px; height:3px; }
.ci-ln { display:block; width:6px; height:2px; background:rgba(255,255,255,0.08); border-radius:1px; flex-shrink:0; }
.ci-seg { height:100%; border-radius:1px; }
.ci-kw  { background:#4ade80; opacity:0.7; }
.ci-fn  { background:#60a5fa; opacity:0.65; }
.ci-str { background:#fbbf24; opacity:0.6; }
.ci-num { background:#f87171; opacity:0.6; }
.ci-cm  { background:rgba(255,255,255,0.18); }
.ci-wh  { background:rgba(255,255,255,0.35); }
.ci-active-row { background:rgba(74,222,128,0.06); border-radius:1px; }

/* ── Card 2: Gadha ── */
.work-card:nth-child(2) .work-thumb { background:#0c0c12; }
.gd-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; align-items:center; padding:4px 6px; overflow:hidden; }
.gd-glow { position:absolute; top:-20px; left:50%; transform:translateX(-50%); width:80px; height:60px; background:radial-gradient(ellipse,rgba(245,158,11,0.18) 0%,transparent 70%); pointer-events:none; }
.gd-brand { font-family:'Outfit',sans-serif; font-size:7px; font-weight:800; letter-spacing:3px; color:rgba(245,158,11,0.8); text-shadow:0 0 8px rgba(245,158,11,0.4); margin-bottom:5px; position:relative; }
.gd-card { width:100%; background:#13131e; border:1px solid rgba(245,158,11,0.25); border-top:2px solid #f59e0b; border-radius:3px; padding:5px; position:relative; flex:1; display:flex; flex-direction:column; }
.gd-badge { width:28px; height:4px; background:rgba(245,158,11,0.2); border:1px solid rgba(245,158,11,0.3); border-radius:2px; margin-bottom:5px; }
.gd-q-line { height:3px; border-radius:1px; margin-bottom:2px; }
.gd-q1 { width:75%; background:rgba(255,255,255,0.5); }
.gd-q2 { width:50%; background:rgba(255,255,255,0.3); }
.gd-answers { display:flex; flex-direction:column; gap:2px; margin-top:5px; }
.gd-ans { height:8px; border-radius:2px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); }
.gd-correct { background:rgba(245,158,11,0.2); border-color:rgba(245,158,11,0.4); box-shadow:0 0 4px rgba(245,158,11,0.15); }

/* ── Card 3: Lynq ── */
.work-card:nth-child(3) .work-thumb { background:#080808; }
.lq-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; overflow:hidden; }
.lq-nav { display:flex; align-items:center; justify-content:space-between; padding:4px 8px; border-bottom:1px solid rgba(255,255,255,0.06); flex-shrink:0; }
.lq-logo { font-family:'Outfit',sans-serif; font-size:5px; font-weight:700; letter-spacing:3px; color:rgba(255,255,255,0.7); text-transform:uppercase; }
.lq-links { display:flex; gap:4px; }
.lq-lk { width:10px; height:2px; border-radius:1px; background:rgba(255,255,255,0.15); }
.lq-hero { flex:1; display:flex; position:relative; padding:6px 8px; }
.lq-sphere { position:absolute; right:6px; top:50%; transform:translateY(-50%); width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.1); background:transparent; box-shadow:inset 0 0 10px rgba(255,255,255,0.03); }
.lq-sphere::before { content:''; position:absolute; inset:3px; border-radius:50%; border:1px solid rgba(255,255,255,0.06); }
.lq-sphere::after { content:''; position:absolute; left:50%; top:0; bottom:0; transform:translateX(-50%); width:1px; background:rgba(255,255,255,0.07); }
.lq-content { display:flex; flex-direction:column; gap:2px; justify-content:center; }
.lq-tag { width:24px; height:3px; background:rgba(255,255,255,0.12); border-radius:1px; margin-bottom:3px; }
.lq-h { height:5px; border-radius:1px; background:rgba(255,255,255,0.7); }
.lq-h1 { width:42px; }
.lq-h2 { width:36px; }
.lq-h3 { width:28px; background:rgba(255,255,255,0.15); }
.lq-sub { width:38px; height:2px; border-radius:1px; background:rgba(255,255,255,0.18); margin-top:4px; }
.lq-sub2 { width:30px; background:rgba(255,255,255,0.1); }
.lq-rule { height:1px; background:rgba(255,255,255,0.05); flex-shrink:0; }

/* ── Card 4: AI Dashboard ── */
.work-card:nth-child(4) .work-thumb { background:#080c18; }
.ai-wrap { position:absolute; inset:0; top:18px; display:flex; overflow:hidden; }
.ai-sidebar { width:18%; background:#060a14; border-right:1px solid rgba(59,130,246,0.1); display:flex; flex-direction:column; align-items:center; padding:5px 0; gap:4px; flex-shrink:0; }
.ai-sb-logo { width:10px; height:10px; border-radius:2px; background:rgba(59,130,246,0.5); margin-bottom:4px; }
.ai-sb-icon { width:10px; height:3px; border-radius:1px; background:rgba(255,255,255,0.1); }
.ai-sb-active { background:rgba(59,130,246,0.6); box-shadow:0 0 4px rgba(59,130,246,0.3); }
.ai-main { flex:1; display:flex; flex-direction:column; overflow:hidden; padding:4px; gap:3px; }
.ai-topbar { display:flex; align-items:center; justify-content:space-between; height:10px; border-bottom:1px solid rgba(255,255,255,0.05); padding-bottom:3px; }
.ai-tb-title { width:30px; height:3px; border-radius:1px; background:rgba(255,255,255,0.3); }
.ai-tb-right { display:flex; gap:3px; align-items:center; }
.ai-tb-pill { width:14px; height:4px; border-radius:2px; background:rgba(59,130,246,0.4); }
.ai-tb-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.1); }
.ai-stats { display:flex; gap:3px; flex-shrink:0; }
.ai-stat { flex:1; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:2px; padding:3px; display:flex; flex-direction:column; gap:2px; }
.ai-stat-blue { background:rgba(59,130,246,0.06); border-color:rgba(59,130,246,0.2); }
.ai-sv { height:4px; border-radius:1px; background:rgba(255,255,255,0.4); }
.ai-sv-grn { background:rgba(52,211,153,0.7); }
.ai-stat-blue .ai-sv { background:rgba(96,165,250,0.8); }
.ai-sl { width:60%; height:2px; border-radius:1px; background:rgba(255,255,255,0.12); }
.ai-chart { flex:1; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-radius:2px; overflow:hidden; }

/* ── Card 5: E-Commerce / MAISON ── */
.work-card:nth-child(5) .work-thumb { background:#faf9f6; }
.work-card:nth-child(5) .mock-inner { background:#faf9f6; border-color:rgba(0,0,0,0.1); }
.work-card:nth-child(5) .mock-inner::before { background:rgba(0,0,0,0.03); border-color:rgba(0,0,0,0.08); }
.work-card:nth-child(5) .mock-dots span { background:rgba(0,0,0,0.15); }
.ec-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; overflow:hidden; background:#faf9f6; }
.ec-nav { display:flex; align-items:center; justify-content:space-between; padding:3px 8px; border-bottom:1px solid rgba(0,0,0,0.07); flex-shrink:0; }
.ec-logo { font-family:'Outfit',sans-serif; font-size:4.5px; font-weight:700; letter-spacing:2px; color:rgba(0,0,0,0.7); text-transform:uppercase; }
.ec-links { display:flex; gap:4px; }
.ec-lk { width:9px; height:2px; border-radius:1px; background:rgba(0,0,0,0.15); }
.ec-icons { display:flex; gap:3px; }
.ec-icon { width:6px; height:6px; border-radius:50%; border:1px solid rgba(0,0,0,0.15); }
.ec-headline { padding:4px 8px 3px; }
.ec-h1 { width:55%; height:5px; border-radius:1px; background:rgba(0,0,0,0.6); margin-bottom:2px; }
.ec-h2 { width:35%; height:3px; border-radius:1px; background:rgba(0,0,0,0.2); }
.ec-grid { flex:1; display:grid; grid-template-columns:1fr 1fr 1fr; gap:2px; padding:2px 6px 4px; }
.ec-prod { border-radius:1px; min-height:0; }

/* ── Card 6: Product Launch / AURA ── */
.work-card:nth-child(6) .work-thumb { background:#09090b; }
.pl-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; overflow:hidden; }
.pl-nav { display:flex; align-items:center; justify-content:space-between; padding:4px 8px; border-bottom:1px solid rgba(124,58,237,0.1); flex-shrink:0; }
.pl-logo { width:16px; height:3px; border-radius:1px; background:rgba(255,255,255,0.4); }
.pl-nav-links { display:flex; gap:4px; }
.pl-nl { width:9px; height:2px; border-radius:1px; background:rgba(255,255,255,0.12); }
.pl-hero { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; padding-bottom:6px; }
.pl-orb { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:50px; height:50px; border-radius:50%; background:radial-gradient(circle,rgba(124,58,237,0.35) 0%,transparent 70%); pointer-events:none; }
.pl-title { font-family:'Outfit',sans-serif; font-size:11px; font-weight:900; letter-spacing:3px; color:rgba(255,255,255,0.9); text-shadow:0 0 12px rgba(124,58,237,0.7),0 0 24px rgba(124,58,237,0.4); margin-bottom:4px; position:relative; }
.pl-sub { width:44px; height:2px; border-radius:1px; background:rgba(255,255,255,0.18); margin-bottom:2px; position:relative; }
.pl-sub2 { width:32px; background:rgba(255,255,255,0.1); }
.pl-btn { width:36px; height:8px; border-radius:2px; background:rgba(124,58,237,0.8); box-shadow:0 0 10px rgba(124,58,237,0.5); margin-top:5px; position:relative; }
.pl-features { display:flex; gap:3px; padding:3px 6px 4px; border-top:1px solid rgba(124,58,237,0.1); flex-shrink:0; }
.pl-feat { flex:1; height:10px; border-radius:1px; background:rgba(124,58,237,0.08); border:1px solid rgba(124,58,237,0.15); }

/* ── sk- Saffron Kitchen thumbnail ── */
.sk-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; overflow:hidden; background:#faf6f0; }
.sk-nav { display:flex; align-items:center; justify-content:space-between; padding:4px 8px; border-bottom:1px solid rgba(194,98,60,0.15); flex-shrink:0; background:#faf6f0; }
.sk-logo { font-size:5px; font-weight:700; color:#2c1a0e; letter-spacing:0.3px; }
.sk-logo span { color:#c2623c; }
.sk-cta { width:20px; height:5px; border-radius:1px; background:#c2623c; }
.sk-hero { flex:1; display:flex; flex-direction:column; justify-content:center; padding:6px 8px; position:relative; background:linear-gradient(135deg,#faf6f0,#f5ede0); }
.sk-glow { position:absolute; right:-10px; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:50%; background:radial-gradient(circle,rgba(194,98,60,0.15) 0%,transparent 70%); pointer-events:none; }
.sk-badge { width:50px; height:5px; border-radius:1px; background:rgba(194,98,60,0.2); margin-bottom:5px; }
.sk-h { height:3px; border-radius:1px; margin-bottom:2px; background:#2c1a0e; }
.sk-h1 { width:60%; opacity:0.85; }
.sk-h2 { width:45%; opacity:0.7; }
.sk-p { width:70%; height:2px; border-radius:1px; background:rgba(92,61,42,0.4); margin-bottom:6px; }
.sk-btns { display:flex; gap:4px; }
.sk-btn-primary { width:28px; height:7px; border-radius:1px; background:#c2623c; }
.sk-btn-outline { width:28px; height:7px; border-radius:1px; border:1px solid #c2623c; }
.sk-strip { display:flex; gap:0; flex-shrink:0; background:#c2623c; padding:3px 8px; justify-content:space-around; }
.sk-stat { width:14%; height:8px; border-radius:1px; background:rgba(255,255,255,0.25); }

/* ── pr- Peak Renovations thumbnail ── */
.pr-wrap { position:absolute; inset:0; top:18px; display:flex; flex-direction:column; overflow:hidden; background:#0d1117; }
.pr-nav { display:flex; align-items:center; justify-content:space-between; padding:4px 8px; border-bottom:1px solid rgba(255,255,255,0.08); flex-shrink:0; }
.pr-logo { font-size:5px; font-weight:700; color:rgba(255,255,255,0.85); letter-spacing:0.3px; }
.pr-logo span { color:#f0a500; }
.pr-cta { width:20px; height:5px; border-radius:1px; background:#f0a500; }
.pr-hero { flex:1; display:flex; flex-direction:column; justify-content:center; padding:6px 8px; background:radial-gradient(ellipse 60px 40px at 80% 50%,rgba(240,165,0,0.07) 0%,transparent 70%); }
.pr-badge { width:44px; height:4px; border-radius:1px; background:rgba(240,165,0,0.2); margin-bottom:5px; border:1px solid rgba(240,165,0,0.25); }
.pr-h { height:3px; border-radius:1px; margin-bottom:2px; }
.pr-h1 { width:55%; background:rgba(255,255,255,0.85); }
.pr-h2 { width:40%; background:#f0a500; }
.pr-p { width:65%; height:2px; border-radius:1px; background:rgba(255,255,255,0.25); margin-bottom:6px; }
.pr-btns { display:flex; gap:4px; }
.pr-btn-accent { width:28px; height:7px; border-radius:1px; background:#f0a500; }
.pr-btn-ghost { width:28px; height:7px; border-radius:1px; border:1px solid rgba(255,255,255,0.2); }
.pr-trust { display:flex; gap:3px; flex-shrink:0; background:#111820; padding:4px 8px; border-top:1px solid rgba(255,255,255,0.06); justify-content:space-between; }
.pr-ti { width:18%; height:5px; border-radius:1px; background:rgba(255,255,255,0.1); }

.work-meta {
  padding: 20px 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-meta {
  transform: translateX(4px);
}

.work-type {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.work-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.work-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.5;
}

.work-status {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 2px;
}

.work-status.live {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.2);
}

/* ── CONTACT ── */
.contact {
  padding: 140px 60px;
  text-align: center;
}

.contact-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.3s;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.contact-form select option {
  background: #111111;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint);
}

.contact-form select:invalid,
.contact-form select option[value=""] {
  color: var(--text-faint);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--text-dim);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-btn {
  margin-top: 40px;
  width: 100%;
  padding: 18px;
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

.contact-btn:hover {
  background: var(--white);
  color: var(--bg);
}

.contact-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.contact-success {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
}

.contact-success[hidden] {
  display: none;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 60px;
  background: var(--bg-section);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.1;
}

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.testi-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.testi-quote {
  width: 28px;
  height: auto;
  color: var(--white);
  margin-bottom: 24px;
  display: block;
}

.testi-card blockquote p {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}

.testi-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.testi-biz {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── WHY LYNQ ── */
.why-lynq {
  padding: 120px 60px;
  background: var(--bg-section);
}

.why-lynq-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-lynq-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-top: 16px;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.why-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.45);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── PRICING ── */
.pricing {
  padding: 120px 60px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

/* Popular card — white glow border */
.pricing-popular {
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(255,255,255,0.03);
}

.pricing-popular:hover {
  border-color: rgba(255,255,255,0.4);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 16px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(255,255,255,0.05);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.pricing-popular .pricing-tier {
  color: var(--text-dim);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}

.pricing-amount {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-faint);
  letter-spacing: 1px;
}

.pricing-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.2px;
}

.pricing-check {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
}

.pricing-check::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 8px;
  border-right: 1px solid var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
  transform: rotate(45deg);
}

.pricing-popular .pricing-check {
  border-color: rgba(255,255,255,0.3);
}

.pricing-popular .pricing-check::after {
  border-color: var(--white);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pricing-btn:hover {
  background: var(--border-light);
  color: var(--white);
  border-color: var(--border-light);
}

.pricing-btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--bg);
}

.pricing-btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}
.pricing-guarantee svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── FAQ ── */
.faq {
  padding: 120px 60px;
  background: var(--bg);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.2px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Plus icon via pseudo-elements */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: opacity 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Open state — vertical bar fades out (minus) */
.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── FREE AUDIT CTA ── */
.audit-cta {
  padding: 120px 60px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle top + bottom rule lines */
.audit-cta::before,
.audit-cta::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.audit-cta::before { top: 0; }
.audit-cta::after  { bottom: 0; }

.audit-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.audit-cta-heading {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  text-transform: uppercase;
  margin: 14px 0 24px;
  line-height: 1;
}

.audit-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin-bottom: 48px;
}

.audit-cta-btn {
  display: inline-block;
  padding: 18px 52px;
  background: var(--white);
  color: var(--bg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}

.audit-cta-btn:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ── LOCAL SEO ── */
.local-seo {
  padding: 80px 60px;
  background: var(--bg-section);
}

.local-seo-inner {
  max-width: 720px;
}

.local-seo h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin: 12px 0 24px;
  line-height: 1.1;
}

.local-seo p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}

.local-seo-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.local-seo-areas li {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 2px;
}

/* ── FOOTER ── */
footer {
  padding: 60px 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  /* scale-up reveal driven by .reveal + .visible via JS, overridden below */
  transform-origin: left center;
}

/* Logo-specific reveal: scale from 80% + fade rather than the default translateY */
.footer-logo.reveal {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-logo.reveal.visible {
  opacity: 1;
  transform: scale(1);
}

.footer-top-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.footer-top-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-top-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-top-btn:hover svg {
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 300;
  letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }

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

/* ── SECTION DIVIDERS ── */

/* A 1px rule that draws itself left-to-right on scroll.
   scaleX is compositor-only — no layout/paint cost during the transition.
   transform-origin: left keeps the draw anchored to the left edge. */
.section-divider {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden; /* clips the pseudo-element at both ends cleanly */
}

.section-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider.drawn::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .section-divider::after { transition: none; }
}

/* ── SPLIT-TEXT HEADLINE REVEAL ── */

/* Clip mask: hides the word until it slides up from below.
   padding-bottom + negative margin-bottom preserve layout while
   giving overflow:hidden room to not clip descenders (g, y, p…). */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

/* The moving layer. `both` fill-mode holds the `from` state during
   the delay so words are invisible before their animation starts. */
.word-inner {
  display: inline-block;
  animation: wordReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--word-delay, 0ms);
}

@keyframes wordReveal {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}

/* ── REVEAL (Intersection Observer) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GRADIENT BLOB ── */

/* Fixed ambient light that follows the cursor. Lives above page sections
   (z-index: 2) but below nav (100) and cursor (9999). At ~6% opacity with
   80px blur the tint is felt rather than seen — pure atmosphere. */
#blob {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(120, 60, 255, 0.08) 0%,
    rgba(60, 100, 255, 0.05) 40%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: none; /* enabled only for real pointer devices below */
}

@media (hover: hover) and (pointer: fine) {
  #blob { display: block; }
}

/* ── CUSTOM CURSOR ── */

/* Hidden by default; enabled only for real pointer devices below.
   transform is intentionally absent from transition — JS lerp owns
   the position, CSS would fight it and add unwanted spring-on-spring lag. */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  /* Border is always present but transparent in dot state.
     Transitioning color (not presence) keeps border-box stable
     and avoids a geometry recalculation on expand/collapse. */
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
  transition:
    width            0.4s  cubic-bezier(0.16, 1, 0.3, 1),
    height           0.4s  cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s  ease,
    border-color     0.4s  ease,
    opacity          0.35s ease;
  opacity: 0;   /* invisible until first mousemove */
  display: none; /* overridden by the pointer media query below */
}

#cursor.cursor--expanded {
  width: 40px;
  height: 40px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Activate only on devices with a precise pointer (mouse / trackpad).
   `pointer: fine` excludes touch screens; `hover: hover` excludes
   stylus-only devices. Both together = real mouse or trackpad. */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
  #cursor { display: block; }
}

/* ── PROJECT OVERLAY ── */

/* Fullscreen panel that slides up from below the viewport.
   Visibility toggle delays on close so the element hides after the
   slide-down animation completes — avoids a flash of content on re-open. */
#project-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: var(--bg);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0.7s;
  outline: none;
  /* overflow lives on .overlay-inner, not here, so .overlay-x stays fixed */
}

#project-overlay.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0s;
}

/* X button — absolute within the overlay (transform on parent creates
   containing block, so this stays at the top-right of the overlay panel) */
.overlay-x {
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.overlay-x:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.overlay-x svg {
  width: 16px;
  height: 16px;
}

/* Scrollable container — owns the overflow so .overlay-x above doesn't scroll */
.overlay-inner {
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  padding-top: 76px; /* clear the X button */
}

/* ─ Browser mockup ─ */
.overlay-browser {
  flex-shrink: 0;
}

.overlay-chrome {
  height: 46px;
  background: #141414;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
  flex-shrink: 0;
}

.overlay-dots {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.overlay-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.overlay-dots span:nth-child(1) { background: #ff5f57; }
.overlay-dots span:nth-child(2) { background: #febc2e; }
.overlay-dots span:nth-child(3) { background: #28c840; }

.overlay-urlbar {
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
  height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 7px;
  min-width: 0;
}

.overlay-lock {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #555;
}

.overlay-url {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overlay-viewport {
  height: 70vh;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.overlay-viewport iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─ Case study info ─ */
.overlay-info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 56px 60px 72px;
  border-top: 1px solid var(--border);
}

.overlay-info-text {
  flex: 1;
  max-width: 580px;
}

.overlay-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.overlay-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.overlay-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 520px;
}

.overlay-info-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 4px;
}

.overlay-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--white);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s;
}

.overlay-visit:hover { opacity: 0.85; }

.overlay-close {
  padding: 14px 32px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}

.overlay-close:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .overlay-inner { padding-top: 64px; }
  .overlay-viewport { height: 50vh; }
  .overlay-info {
    flex-direction: column;
    gap: 36px;
    padding: 40px 24px 60px;
  }
  .overlay-info-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── FLOATING CTA BAR ── */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: min(860px, calc(100% - 48px));
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 28px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 900;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}

.cta-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.cta-bar.hidden {
  display: none;
}

.cta-bar-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-bar-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--white);
  color: var(--bg);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.cta-bar-btn:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

.cta-bar-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.3);
  padding: 0;
  margin-left: 4px;
  transition: color 0.2s;
}

.cta-bar-close:hover {
  color: rgba(255,255,255,0.7);
}

.cta-bar-close svg {
  width: 14px;
  height: 14px;
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── MOBILE NAV DRAWER ── */
.nav-mobile {
  display: none;
  visibility: hidden;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(6,6,6,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open {
  display: flex;
  visibility: visible;
}
.nav-mobile a {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a:focus {
  color: var(--white);
}

/* ── MOBILE ── */
@media (max-width: 900px) {

  /* ── NAV ── */
  nav { padding: 0 24px; height: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── HERO ── */
  .hero {
    grid-template-columns: 1fr;           /* single column */
    padding: 96px 24px 72px;
    align-items: start;                   /* content at top, no centering gap */
    min-height: unset;                    /* let content dictate height — no blank space */
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero-3d    { display: none; }
  .hero-scroll { display: none; }

  /* Marquee above headline */
  .hero-marquee {
    font-size: 0.65rem;
    letter-spacing: 5px;
    gap: 14px;
    overflow: hidden;
    margin-bottom: 18px;
  }
  .hero-marquee .dash { width: 14px; }

  /* Headline — smaller font + hide forced line-breaks so text wraps naturally */
  .hero-headline {
    font-size: clamp(2rem, 8.5vw, 3.8rem);
    letter-spacing: -1px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }
  .hero-headline br { display: none; }   /* JS re-creates <br>; hide them on mobile */

  /* Sub paragraph */
  .hero-sub {
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.65;
    margin-top: 20px;
  }

  /* ── STATS — forced 3-column grid, nothing can overflow ── */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 48px;
    overflow: hidden;
  }
  .stat {
    min-width: 0;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  .stat-number { font-size: clamp(1.6rem, 7vw, 2.8rem); letter-spacing: -1px; }
  .stat-label  { font-size: 0.6rem; letter-spacing: 1.5px; }

  /* ── PROCESS ── */
  .process { padding: 80px 24px; }
  .process-timeline { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-arrow { display: none; }
  .process-step { padding: 0; }
  .process-step p { max-width: 100%; }   /* remove 260px cap — fills mobile column */

  /* ── SERVICES ── */
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 0.9rem; }
  .service-card p  { font-size: 0.8rem; }

  /* ── WORK ── */
  .work { padding: 80px 24px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-label { font-size: clamp(2rem, 7vw, 4rem); letter-spacing: -1px; }
  /* Always show tap cue on touch — no hover available */
  .work-thumb::after { opacity: 0.55 !important; font-size: 0.6rem; letter-spacing: 3px; }
  .work-card:active .work-thumb::after { opacity: 0.9 !important; }

  /* ── CONTACT ── */
  .contact { padding: 80px 24px; }
  .contact-heading { font-size: clamp(2rem, 8vw, 3.5rem); letter-spacing: -1px; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 24px; }

  /* ── WHY LYNQ ── */
  .why-lynq { padding: 80px 24px; }
  .why-lynq-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }

  /* ── PRICING ── */
  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }

  /* ── FAQ ── */
  .faq { padding: 80px 24px; }
  .faq-question { font-size: 0.95rem; }

  /* ── AUDIT CTA ── */
  .audit-cta { padding: 80px 24px; }
  .audit-cta::before,
  .audit-cta::after { left: 24px; right: 24px; }
  .audit-cta-heading { font-size: clamp(1.8rem, 7vw, 3.2rem); letter-spacing: -1px; }
  .audit-cta-btn { padding: 16px 32px; font-size: 0.7rem; }

  /* ── LOCAL SEO ── */
  .local-seo { padding: 60px 24px; }

  /* ── FOOTER ── */
  footer { padding: 40px 24px 32px; gap: 28px; }
  .footer-top { flex-direction: column; align-items: center; gap: 20px; }
  .footer-logo { transform-origin: center; }
  .footer-nav { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* ── FLOATING CTA BAR ── */
  .cta-bar { left: 0; right: 0; border-radius: 0; padding: 0 20px; }
  .cta-bar-text { display: none; }

  /* ── MISC ── */
  * { cursor: auto !important; }
  #cursor { display: none !important; }
}

/* ── MARQUEE — smaller on mobile ── */
@media (max-width: 900px) {
  .marquee-content { font-size: 2.2rem; }
}

/* ── SMALL PHONES (≤ 390px) ── */
@media (max-width: 390px) {
  .hero { padding: 88px 20px 60px; }
  .hero-headline { font-size: clamp(1.9rem, 8vw, 3rem); }
  .hero-marquee  { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 20px 16px; }
  .nav-mobile a  { font-size: 1.8rem; }
  .testi-card, .why-card, .pricing-card { padding: 24px 18px; }
  .work-grid { gap: 28px; }
  .stat-number { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
}
