/* =====================================================
   GET Digital Services — V2 Creative Rebuild
   Kinetic typography · Scroll-driven motion · Tactile UI
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

/* ─── Tokens ────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --surface: #151518;
  --surface-2: #1c1c20;
  --border: #27272a;
  --border-2: #3a3a3e;
  --white: #f0f0ec;
  --white-dim: #b5b5ae;
  --muted: #7a7a76;
  --accent: #60a5fa;
  --accent-dim: rgba(96,165,250,.1);
  --blue: #60a5fa;
  --blue-dim: rgba(96,165,250,.08);
  --radius: 12px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; /* GSAP handles smoothness */ }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }

/* ─── Custom Cursor ─────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
.cursor.hovering {
  width: 60px; height: 60px;
  border-color: var(--white);
  background: rgba(200,255,0,.08);
}

/* ─── Grain Overlay ─────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ─── Aurora Background ─────────────────────────── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--black);
  overflow: hidden;
  pointer-events: none;
}
.aurora-1, .aurora-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  mix-blend-mode: screen;
}
.aurora-1 {
  width: 50vw; height: 50vw;
  background: var(--blue);
  top: -10vw; left: -10vw;
  animation: auroraOrbit 28s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.aurora-2 {
  width: 60vw; height: 60vw;
  background: rgba(147, 51, 234, 0.4); /* subtle deep purple for mesh variation */
  bottom: -20vw; right: -10vw;
  animation: auroraOrbit 36s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes auroraOrbit {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(15vw, 15vh) scale(1.2) rotate(180deg); }
  100% { transform: translate(-10vw, 30vh) scale(0.9) rotate(360deg); }
}

/* ─── Layout ────────────────────────────────────── */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.pad { padding: 120px 0; }

/* ─── Skip Link ─────────────────────────────────── */
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 10000;
  background: var(--accent); color: var(--black);
  padding: 12px 20px; border-radius: 8px; font-weight: 700;
  transition: top .3s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 101;
  gap: 0;
  line-height: 1;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.logo-accent {
  color: var(--accent);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

.cta-header {
  padding: 10px 24px;
  border: 1px solid var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .3s var(--ease);
}
.cta-header:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: transparent;
  color: white;
  font-size: 24px;
  z-index: 101;
}

/* ═══════════════════════════════════════════════════
   PAGE SYSTEM
   ═══════════════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════
   HERO — Full viewport kinetic typography
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .word {
  display: inline-block;
  transform: translateY(110%);
  transition: none; /* GSAP handles this */
}
.hero-headline .accent-word {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  margin-top: 40px;
  max-width: 480px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-sub .word {
  display: inline-block;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: all .35s var(--ease);
}
.btn-fill {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-fill:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.04);
}
.btn-line {
  border-color: var(--border-2);
  color: var(--white);
}
.btn-line:hover {
  border-color: var(--white);
  transform: scale(1.04);
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp .8s var(--ease) 2s forwards;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ═══════════════════════════════════════════════════
   MARQUEE — Infinite scrolling text strip
   ═══════════════════════════════════════════════════ */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 0 32px;
}
.marquee-track .dot {
  color: var(--accent);
  padding: 0;
}

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

/* ═══════════════════════════════════════════════════
   SECTION HEADERS — Large, kinetic titles
   ═══════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
}

.section-heading {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 800px;
}
.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  max-width: 540px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════
   SERVICES — Expandable list (not cards)
   ═══════════════════════════════════════════════════ */
.service-list { border-top: 1px solid var(--border); margin-top: 60px; }

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all .4s var(--ease);
  position: relative;
}
.service-item::before {
  content: '';
  position: absolute;
  left: -4vw; right: -4vw;
  top: 0; bottom: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.service-item:hover::before { opacity: 1; }
.service-item:hover { padding-left: 16px; }

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.service-item h3 {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: color .3s;
}
.service-item:hover h3 { color: var(--accent); }

.service-item p {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  text-align: right;
  transition: color .3s;
}
.service-item:hover p { color: var(--white-dim); }

/* ═══════════════════════════════════════════════════
   ABOUT — Split layout with large stats
   ═══════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--white-dim);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.stat {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.stat:first-child { border-radius: var(--radius) 0 0 0; }
.stat:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.stat:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.stat:last-child { border-radius: 0 0 var(--radius) 0; }

.stat:hover { border-color: var(--accent); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   PORTFOLIO — Horizontal scroll showcase
   ═══════════════════════════════════════════════════ */
.portfolio-scroll {
  overflow: visible;
  margin-top: 60px;
}
.portfolio-track {
  display: flex;
  gap: 24px;
}
.project-card {
  flex: 0 0 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .45s var(--ease);
}
.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
}
.project-thumb {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 40%);
}
.project-info {
  padding: 24px;
}
.project-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.project-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.filter-btn:hover {
  border-color: var(--white);
  color: var(--white);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* Portfolio grid fallback for filtered view */
.portfolio-grid-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ═══════════════════════════════════════════════════
   PROCESS — Timeline
   ═══════════════════════════════════════════════════ */
.process-timeline { margin-top: 60px; }

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all .4s var(--ease);
}
.process-step:hover { padding-left: 16px; }

.process-step::before {
  content: '';
  position: absolute;
  left: -4vw; right: -4vw;
  top: 0; bottom: 0;
  background: var(--surface);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}
.process-step:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  transition: color .4s var(--ease);
}
.process-step:hover .step-number { color: var(--accent); }

.step-content h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
}
.step-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
}

/* ═══════════════════════════════════════════════════
   BLOG — Minimal editorial list
   ═══════════════════════════════════════════════════ */
.blog-list { margin-top: 40px; }

.blog-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.blog-item:hover { padding-left: 16px; }
.blog-item:hover h3 { color: var(--accent); }

.blog-item h3 {
  font-size: clamp(18px, 2vw, 24px);
  transition: color .3s;
  margin-bottom: 6px;
}
.blog-item p {
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
}
.blog-meta {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.blog-cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 6px;
}

.search-bar {
  max-width: 400px;
  margin-bottom: 40px;
}
.search-bar input {
  width: 100%;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color .3s;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--accent);
}
.search-bar input::placeholder { color: var(--muted); }

.empty-msg {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   CONTACT — Bold split layout
   ═══════════════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color .3s var(--ease), background .3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { min-height: 160px; resize: vertical; border-radius: var(--radius); }

.submit-btn {
  align-self: flex-start;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 100px;
  transition: all .3s var(--ease);
}
.submit-btn:hover {
  background: var(--white);
  transform: scale(1.03);
}
.submit-btn:disabled { opacity: .5; }

.form-feedback {
  font-weight: 600;
  font-size: 14px;
  min-height: 20px;
}

.contact-details { padding-top: 20px; }
.contact-details h3 {
  font-size: 24px;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.detail-item:hover { padding-left: 12px; }

.detail-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 20px;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.detail-item:hover .detail-icon {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.detail-text b { display: block; font-size: 15px; }
.detail-text small { color: var(--muted); font-size: 13px; }

/* ═══════════════════════════════════════════════════
   SUBHERO — Page intro banners
   ═══════════════════════════════════════════════════ */
.subhero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
}

.subhero h1 {
  font-size: clamp(32px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.subhero h1 em {
  font-style: italic;
  color: var(--accent);
}
.subhero .section-desc { margin-top: 20px; }

/* ═══════════════════════════════════════════════════
   CTA BANNER — Bold text band
   ═══════════════════════════════════════════════════ */
.cta-band {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.cta-band em { color: var(--accent); font-style: italic; }

/* ═══════════════════════════════════════════════════
   FOOTER — Minimal
   ═══════════════════════════════════════════════════ */
.site-footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-grid a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color .25s, padding-left .25s;
}
.footer-grid a:hover { color: var(--white); padding-left: 8px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS (scroll-triggered via GSAP)
   ═══════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
}

/* ═══════════════════════════════════════════════════
   SELECTION & SCROLLBAR
   ═══════════════════════════════════════════════════ */
::selection {
  background: var(--accent);
  color: var(--black);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-grid-alt { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--black);
    z-index: 100;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; font-weight: 700; }
  .cta-header { display: none; }
  .hero-headline { letter-spacing: -1.5px; }
  .service-item { grid-template-columns: 36px 1fr; }
  .service-item p { display: none; }
  .process-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid-alt { grid-template-columns: 1fr; }
  .cursor { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

@media (max-width: 520px) {
  .pad { padding: 80px 0; }
  .stat-row { grid-template-columns: 1fr; }
  .stat { border-radius: 0 !important; }
  .stat:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .stat:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 1fr; }
  .blog-meta { text-align: left; }
  .subhero { padding: 120px 0 40px; min-height: auto; }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .reveal-up, .reveal-left, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
